/* ============================================================
   Estura — shared marketing-site stylesheet
   One source of truth for tokens + reusable components so every
   page (home, features, pricing, faq, help, terms, privacy,
   contact) renders identically.

   Aesthetic: clean, calm, official-SaaS. Emerald accent, cool
   neutrals, hairline borders, tabular-nums on figures.
   NO gradients, NO glow, NO icon-in-colored-box, NO emoji, NO purple.

   Tokens mirror the desktop Estura app exactly. Light + dark are
   supported via BOTH @media(prefers-color-scheme) AND the
   :root[data-theme="…"] override the theme toggle stamps on <html>.
   ============================================================ */

/* ---- Design tokens (light) ---- */
:root {
  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-2: #f0f3f2;
  --border: #e4e8e6;
  --border-strong: #d3d9d6;
  --text: #10140f;
  --text-2: #5b6560;
  --text-3: #8b938e;
  --brand: #059669;
  --brand-strong: #047857;
  --brand-fg: #ffffff;
  --brand-subtle: #e7f5ee;
  --danger: #c0392b;
  --warning: #b7791f;

  --r-card: 14px;
  --r-ctl: 9px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 20, .05);
  --shadow: 0 1px 2px rgba(16, 24, 20, .06), 0 10px 30px -14px rgba(16, 24, 20, .14);
  --shadow-lg: 0 1px 2px rgba(16, 24, 20, .06), 0 24px 48px -20px rgba(16, 24, 20, .22);
  --maxw: 1120px;
}

/* ---- Dark via OS preference (default when no explicit choice) ---- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0c0b;
    --surface: #131615;
    --surface-2: #1a1e1c;
    --border: #262b28;
    --border-strong: #333a36;
    --text: #eef2f0;
    --text-2: #9aa5a0;
    --text-3: #6b746f;
    --brand: #10b981;
    --brand-strong: #34d399;
    --brand-fg: #04120c;
    --brand-subtle: #10231b;
    --danger: #ff6b5e;
    --warning: #f0b429;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 14px 34px -16px rgba(0,0,0,.62);
    --shadow-lg: 0 1px 2px rgba(0,0,0,.5), 0 30px 60px -24px rgba(0,0,0,.7);
  }
}

/* ---- Explicit theme overrides (theme toggle → data-theme on <html>).
        These must win over the media query in BOTH directions. ---- */
:root[data-theme="dark"] {
  --bg:#0a0c0b; --surface:#131615; --surface-2:#1a1e1c; --border:#262b28; --border-strong:#333a36;
  --text:#eef2f0; --text-2:#9aa5a0; --text-3:#6b746f; --brand:#10b981; --brand-strong:#34d399;
  --brand-fg:#04120c; --brand-subtle:#10231b; --danger:#ff6b5e; --warning:#f0b429;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 14px 34px -16px rgba(0,0,0,.62);
  --shadow-lg: 0 1px 2px rgba(0,0,0,.5), 0 30px 60px -24px rgba(0,0,0,.7);
}
:root[data-theme="light"] {
  --bg:#f6f8f7; --surface:#ffffff; --surface-2:#f0f3f2; --border:#e4e8e6; --border-strong:#d3d9d6;
  --text:#10140f; --text-2:#5b6560; --text-3:#8b938e; --brand:#059669; --brand-strong:#047857;
  --brand-fg:#ffffff; --brand-subtle:#e7f5ee; --danger:#c0392b; --warning:#b7791f;
  --shadow-sm: 0 1px 2px rgba(16, 24, 20, .05);
  --shadow: 0 1px 2px rgba(16, 24, 20, .06), 0 10px 30px -14px rgba(16, 24, 20, .14);
  --shadow-lg: 0 1px 2px rgba(16, 24, 20, .06), 0 24px 48px -20px rgba(16, 24, 20, .22);
}

/* ============================================================
   Base / reset
   ============================================================ */
* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04";
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.tnum { font-variant-numeric: tabular-nums; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.text-link { color: var(--brand-strong); font-weight: 600; }
.text-link:hover { text-decoration: underline; text-underline-offset: 2px; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 5px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Skip-to-content link (visually hidden until focused) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  display: inline-flex; align-items: center;
  background: var(--brand); color: var(--brand-fg);
  font-weight: 600; font-size: 14px;
  padding: 10px 16px; border-radius: var(--r-ctl);
}
.skip-link:focus { left: 16px; top: 12px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1; font-family: inherit;
  padding: 12px 20px; border-radius: var(--r-ctl); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s, transform .15s, color .15s;
}
.btn-primary { background: var(--brand); color: var(--brand-fg); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-strong); border-color: var(--brand-strong); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-outline { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--surface-2); border-color: var(--text-3); }
.btn-sm { padding: 9px 15px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn svg { width: 17px; height: 17px; }

/* ============================================================
   Wordmark
   ============================================================ */
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: -.022em; font-size: 18px; }
.dot { width: 13px; height: 13px; border-radius: 4px; background: var(--brand); flex: none; }

/* ============================================================
   Badges
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--border-strong); color: var(--text-2); background: var(--surface);
}
.badge-brand { color: var(--brand-strong); background: var(--brand-subtle); border-color: transparent; }
.badge .live { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

/* ============================================================
   Section furniture
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand-strong);
}
.eyebrow::before { content: ""; width: 16px; height: 1.5px; background: var(--brand); border-radius: 2px; }
section { padding: 84px 0; }
.section-head { max-width: 62ch; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(27px, 4vw, 40px); letter-spacing: -.032em; font-weight: 800; margin: 0 0 14px; text-wrap: balance; line-height: 1.08; }
.section-head p { color: var(--text-2); font-size: clamp(16px, 2vw, 18px); margin: 0; text-wrap: pretty; }
.section-cta { display: flex; justify-content: center; margin-top: 44px; }

/* ============================================================
   Interior-page header (features / pricing / faq / help / legal)
   Mirrors .section-head but sits at the top of a page under the nav.
   ============================================================ */
.page-head { padding: 76px 0 8px; text-align: center; }
.page-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.page-head h1 { font-size: clamp(32px, 5.4vw, 54px); letter-spacing: -.036em; font-weight: 800; margin: 0 auto 16px; max-width: 20ch; text-wrap: balance; line-height: 1.05; }
.page-head p { color: var(--text-2); font-size: clamp(16px, 2.1vw, 19px); max-width: 60ch; margin: 0 auto; text-wrap: pretty; }

/* ============================================================
   Nav (sticky, glass) + mobile <details> hamburger + theme toggle
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border-bottom: 1px solid var(--border);
}
nav { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-2); font-size: 14.5px; font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"] { font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-signin { color: var(--text-2); font-size: 14.5px; font-weight: 600; }
.nav-signin:hover { color: var(--text); }

/* Theme toggle button (icon; sun in dark, moon in light) */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: none;
  border-radius: var(--r-ctl); border: 1px solid var(--border-strong);
  background: transparent; color: var(--text-2); cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.theme-toggle:hover { background: var(--surface-2); color: var(--text); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}

/* Mobile hamburger (pure <details> disclosure, shown only <=820px) */
.nav-menu { position: relative; display: none; }
.nav-menu > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-ctl); border: 1px solid var(--border-strong); color: var(--text);
}
.nav-menu > summary::-webkit-details-marker { display: none; }
.nav-menu > summary svg { width: 20px; height: 20px; }
.nav-menu[open] > summary { background: var(--surface-2); }
.nav-menu-panel {
  position: absolute; right: 0; top: calc(100% + 12px); min-width: 220px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); box-shadow: var(--shadow);
  padding: 8px; display: grid; gap: 2px; z-index: 60;
}
.nav-menu-panel a { padding: 11px 12px; border-radius: var(--r-ctl); color: var(--text-2); font-size: 15px; font-weight: 500; }
.nav-menu-panel a:hover, .nav-menu-panel a[aria-current="page"] { background: var(--surface-2); color: var(--text); }
.nav-menu-panel .divider { height: 1px; background: var(--border); margin: 6px 4px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 76px 0 40px; text-align: center; }
.hero .eyebrow { margin-bottom: 22px; }
h1 {
  font-size: clamp(36px, 6.2vw, 66px); line-height: 1.02; letter-spacing: -.04em; font-weight: 800;
  margin: 0 auto 22px; max-width: 16ch; text-wrap: balance;
}
h1 .accent { color: var(--brand); }
.lede { font-size: clamp(17px, 2.2vw, 21px); color: var(--text-2); max-width: 60ch; margin: 0 auto 32px; text-wrap: pretty; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 18px; font-size: 13.5px; color: var(--text-3); display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-note .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border-strong); }

