:root {
  color-scheme: light;
  --paper: #f7f5f0;
  --paper-deep: #efebe4;
  --card: #fffdfa;
  --ink: #22241f;
  --ink-soft: #494740;
  --muted: #706e67;
  --line: #ded9d0;
  --sage-50: #f1f5f2;
  --sage-100: #dfe9e2;
  --sage-200: #c4d5c9;
  --sage-400: #819f8c;
  --sage-500: #65816f;
  --sage-600: #4d6758;
  --sage-800: #304139;
  --sage-900: #24322b;
  --gold-100: #f9e9c6;
  --gold-300: #e6b44f;
  --blue-100: #d6e9f2;
  --blue-700: #1e4c60;
  --shadow-sm: 0 1px 2px rgba(34, 36, 31, 0.06), 0 8px 26px rgba(34, 36, 31, 0.05);
  --shadow-lg: 0 24px 80px rgba(36, 50, 43, 0.16), 0 5px 20px rgba(34, 36, 31, 0.08);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --max: 1180px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 3%, rgba(230, 180, 79, 0.13), transparent 31rem),
    radial-gradient(circle at 6% 34%, rgba(129, 159, 140, 0.12), transparent 28rem);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 217, 208, 0.82);
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav-wrap {
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--sage-900);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(36, 50, 43, 0.16);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-menu > a,
.nav-dropdown > summary {
  display: inline-flex;
  min-height: 44px;
  padding: 9px 13px;
  align-items: center;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.nav-menu > a:hover,
.nav-menu > a[aria-current="page"],
.nav-dropdown > summary:hover {
  background: var(--sage-100);
  color: var(--sage-900);
}

.nav-menu > .button-primary,
.nav-menu > .button-primary[aria-current="page"] {
  background: var(--sage-900);
  color: #fff;
}

.nav-menu > .button-primary:hover {
  background: var(--sage-600);
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.nav-dropdown[open] > summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 330px;
  padding: 10px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow-lg);
}

.nav-popover a {
  display: grid;
  padding: 11px 13px;
  gap: 2px;
  border-radius: 12px;
  text-decoration: none;
}

.nav-popover a:hover {
  background: var(--sage-50);
}

.nav-popover strong {
  color: var(--sage-900);
  font-size: 14px;
}

.nav-popover span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--sage-100);
  color: var(--sage-900);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 800px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 9px;
  color: var(--sage-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--sage-400);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 900px;
  margin-bottom: 25px;
  font-size: clamp(3.3rem, 7.2vw, 6.7rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  line-height: 1.58;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(74px, 10vw, 134px) 0 96px;
}

.hero::after {
  position: absolute;
  top: 5%;
  right: -10%;
  z-index: -1;
  width: min(48vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(101, 129, 111, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 233, 226, 0.78), transparent 65%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.hero h1 em {
  color: var(--sage-600);
  font-style: normal;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 21px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--sage-900);
  color: white;
  box-shadow: 0 12px 30px rgba(36, 50, 43, 0.2);
}

.button-primary:hover {
  background: var(--sage-800);
  box-shadow: 0 16px 38px rgba(36, 50, 43, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 250, 0.75);
  color: var(--sage-900);
}

.button-secondary:hover {
  border-color: var(--sage-200);
  background: var(--sage-50);
}

.arrow {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.button:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(3px);
}

.trust-line {
  display: flex;
  margin-top: 31px;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
  content: "";
}

.hero-availability {
  max-width: 500px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-availability p {
  margin-bottom: 0;
}

.hero-availability p strong {
  display: block;
  color: var(--sage-900);
  font-size: 15px;
}

.hero-availability p span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.hero-availability .store-row {
  margin-top: 13px;
}

.hero-availability .store-badge {
  min-width: 182px;
  min-height: 56px;
  border-color: #17261f;
  background: linear-gradient(145deg, #30443a, #1d2d25);
  color: #fff;
  box-shadow: 0 10px 26px rgba(36, 50, 43, 0.18);
}

.hero-availability .store-badge small {
  color: #dfe9e2;
}

.hero-availability .store-badge strong {
  color: #fff;
}

.phone-stage {
  position: relative;
  min-height: 620px;
}

.phone {
  position: absolute;
  top: 0;
  right: 5%;
  width: min(340px, 88vw);
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 48px;
  background: var(--sage-900);
  box-shadow: var(--shadow-lg);
  transform: rotate(2.2deg);
}

.phone-screen {
  min-height: 578px;
  padding: 24px 18px 18px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--paper);
}

.phone-notch {
  width: 94px;
  height: 9px;
  margin: -8px auto 24px;
  border-radius: 999px;
  background: var(--sage-800);
}

.phone-kicker {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
}

.phone-title {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.app-card {
  margin-bottom: 11px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.app-card.accent {
  border: 0;
  background: var(--sage-100);
}

.app-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--sage-600);
  color: white;
  font-size: 17px;
  font-weight: 800;
}

.app-label {
  display: grid;
  flex: 1;
  gap: 3px;
}

.app-label strong {
  font-size: 14px;
  line-height: 1.2;
}

.app-label small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.progress {
  height: 7px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(77, 103, 88, 0.14);
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--sage-600);
}

.floating-note {
  position: absolute;
  right: -1%;
  bottom: 50px;
  width: 245px;
  padding: 18px;
  border: 1px solid rgba(222, 217, 208, 0.88);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.95);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.floating-note::before {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: var(--gold-300);
  content: "";
}

.floating-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sage-900);
  font-size: 14px;
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-soft {
  border-block: 1px solid rgba(222, 217, 208, 0.7);
  background: rgba(239, 235, 228, 0.52);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--sage-900);
  color: #f7f5f0;
}

