/* =========================================================================
   TASKRS CLEANING SERVICES — "The Reveal" design system
   Self-contained, no build step. Token-driven light/dark theming.
   Typography: drop Clash Display + Satoshi woff2 into /assets/fonts to
   upgrade from the fallback stack (see README). Everything still reads as
   designed on the system fallback.
   ========================================================================= */

/* ---- Optional self-hosted faces (add files to enable) ------------------ */
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Variable.woff2") format("woff2");
  font-weight: 300 700; font-display: swap; font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900; font-display: swap; font-style: normal;
}
@font-face {
  font-family: "Space Mono";
  src: url("../fonts/SpaceMono-400.ttf") format("truetype");
  font-weight: 400; font-display: swap; font-style: normal;
}
@font-face {
  font-family: "Space Mono";
  src: url("../fonts/SpaceMono-700.ttf") format("truetype");
  font-weight: 700; font-display: swap; font-style: normal;
}

/* ---- Design tokens ----------------------------------------------------- */
:root {
  /* Brand (navy + lime, from the Taskrs logo) */
  --ink: #14163A;
  --ink-2: #1E2150;
  --navy: #2E3192;
  --mineral: #8CC63F;
  --mineral-deep: #4E7D18;
  --mist: #F3F4FB;
  --grime: #6B5D4F;
  --ember: #8CC63F;
  --ember-deep: #74B62C;

  /* Semantic (light theme defaults) */
  --bg: var(--mist);
  --bg-elev: #ffffff;
  --bg-sunk: #ECEDF8;
  --surface-line: #DCDEF0;
  --text: #171A3D;
  --text-soft: #4A4E72;
  --text-faint: #74789A;
  --accent: var(--mineral-deep);
  --accent-bright: var(--mineral);
  --cta: var(--ember-deep);
  --cta-ink: #14163A;
  --ring: color-mix(in srgb, var(--mineral-deep) 55%, transparent);
  --shadow: 0 1px 2px rgba(20,22,58,.05), 0 12px 32px -12px rgba(20,22,58,.18);
  --shadow-lg: 0 30px 80px -30px rgba(20,22,58,.35);

  /* Type */
  --font-display: "Clash Display", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Satoshi", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Space Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --step--1: clamp(.82rem, .8rem + .1vw, .9rem);
  --step-0: clamp(1rem, .96rem + .2vw, 1.09rem);
  --step-1: clamp(1.2rem, 1.1rem + .5vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.3rem + .9vw, 2rem);
  --step-3: clamp(2rem, 1.6rem + 1.8vw, 3rem);
  --step-4: clamp(2.6rem, 1.9rem + 3.4vw, 4.7rem);
  --step-5: clamp(3.2rem, 2.1rem + 5.4vw, 6.4rem);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --radius: 18px;
  --radius-sm: 11px;
  --radius-lg: 28px;
  --section-y: clamp(3.6rem, 8vw, 7rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--ink);
    --bg-elev: #1E2150;
    --bg-sunk: #0E1030;
    --surface-line: #2F3369;
    --text: #EEF0FB;
    --text-soft: #B3B7DC;
    --text-faint: #8286B0;
    --accent: #9ED456;
    --accent-bright: #9ED456;
    --cta: var(--mineral);
    --cta-ink: #14163A;
    --ring: color-mix(in srgb, var(--mineral) 60%, transparent);
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 18px 40px -16px rgba(0,0,0,.6);
    --shadow-lg: 0 40px 90px -30px rgba(0,0,0,.7);
  }
}
/* Explicit toggle wins over OS in both directions */
:root[data-theme="light"] {
  --bg: var(--mist); --bg-elev: #fff; --bg-sunk: #ECEDF8; --surface-line: #DCDEF0;
  --text: #171A3D; --text-soft: #4A4E72; --text-faint: #74789A;
  --accent: var(--mineral-deep); --accent-bright: var(--mineral); --cta: var(--ember-deep);
  --cta-ink: #14163A; --ring: color-mix(in srgb, var(--mineral-deep) 55%, transparent);
  --shadow: 0 1px 2px rgba(20,22,58,.05), 0 12px 32px -12px rgba(20,22,58,.18);
}
:root[data-theme="dark"] {
  --bg: var(--ink); --bg-elev: #1E2150; --bg-sunk: #0E1030; --surface-line: #2F3369;
  --text: #EEF0FB; --text-soft: #B3B7DC; --text-faint: #8286B0;
  --accent: #9ED456; --accent-bright: #9ED456; --cta: var(--mineral);
  --cta-ink: #14163A; --ring: color-mix(in srgb, var(--mineral) 60%, transparent);
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 18px 40px -16px rgba(0,0,0,.6);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,.7);
}

