/* ===========================================================================
   CASE FLOW — Marketing Site
   Aesthetic: "Editorial Eucalypt" — Australian-earth restraint
   Typography: Fraunces (variable, serif, opsz + SOFT) + DM Sans (variable, sans)
   Layout: cream + warmblack workhorse, bark accents, single dark band
   =========================================================================== */

/* ===========================================================================
   1. DESIGN TOKENS
   =========================================================================== */
:root {
  /* Page surfaces */
  --cream:        #FAF8F5;
  --cream-dark:   #F2EFEA;
  --cream-deep:   #F2EEE6;
  --sand:         #E8E4DE;
  --sand-dark:    #D8D2CA;

  /* Brand teal — eucalyptus */
  --bark:         #2A8C7A;
  --bark-light:   #B8DDD3;
  --bark-soft:    #D7EDE6;
  --earth:        #1A6658;

  /* Warm earth highlights */
  --clay:         #C4735B;
  --clay-light:   #ECD5CC;
  --clay-soft:    #F4E5DD;
  --accent:       #D4A853;
  --accent-light: #F4E5BD;
  --accent-soft:  #FAF1D9;

  /* Neutrals */
  --warmblack:        #1A2B26;
  --warmblack-soft:   #2A3D37;
  --warm-gray:        #6B7D76;
  --warm-gray-light:  #9DAAA3;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino", Georgia, serif;
  --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Sizes */
  --type-eyebrow: 11px;
  --type-small:   13.5px;
  --type-body:    16.5px;
  --type-prose:   17px;
  --type-h3:      22px;

  /* Spacing — generous editorial rhythm */
  --space-xxs: 4px;
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  20px;
  --space-lg:  32px;
  --space-xl:  56px;
  --space-2xl: 96px;
  --space-3xl: 144px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows — soft, warm, never flat */
  --shadow-card:  0 1px 3px rgba(26, 43, 38, 0.06), 0 0 0 1px rgba(26, 43, 38, 0.02);
  --shadow-img:   0 24px 48px -16px rgba(26, 43, 38, 0.18), 0 8px 16px -8px rgba(26, 43, 38, 0.10);
  --shadow-cta:   0 4px 12px -4px rgba(26, 102, 88, 0.35);

  /* Container */
  --container-max: 1180px;
  --container-pad: 32px;

  /* Motion */
  --ease-soft: cubic-bezier(0.32, 0.72, 0.0, 1);
}

/* ===========================================================================
   2. RESET / BASE
   =========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.55;
  color: var(--warmblack);
  background: var(--cream);
  font-feature-settings: "ss01", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; padding: 0; color: inherit; }
code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  background: var(--cream-dark);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--sand);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--warmblack);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 100;
  text-decoration: none;
  font-size: var(--type-small);
}
.skip-link:focus { top: 16px; }

/* Selection */
::selection {
  background: var(--bark-light);
  color: var(--earth);
}

/* ===========================================================================
   3. TYPOGRAPHY (component classes)
   =========================================================================== */

/* Hero — Fraunces display, italic for emphasis via inline <em> */
.hero {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--warmblack);
  max-width: 14ch;
}
.hero em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  color: var(--earth);
  /* Optical correction — italics need a touch more letter-spacing */
  letter-spacing: -0.012em;
}

.hero--cream { color: var(--cream); }
.hero--cream em { color: var(--bark-light); }

/* Section heading — smaller display */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 600;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 var(--space-md);
  color: var(--warmblack);
  max-width: 22ch;
}
.section-heading em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 60;
  color: var(--earth);
}

/* Eyebrow — small UPPERCASE label */
.eyebrow {
  font-size: var(--type-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin: 0 0 var(--space-md);
  font-feature-settings: "tnum";
}
.eyebrow em {
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 100;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--earth);
  font-weight: 500;
  font-size: 1.15em;
  margin-left: 2px;
}
.eyebrow--dark {
  color: var(--bark-light);
  opacity: 0.85;
}
.eyebrow--dark em { color: var(--bark-light); }