.section-dark::before {
  position: absolute;
  inset: -50% auto auto 55%;
  width: 650px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 159, 140, 0.22), transparent 67%);
  content: "";
}

.section-dark .eyebrow,
.section-dark .lead {
  color: var(--sage-200);
}

.section-heading {
  display: flex;
  margin-bottom: 48px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > * {
  margin-bottom: 0;
}

.section-heading .lead {
  max-width: 550px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.audience-card,
.quote-card,
.stat-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.content-card {
  min-width: 0;
  padding: clamp(24px, 3.5vw, 38px);
}

.feature-card {
  min-height: 286px;
  padding: 28px;
}

.feature-card:nth-child(2n) {
  background: var(--sage-50);
}

.feature-card:nth-child(3n) {
  background: #fbf5e8;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--sage-900);
  color: white;
  font-size: 19px;
  font-weight: 800;
}

.feature-card p,
.audience-card p,
.content-card p {
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-600);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.audience-card {
  position: relative;
  min-height: 330px;
  padding: 33px;
  overflow: hidden;
}

.audience-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--sage-100);
  content: "";
}

.audience-card:nth-child(2)::after {
  background: var(--gold-100);
}

.audience-card:nth-child(3)::after {
  background: var(--blue-100);
}

.audience-number {
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--sage-500);
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
}

.audience-card > * {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.split > * {
  min-width: 0;
}

.binder-visual {
  position: relative;
  min-height: 540px;
}

.binder {
  position: absolute;
  inset: 3% 10% 5% 5%;
  padding: 45px 42px;
  border-radius: 14px 38px 38px 14px;
  background: #fffdfa;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.binder::before {
  position: absolute;
  inset: 0 auto 0 28px;
  width: 2px;
  background: var(--line);
  content: "";
}

.binder-tab {
  position: absolute;
  right: -18px;
  width: 70px;
  height: 35px;
  border-radius: 0 10px 10px 0;
  background: var(--sage-200);
}

.binder-tab:nth-child(1) { top: 70px; }
.binder-tab:nth-child(2) { top: 125px; background: var(--gold-100); }
.binder-tab:nth-child(3) { top: 180px; background: var(--blue-100); }

.binder h3 {
  margin-top: 60px;
  color: var(--sage-900);
  font-family: var(--font-display);
  font-size: 34px;
}

.binder-rule {
  height: 1px;
  margin: 24px 0;
  background: var(--line);
}

.binder-row {
  display: flex;
  padding: 11px 0;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--paper-deep);
  color: var(--ink-soft);
  font-size: 13px;
}

.binder-row::before {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--sage-100);
  content: "";
}

.check-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 2px;
}

.check-list li::before {
  display: grid;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-800);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.check-list strong {
  display: block;
  grid-column: 2;
  font-size: 15px;
}