/* ---- Reset & base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--mineral); color: #14163A; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.02; text-wrap: balance; letter-spacing: -.02em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -.01em; }
p { max-width: 65ch; }

/* ---- Utilities --------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.eyebrow {
  font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 1.8rem; height: 1px; background: currentColor; opacity: .6; }
.lede { font-size: var(--step-1); color: var(--text-soft); line-height: 1.5; max-width: 46ch; }
.tabnum { font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.stack { display: flex; flex-direction: column; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200; background: var(--cta); color: var(--cta-ink);
  padding: .7rem 1.1rem; border-radius: 10px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  --_bg: var(--accent); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.5em; border: 1px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: var(--step-0); letter-spacing: -.01em; line-height: 1;
  background: var(--_bg); color: var(--_fg);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--cta { --_bg: var(--cta); --_fg: var(--cta-ink); box-shadow: 0 10px 30px -12px color-mix(in srgb, var(--cta) 70%, transparent); }
.btn--ghost { --_bg: transparent; --_fg: var(--text); border-color: var(--surface-line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 1.1em 1.9em; font-size: var(--step-1); }
.btn--block { width: 100%; }
.btn svg { width: 1.15em; height: 1.15em; }

/* ---- Header / nav ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-stuck { border-bottom-color: var(--surface-line); }
.nav { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: .07em; text-transform: uppercase; }
/* Wordmark with the lime tick sitting on top of the first "T" (matches the logo) */
.brand__word { position: relative; display: inline-block; padding-top: .34em; line-height: 1; }
.brand__tick {
  position: absolute; left: -.04em; top: 0; width: .74em; height: .56em; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 20'%3E%3Cpath d='M2 11.5L9 18.5L24 2' fill='none' stroke='%238CC63F' stroke-width='4.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat left top / contain;
}
.brand__mark { width: 30px; height: 26px; flex: none; }
.brand b { color: var(--accent); font-weight: 600; }
.nav__spacer { flex: 1; }
.nav__links { display: flex; align-items: center; gap: .3rem; }
.nav__links a { padding: .5rem .8rem; border-radius: 9px; color: var(--text-soft); font-weight: 500; font-size: .96rem; transition: color .15s, background .15s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--text); background: var(--bg-sunk); }
.nav__actions { display: flex; align-items: center; gap: .6rem; }
.theme-toggle { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--surface-line); background: var(--bg-elev); display: grid; place-items: center; }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .sun, @media (prefers-color-scheme: dark) { }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--surface-line); background: var(--bg-elev); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav[data-open="true"] .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav[data-open="true"] .nav__burger span:nth-child(2) { opacity: 0; }
.nav[data-open="true"] .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; padding: 1rem var(--gutter) 1.6rem; background: var(--bg-elev);
    border-bottom: 1px solid var(--surface-line); box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  }
  .nav[data-open="true"] .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav__actions .btn--cta { display: none; }
}

/* ---- Hero: the Reveal -------------------------------------------------- */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 4rem); }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .hero__grid { grid-template-columns: 1.05fr 1fr; } }
.hero__eyebrow { margin-bottom: 1.4rem; }
.hero h1 { font-size: var(--step-5); margin-bottom: 1.3rem; }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero__lede { margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; color: var(--text-soft); font-size: var(--step--1); }
.hero__proof strong { color: var(--text); font-family: var(--font-mono); }
.hero__stars { color: var(--ember); letter-spacing: .1em; }