/* ---- Hero product visual (pure CSS/SVG mock of the till) ---- */
.hero-visual { position: relative; max-width: 980px; margin: 60px auto 0; }
.shot {
  border: 1px solid var(--border); border-radius: var(--r-card);
  background: var(--surface); box-shadow: var(--shadow-lg); overflow: hidden; text-align: left;
}
.shot .bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.shot .bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); display: block; }
.shot .bar .title { margin-left: 8px; font-size: 12.5px; font-weight: 600; color: var(--text-3); letter-spacing: -.01em; }
.shot .bar .pill { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  color: var(--brand-strong); background: var(--brand-subtle); padding: 5px 10px; border-radius: 999px; }
.shot .bar .pill .live { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.shot .body { display: grid; grid-template-columns: 1.55fr 1fr; min-height: 336px; }
.shot .left { padding: 20px; border-right: 1px solid var(--border); }
.shot .crumb { font-size: 12.5px; font-weight: 600; color: var(--text-3); margin-bottom: 14px; letter-spacing: .01em; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tile { border: 1px solid var(--border); border-radius: var(--r-ctl); padding: 14px; background: var(--surface); transition: border-color .15s; }
.tile .cat { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); }
.tile .n { font-weight: 600; margin-top: 3px; font-size: 14.5px; }
.tile .p { color: var(--brand-strong); font-weight: 700; margin-top: 6px; font-size: 15px; }
.shot .right { padding: 20px; background: var(--surface-2); display: flex; flex-direction: column; gap: 4px; }
.shot .right .rh { display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.shot .right .rh span:last-child { color: var(--text-3); font-weight: 600; font-size: 13px; }
.rowline { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); padding: 8px 0; border-bottom: 1px dashed var(--border); }
.rowline span:first-child { color: var(--text); }
.rowline.muted span { color: var(--text-2); }
.total { display: flex; justify-content: space-between; font-weight: 800; font-size: 23px; letter-spacing: -.02em; margin: 12px 0 4px; }
.paybtn { margin-top: auto; display: flex; align-items: center; justify-content: space-between; background: var(--brand); color: var(--brand-fg); font-weight: 700; padding: 13px 16px; border-radius: var(--r-ctl); font-size: 15px; }
.paybtn .key { font-size: 12px; font-weight: 700; opacity: .82; background: color-mix(in srgb, var(--brand-fg) 18%, transparent); padding: 3px 8px; border-radius: 6px; }

/* Floating accent cards (receipt + phone companion) */
.float { position: absolute; background: var(--surface); border: 1px solid var(--border); border-radius: 13px; box-shadow: var(--shadow); padding: 13px 15px; }
.float .flabel { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--text-2); }
.float .flabel svg { width: 15px; height: 15px; color: var(--brand); }
.float-a { left: -30px; bottom: -30px; width: 186px; }
.float-a .fval { margin-top: 8px; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.float-a .fsub { font-size: 11.5px; color: var(--text-3); margin-top: 1px; }
.float-b { right: -26px; top: 46px; width: 176px; }
.float-b .fval { margin-top: 6px; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.float-b .spark { margin-top: 8px; width: 100%; height: 34px; }
.spark path.line { fill: none; stroke: var(--brand); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.spark path.area { fill: var(--brand-subtle); stroke: none; }

/* ============================================================
   Product tour (three framed CSS/SVG mockups)
   ============================================================ */
.tour { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tour-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--r-card); background: var(--surface); box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .15s, box-shadow .15s, transform .15s; }
.tour-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); transform: translateY(-2px); }
.tour-mock { position: relative; padding: 18px; background: var(--surface-2); border-bottom: 1px solid var(--border); min-height: 216px; display: flex; flex-direction: column; }
.tour-cap { padding: 20px 22px 24px; }
.tour-cap h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 700; letter-spacing: -.015em; }
.tour-cap p { margin: 0; color: var(--text-2); font-size: 14.5px; line-height: 1.5; }