.check-list span {
  display: block;
  grid-column: 2;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-dark .check-list strong {
  color: #fff;
}

.section-dark .check-list span {
  color: var(--sage-200);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(196, 213, 201, 0.2);
  border-radius: var(--radius);
  background: rgba(196, 213, 201, 0.2);
}

.metric {
  padding: 32px;
  background: rgba(36, 50, 43, 0.88);
}

.metric strong {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.metric span {
  color: var(--sage-200);
  font-size: 13px;
}

.store-row {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  min-width: 190px;
  min-height: 60px;
  padding: 10px 16px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(196, 213, 201, 0.28);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.store-badge svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.store-badge small,
.store-badge strong {
  display: block;
  line-height: 1.25;
}

.store-badge small {
  color: var(--sage-200);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge strong {
  font-size: 16px;
}

.page-hero {
  padding: clamp(80px, 11vw, 144px) 0 74px;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
}

.breadcrumbs {
  display: flex;
  margin: 0 0 31px;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  color: var(--line);
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

.answer-box {
  max-width: 890px;
  margin-top: 35px;
  padding: 25px 28px;
  border-left: 4px solid var(--sage-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--sage-50);
}

.answer-box strong {
  display: block;
  margin-bottom: 7px;
  color: var(--sage-900);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-box p:last-child {
  margin-bottom: 0;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.fact {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 250, 0.72);
}

.fact strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sage-900);
  font-size: 14px;
}

.fact span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.prose {
  color: var(--ink-soft);
}

.prose h2 {
  margin-top: 72px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.prose h3 {
  margin-top: 38px;
  color: var(--ink);
}

.prose p,
.prose li {
  max-width: 760px;
}

.prose a {
  color: var(--sage-600);
  font-weight: 650;
}

.prose table {
  width: 100%;
  margin: 30px 0;
  border-collapse: separate;
  border: 1px solid var(--line);
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  font-size: 14px;
}

.prose th,
.prose td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose tr:last-child td {
  border-bottom: 0;
}

.prose th {
  background: var(--sage-50);
  color: var(--sage-900);
}

.step-list {
  display: grid;
  margin: 30px 0;
  padding: 0;
  gap: 14px;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  display: block;
  max-width: none;
  min-height: 88px;
  padding: 23px 23px 23px 83px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  counter-increment: steps;
}

.step-list li::before {
  position: absolute;
  top: 23px;
  left: 23px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--sage-900);
  color: white;
  content: counter(steps, decimal-leading-zero);
  font-size: 12px;
  font-weight: 800;
}

.step-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}

.faq-list summary {
  display: flex;
  min-height: 60px;
  padding: 18px 52px 18px 20px;
  align-items: center;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  right: 21px;
  color: var(--sage-600);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: none;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
}

.cta-panel {
  position: relative;
  display: grid;
  padding: clamp(36px, 7vw, 76px);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 38px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sage-100);
}

.cta-panel::after {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(77, 103, 88, 0.16);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  max-width: 700px;
  margin-bottom: 10px;
}

.cta-panel p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 76px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 56px;
}

.footer-intro p {
  max-width: 360px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-col strong {
  display: block;
  margin-bottom: 13px;
  color: var(--sage-900);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--sage-600);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  margin-top: 62px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.coming-pill {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--sage-200);
  border-radius: 999px;
  background: var(--sage-50);
  color: var(--sage-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-note {
  padding: 17px 20px;
  border: 1px solid var(--gold-100);
  border-radius: 14px;
  background: #fdf6e9;
  color: #5a3a0b;
  font-size: 14px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js [data-reveal][data-visible] {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .phone-stage {
    width: min(100%, 620px);
    margin: 20px auto 0;
  }

  .phone {
    right: 18%;
  }

  .floating-note {
    right: 5%;
  }

  .grid-3,
  .grid-4,
  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-col:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    position: relative;
    min-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(380px, calc(100vw - 40px));
    padding: 10px;
    align-items: stretch;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--card);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu[data-open] {
    display: grid;
  }

  .nav-menu > a,
  .nav-dropdown > summary {
    justify-content: space-between;
    border-radius: 11px;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-popover {
    position: static;
    width: 100%;
    margin-top: 2px;
    border: 0;
    box-shadow: none;
  }

  .section-heading {
    display: grid;
    gap: 12px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .fact-grid,
  .metrics,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .audience-card {
    min-height: auto;
  }

  .feature-icon,
  .audience-number {
    margin-bottom: 34px;
  }

  .binder-visual {
    min-height: 490px;
  }

  .footer-col:last-child {
    grid-column: auto;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .prose table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow,
  .nav-wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  .lead {
    font-size: 1.05rem;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .phone-stage {
    min-height: 610px;
  }

  .phone {
    right: 0;
    left: 0;
    margin: auto;
  }

  .floating-note {
    right: 0;
    bottom: 20px;
    width: 220px;
  }

  .binder {
    inset: 0 8% 5% 0;
    padding: 30px 26px 30px 46px;
  }

  .content-card {
    padding: 24px;
  }

  .step-list li {
    padding: 21px 20px 21px 76px;
  }

  .step-list li::before {
    top: 21px;
    left: 20px;
  }

  .store-row,
  .store-badge {
    width: 100%;
  }
}

@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;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: #807a70;
    --muted: #494740;
  }

  .button,
  .feature-card,
  .audience-card,
  .content-card,
  .faq-list details {
    border-width: 2px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .actions,
  .store-row,
  .phone-stage,
  .binder-visual {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .section,
  .page-hero {
    padding: 24px 0;
  }

  a {
    text-decoration: none;
  }
}
