@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url("/assets/fonts/dm-sans.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url("/assets/fonts/instrument-serif.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: optional;
  src: url("/assets/fonts/instrument-serif-italic.woff2") format("woff2");
}

:root {
  --ink: #13251f;
  --ink-deep: #0b1e18;
  --forest: #102b23;
  --forest-light: #1d4a3c;
  --cream: #f4f0e7;
  --paper: #fbfaf6;
  --paper-dark: #e9e3d7;
  --gold: #c79a52;
  --gold-light: #e3c88f;
  --sage: #9eb2a3;
  --muted: #5f6e68;
  --line: rgba(19, 37, 31, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 80px rgba(8, 29, 23, 0.14);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Segoe UI", "DM Sans", sans-serif;
  --page: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--ink-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  color: var(--cream);
  background: var(--forest-light);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 max(32px, calc((100vw - 1400px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.91);
  border-color: rgba(19, 37, 31, 0.1);
  box-shadow: 0 12px 40px rgba(10, 31, 24, 0.06);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.wordmark-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.wordmark-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button span {
  font-size: 1.1em;
  transition: transform 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover span,
.button:focus-visible span {
  transform: translate(3px, -3px);
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
  gap: 10px;
  font-size: 13px;
}

.button-dark {
  color: white;
  background: var(--ink);
}

.site-header:not(.is-scrolled) .button-dark {
  color: var(--ink);
  background: white;
}

.button-primary {
  color: var(--ink-deep);
  background: var(--gold-light);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0dba9;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.button-light {
  color: var(--ink-deep);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.hero {
  position: relative;
  min-height: 820px;
  height: max(780px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
}

.hero-media,
.hero-scrim,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: hero-in 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 19, 15, 0.88) 0%, rgba(5, 19, 15, 0.62) 39%, rgba(5, 19, 15, 0.04) 75%),
    linear-gradient(0deg, rgba(5, 19, 15, 0.66) 0%, transparent 38%, rgba(5, 19, 15, 0.08) 100%);
}

.hero-grain {
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 70px auto 0;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--forest-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
}

.hero-eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 7.4vw, 118px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.86;
}

.hero h1 em,
.display-heading em,
.story-heading h2 em,
.free h2 em,
.closing h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-copy {
  max-width: 600px;
  margin: 34px 0 30px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.text-link {
  padding: 10px 0;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  margin-left: 8px;
}

.hero-proof {
  margin-top: 52px;
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  animation: reveal-up 0.9s 0.68s both;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof i {
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1400px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-note svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section > * {
  width: var(--page);
  margin-right: auto;
  margin-left: auto;
}

.section-kicker {
  margin-bottom: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--line);
}

.section-kicker span {
  color: #835d26;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.48);
}

.section-kicker-light span {
  color: var(--gold-light);
}

.section-kicker-light::after {
  background: var(--line-light);
}

.display-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.display-heading em {
  color: var(--forest-light);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.7fr);
  gap: 9vw;
  align-items: end;
}

.intro-copy {
  padding-bottom: 8px;
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.intro-copy p:first-child {
  color: var(--ink);
}

.inline-cta {
  margin-top: 16px;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--forest-light);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.inline-cta span {
  transition: transform 0.25s ease;
}

.inline-cta:hover span,
.inline-cta:focus-visible span {
  transform: translate(3px, -3px);
}

.intro-rule {
  margin-top: 105px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-rule i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.story {
  color: white;
  background: var(--forest);
}

.story::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 460px;
  content: "";
  opacity: 0.45;
  background: radial-gradient(circle at 80% 0%, rgba(199, 154, 82, 0.2), transparent 65%);
  pointer-events: none;
}

.story-heading {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.story-heading h2 {
  color: white;
}

.story-heading p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.story-book {
  position: relative;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 72px;
  align-items: start;
}

.story-chapters {
  padding-bottom: 22vh;
}

.story-chapter {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 22px;
  align-content: center;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.45s ease, transform 0.45s ease;
}

.story-chapter.is-active {
  color: white;
  transform: translateX(8px);
}

.chapter-number {
  padding-top: 5px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-chapter .eyebrow {
  color: inherit;
}

.story-chapter h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.story-chapter p:last-child {
  max-width: 410px;
  margin: 0;
  color: inherit;
  font-size: 16px;
}

.story-stage {
  position: sticky;
  top: 104px;
  height: min(76vh, 760px);
  min-height: 590px;
}

.story-panel {
  position: absolute;
  inset: 0 0 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.55s;
}

.story-panel.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.browser-frame {
  overflow: hidden;
  background: #f8f6f4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.27);
}

.browser-bar {
  height: 38px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #66716d;
  background: #f0eeeb;
  border-bottom: 1px solid rgba(16, 43, 35, 0.12);
  font-size: 9px;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  background: #c8c7c3;
  border-radius: 50%;
}

.browser-bar span {
  margin-left: 7px;
}

.browser-frame img {
  width: 100%;
  height: calc(100% - 38px);
  object-fit: cover;
  object-position: top;
}

.phones {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  position: absolute;
  width: min(42%, 315px);
  padding: 8px;
  overflow: hidden;
  background: #121a17;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}

.phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 430 / 932;
  object-fit: cover;
  border-radius: 27px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 50%;
  width: 23%;
  height: 16px;
  background: #121a17;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-back {
  margin-left: -28%;
  transform: rotate(-7deg) scale(0.92);
}

.phone-front {
  z-index: 1;
  margin-left: 25%;
  transform: rotate(6deg);
}

.stage-progress {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.stage-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--gold-light);
  transition: transform 0.45s ease;
}

.features {
  background: var(--cream);
}

.features-heading {
  max-width: 1030px;
  margin-bottom: 80px;
}

.features-heading p {
  max-width: 590px;
  margin: 30px 0 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 390px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(19, 37, 31, 0.1);
  border-radius: 2px;
}

.feature-card-wide {
  min-height: 520px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 7vw;
  align-items: center;
}

.feature-card .eyebrow {
  margin-top: 30px;
}

.feature-card h3 {
  max-width: 560px;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(35px, 3.2vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.feature-card p:last-child,
.feature-card > div > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 0;
  color: #4f625b;
}

.feature-card-dark {
  color: white;
  background: var(--forest);
}

.feature-card-dark .eyebrow {
  color: var(--gold-light);
}

.feature-card-dark p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.line-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--forest-light);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.feature-card-dark .line-icon {
  color: var(--gold-light);
}

.line-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bloom-visual {
  position: relative;
  min-height: 370px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(16, 43, 35, 0.16);
  border-radius: 50%;
}

.orbit-a {
  width: 300px;
  height: 300px;
}

.orbit-b {
  width: 440px;
  height: 440px;
  border-style: dashed;
}

.bloom-center {
  z-index: 1;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--forest);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(16, 43, 35, 0.22);
}

.bloom-center svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.bloom-tag {
  position: absolute;
  z-index: 2;
  padding: 10px 15px;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid rgba(16, 43, 35, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(16, 43, 35, 0.09);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-a {
  top: 22%;
  left: 1%;
}

.tag-b {
  right: -3%;
  bottom: 28%;
}

.tag-c {
  bottom: 6%;
  left: 18%;
}

.local-first {
  min-height: 480px;
  background: #ebe5da;
}

.local-first .inline-cta {
  margin-top: 30px;
}

.local-visual {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
}

.data-ring {
  position: absolute;
  border: 1px solid rgba(16, 43, 35, 0.2);
  border-radius: 50%;
}

.ring-one {
  width: 190px;
  height: 190px;
}

.ring-two {
  width: 280px;
  height: 280px;
  border-style: dashed;
}

.ring-three {
  width: 360px;
  height: 360px;
  opacity: 0.55;
}

.data-core {
  z-index: 1;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  box-shadow: 0 22px 50px rgba(16, 43, 35, 0.25);
}

.data-core span {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.data-core small {
  margin-top: 6px;
  color: var(--sage);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.free {
  padding-top: 150px;
  padding-bottom: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 8vw;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
}

.free > * {
  width: auto;
  margin: 0;
}

.free::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.free-glow {
  position: absolute;
  top: -250px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(199, 154, 82, 0.3), transparent 68%);
}

.free-content {
  position: relative;
  z-index: 1;
  padding-left: max(32px, calc((100vw - 1240px) / 2));
}

.free .eyebrow {
  color: var(--gold-light);
}

.free h2 {
  max-width: 900px;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(56px, 6.8vw, 105px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.free-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
}

.free-content small {
  margin-top: 17px;
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.price-seal {
  position: relative;
  z-index: 1;
  width: min(330px, 80%);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  border: 1px solid rgba(227, 200, 143, 0.55);
  border-radius: 50%;
  animation: slow-float 5s ease-in-out infinite;
}

.price-seal::before,
.price-seal::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px dashed rgba(227, 200, 143, 0.24);
  border-radius: 50%;
}

.price-seal::after {
  inset: -15px;
  border-style: solid;
  opacity: 0.28;
}

.price-seal strong {
  font-family: var(--serif);
  font-size: 105px;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.price-seal span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 9vw;
}

.faq-grid > div:first-child {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-grid .display-heading {
  font-size: clamp(55px, 5.5vw, 84px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 50px 27px 0;
  display: block;
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.2;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: absolute;
  top: 26px;
  right: 4px;
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -6px 0 28px;
  padding-right: 50px;
  color: var(--muted);
}

.closing {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
}

.closing > img,
.closing-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing > img {
  object-fit: cover;
  object-position: center;
}

.closing-scrim {
  background: rgba(4, 20, 15, 0.63);
}

.closing-content {
  position: relative;
  z-index: 1;
  width: var(--page);
  text-align: center;
}

.closing-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 35px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.closing-mark svg {
  width: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.closing .eyebrow {
  color: var(--gold-light);
}

.closing h2 {
  margin: 0 0 42px;
  font-family: var(--serif);
  font-size: clamp(62px, 7.5vw, 112px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.site-footer {
  padding: 80px max(32px, calc((100vw - 1240px) / 2)) 38px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--ink-deep);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark-light {
  color: white;
}

.footer-top p {
  font-family: var(--serif);
  font-size: 25px;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  gap: 30px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: white;
}

.reveal {
  opacity: 1;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.02); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slow-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 1050px) {
  :root {
    --page: min(100% - 48px, 900px);
  }

  .hero h1 {
    max-width: 720px;
  }

  .story-book {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 35px;
  }

  .story-stage {
    min-height: 520px;
  }

  .feature-card {
    padding: 38px;
  }

  .feature-card-wide {
    gap: 35px;
  }

  .free {
    grid-template-columns: 1.4fr 0.6fr;
  }
}

@media (max-width: 780px) {
  :root {
    --page: calc(100% - 36px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
    padding: 0 18px;
  }

  .site-header:not(.is-scrolled) {
    color: white;
  }

  .wordmark {
    font-size: 18px;
  }

  .wordmark-mark {
    width: 32px;
    height: 32px;
  }

  .menu-toggle {
    z-index: 3;
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    padding: 110px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: white;
    background: var(--ink-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.3s ease, visibility 0.25s;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
  }

  .site-nav .button {
    margin-top: 36px;
    color: var(--ink) !important;
    background: var(--gold-light) !important;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
    align-items: end;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(5, 19, 15, 0.95) 0%, rgba(5, 19, 15, 0.7) 53%, rgba(5, 19, 15, 0.12) 100%),
      linear-gradient(90deg, rgba(5, 19, 15, 0.5), transparent);
  }

  .hero-content {
    width: var(--page);
    margin-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 76px);
    line-height: 0.9;
  }

  .hero-copy {
    margin: 27px 0 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    margin-top: 26px;
    flex-direction: column;
    gap: 5px;
  }

  .hero-proof span:last-child {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .section-kicker {
    margin-bottom: 46px;
  }

  .display-heading {
    font-size: clamp(48px, 13vw, 64px);
  }

  .intro-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-copy p,
  .features-heading p {
    font-size: 16px;
  }

  .intro-rule {
    margin-top: 65px;
    gap: 12px;
    overflow: hidden;
  }

  .intro-rule span:nth-of-type(2),
  .intro-rule span:nth-of-type(3) {
    display: none;
  }

  .story-heading {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .story-book {
    display: block;
  }

  .story-chapters {
    display: none;
  }

  .story-stage {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 8px 18px 30px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .story-stage::-webkit-scrollbar {
    display: none;
  }

  .story-panel {
    position: relative;
    inset: auto;
    min-width: 92%;
    height: 470px;
    flex: 0 0 92%;
    opacity: 1;
    visibility: visible;
    transform: none;
    scroll-snap-align: center;
  }

  .browser-frame img {
    object-position: top left;
  }

  .phones {
    min-width: 92%;
  }

  .phone {
    width: 45%;
  }

  .phone-back {
    margin-left: -35%;
  }

  .phone-front {
    margin-left: 32%;
  }

  .stage-progress {
    display: none;
  }

  .features-heading {
    margin-bottom: 55px;
  }

  .features-heading p {
    margin-left: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    min-height: 360px;
    padding: 30px;
    grid-column: auto;
    display: flex;
  }

  .feature-card-wide {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .bloom-visual {
    min-height: 320px;
    order: -1;
  }

  .orbit-a { width: 210px; height: 210px; }
  .orbit-b { width: 290px; height: 290px; }
  .bloom-center { width: 110px; height: 110px; }
  .bloom-center svg { width: 52px; }
  .tag-a { left: -2%; }
  .tag-b { right: -4%; }

  .local-visual {
    min-height: 300px;
    order: -1;
  }

  .ring-one { width: 150px; height: 150px; }
  .ring-two { width: 220px; height: 220px; }
  .ring-three { width: 280px; height: 280px; }

  .free {
    padding: 90px 18px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    align-items: flex-start;
  }

  .free-content {
    padding: 0;
  }

  .free h2 {
    font-size: clamp(58px, 15vw, 76px);
  }

  .price-seal {
    width: min(300px, 86vw);
    align-self: center;
  }

  .faq-grid > div:first-child {
    position: static;
  }

  .faq-list summary {
    font-size: 23px;
  }

  .closing {
    min-height: 680px;
  }

  .closing h2 {
    font-size: clamp(58px, 15.5vw, 78px);
  }

  .site-footer {
    padding: 60px 18px 30px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .footer-top p {
    margin: 0;
  }

  .footer-bottom {
    margin-top: 45px;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