/* Lede / prose */
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--warm-gray);
  margin: 0 0 var(--space-lg);
  max-width: 38ch;
  font-weight: 400;
}
.prose {
  font-size: var(--type-prose);
  line-height: 1.65;
  color: var(--warmblack);
  margin: 0 0 var(--space-md);
  max-width: 56ch;
}
.prose strong { font-weight: 600; }

/* ===========================================================================
   4. COMPONENT — Brand glyph (∞ / interlocking circles)
   =========================================================================== */
.brand-glyph {
  color: var(--bark);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-soft);
}
.nav-brand:hover .brand-glyph { transform: rotate(-8deg); }

/* ===========================================================================
   5. COMPONENT — Tag (rounded pill)
   =========================================================================== */
.tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--cream-dark);
  color: var(--warm-gray);
  border: 1px solid var(--sand);
}
.tag--bark   { background: var(--bark-soft);   color: var(--earth);   border-color: var(--bark-light); }
.tag--clay   { background: var(--clay-soft);   color: var(--clay);    border-color: transparent; }
.tag--accent { background: var(--accent-soft); color: #8a6914;        border-color: transparent; }

/* ===========================================================================
   6. COMPONENT — Buttons
   =========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 0.18s var(--ease-soft), background 0.18s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bark);
  color: var(--cream);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: var(--earth);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -4px rgba(26, 102, 88, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--warmblack);
  border-color: transparent;
  padding: 14px 16px;
}
.btn-ghost:hover {
  border-color: var(--sand-dark);
  background: var(--cream-dark);
}

.btn-large {
  padding: 18px 30px;
  font-size: 16.5px;
}

/* ===========================================================================
   7. COMPONENT — Trust badge
   =========================================================================== */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-lg);
  font-size: var(--type-small);
  color: var(--warm-gray);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--cream-dark);
  border: 1px solid var(--sand);
}
.trust-badge svg { color: var(--bark); flex-shrink: 0; }
.trust-badge span { line-height: 1.35; }

/* ===========================================================================
   8. NAV
   =========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}
.nav.scrolled { border-bottom-color: var(--sand); }

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--warmblack);
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 24, "SOFT" 50;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--warmblack);
  transition: background 0.18s var(--ease-soft), color 0.18s var(--ease-soft);
}
.nav-links li a:hover { background: var(--cream-dark); }

.nav-cta {
  background: var(--warmblack);
  color: var(--cream) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--warmblack-soft) !important; }

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--warmblack);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-soft);
}
.nav-toggle:hover { background: var(--cream-dark); }

/* ===========================================================================
   9. SECTION SCAFFOLDING
   =========================================================================== */
.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section-head { margin-bottom: var(--space-xl); }

/* ===========================================================================
   10. HERO BLOCK
   =========================================================================== */
.hero-block {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-3xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, var(--cream-deep) 0%, var(--cream) 60%);
}

/* Aurora — barely-perceptible eucalyptus glow behind hero */
.hero-aurora {
  position: absolute;
  inset: -10% -20% auto auto;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(184, 221, 211, 0.35) 0%, rgba(184, 221, 211, 0) 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--space-3xl);
  align-items: center;
}

.hero-text { max-width: 620px; }

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px var(--space-md);
}

/* Hero visual — phone screenshot, no mockup frame */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.hero-visual-glow {
  position: absolute;
  width: 110%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(42, 140, 122, 0.08) 0%, rgba(42, 140, 122, 0) 60%);
  filter: blur(32px);
  pointer-events: none;
  z-index: -1;
}
.hero-screenshot {
  width: clamp(280px, 42vw, 420px);
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-img);
  background: var(--cream);
}
.hero-caption {
  margin: 0;
  font-size: var(--type-small);
  color: var(--warm-gray);
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 100;
  font-weight: 400;
}
.hero-caption em {
  font-style: italic;
  color: var(--earth);
  font-weight: 500;
}