/* Mini window frame used inside a tour mock */
.mini { border: 1px solid var(--border); border-radius: 10px; background: var(--surface); overflow: hidden; flex: 1; display: flex; flex-direction: column; }
.mini-bar { display: flex; align-items: center; gap: 5px; padding: 9px 11px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.mini-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); }
.mini-bar .mt { margin-left: 6px; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); }
.mini-body { padding: 13px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.mrow { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--text-2); }
.mrow b { color: var(--text); font-weight: 600; }
.mrow .num { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--text); }
.mrule { height: 1px; background: var(--border); margin: 2px 0; }
.mtotal { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; font-weight: 800; font-size: 16px; letter-spacing: -.02em; }
.mtotal .num { font-variant-numeric: tabular-nums; color: var(--brand-strong); }
.mchip { display: inline-flex; align-items: center; gap: 5px; align-self: flex-start; font-size: 10.5px; font-weight: 700; color: var(--brand-strong); background: var(--brand-subtle); padding: 3px 9px; border-radius: 999px; }
.mbars { display: flex; align-items: flex-end; gap: 7px; height: 62px; margin-top: 4px; }
.mbars span { flex: 1; background: var(--brand-subtle); border-radius: 4px 4px 0 0; position: relative; }
.mbars span::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--brand); border-radius: 3px; }

/* Phone frame for the companion mock */
.phone { width: 132px; margin: 0 auto; border: 6px solid var(--text); border-radius: 22px; background: var(--surface); overflow: hidden; box-shadow: var(--shadow); }
.phone-head { padding: 12px 13px 8px; border-bottom: 1px solid var(--border); }
.phone-head .pk { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }
.phone-head .pv { font-size: 20px; font-weight: 800; letter-spacing: -.03em; font-variant-numeric: tabular-nums; margin-top: 2px; }
.phone-body { padding: 11px 13px 14px; display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   Trust strip
   ============================================================ */
.trust { padding: 0 0 24px; }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--r-card); background: var(--surface); box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.trust-item { display: flex; align-items: center; gap: 12px; padding: 20px 22px; border-left: 1px solid var(--border); }
.trust-item:first-child { border-left: none; }
.trust-item svg { width: 22px; height: 22px; color: var(--brand); flex: none; }
.trust-item .t1 { font-weight: 700; font-size: 14.5px; letter-spacing: -.01em; }
.trust-item .t2 { font-size: 12.5px; color: var(--text-3); margin-top: 1px; }

/* ============================================================
   Feature cards
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat {
  border: 1px solid var(--border); border-radius: var(--r-card); padding: 24px; background: var(--surface);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.feat:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.feat .ic { color: var(--brand); margin-bottom: 15px; }
.feat .ic svg { width: 24px; height: 24px; }
.feat h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 700; letter-spacing: -.015em; }
.feat p { margin: 0; color: var(--text-2); font-size: 14.5px; line-height: 1.5; }

/* ============================================================
   How it works (numbered steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; border: 1px solid var(--border); border-radius: var(--r-card); background: var(--surface); padding: 26px 24px; }
.step .num {
  counter-increment: step; width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid var(--border-strong); color: var(--brand-strong); background: var(--surface);
  display: grid; place-items: center; font-weight: 800; font-size: 15px; margin-bottom: 16px;
}
.step .num::before { content: counter(step); }
.step h3 { margin: 0 0 7px; font-size: 17px; font-weight: 700; letter-spacing: -.015em; }
.step p { margin: 0; color: var(--text-2); font-size: 14.5px; }
.step .k { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 13px; color: var(--text); background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; padding: 1px 6px; }

/* ============================================================
   Pricing card
   ============================================================ */
