/* =====================================================
   COPILOT VOICE AGENTS — LANDING PAGE
   Editorial structure, technical typography.
   Forest green + cream palette, Geist Mono display,
   Geist body. Restrained, modern, code-aware.
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  --green:        #1F5E4B;
  --green-deep:   #143F32;
  --green-soft:   #2A6F58;
  --green-tint:   #E2DBD0;

  --cream:        #F5F1EA;
  --cream-warm:   #F8F4ED;
  --cream-soft:   #EFE9DD;
  --paper:        #FAF8F3;

  --gold:         #A88E63;
  --gold-soft:    #C2A87F;

  --ink:          #25241F;
  --ink-soft:     #5C5A52;
  --ink-faint:    #8E8B82;
  --line:         #DCD4C4;
  --line-soft:    #E8E2D5;

  --display: 'Geist Mono', 'JetBrains Mono', ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, monospace;
  --body:    'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max:          1180px;
  --max-narrow:   720px;
  --max-medium:   880px;

  --r-input:      999px;
  --r-button:     999px;
  --r-card:       4px;

  --ease:         cubic-bezier(.22, .61, .36, 1);
  --ease-soft:    cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input { font: inherit; }
ul { list-style: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.container.narrow { max-width: var(--max-narrow); }
.container.medium { max-width: var(--max-medium); }

/* ---------- Typography primitives ---------- */
.eyebrow,
.section-eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-eyebrow { color: var(--green); }

.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5.6vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--green);
}
.display.cream { color: var(--cream); }

.section-heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--green);
}

.prose {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.7;
  color: var(--ink);
  font-family: var(--body);
}

/* ===== MASTHEAD ============================================ */
.masthead {
  background: var(--green);
  color: var(--cream);
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.masthead-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.masthead-side {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.62);
  white-space: nowrap;
}
.masthead-left  { justify-self: start; }
.masthead-right { justify-self: end; }
.wordmark {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  justify-self: center;
}

/* ===== HERO ================================================ */
.hero {
  background: var(--cream);
  padding: clamp(72px, 11vw, 140px) 0 clamp(72px, 9vw, 120px);
  text-align: center;
  position: relative;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.brand-mark {
  width: 60px;
  height: auto;
  color: var(--green);
}
.brand-mark.cream-mark { color: var(--cream); }
.brand-mark.hero-logo {
  width: 80px;
}
.brand-mark.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero .display {
  max-width: 22ch;
  margin-top: 4px;
}
.hero .eyebrow {
  margin-bottom: -4px;
}
.hero-sub {
  max-width: 56ch;
  font-family: var(--body);
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink);
  margin-top: 4px;
}
.microcopy {
  font-family: var(--display);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-top: 0;
}
.microcopy.cream-soft { color: rgba(245, 241, 234, 0.55); }

/* ===== OPT-IN: SEPARATE INPUT + BUTTON ===================== */
.opt-in {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin-top: 12px;
}
.opt-in input {
  flex: 1;
  min-width: 0;
  background: var(--paper);
  border: 1px solid rgba(31, 94, 75, 0.14);
  border-radius: var(--r-input);
  outline: none;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  padding: 14px 24px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.opt-in input::placeholder {
  color: var(--ink-faint);
}
.opt-in input:hover {
  border-color: rgba(31, 94, 75, 0.24);
}
.opt-in input:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 94, 75, 0.12);
}
.opt-in button {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--r-button);
  padding: 0 28px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .2s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  border: 1px solid var(--green);
}
.opt-in button:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.opt-in button:active { transform: translateY(1px); }
.opt-in button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 94, 75, 0.25);
}

/* Dark variant for green background sections */
.opt-in-dark input {
  background: rgba(245, 241, 234, 0.97);
  border-color: rgba(245, 241, 234, 0.2);
  color: var(--ink);
}
.opt-in-dark input::placeholder {
  color: var(--ink-faint);
}
.opt-in-dark input:hover {
  border-color: rgba(245, 241, 234, 0.4);
  background: #fff;
}
.opt-in-dark input:focus {
  background: #fff;
  border-color: var(--cream);
  box-shadow: 0 0 0 3px rgba(245, 241, 234, 0.18);
}
.opt-in-dark button {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}
.opt-in-dark button:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--green-deep);
}

/* Success state */
.opt-in-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin-top: 12px;
  padding: 16px 22px;
  border-radius: var(--r-input);
  background: var(--paper);
  border: 1px solid rgba(31, 94, 75, 0.18);
  color: var(--green);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.opt-in-success.visible {
  opacity: 1;
  transform: translateY(0);
}
.opt-in-success svg { color: var(--green); }
.opt-in-success.dark {
  background: rgba(245, 241, 234, 0.08);
  border-color: rgba(245, 241, 234, 0.22);
  color: var(--cream);
}
.opt-in-success.dark svg { color: var(--cream); }

