@import url("../fonts/fonts.css");

/* =========================================================
   Tokens
   ========================================================= */
:root {
  --bg: #F5F1E8;
  --surface: #FBF8F1;
  --surface-2: #EFE7D7;        /* warm clay beige band */
  --clay-beige: #E7DECB;
  --ink: #2B2A24;              /* warm near-black */
  --ink-soft: #6E685B;
  --line: #E4DCCB;

  --accent: #8FB14E;           /* matcha-olive (the green "cap") */
  --accent-deep: #6F8E37;
  --accent-soft: #E7EFD4;      /* pale green tint */
  --on-accent: #213007;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* clay = soft outer drop + inner top highlight + inner bottom shade (puffy/inflated) */
  --clay: 0 20px 44px -22px rgba(74,60,28,.32), 0 6px 14px -8px rgba(74,60,28,.12), inset 0 2.5px 1px rgba(255,255,255,.8), inset 0 -11px 20px -11px rgba(120,100,58,.16);
  --clay-sm: 0 12px 26px -16px rgba(74,60,28,.28), inset 0 2px 1px rgba(255,255,255,.78), inset 0 -8px 14px -9px rgba(120,100,58,.14);
  --lift: 0 32px 62px -26px rgba(74,60,28,.42), 0 12px 24px -12px rgba(74,60,28,.16), inset 0 2.5px 1px rgba(255,255,255,.82), inset 0 -11px 20px -11px rgba(120,100,58,.16);

  --font-head: "Unbounded", system-ui, sans-serif;
  --font-body: "Golos Text", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
}

/* =========================================================
   Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;          /* offset for sticky header */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.container { width: min(var(--container), 90vw); margin-inline: auto; }

/* generic icon (sprite) */
.ic { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; flex: none; }

/* =========================================================
   Typography helpers
   ========================================================= */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.kicker::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.h-display { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
.h-section { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft); }

.section { padding-block: clamp(68px, 9vw, 128px); position: relative; }
.section-head { max-width: 620px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .kicker { margin-bottom: 18px; }
.section-head p { margin: 16px 0 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  /* squishy clay press */
  transition: transform .16s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease, background .2s ease;
}
.btn .ic { width: 20px; height: 20px; }
.btn .tg-logo { width: 21px; height: 21px; }

/* Primary — green clay pill */
.btn-tg {
  background: linear-gradient(180deg, #A6CC63 0%, #84AC43 100%);
  color: #fff;
  text-shadow: 0 1px 1px rgba(58,80,24,.4);
  box-shadow:
    0 14px 24px -10px rgba(96,128,46,.55),
    0 4px 8px -3px rgba(96,128,46,.30),
    inset 0 3px 3px rgba(255,255,255,.55),
    inset 0 -7px 9px -3px rgba(74,99,32,.55);
}
.btn-tg:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 32px -10px rgba(96,128,46,.62),
    0 6px 12px -4px rgba(96,128,46,.32),
    inset 0 3px 3px rgba(255,255,255,.6),
    inset 0 -7px 9px -3px rgba(74,99,32,.55);
}
.btn-tg:active {
  transform: translateY(2px) scale(.985);
  box-shadow:
    0 6px 12px -8px rgba(96,128,46,.5),
    inset 0 4px 7px rgba(74,99,32,.5),
    inset 0 -2px 3px rgba(255,255,255,.25);
}

/* Secondary — cream clay pill */
.btn-ghost {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1EBDB 100%);
  color: var(--ink);
  box-shadow:
    0 14px 24px -12px rgba(74,60,28,.30),
    0 3px 7px -4px rgba(74,60,28,.16),
    inset 0 3px 3px rgba(255,255,255,.9),
    inset 0 -7px 10px -4px rgba(120,100,58,.18);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 32px -12px rgba(74,60,28,.34),
    0 5px 10px -5px rgba(74,60,28,.18),
    inset 0 3px 3px rgba(255,255,255,.95),
    inset 0 -7px 10px -4px rgba(120,100,58,.18);
}
.btn-ghost:active {
  transform: translateY(2px) scale(.985);
  box-shadow:
    0 5px 10px -8px rgba(74,60,28,.3),
    inset 0 4px 7px rgba(120,100,58,.22);
}

.btn-lg { padding: 19px 34px; font-size: 17px; }

/* Keyboard accessibility */
.btn:focus-visible,
a:focus-visible,
summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 14px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(63,54,28,.5);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand-mark { width: 32px; height: 32px; border-radius: 50%; box-shadow: var(--clay-sm); }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-links a {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink-soft);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--ink); background: color-mix(in srgb, var(--clay-beige) 60%, transparent); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; }
.mobile-menu { display: none; }

/* =========================================================
   Decorative organic blobs (subtle, warm — never blue glow)
   ========================================================= */
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; z-index: 0; pointer-events: none; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(56px, 7vw, 104px); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero-copy { max-width: 560px; }
.hero-copy .kicker { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--accent-deep); }
.hero-lead { margin: 0 0 32px; max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin: 22px 0 0; font-size: 14.5px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; }
.hero-note .ic { width: 17px; height: 17px; color: var(--accent-deep); }