.price-wrap { display: flex; justify-content: center; }
.price {
  border: 1px solid var(--border-strong); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow);
  padding: 34px; max-width: 460px; width: 100%; position: relative;
}
.price .tag { position: absolute; top: 22px; right: 22px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-strong); background: var(--brand-subtle); padding: 5px 11px; border-radius: 999px; }
.price .plan { font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); }
.price .amt { font-size: 56px; font-weight: 800; letter-spacing: -.035em; line-height: 1; margin: 12px 0 4px; }
.price .amt small { font-size: 17px; font-weight: 600; color: var(--text-2); letter-spacing: 0; }
.price .per { font-size: 14px; color: var(--text-2); margin: 0 0 22px; }
.price ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.price li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--text); }
.price li svg { flex: none; width: 19px; height: 19px; color: var(--brand); margin-top: 1px; }
.price .btn-primary { width: 100%; }
.price .fineprint { margin: 16px 0 0; font-size: 13px; color: var(--text-3); text-align: center; text-wrap: pretty; }

/* ============================================================
   FAQ (disclosure cards)
   ============================================================ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
details.qa { border: 1px solid var(--border); border-radius: var(--r-card); background: var(--surface); overflow: hidden; }
details.qa summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-weight: 700; font-size: 16px; letter-spacing: -.01em; color: var(--text);
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .chev { flex: none; width: 20px; height: 20px; color: var(--text-3); transition: transform .2s; }
details.qa[open] summary .chev { transform: rotate(180deg); color: var(--brand); }
details.qa .ans { padding: 0 22px 22px; color: var(--text-2); font-size: 15px; line-height: 1.6; max-width: 66ch; }
details.qa .ans a { color: var(--brand-strong); font-weight: 600; }

/* ============================================================
   Tables (spec sheets, comparison, plan detail)
   ============================================================ */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-card); background: var(--surface); box-shadow: var(--shadow-sm); }
table.table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 480px; }
table.table caption { text-align: left; padding: 16px 20px 0; font-weight: 700; }
table.table th, table.table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); }
table.table thead th { font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); background: var(--surface-2); }
table.table tbody tr:last-child td { border-bottom: none; }
table.table td.num, table.table th.num { text-align: right; font-variant-numeric: tabular-nums; }
table.table tbody tr:hover td { background: var(--surface-2); }

/* ============================================================
   Prose (legal + long-form content: terms, privacy, help)
   ============================================================ */
.prose { max-width: 720px; margin: 0 auto; color: var(--text-2); font-size: 16px; line-height: 1.7; }
.prose h2 { color: var(--text); font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 40px 0 12px; }
.prose h3 { color: var(--text); font-size: 17px; font-weight: 700; margin: 28px 0 8px; }
.prose p { margin: 0 0 16px; text-wrap: pretty; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--brand-strong); font-weight: 600; }
.prose a:hover { text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.prose .lastupdated { font-size: 13.5px; color: var(--text-3); }

/* ============================================================
   Closing CTA band
   ============================================================ */
.cta-band { padding: 72px 0; }
.cta-band-inner {
  border: 1px solid var(--border); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow);
  padding: 52px 40px; text-align: center;
}
.cta-band-inner h2 { font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -.03em; font-weight: 800; margin: 0 0 12px; text-wrap: balance; }
.cta-band-inner p { color: var(--text-2); font-size: 17px; margin: 0 auto 26px; max-width: 52ch; text-wrap: pretty; }

/* ============================================================
   Footer (multi-column: product · legal · contact)
   ============================================================ */
footer { border-top: 1px solid var(--border); padding: 48px 0 40px; }
.foot-top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.foot-brand { max-width: 320px; }
.foot-brand p { color: var(--text-2); font-size: 14px; margin: 12px 0 0; }
.foot-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.foot-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin: 0 0 14px; }
.foot-col a { display: block; color: var(--text-2); font-size: 14px; margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; color: var(--text-3); font-size: 13.5px; }
.foot-bottom a { color: var(--text-2); }
.foot-bottom a:hover { color: var(--text); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .float { display: none; }
}
@media (max-width: 900px) {
  section { padding: 68px 0; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .tour { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(odd) { border-left: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-signin { display: none; }
  .nav-menu { display: block; }
  .hero { padding-top: 52px; }
  .steps { grid-template-columns: 1fr; }
  .shot .body { grid-template-columns: 1fr; }
  .shot .left { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-left: none !important; border-top: 1px solid var(--border); }
  .trust-item:first-child { border-top: none; }
  .cta-band-inner { padding: 40px 24px; }
  .price { padding: 28px 22px; }
}