/* ===== EDITOR'S NOTE ======================================= */
.editors-note {
  position: relative;
  background: var(--cream);
  padding: clamp(96px, 12vw, 160px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.editors-note .bg-rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--green);
  opacity: 0.075;
  pointer-events: none;
}
.editors-inner {
  position: relative;
  text-align: center;
}
.editors-inner .section-eyebrow { margin-bottom: 18px; }
.editors-inner .section-heading { margin-bottom: 32px; }
.editors-inner .prose + .prose { margin-top: 22px; }

/* ===== COMPARISON ========================================== */
.comparison {
  background: var(--paper);
  padding: clamp(96px, 12vw, 160px) 0;
}
.comparison-head {
  text-align: center;
  margin-bottom: 64px;
}
.comparison-head .section-eyebrow { margin-bottom: 16px; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.col {
  padding: 56px 56px 64px;
  border-bottom: 1px solid var(--line);
}
.col:first-child {
  border-right: 1px solid var(--line);
}
.col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.col-tag {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
  background: var(--cream-soft);
  color: var(--ink-faint);
}
.col-tag.with-tag {
  background: var(--green);
  color: var(--cream);
}
.col-title {
  font-family: var(--display);
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: var(--green);
  letter-spacing: -0.012em;
}
.before-col .col-title { color: var(--ink-soft); }

.col-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.col-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.6;
}
.before-list li {
  color: var(--ink-soft);
}
.before-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 18px;
  height: 1px;
  background: var(--ink-faint);
  opacity: 0.6;
}
.with-list li {
  color: var(--ink);
}
.with-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F5E4B' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12.5 9.5 18 20 6.5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== LIFECYCLE =========================================== */
.lifecycle {
  background: var(--cream);
  padding: clamp(96px, 12vw, 160px) 0;
}
.lifecycle-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.lifecycle-head .section-eyebrow { margin-bottom: 18px; }
.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-rule {
  display: block;
  height: 2px;
  width: 56px;
  background: var(--green);
  margin-bottom: 20px;
}
.step-num {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.step-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  line-height: 1.25;
  color: var(--green);
  letter-spacing: -0.014em;
}
.step-body {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ===== VIGNETTES =========================================== */
.vignettes {
  background: var(--paper);
  padding: clamp(96px, 12vw, 160px) 0;
}
.vignettes-head {
  text-align: center;
  margin-bottom: 80px;
}
.vignettes-head .section-eyebrow { margin-bottom: 16px; }

.vignette {
  position: relative;
  padding: 36px 0 36px 56px;
  border-top: 1px solid var(--line);
}
.vignette:last-child {
  border-bottom: 1px solid var(--line);
}
.vignette-marker {
  position: absolute;
  left: 0;
  top: 40px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.vignette-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.1875rem, 2vw, 1.5rem);
  line-height: 1.25;
  color: var(--green);
  letter-spacing: -0.014em;
  margin-bottom: 14px;
}
.vignette-body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
}