.hero-trust { margin: 34px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink-soft); }
.hero-trust .ic { width: 19px; height: 19px; color: var(--accent-deep); }

/* Hero clay composition (illustrative, not fake app data) */
.hero-art { position: relative; aspect-ratio: 1 / 1; max-width: 460px; margin-inline: auto; width: 100%; }
.hero-plate {
  position: absolute; inset: 8% 8% 8% 8%;
  background: radial-gradient(120% 120% at 32% 24%, #FCFAF4 0%, #EDE4D2 78%);
  border-radius: 50%;
  box-shadow: var(--clay), 0 50px 60px -40px rgba(63,54,28,.5);
  display: grid; place-items: center;
}
.hero-plate .ic { width: 38%; height: 38%; color: var(--accent-deep); stroke-width: 1.6; }
.hero-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  background: var(--surface);
  border-radius: var(--r-pill);
  box-shadow: var(--clay);
  font-weight: 600; font-size: 15px;
  white-space: nowrap;
}
.hero-chip .tile { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex: none; box-shadow: var(--clay-sm); }
.hero-chip .tile .ic { width: 19px; height: 19px; }
.hero-chip small { display: block; font-weight: 500; font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0; }
.hero-chip b { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.chip-a { top: 6%; right: -2%; }
.chip-b { bottom: 16%; left: -6%; }
.chip-c { bottom: -2%; right: 10%; }

.tile-green { background: linear-gradient(180deg, #EBF2DB 0%, #D8E5BC 100%); color: var(--accent-deep); }
.tile-cream { background: linear-gradient(180deg, #F8F1E1 0%, #E6DBC4 100%); color: var(--ink); }

/* floating animation */
.float { animation: float 6s ease-in-out infinite; }
.float-2 { animation: float 7.5s ease-in-out infinite; animation-delay: -2s; }
.float-3 { animation: float 6.8s ease-in-out infinite; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}

/* =========================================================
   "How it works"
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); counter-reset: step; }
.step { position: relative; }
.step-icon {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: linear-gradient(180deg, #FCFAF4 0%, #EDE4D2 100%);
  box-shadow: var(--clay);
  display: grid; place-items: center;
  color: var(--accent-deep);
  margin-bottom: 24px;
  position: relative;
}
.step-icon .ic { width: 34px; height: 34px; stroke-width: 1.8; }
.step-icon::after {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: -10px; right: -10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #9CC15A, #7CA13F);
  color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -6px rgba(111,142,55,.8), inset 0 1.5px 0 rgba(255,255,255,.4);
}
.step h3 { font-size: 1.3rem; margin-bottom: 9px; }
.step p { margin: 0; color: var(--ink-soft); }
/* connector dotted line between steps on desktop */
.steps .step:not(:last-child) .step-icon::before {
  content: "";
  position: absolute; top: 50%; left: calc(100% + 14px);
  width: calc(100% - 48px); height: 2px;
  background-image: linear-gradient(90deg, var(--line) 0 60%, transparent 60%);
  background-size: 12px 2px;
  transform: translateY(-50%);
}

/* =========================================================
   Features (asymmetric bento)
   ========================================================= */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.6vw, 20px); }
.feature {
  background: linear-gradient(180deg, #FDFBF6 0%, #F5EFE3 100%);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.4vw, 34px);
  box-shadow: var(--clay-sm);
  grid-column: span 2;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--clay); }
.feature--wide { grid-column: span 3; }
.feature--lead { grid-column: span 4; }
.feature-tile {
  width: 56px; height: 56px;
  border-radius: 17px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: var(--clay-sm);
}
.feature-tile .ic { width: 27px; height: 27px; stroke-width: 1.9; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
.feature--lead h3 { font-size: 1.5rem; }
.feature--lead p { font-size: 16.5px; max-width: 46ch; }

/* tinted section band with soft rounded edges */
.band { background: var(--surface-2); border-radius: clamp(28px, 4vw, 48px); }

/* alternating full-width tinted bands for vertical rhythm */
#how, #pricing { background: var(--surface-2); }

/* =========================================================
   Pricing
   ========================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 20px); align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #FDFBF6 0%, #F5EFE3 100%);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--clay-sm);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--clay); }
.plan--featured {
  background: linear-gradient(180deg, #F2F7E6 0%, #E9F1D5 100%);
  box-shadow: var(--clay), 0 0 0 2px var(--accent) inset;
}
.plan-badge {
  position: absolute; top: 18px; right: 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 5px 11px; border-radius: var(--r-pill);
}
.plan--featured .plan-badge { background: #fff; }
.plan-title { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; margin-bottom: 4px; }
.plan-duration { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-top: auto; }
.plan-price b { font-family: var(--font-head); font-weight: 700; font-size: 2.5rem; line-height: 1; letter-spacing: -0.03em; }
.plan-price .cur { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: var(--ink); }
.plan-caption { color: var(--ink-soft); font-size: 13.5px; margin: 8px 0 22px; }
.plan-perday { color: var(--accent-deep); font-weight: 600; font-size: 13.5px; margin: 8px 0 22px; }
.plan .btn { width: 100%; }
.plan--featured .btn-ghost { background: #fff; }

.billing-note {
  margin-top: clamp(24px, 3vw, 34px);
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.billing-note .ic { width: 22px; height: 22px; color: var(--accent-deep); margin-top: 2px; flex: none; }
.billing-note code { background: var(--accent-soft); color: var(--accent-deep); padding: 1px 7px; border-radius: 6px; font-family: var(--font-body); font-weight: 600; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; }
.qa {
  background: linear-gradient(180deg, #FDFBF6 0%, #F6F0E4 100%);
  border-radius: var(--r-lg);
  box-shadow: var(--clay-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.qa[open] { box-shadow: var(--clay); }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa-mark {
  margin-left: auto; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center;
  transition: transform .25s ease, background .2s ease;
}
.qa-mark .ic { width: 18px; height: 18px; }
.qa[open] .qa-mark { transform: rotate(45deg); background: var(--accent); color: #fff; }
.qa-body { padding: 0 24px 24px 70px; color: var(--ink-soft); }
.qa-body code { background: var(--accent-soft); color: var(--accent-deep); padding: 1px 7px; border-radius: 6px; font-weight: 600; }

/* =========================================================
   Final CTA band
   ========================================================= */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #9BBD58 0%, #6C8B36 100%);
  border-radius: clamp(32px, 4vw, 52px);
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 80px);
  color: #fff;
  text-align: center;
  box-shadow:
    0 34px 64px -30px rgba(96,128,46,.65),
    inset 0 3px 4px rgba(255,255,255,.35),
    inset 0 -16px 30px -14px rgba(54,74,22,.45);
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 48ch; margin: 0 auto 32px; }
.cta-band .btn-ghost { background: #fff; }
.cta-blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--surface-2); padding-block: clamp(48px, 6vw, 80px) 28px; margin-top: clamp(40px, 6vw, 80px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--ink-soft); font-size: 15px; max-width: 30ch; margin: 0 0 18px; }
.footer-col h4 { font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; margin: 0 0 16px; color: var(--ink); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--ink-soft); font-size: 15px; transition: color .15s ease; display: inline-flex; align-items: center; gap: 9px; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-col a .ic { width: 17px; height: 17px; }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
}
.footer-bottom .copy { font-size: 14px; color: var(--ink-soft); }
/* legal microline — intentionally quiet but present */
.legal-line { font-size: 12px; color: color-mix(in srgb, var(--ink-soft) 80%, transparent); letter-spacing: 0.01em; }
.to-top { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }
.to-top:hover { color: var(--accent-deep); }