/* Reveal component */
.reveal {
  position: relative; aspect-ratio: 4/5; max-height: 620px; width: 100%;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--surface-line); user-select: none; touch-action: pan-y;
  background: var(--ink);
}
.reveal--photo { aspect-ratio: 3/2; }
.reveal__pane { position: absolute; inset: 0; }
.reveal__pane canvas { width: 100%; height: 100%; }
.reveal__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.reveal__label {
  position: absolute; top: 1rem; padding: .35rem .8rem; border-radius: 999px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(6,10,12,.6); color: #fff; backdrop-filter: blur(6px);
}
.reveal__label--before { left: 1rem; }
.reveal__label--after { right: 1rem; color: #14163A; background: color-mix(in srgb, var(--mineral) 88%, white); }
.reveal__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; translate: -1px 0;
  background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.reveal__grip {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%; width: 52px; height: 52px;
  border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35); cursor: ew-resize;
}
.reveal__grip svg { width: 26px; height: 26px; }
.reveal__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.reveal__caption {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem; color: #dfe2f5;
  font-size: .85rem; display: flex; gap: .5rem; align-items: center;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

/* ---- Marquee trust bar ------------------------------------------------- */
.trustbar { border-block: 1px solid var(--surface-line); background: var(--bg-elev); }
.trustbar__row { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; justify-content: space-between; align-items: center; padding-block: 1.3rem; }
.trustbar__item { display: inline-flex; align-items: center; gap: .6rem; color: var(--text-soft); font-weight: 500; font-size: .95rem; }
.trustbar__item svg { width: 22px; height: 22px; color: var(--accent); flex: none; }

/* ---- Section heading kit ---------------------------------------------- */
.sec-head { max-width: 60ch; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head h2 { margin-bottom: 1rem; }
.sec-head p { color: var(--text-soft); font-size: var(--step-1); }
.sec-head--split { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; align-items: flex-end; justify-content: space-between; max-width: none; }

/* ---- Services grid ----------------------------------------------------- */
.services { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.svc {
  position: relative; display: flex; flex-direction: column; gap: .8rem;
  padding: 1.6rem; background: var(--bg-elev); border: 1px solid var(--surface-line);
  border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.svc::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, var(--mineral), transparent 45%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; pointer-events: none; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::after { opacity: 1; }
.svc__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: color-mix(in srgb, var(--mineral) 16%, transparent); color: var(--accent); }
.svc__icon svg { width: 24px; height: 24px; }
.svc h3 { font-size: 1.2rem; }
.svc p { color: var(--text-soft); font-size: .95rem; flex: 1; }
.svc__foot { display: flex; align-items: center; justify-content: space-between; padding-top: .4rem; border-top: 1px solid var(--surface-line); }
.svc__price { font-family: var(--font-mono); font-size: .9rem; color: var(--text); }
.svc__price span { color: var(--text-faint); font-size: .78rem; }
.svc__arrow { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; font-size: .9rem; transition: gap .2s; }
.svc:hover .svc__arrow { gap: .6rem; }
.svc::before { content: ""; position: absolute; inset: 0; z-index: 1; } /* full-card link overlay uses <a class=svc> */

/* ---- Calculator -------------------------------------------------------- */
.calc {
  display: grid; gap: 0; grid-template-columns: 1fr; background: var(--bg-elev);
  border: 1px solid var(--surface-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
@media (min-width: 880px) { .calc { grid-template-columns: 1.3fr 1fr; } }
.calc__form { padding: clamp(1.4rem, 4vw, 2.4rem); display: flex; flex-direction: column; gap: 1.4rem; }
.calc__aside {
  padding: clamp(1.4rem, 4vw, 2.4rem); background: var(--ink); color: #EEF0FB;
  display: flex; flex-direction: column; gap: 1.1rem; position: relative;
}
:root[data-theme="light"] .calc__aside { background: linear-gradient(160deg, #232663, #14163A); }
.calc__field { display: flex; flex-direction: column; gap: .55rem; }
.calc__field > label { font-weight: 600; font-size: .95rem; }
.calc__hint { color: var(--text-faint); font-size: .82rem; }
.field-row { display: grid; gap: .9rem; grid-template-columns: 1fr 1fr; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .6rem 1rem; border-radius: 11px; border: 1px solid var(--surface-line);
  background: var(--bg); font-weight: 500; font-size: .92rem; transition: .15s;
}
.chip[aria-pressed="true"], .chip.is-active { border-color: var(--accent); background: color-mix(in srgb, var(--mineral) 14%, transparent); color: var(--accent); }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--surface-line); border-radius: 11px; overflow: hidden; width: max-content; }
.stepper button { width: 42px; height: 42px; background: var(--bg); font-size: 1.3rem; line-height: 1; color: var(--text); }
.stepper button:hover { background: var(--bg-sunk); color: var(--accent); }
.stepper output { min-width: 3ch; text-align: center; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.select, .input, textarea {
  width: 100%; padding: .8rem 1rem; border-radius: 12px; border: 1px solid var(--surface-line);
  background: var(--bg); color: var(--text); font: inherit;
}
.select:focus, .input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--ring); }
.switch-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.addon { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem .9rem; border: 1px solid var(--surface-line); border-radius: 11px; cursor: pointer; font-size: .9rem; user-select: none; }
.addon input { accent-color: var(--accent); width: 17px; height: 17px; }
.addon:has(input:checked) { border-color: var(--accent); background: color-mix(in srgb, var(--mineral) 12%, transparent); }

.calc__price { font-family: var(--font-mono); }
.calc__price .amt { font-size: clamp(2.6rem, 8vw, 3.6rem); font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; line-height: 1; }
.calc__price .unit { color: #A9ADDA; font-size: .95rem; }
.calc__meta { color: #B9BDE3; font-size: .88rem; }
.calc__break { border-top: 1px dashed rgba(255,255,255,.16); padding-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .88rem; }
.calc__break .line { display: flex; justify-content: space-between; gap: 1rem; color: #D3D6F2; }
.calc__break .line span:last-child { font-variant-numeric: tabular-nums; }
.calc__disclaimer { color: #9195C2; font-size: .76rem; margin-top: auto; }
.calc__cta { display: flex; flex-direction: column; gap: .6rem; }

/* ---- Steps / process --------------------------------------------------- */
.steps { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); counter-reset: step; }
.step { padding: 1.5rem; border-radius: var(--radius); background: var(--bg-elev); border: 1px solid var(--surface-line); position: relative; }
.step__n { font-family: var(--font-mono); font-size: .8rem; color: var(--accent); letter-spacing: .15em; }
.step h3 { font-size: 1.15rem; margin: .5rem 0; }
.step p { color: var(--text-soft); font-size: .93rem; }

/* ---- Reviews ----------------------------------------------------------- */
.reviews { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.review { padding: 1.6rem; border-radius: var(--radius); background: var(--bg-elev); border: 1px solid var(--surface-line); display: flex; flex-direction: column; gap: 1rem; }
.review__stars { color: var(--ember); letter-spacing: .12em; }
.review p { color: var(--text); font-size: 1rem; }
.review__by { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: color-mix(in srgb, var(--mineral) 22%, var(--bg-sunk)); color: var(--accent); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; }
.review__name { font-weight: 600; font-size: .95rem; }
.review__loc { color: var(--text-faint); font-size: .82rem; }

/* ---- Reviews: coming-soon empty state --------------------------------- */
.reviews-soon {
  position: relative; overflow: hidden; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1.4rem, 5vw, 3rem);
  border-radius: var(--radius-lg); border: 1px dashed var(--surface-line);
  background:
    radial-gradient(120% 80% at 50% -10%, color-mix(in srgb, var(--mineral) 12%, transparent), transparent 60%),
    var(--bg-elev);
}
.reviews-soon::before {
  content: "★ ★ ★ ★ ★"; letter-spacing: .5em; font-size: 1.5rem;
  color: color-mix(in srgb, var(--ember) 55%, var(--surface-line));
  opacity: .5;
}
.reviews-soon__badge {
  font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  padding: .35rem .9rem; border-radius: 999px;
  background: color-mix(in srgb, var(--mineral) 14%, transparent);
}
.reviews-soon h2 { margin-top: .2rem; }
.reviews-soon p { max-width: 56ch; margin-inline: auto; color: var(--text-soft); }
.reviews-soon__cta-line { color: var(--text); }
.reviews-soon__cta-line strong { color: var(--accent); }

/* ---- Split feature blocks --------------------------------------------- */
.split { display: grid; gap: clamp(1.6rem, 5vw, 3.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--flip .split__media { order: -1; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--surface-line); box-shadow: var(--shadow); aspect-ratio: 5/4; }
.ticklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .8rem; }
.ticklist li { display: flex; gap: .8rem; align-items: flex-start; }
.ticklist svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: .15rem; }

/* ---- Areas ------------------------------------------------------------- */
.areas { display: flex; flex-wrap: wrap; gap: .55rem; }
.areas span { padding: .5rem .9rem; border-radius: 999px; border: 1px solid var(--surface-line); background: var(--bg-elev); font-size: .9rem; color: var(--text-soft); }

/* ---- Pricing tables ---------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--surface-line); border-radius: var(--radius); }
table.price { width: 100%; border-collapse: collapse; min-width: 460px; }
table.price th, table.price td { padding: .95rem 1.2rem; text-align: left; border-bottom: 1px solid var(--surface-line); }
table.price thead th { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); background: var(--bg-sunk); }
table.price td:last-child, table.price th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
table.price tbody tr:last-child td { border-bottom: 0; }
table.price .from { color: var(--accent); font-family: var(--font-mono); font-weight: 700; }

/* ---- FAQ (accordion) --------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: .7rem; max-width: 820px; }
.faq details { border: 1px solid var(--surface-line); border-radius: var(--radius-sm); background: var(--bg-elev); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-weight: 600; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); font-size: 1.4rem; color: var(--accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.3rem 1.25rem; color: var(--text-soft); }
.faq details > div p { max-width: 68ch; }

/* ---- CTA banner -------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.2rem, 6vw, 4rem); background: linear-gradient(135deg, var(--navy), #191c52); color: #EEF0FB; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #CDD2F5; }
.cta-band__glow { position: absolute; width: 460px; height: 460px; right: -120px; top: -160px; background: radial-gradient(circle, rgba(140,198,63,.42), transparent 60%); pointer-events: none; }
.cta-band .btn--cta { --_bg: var(--mineral); --_fg: #14163A; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--ink); color: #D3D6F2; padding-block: clamp(3rem, 7vw, 4.5rem) 2rem; margin-top: var(--section-y); }
:root[data-theme="light"] .site-footer { background: #101235; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer__grid h4 { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: #9195C2; margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .55rem; }
.footer__links a { color: #D3D6F2; font-size: .95rem; }
.footer__links a:hover { color: var(--mineral); }
.footer__brand p { color: #A9ADDA; font-size: .92rem; margin-top: 1rem; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); color: #9195C2; font-size: .84rem; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #D3D6F2; }
.footer__social a:hover { border-color: var(--mineral); color: var(--mineral); }
.footer__social svg { width: 18px; height: 18px; }

/* ---- Sticky mobile action bar ----------------------------------------- */
.mobibar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: .5rem; padding: .6rem; background: color-mix(in srgb, var(--bg-elev) 92%, transparent); backdrop-filter: blur(12px); border-top: 1px solid var(--surface-line); }
.mobibar .btn { flex: 1; padding: .85em 1em; font-size: .95rem; }
@media (max-width: 720px) { .mobibar { display: flex; } body { padding-bottom: 76px; } }

/* ---- Cookie banner ----------------------------------------------------- */
.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 120; max-width: 460px; margin-inline: auto; background: var(--bg-elev); border: 1px solid var(--surface-line); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-lg); display: none; }
.cookie.is-open { display: block; }
.cookie p { font-size: .9rem; color: var(--text-soft); margin-bottom: 1rem; }
.cookie__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
@media (max-width: 720px) { .cookie { bottom: 84px; } }

/* ---- Page hero (interior pages) --------------------------------------- */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; color: var(--text-faint); font-family: var(--font-mono); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--surface-line); }
.page-hero h1 { max-width: 20ch; margin-bottom: 1rem; }
.page-hero .lede { font-size: var(--step-1); }
.prose { max-width: 70ch; }
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.6rem 0 .6rem; }
.prose p, .prose ul { margin-bottom: 1rem; color: var(--text-soft); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }

/* ---- Scroll reveal (fail-safe: only hide when JS is confirmed) --------- */
.has-js [data-anim] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.has-js [data-anim].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .has-js [data-anim] { opacity: 1; transform: none; } }

/* ---- Badges / pills ---------------------------------------------------- */
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .8rem; border-radius: 999px; font-size: .8rem; font-weight: 600; font-family: var(--font-mono); letter-spacing: .04em; }
.pill--good { background: color-mix(in srgb, var(--mineral) 18%, transparent); color: var(--accent); }
.pill--warm { background: color-mix(in srgb, var(--ember) 16%, transparent); color: var(--cta); }

hr.rule { border: 0; border-top: 1px solid var(--surface-line); margin-block: var(--section-y); }