/* ===========================================================================
   11. HOW IT WORKS
   =========================================================================== */
.how-it-works {
  padding: var(--space-3xl) 0 var(--space-2xl);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.how-card {
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease-soft), box-shadow 0.28s var(--ease-soft);
}
.how-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(26, 43, 38, 0.10);
}
.how-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-md);
}
.how-icon--clay  { background: var(--clay-soft);  color: var(--clay); }
.how-icon--bark  { background: var(--bark-soft);  color: var(--bark); }
.how-icon--earth { background: var(--bark-light); color: var(--earth); }

.how-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  font-variation-settings: "opsz" 48, "SOFT" 50;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--warmblack);
  margin: 0 0 10px;
}
.how-title em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 70;
  color: var(--earth);
}
.how-body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--warm-gray);
  margin: 0;
}

/* Mic-to-doc decorative tile */
.mic-to-doc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: var(--space-md);
}
.mic-tile {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  display: grid;
  place-items: center;
}
.mic-tile--clay { background: var(--clay-soft);  color: var(--clay); }
.mic-tile--bark { background: var(--bark-soft);  color: var(--earth); }
.mic-arrow {
  font-size: 22px;
  color: var(--warm-gray-light);
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 48, "SOFT" 100;
}

/* ===========================================================================
   12. WHY VOICE
   =========================================================================== */
.why-voice {
  padding: var(--space-2xl) 0;
}
.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-3xl);
  align-items: center;
}
.why-list {
  margin: var(--space-md) 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-list li {
  position: relative;
  padding-left: 24px;
  font-size: var(--type-prose);
  line-height: 1.55;
  color: var(--warmblack);
  max-width: 56ch;
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bark);
}
.why-screenshot {
  width: clamp(260px, 40vw, 380px);
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-img);
  margin: 0 auto;
  background: var(--cream);
}

/* ===========================================================================
   13. TRUST BAND (DARK)
   =========================================================================== */
.trust-band {
  background: var(--warmblack);
  color: var(--cream);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.trust-band::before {
  /* Subtle ambient glow on the dark band, eucalyptus-toned */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(42, 140, 122, 0.15) 0%, rgba(42, 140, 122, 0) 60%);
  pointer-events: none;
}
.trust-inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
}
.trust-heading {
  margin: 0 auto var(--space-2xl);
  max-width: 18ch;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  text-align: left;
}
.trust-pillar {
  padding: 0;
}
.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(184, 221, 211, 0.10);
  border: 1px solid rgba(184, 221, 211, 0.16);
  display: grid;
  place-items: center;
  color: var(--bark-light);
  margin-bottom: var(--space-md);
}
.trust-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--cream);
}
.trust-body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(250, 248, 245, 0.72);
  margin: 0;
  max-width: 32ch;
}
.trust-body code {
  background: rgba(184, 221, 211, 0.10);
  border-color: rgba(184, 221, 211, 0.18);
  color: var(--bark-light);
}
.trust-foot {
  font-size: var(--type-small);
  color: rgba(250, 248, 245, 0.55);
  margin: var(--space-lg) 0 0;
  text-align: center;
}

/* ===========================================================================
   14. MODES
   =========================================================================== */
.modes {
  padding: var(--space-3xl) 0 var(--space-2xl);
}
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.mode-card {
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.mode-card .tag {
  margin-bottom: var(--space-md);
}
.mode-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  font-variation-settings: "opsz" 48, "SOFT" 50;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--warmblack);
}
.mode-title em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 70;
  color: var(--earth);
}
.mode-body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--warm-gray);
  margin: 0;
}
.modes-screenshot {
  display: flex;
  justify-content: center;
}
.modes-img {
  width: clamp(260px, 36vw, 360px);
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-img);
  background: var(--cream);
}

/* ===========================================================================
   15. CLOSING CTA
   =========================================================================== */