/* =========================================================
   Reveal on scroll
   ========================================================= */
/* hidden only when JS is available, so no-JS visitors still see everything */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   Legal document pages
   ========================================================= */
.doc { padding-block: clamp(48px, 7vw, 96px); }
.doc-head { max-width: 760px; margin-bottom: 40px; }
.doc-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.doc-head .doc-meta { color: var(--ink-soft); font-size: 15px; }
.doc-body {
  max-width: 760px;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--clay-sm);
  padding: clamp(28px, 4vw, 56px);
  min-height: 280px;
}
.doc-body .placeholder { color: var(--ink-soft); }
.doc-body > :first-child { margin-top: 0; }
.doc-body h2, .doc-body h3 { margin: 28px 0 10px; }
.doc-body h3 { font-size: 1.2rem; }
.doc-body p { margin: 0 0 14px; color: var(--ink-soft); }
.doc-body h2 { font-size: 1.45rem; }
.doc-body ul, .doc-body ol { margin: 0 0 14px; padding-left: 22px; color: var(--ink-soft); }
.doc-body li { margin: 0 0 8px; }
.doc-body a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.doc-body code { background: var(--accent-soft); color: var(--accent-deep); padding: 1px 7px; border-radius: 6px; font-weight: 600; }
.doc-body strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { order: -1; max-width: 380px; }
  .hero-copy { max-width: none; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps .step:not(:last-child) .step-icon::before { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature--wide, .feature--lead { grid-column: span 1; }
  .feature--lead { grid-column: span 2; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center; margin-left: auto;
    width: 44px; height: 44px; border-radius: 13px;
    background: var(--surface); box-shadow: var(--clay-sm); border: 0; color: var(--ink);
  }
  .nav-toggle .ic { width: 22px; height: 22px; }
  .mobile-menu {
    display: none;
    padding: 8px 0 18px;
    border-top: 1px solid var(--line);
  }
  .mobile-menu.is-open { display: block; }
  .mobile-menu a { display: block; padding: 13px 4px; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { width: 100%; margin-top: 16px; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .feature--lead { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Motion preferences
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
