:root {
  color-scheme: light;
  --bg: #fbfaf6;
  --ink: #171412;
  --muted: #6d655d;
  --line: #e8ded1;
  --cream: #fff8ed;
  --amber: #c97924;
  --gold: #e8b45b;
  --deep: #2a1208;
  --pine: #21423a;
  --blue: #315f83;
  --panel: #ffffff;
  --shadow: 0 24px 70px rgba(48, 26, 12, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: #855010;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.86);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 18px;
  font-weight: 760;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(63, 27, 10, 0.18);
  height: 44px;
  width: 44px;
}

.mark {
  background: var(--deep);
  border-radius: 12px;
  height: 42px;
  width: 42px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  background:
    radial-gradient(circle at 82% 40%, rgba(232, 180, 91, 0.34), transparent 36%),
    linear-gradient(135deg, #fff9ef, #f4e7d7 54%, #d9e4df);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.9fr);
  min-height: calc(100vh - 81px);
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 86px);
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  color: #8a4d13;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 6.2vw, 78px);
  max-width: 640px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  max-width: 820px;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  margin: 12px 0 10px;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.64;
}

ul {
  padding-left: 22px;
}

.lead {
  color: #4f4740;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  margin: 26px 0 0;
  max-width: 700px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 760;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  text-decoration: none;
}

.button:hover {
  background: var(--pine);
}

.text-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

.hero-media {
  align-items: center;
  align-self: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 184, 69, 0.48), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 241, 0.7), rgba(31, 66, 58, 0.16)),
    linear-gradient(150deg, #fff5e6, #ead7c0);
  border: 1px solid rgba(73, 42, 18, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(34px, 6vw, 64px);
}

.app-icon-large {
  border-radius: 44px;
  box-shadow: 0 24px 60px rgba(42, 18, 8, 0.24);
  width: min(300px, 62vw);
}

.story {
  background: var(--deep);
  padding: 34px clamp(20px, 5vw, 72px);
}

.story p {
  color: var(--cream);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  margin: 0 auto;
  max-width: 1100px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  overflow-x: auto;
  padding-bottom: 8px;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 258px;
  padding: 22px;
}

.feature span {
  color: var(--blue);
  display: block;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.feature p {
  font-size: 15px;
  margin: 0;
}

.screenshots-section {
  background: linear-gradient(180deg, #f5efe7, #fbfaf6);
  max-width: none;
}

.screenshots-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.screenshots {
  display: flex;
  gap: 22px;
  margin: 0 auto;
  max-width: 1180px;
  overflow-x: auto;
  padding: 6px 2px 28px;
  scroll-snap-type: x mandatory;
}

.screenshots figure {
  flex: 0 0 242px;
  margin: 0;
  scroll-snap-align: center;
}

.screenshots img {
  border: 1px solid rgba(42, 18, 8, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(42, 18, 8, 0.18);
  width: 242px;
}

.screenshots figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  margin-top: 14px;
  text-align: center;
}

.privacy-note {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.privacy-note p:last-child {
  font-size: 19px;
  margin: 0;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 0 clamp(20px, 5vw, 72px);
  padding: 24px 0;
}

.page {
  margin: 0 auto;
  max-width: 860px;
  padding: 64px clamp(20px, 5vw, 72px);
}

.page h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.page .section {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  max-width: none;
  padding: 42px 0 0;
}

.page .section + .section {
  margin-top: 42px;
}

.contact {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 28px;
  padding: 22px;
}

.contact h2,
.page .section h2 {
  font-size: clamp(28px, 4vw, 42px);
}

@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255, 248, 237, 0.96), rgba(255, 248, 237, 0.88)),
      radial-gradient(circle at 80% 22%, rgba(232, 180, 91, 0.28), transparent 34%),
      linear-gradient(135deg, #fff9ef, #f4e7d7 54%, #d9e4df);
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    justify-content: flex-start;
    min-height: auto;
  }

  .privacy-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 42px;
  }

  .button {
    width: 100%;
  }

  .screenshots figure,
  .screenshots img {
    width: 220px;
  }

  .screenshots figure {
    flex-basis: 220px;
  }
}