.closing {
  padding: var(--space-3xl) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, var(--cream-deep) 0%, var(--cream) 70%);
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.closing-heading {
  margin: 0 auto var(--space-md);
  max-width: 18ch;
  text-align: center;
}
.closing-lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--warm-gray);
  margin: 0 0 var(--space-lg);
}
.closing-foot {
  margin: var(--space-md) 0 0;
  font-size: var(--type-small);
  color: var(--warm-gray);
}
.closing-foot-b2b {
  margin: var(--space-sm) 0 0;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.closing-foot-b2b a {
  color: var(--bark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* ===========================================================================
   16. FOOTER
   =========================================================================== */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  background: var(--cream);
  border-top: 1px solid var(--sand);
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: var(--space-3xl);
  align-items: start;
}
.footer-brand .brand-glyph { color: var(--bark); margin-bottom: var(--space-sm); }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--warmblack);
}
.footer-tag {
  font-size: var(--type-small);
  color: var(--warm-gray);
  margin: 0;
  max-width: 28ch;
  line-height: 1.5;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.footer-col-title {
  font-size: var(--type-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-gray);
  margin: 0 0 var(--space-md);
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--warmblack);
  transition: color 0.18s var(--ease-soft);
}
.footer-col a:hover { color: var(--earth); }

.footer-rule {
  height: 1px;
  background: var(--sand);
  margin: var(--space-xl) auto 0;
  max-width: var(--container-max);
}
.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-md) var(--container-pad) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--warm-gray);
}
.footer-bottom p { margin: 0; }
.footer-bottom em {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  color: var(--earth);
  font-weight: 500;
}

/* ===========================================================================
   17. RESPONSIVE — mobile (≤ 760px)
   =========================================================================== */
@media (max-width: 1020px) {
  .hero-inner { gap: var(--space-2xl); }
  .why-inner { gap: var(--space-2xl); }
}