/* ===== FINAL CTA =========================================== */
.final-cta {
  background: var(--green);
  color: var(--cream);
  padding: clamp(112px, 14vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(245, 241, 234, 0.06), transparent 55%),
    radial-gradient(circle at 50% 0%, rgba(168, 142, 99, 0.08), transparent 60%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta-sub {
  max-width: 56ch;
  font-family: var(--body);
  font-size: clamp(1.0625rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  color: rgba(245, 241, 234, 0.82);
}

/* ===== FOOTER ============================================== */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(245, 241, 234, 0.06);
}
.footer-bg-word {
  position: absolute;
  left: 50%;
  bottom: -2.5vw;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(245, 241, 234, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  flex-wrap: wrap;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-mark {
  display: inline-flex;
  width: 26px;
  color: var(--cream);
}
.footer-tagline {
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(245, 241, 234, 0.7);
}
.footer-nav a {
  position: relative;
  transition: color .2s var(--ease);
}
.footer-nav a:hover { color: var(--cream); }
.footer-nav .dot {
  color: rgba(245, 241, 234, 0.3);
}
.footer-meta {
  position: relative;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 11.5px;
  letter-spacing: 0.02em;
}
.footer-partnership {
  color: rgba(245, 241, 234, 0.78);
  letter-spacing: 0.04em;
}
.footer-copy {
  color: rgba(245, 241, 234, 0.42);
}

/* ===== LEGAL PAGES ========================================= */
.legal-hero {
  background: var(--cream);
  padding: clamp(80px, 10vw, 128px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.legal-back {
  display: inline-block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.legal-back:hover {
  color: var(--green);
  border-color: var(--green);
}
.legal-back .arrow {
  display: inline-block;
  margin-right: 6px;
  transition: transform .2s var(--ease);
}
.legal-back:hover .arrow { transform: translateX(-2px); }

.legal-hero .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.legal-hero .display {
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto;
}
.legal-meta {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 22px;
}

.legal-content {
  background: var(--paper);
  padding: clamp(72px, 9vw, 112px) 0 clamp(96px, 11vw, 144px);
}
.legal-content h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.1875rem, 1.8vw, 1.4375rem);
  color: var(--green);
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin-top: 56px;
  margin-bottom: 14px;
}
.legal-content > .container > h2:first-child,
.legal-content section:first-child h2 { margin-top: 0; }
.legal-content p {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
}
.legal-content p + ul { margin-top: 4px; }
.legal-content ul {
  margin: 4px 0 18px;
  padding-left: 0;
}
.legal-content ul li {
  position: relative;
  padding-left: 28px;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 8px;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s var(--ease);
}
.legal-content a:hover { color: var(--green-deep); }

@media (max-width: 600px) {
  .legal-content h2 { margin-top: 40px; font-size: 1.125rem; }
  .legal-content p,
  .legal-content ul li { font-size: 16.5px; line-height: 1.65; }
}

/* ===== ANIMATIONS ========================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s var(--ease) var(--d, 0ms),
    transform 0.7s var(--ease) var(--d, 0ms);
  will-change: opacity, transform;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ========================================== */

/* Tablet / large phone landscape */
@media (max-width: 880px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .col { padding: 44px 32px 48px; }
  .col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .lifecycle-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .lifecycle-head { margin-bottom: 56px; }
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-brand { justify-content: center; }
  .footer-nav { justify-content: center; }
}

/* Tablet portrait / large phone */
@media (max-width: 760px) {
  .masthead { display: none; }
  .footer-meta {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  body { font-size: 17px; line-height: 1.6; }
  .container { padding: 0 22px; }
  .wordmark { font-size: 11px; letter-spacing: 0.24em; }
  .prose { font-size: 17.5px; line-height: 1.65; }

  /* Section padding tightened so the page feels right on mobile */
  .hero { padding: 56px 0 48px; }
  .editors-note { padding: 64px 0; }
  .comparison { padding: 64px 0; }
  .lifecycle { padding: 64px 0; }
  .vignettes { padding: 64px 0; }
  .final-cta { padding: 80px 0; }
  .footer { padding: 56px 0 32px; }

  /* Hero */
  .brand-mark.hero-logo { width: 64px; }
  .hero-inner { gap: 18px; }
  .display {
    font-size: 2.125rem;
    line-height: 1.08;
    letter-spacing: -0.022em;
  }
  .hero-sub { font-size: 17px; line-height: 1.6; }

  /* Section headings */
  .section-heading {
    font-size: 1.625rem;
    line-height: 1.15;
  }
  .editors-inner .section-heading { margin-bottom: 24px; }
  .editors-inner .prose + .prose { margin-top: 18px; }
  .editors-note .bg-rays { opacity: 0.05; }

  /* Form, stacked. Bigger tap targets, no iOS zoom (16px input). */
  .opt-in {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .opt-in input {
    text-align: center;
    padding: 16px 22px;
  }
  .opt-in button {
    width: 100%;
    padding: 16px 22px;
    min-height: 48px;
  }
  .opt-in-success { padding: 18px 22px; }

  /* Comparison */
  .comparison-head { margin-bottom: 40px; }
  .col { padding: 36px 24px 40px; }
  .col-list { gap: 18px; }
  .col-list li { padding-left: 28px; font-size: 16.5px; line-height: 1.6; }

  /* Lifecycle */
  .lifecycle-head { margin-bottom: 56px; }
  .lifecycle-grid { gap: 48px; }
  .step-rule { width: 48px; }

  /* Vignettes */
  .vignettes-head { margin-bottom: 56px; }
  .vignette { padding: 28px 0 28px 36px; }
  .vignette-marker { font-size: 12px; top: 32px; }
  .vignette-body { font-size: 16.5px; line-height: 1.65; }
  .step-body { font-size: 16.5px; line-height: 1.6; }

  /* Final CTA */
  .final-cta-inner { gap: 20px; }
  .cta-sub { font-size: 17px; line-height: 1.6; }

  /* Footer */
  .footer-inner { padding-bottom: 36px; gap: 18px; }
  .footer-bg-word {
    font-size: clamp(4.5rem, 22vw, 8rem);
    bottom: -1.5vw;
  }
  .footer-tagline { font-size: 13.5px; }
  .footer-nav {
    gap: 10px;
    font-size: 12.5px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    padding: 6px 4px;
    display: inline-block;
  }
  .footer-meta { font-size: 11px; margin-top: 22px; }
}

/* Small phones (iPhone SE, older Android) */
@media (max-width: 400px) {
  .container { padding: 0 18px; }
  .display {
    font-size: 1.875rem;
    letter-spacing: -0.02em;
  }
  .section-heading { font-size: 1.4375rem; }
  .col { padding: 32px 20px 36px; }
  .col-list li { padding-left: 26px; font-size: 16px; }
  .vignette { padding-left: 32px; }
  .vignette-body { font-size: 16px; }
  .step-title { font-size: 1.0625rem; }
  .step-body { font-size: 16px; }
}

/* ===== Selection ========================================== */
::selection {
  background: var(--green);
  color: var(--cream);
}