@media (max-width: 860px) {
  :root {
    --container-pad: 22px;
    --space-2xl: 64px;
    --space-3xl: 88px;
  }

  /* Nav: collapse to hamburger */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 22px 22px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease-soft), opacity 0.3s var(--ease-soft);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid var(--sand);
    border-radius: 0;
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-cta {
    margin-top: 8px;
    border-radius: var(--radius-md) !important;
  }

  /* Hero: stack */
  .hero-block { padding: var(--space-xl) 0 var(--space-2xl); }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .hero-aurora { width: 460px; height: 460px; }
  .hero-screenshot { width: min(320px, 80vw); }

  /* How: stack on small screens */
  .how-grid { grid-template-columns: 1fr; }

  /* Why: stack */
  .why-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .why-screenshot { width: min(280px, 70vw); margin: 0 auto; }

  /* Trust band: stack */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: left;
  }
  .trust-band { padding: var(--space-2xl) 0; }

  /* Modes: stack */
  .modes-grid { grid-template-columns: 1fr; }
  .modes-img { width: min(280px, 70vw); }

  /* Footer: stack */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  :root {
    --type-prose: 16px;
  }
  .hero { font-size: clamp(2.1rem, 9vw, 3rem); }
  .section-heading { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  .cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn { justify-content: center; padding: 16px 22px; }
  .trust-badge {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .footer-cols { grid-template-columns: 1fr; }
}

/* ===========================================================================
   18. ACCESSIBILITY — focus rings + reduced motion
   =========================================================================== */
:focus-visible {
  outline: 2px solid var(--earth);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================================================================
   19. PAGE LOAD CHOREOGRAPHY — staggered fade-in
   =========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * {
  animation: fadeUp 0.6s var(--ease-soft) backwards;
}
.hero-text .eyebrow      { animation-delay: 0.05s; }
.hero-text .hero         { animation-delay: 0.12s; }
.hero-text .lede         { animation-delay: 0.22s; }
.hero-text .cta-row      { animation-delay: 0.32s; }
.hero-text .trust-badge  { animation-delay: 0.40s; }
.hero-visual {
  animation: fadeUp 0.7s var(--ease-soft) 0.18s backwards;
}

/* ===========================================================================
   20. VALUE — turnover-cost section (added 2026-05-22 for v3 positioning)
   Three big-number cards: $112K avoided turnover · 5.5 hrs per week ·
   9.1/10 quality. Restrained, professional, not loud.
   =========================================================================== */
.value {
  padding: 120px 24px;
  background: var(--cream);
  position: relative;
}
.value::before {
  /* A soft cream-deep band underneath, giving the section a quiet
     "this is a separate frame" presence without a hard divider. */
  content: '';
  position: absolute;
  inset: 60px 0 60px 0;
  background: var(--cream-dark);
  z-index: 0;
  border-radius: 0;
}
.value .section-inner { position: relative; z-index: 1; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 32px;
}
@media (max-width: 880px) {
  .value-grid { grid-template-columns: 1fr; gap: 16px; }
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft);
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42, 60, 56, 0.06);
}
.value-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: var(--earth);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.value-num-suffix {
  font-size: 28px;
  color: var(--bark);
  font-weight: 500;
  letter-spacing: 0;
}
.value-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 12px;
}
.value-card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a48;
  margin: 0;
}
.value-foot {
  font-size: 13px;
  color: #76746e;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

/* ===========================================================================
   20b. PRICING — two-track cards linking to the web signup funnel.
   Mirrors the .value-card treatment (same radius/shadow language) so it
   reads as part of the same system, not a bolted-on SaaS pricing table.
   =========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 28px;
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
}
.pricing-card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft);
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42, 60, 56, 0.06);
}
.pricing-card--featured {
  background: var(--bark-soft);
  border-color: var(--bark-light);
}
.pricing-card-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  margin: 0 0 10px 0;
}
.pricing-card-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--warmblack);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}
.pricing-card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a48;
  margin: 0 0 24px 0;
  flex: 1;
}
.pricing-card-cta {
  align-self: flex-start;
}
.pricing-foot {
  font-size: 13.5px;
  color: #76746e;
  text-align: center;
  margin-top: 8px;
}
.pricing-foot a {
  color: var(--earth);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--bark-light);
}
.pricing-foot a:hover {
  border-bottom-color: var(--earth);
}

/* ===========================================================================
   21. VISIT TYPES — one-flow, six-shapes list (added 2026-05-22).
   Replaces the old three-modes section; surfaces the question_flow_v2
   interaction types so prospects can see the flow adapts.
   =========================================================================== */
.visit-types {
  list-style: none;
  padding: 0;
  margin: 48px 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .visit-types { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .visit-types { grid-template-columns: 1fr; }
}
.visit-type {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.2s var(--ease-soft), transform 0.2s var(--ease-soft);
}
.visit-type:hover {
  border-color: var(--bark-light);
  transform: translateY(-1px);
}
.visit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.visit-dot--bark { background: var(--bark); }
.visit-dot--sage { background: var(--earth); }
.visit-dot--clay { background: var(--clay); }
.visit-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--earth);
}
.visit-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #76746e;
  margin-left: auto;
  text-align: right;
}
@media (max-width: 540px) {
  .visit-sub { margin-left: 22px; text-align: left; }
  .visit-type { flex-wrap: wrap; }
}

/* ===========================================================================
   22. CULTURAL HUMILITY — a quiet, clearly-bounded statement (2026-05-22)
   The Design Brief commits us to support self-determination, not claim
   cultural authority. This section makes that visible.
   =========================================================================== */
.humility {
  padding: 80px 24px 100px;
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}
.humility-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.humility-heading {
  font-size: clamp(28px, 4vw, 42px) !important;
  margin-bottom: 24px;
}
.humility .prose {
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
}
.humility .eyebrow {
  text-align: center;
}
