/* ==========================================================================
   StreamLines — Home. Page-level only: reuses tokens.css classes and
   variables. Layout and motion follow the "Aura" reference (background
   video, centered shiny hero, menu-bar strip, product mockup, glass
   cards), rebuilt in plain CSS.
   ========================================================================== */

/* ---- Skip link --------------------------------------------------------- */
.skip-link {
  position: absolute; top: var(--s-2); left: var(--s-2);
  transform: translateY(-150%);
  background: var(--fg); color: var(--ink);
  padding: var(--s-2) var(--s-4); border-radius: var(--r-sm);
  font: 500 var(--t-sm)/1 var(--font-sans); text-decoration: none;
  z-index: 30; transition: transform var(--dur-1) var(--ease);
}
.skip-link:focus { transform: translateY(0); }
/* the skip link moves focus to <main tabindex="-1">; no ring on a whole-page landmark */
main:focus { outline: none; }

/* ---- Stage: background video behind header, hero and showcase ------------
   Absolute at the top of the page, fades to black at the bottom so every
   section below sits on plain black (contrast stays what contrast.py measures).
   Two scrims: an overall darken, plus a heavier ellipse where the hero text is. */
body { position: relative; }
.site-header, main, .site-footer { position: relative; z-index: 1; }
.stage-bg {
  position: absolute; inset: 0 0 auto; z-index: 0; height: max(calc(100svh + 10rem), 44rem);
  overflow: hidden; pointer-events: none;
  background: #000 url("../img/hero-poster.jpg") center / cover no-repeat;
  -webkit-mask-image: linear-gradient(#000 70%, transparent);
          mask-image: linear-gradient(#000 70%, transparent);
}
.stage-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.stage-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgb(0 0 0 / .8) 0, rgb(0 0 0 / .8) 9.5rem, transparent 14rem),
    radial-gradient(ellipse 60% 48% at 50% 30%, rgb(0 0 0 / .7), transparent 80%),
    rgb(0 0 0 / .38);
}

/* ---- Header ------------------------------------------------------------ */
.header-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-3); padding-block: var(--s-5);
}
/* the top band of .stage-bg::after (80% black) sits under the header: the
   worst video frame (#deeeff) becomes ~#2c2f33, white text stays above 12:1 */
.nav-desktop { display: none; order: 1; }
.nav-desktop ul { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--s-6); }
.nav-desktop a { color: var(--fg-2); text-decoration: none; font-size: var(--t-sm); font-weight: 500; }
.nav-desktop a:hover { color: var(--fg); }

.nav-toggle { order: 2; flex-basis: 100%; }
.nav-toggle summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; min-height: var(--tap);
  padding: 0 var(--s-4); border: 1px solid var(--line-ui); border-radius: var(--r-pill);
  background: rgb(255 255 255 / .05);
  font: 500 var(--t-sm)/1 var(--font-sans); color: var(--fg);
}
.nav-toggle summary::-webkit-details-marker { display: none; }
.nav-toggle summary::after { content: "+"; margin-left: var(--s-2); color: var(--fg-3); }
.nav-toggle[open] summary::after { content: "–"; }
/* open menu: its own near-opaque panel, so it stays readable over any video frame */
.nav-toggle nav { margin-top: var(--s-3); padding: var(--s-2) var(--s-4); border: 1px solid var(--line); border-radius: var(--r-md); background: rgb(0 0 0 / .92); }
.nav-toggle nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-1); }
.nav-toggle nav a { display: flex; align-items: center; min-height: var(--tap); color: var(--fg-2); text-decoration: none; font-size: var(--t-sm); }
.nav-toggle nav a:hover { color: var(--fg); }
.header-call { order: 1; }
.header-row .logo { min-height: var(--tap); }
@media (min-width: 60rem) {
  .header-row { flex-wrap: nowrap; }
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .header-call { order: 2; }
}

/* Aura's white pill button: icon + label + chevron that nudges on hover */
.btn-pill { padding-inline: 1.25rem; font-weight: 500; }
.btn-pill .ico { width: 15px; height: 15px; }
.btn-pill .chev { font-size: 1.25em; line-height: 0; transition: transform var(--dur-1) var(--ease); }
.btn-pill:hover .chev { transform: translateX(2px); }
.btn-pill.btn-ghost { border-color: rgb(255 255 255 / .38); }

/* ---- Entrance + scroll reveal --------------------------------------------
   .rise: fade/slide up on load with a per-element delay (--d), like Aura's
   motion delays. .reveal: same, driven by scroll where the browser supports
   scroll-driven animations; elsewhere it is simply visible. Reduced motion
   turns both off (tokens.css). */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.rise { animation: rise .8s var(--ease) var(--d, 0s) both; }
@supports (animation-timeline: view()) {
  .reveal { animation: rise linear both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
}

/* ---- Hero ---------------------------------------------------------------*/
.hero { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem) clamp(4rem, 3rem + 4vw, 6rem); text-align: center; }
/* desktop: header + hero are the whole first view (header ≈ 5.75rem tall) */
@media (min-width: 60rem) and (min-height: 38rem) {
  .hero { min-height: calc(100svh - 5.75rem); display: grid; align-content: center; padding-block: var(--s-7) var(--s-9); }
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.pill-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2); max-width: none;
  font: 500 var(--t-label)/1 var(--font-mono); letter-spacing: var(--tr-label); text-transform: uppercase; color: var(--fg);
}
.pill-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fg); }
.hero-title {
  margin-top: var(--s-6); font-size: clamp(2.6rem, 1rem + 6.4vw, 5.25rem); line-height: .95; font-weight: 600;
  letter-spacing: -.045em; text-shadow: 0 2px 24px rgb(0 0 0 / .5);
}
.br-md { display: none; }
@media (min-width: 48rem) { .br-md { display: inline; } }
.hero-lead { margin-top: var(--s-6); max-width: 34rem; color: #e3e8ee; font-size: var(--t-base); line-height: 1.55; text-shadow: 0 1px 12px rgb(0 0 0 / .8); }
.hero-cta { margin-top: var(--s-7); justify-content: center; }
.hero-micro { margin-top: var(--s-4); max-width: none; font-size: var(--t-sm); color: #cfd6de; text-shadow: 0 1px 10px rgb(0 0 0 / .8); }

/* Shine: Aura's looping gradient, recolored to the palette and kept light
   enough to read at every frame. Loops only when the page script adds
   .motion (and so also shows the pause button); otherwise the single pass
   from tokens.css applies. */
.motion .shine-loop {
  background: linear-gradient(to right, var(--blue) 0%, #6fb4ff 14%, var(--blue-hot) 32%, #fff 50%, #6fb4ff 68%, var(--blue) 86%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  animation: shiny 6s linear infinite;
}
@keyframes shiny { from { background-position: -200% center; } to { background-position: 200% center; } }
@media (min-width: 64rem) { .motion .shine-loop { filter: url(#noise); } }
.paused .shine-loop { animation-play-state: paused; }

/* ---- Showcase: browser + phone mockup of the tax-office concept ----------
   Desktop scales as one cqw-sized composition; mobile uses a readable,
   rem-sized phone treatment below. */
.showcase-section { padding-block: clamp(3rem, 2rem + 4vw, 6rem) clamp(4rem, 3rem + 5vw, 7rem); }
.showcase { position: relative; margin: 0; container-type: inline-size; padding-bottom: 6cqw; }
.browser {
  border-radius: clamp(10px, 1.4cqw, 18px); overflow: hidden;
  border: 1px solid var(--line-2); background: rgb(14 16 20 / .9);
  box-shadow: 0 40px 120px -20px rgb(41 141 255 / .35), 0 0 0 1px rgb(0 0 0 / .4);
}
.browser-bar {
  display: flex; align-items: center; gap: 1.6cqw; padding: 1.1cqw 1.6cqw;
  background: #0e1014; border-bottom: 1px solid var(--line);
}
.lights { display: flex; gap: .7cqw; }
.lights i { width: 1.05cqw; height: 1.05cqw; min-width: 7px; min-height: 7px; border-radius: 50%; background: #ff5f57; }
.lights i:nth-child(2) { background: #febc2e; }
.lights i:nth-child(3) { background: #28c840; }
.url {
  flex: 1; max-width: 40cqw; margin-inline: auto; padding: .5cqw 1.4cqw; border-radius: var(--r-pill);
  background: rgb(255 255 255 / .06); color: var(--fg-3); text-align: center;
  font: 500 max(10px, 1.1cqw)/1.3 var(--font-mono);
}
.browser-tag {
  font: 500 max(10px, .95cqw)/1 var(--font-mono); letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg); padding: .5cqw 1cqw; border: 1px solid var(--line-ui); border-radius: var(--r-pill);
}

/* the mock client site: light and warm, the opposite of our dark shell */
.mock { background: #fbfaf7; color: #1d2733; font-family: var(--font-sans); letter-spacing: -.01em; }
.mock span, .mock b { display: block; }
.mock-nav { display: flex; align-items: center; gap: 3cqw; padding: 1.6cqw 4cqw; border-bottom: 1px solid #ebe7df; }
.mock-logo { display: flex !important; align-items: center; gap: .8cqw; font-weight: 700; font-size: 1.5cqw; }
.mock-logo i { width: 2cqw; height: 2cqw; border-radius: .5cqw; background: #1f3a5f; }
.mock-links { display: flex !important; gap: 2.4cqw; margin-left: auto; font-size: 1.15cqw; color: #5b6572; }
.mock-call, .mock-btn, .phone-call, .phone-btn { background: #1f3a5f; color: #fff; border-radius: 99px; font-weight: 600; text-align: center; }
.mock-call { font-size: 1.15cqw; padding: .8cqw 1.6cqw; }
.mock-hero { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5cqw; align-items: center; padding: 4cqw 4cqw 3cqw; }
.mock-kicker { font-size: 1.05cqw; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #8a6d3b; }
.mock-h { margin-top: 1.2cqw; font-size: 3.4cqw; line-height: 1.05; font-weight: 650; letter-spacing: -.035em; color: #14202c; }
.mock-bar { height: .9cqw; margin-top: 1.4cqw; border-radius: 99px; background: #e7e2d8; width: 92%; }
.mock-bar.short { width: 64%; margin-top: .8cqw; }
.mock-btns { display: flex !important; gap: 1cqw; margin-top: 2.4cqw; }
.mock-btn { font-size: 1.2cqw; padding: 1cqw 2cqw; }
.mock-btn.ghost { background: transparent; color: #1f3a5f; box-shadow: inset 0 0 0 1px #1f3a5f; }
.mock-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1.4cqw; }
.mock-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2cqw; padding: 0 4cqw 4cqw; }
.mock-tile { padding: 1.8cqw; border: 1px solid #ebe7df; border-radius: 1.2cqw; background: #fff; font-size: 1.3cqw; }
.mock-tile i { display: block; width: 2.6cqw; height: 2.6cqw; border-radius: .7cqw; background: #e9eef5; margin-bottom: 1.2cqw; }
.mock-tile b { font-weight: 600; }

.phone {
  position: absolute; right: 3cqw; bottom: 0; width: 21cqw; aspect-ratio: 9 / 18.5;
  padding: .8cqw; border-radius: 3.4cqw; background: #0b0c0f;
  box-shadow: 0 0 0 1px var(--line-2), 0 30px 80px -10px rgb(0 0 0 / .8);
}
.phone-screen { height: 100%; overflow: hidden; border-radius: 2.7cqw; background: #fbfaf7; color: #14202c; padding: 1.6cqw 1.4cqw; }
.phone-screen > * { display: block; }
.phone-nav { display: flex !important; align-items: center; justify-content: space-between; margin-bottom: 1.4cqw; }
.phone-nav i { width: 2cqw; height: 2cqw; border-radius: .5cqw; background: #1f3a5f; }
.phone-call { font-size: 1cqw; padding: .6cqw 1.4cqw; }
.phone-screen img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1cqw; }
.phone-h { margin-top: 1.4cqw; font-size: 1.9cqw; line-height: 1.1; font-weight: 650; letter-spacing: -.03em; }
.phone-screen .mock-bar { height: .7cqw; margin-top: 1.1cqw; }
.phone-btn { margin-top: 1.8cqw; font-size: 1.15cqw; padding: 1.1cqw; }

@media (max-width: 47.999rem) {
  .showcase { padding-bottom: 0; }
  .browser { display: none; }
  .phone {
    position: relative; right: auto; bottom: auto; width: min(18rem, 78vw);
    margin: 3rem auto 0; padding: .65rem; border-radius: 2.25rem;
  }
  .phone::before {
    content: "Concept"; position: absolute; left: 50%; top: -2.25rem; transform: translateX(-50%);
    padding: .35rem .75rem; border: 1px solid var(--line-ui); border-radius: var(--r-pill);
    color: var(--fg); font: 500 .875rem/1 var(--font-mono); letter-spacing: .1em; text-transform: uppercase;
  }
  .phone-screen { border-radius: 1.7rem; padding: .85rem .75rem; }
  .phone-nav { margin-bottom: .75rem; }
  .phone-nav i { width: 1.5rem; height: 1.5rem; border-radius: .4rem; }
  .phone-call { font-size: .875rem; padding: .45rem .9rem; }
  .phone-screen img { border-radius: .75rem; }
  .phone-h { margin-top: .9rem; font-size: 1.25rem; }
  .phone-screen .mock-bar { height: .5rem; margin-top: .7rem; }
  .phone-screen .mock-bar.short { margin-top: .5rem; }
  .phone-btn { margin-top: 1rem; padding: .75rem; font-size: .875rem; }
}


/* Concept disclaimer: legally required text, a readable note, not a pill */
.notice {
  margin-top: var(--s-4); display: flex; gap: var(--s-2); align-items: flex-start;
  font-size: var(--t-sm); line-height: 1.5; color: var(--fg-2);
  border: 1px solid var(--line-ui); border-radius: var(--r-sm);
  padding: var(--s-3) var(--s-4); max-width: 40rem;
}
.notice span { flex: none; color: var(--fg-3); }

/* ---- Statement (HOME-02): one big centered question ----------------------*/
.statement { padding-block: clamp(4rem, 2rem + 6vw, 8rem); text-align: center; }
.statement-eyebrow { margin-inline: auto; }
.statement-h { margin: var(--s-5) auto 0; max-width: 16ch; font-size: clamp(2.25rem, 1rem + 5vw, 4.5rem); line-height: .98; letter-spacing: -.045em; font-weight: 600; }
.statement-body { margin: var(--s-6) auto 0; max-width: 34rem; }

/* ---- Split (HOME-03, Aura "Triage") -------------------------------------*/
.split-section, .steps-section { padding-block: clamp(4rem, 2rem + 6vw, 7rem); }
.split { display: grid; gap: var(--s-8); align-items: start; }
@media (min-width: 56rem) { .split { grid-template-columns: 1fr 1fr; gap: var(--s-9); } }
.split-h { margin-top: var(--s-5); font-size: clamp(2rem, 1rem + 3.4vw, 3.25rem); line-height: 1.02; letter-spacing: -.04em; font-weight: 600; }
.own-card { padding: var(--s-5); }
.own-key { position: absolute; right: -8%; top: -14%; width: 55%; opacity: .9; mix-blend-mode: screen; pointer-events: none; transform: rotate(8deg); }
.own-kicker { position: relative; }
.own-list { position: relative; list-style: none; margin: var(--s-8) 0 0; padding: 0; display: grid; gap: var(--s-3); }
.own-list li { padding: var(--s-4); border-radius: var(--r-md); color: var(--fg); background: rgb(10 11 13 / .78); }
.own-list .label { display: block; margin-bottom: var(--s-2); color: var(--blue); }

/* ---- Service area (Aura "LogoCloud" slot) --------------------------------*/
.area { position: relative; overflow: hidden; isolation: isolate; }
.area-bg { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; opacity: .75; }
.area::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgb(0 0 0 / .7), rgb(0 0 0 / .35) 50%, rgb(0 0 0 / .8)); }
.area-inner { padding-block: clamp(4rem, 2rem + 6vw, 8rem); text-align: center; }
.area-kicker { color: var(--fg-2); }
.area-list {
  list-style: none; margin: var(--s-7) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-4);
  font-size: var(--t-base); font-weight: 600; letter-spacing: -.02em; color: rgb(255 255 255 / .72);
}
@media (min-width: 40rem) { .area-list { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 64rem) { .area-list { grid-template-columns: repeat(6, 1fr); } }

/* ---- Guarantee ------------------------------------------------------------*/
.section-tight { padding-block: clamp(3.5rem, 2rem + 5vw, 6rem); }
.guarantee {
  position: relative; display: grid; gap: var(--s-6); padding: var(--s-7) var(--s-6);
  align-items: center; border: 1px solid rgb(41 141 255 / .45);
}
.guarantee::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--glow-top); opacity: .28; }
.guarantee > * { position: relative; z-index: 1; }
.guarantee-num-wrap { text-align: center; }
.guarantee-num {
  margin: 0; font-size: clamp(7rem, 4rem + 12vw, 12rem); line-height: .85; letter-spacing: -.04em; font-weight: 500;
  background: linear-gradient(180deg, var(--blue-hot), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.guarantee-num-label { margin-top: var(--s-2); color: var(--fg-3); }
@media (min-width: 48rem) {
  .guarantee { grid-template-columns: auto 1fr; gap: var(--s-8); padding: var(--s-8); }
  .guarantee-num-wrap { text-align: left; }
}

/* ---- Steps (Aura "Testimonials" glass grid) -------------------------------*/
.steps { list-style: none; margin: var(--s-7) 0 0; padding: 0; display: grid; gap: var(--s-4); color: var(--fg-2); }
.steps li { padding: var(--s-5); border-radius: var(--r-lg); }
.step-index { display: block; font: 500 2rem/1 var(--font-mono); letter-spacing: -.04em; color: var(--blue); margin-bottom: var(--s-6); }
.steps strong { display: block; color: var(--fg); font-weight: 600; margin-bottom: var(--s-2); padding-top: var(--s-4); border-top: 1px solid var(--line); }
@media (min-width: 40rem) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .steps { grid-template-columns: repeat(5, 1fr); } }

/* ---- Cost cards (static: nothing here is clickable, so no hover lift) -----*/
.cost-grid { display: grid; gap: var(--s-5); margin-top: var(--s-7); }
@media (min-width: 56rem) { .cost-grid { grid-template-columns: repeat(3, 1fr); } }
.cost-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  padding: var(--s-7) var(--s-6); border-radius: var(--r-lg); border: 1px solid var(--line-ui);
  background: linear-gradient(135deg, rgb(0 0 0 / .7), rgb(0 0 0 / .4));
}
.cost-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(135deg, rgb(255 255 255 / .1), transparent 50%); }
.cost-tier { font-size: 1.05rem; font-weight: 500; letter-spacing: 0; color: var(--fg-2); }
.cost-price { margin-top: var(--s-2); font-size: 2rem; font-weight: 500; letter-spacing: -.03em; color: var(--fg); line-height: 1.2; }
.cost-desc { margin-top: var(--s-4); color: var(--fg-2); font-size: var(--t-base); }

/* ---- Final CTA ------------------------------------------------------------*/
.cta { text-align: center; padding: var(--s-8) var(--s-6); border-radius: var(--r-xl); }
.cta::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; background: radial-gradient(600px circle at 50% 0%, rgb(41 141 255 / .35), transparent 70%); }
.cta > * { position: relative; z-index: 1; }
.cta .eyebrow { margin-inline: auto; }
.cta-h { margin: var(--s-4) auto 0; max-width: 14ch; font-size: clamp(2.25rem, 1rem + 4.4vw, 4rem); line-height: 1.02; letter-spacing: -.045em; font-weight: 600; }
.cta-row { justify-content: center; }
@media (min-width: 48rem) { .cta { padding: var(--s-10) var(--s-8); } }

/* ---- Pause control (WCAG 2.2.2) --------------------------------------------*/
.motion-toggle {
  position: fixed; right: var(--s-4); bottom: var(--s-4); z-index: 20;
  min-height: var(--tap); padding: 0 var(--s-4); border-radius: var(--r-pill);
  border: 1px solid var(--line-ui); background: rgb(0 0 0 / .7); color: var(--fg);
  font: 500 var(--t-label)/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
}
.motion-toggle:hover { background: rgb(20 22 26 / .9); }

/* ---- Footer ---------------------------------------------------------------*/
.site-footer { border-top: 1px solid var(--line); padding-block: var(--s-8) var(--s-10); }
.site-footer a { color: var(--fg-2); display: inline-block; padding-block: .75rem; margin-block: -.5rem; }  /* 44px tap height, same rhythm */
.site-footer a:hover { color: var(--fg); }
.footer-grid { display: grid; gap: var(--s-6); }
@media (min-width: 48rem) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

/* texto só para leitor de tela */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.menu-close, .nav-toggle[open] .menu-open { display: none; }
.nav-toggle[open] .menu-close { display: inline; }

/* ==========================================================================
   Inner pages (/what-we-do/, /our-portfolio/, /process/, /contact/, /privacy/, 404).
   No video here: a Sui glow + grain hero keeps the pages light.
   ========================================================================== */
.page-hero { padding-block: clamp(4rem, 2rem + 7vw, 8rem) clamp(3.5rem, 2rem + 5vw, 6rem); }
.page-title { margin-top: var(--s-5); max-width: 18ch; font-size: clamp(2.5rem, 1rem + 5.4vw, 4.75rem); line-height: .96; letter-spacing: -.045em; font-weight: 600; }
.nav-desktop a[aria-current="page"], .nav-toggle nav a[aria-current="page"] { color: var(--fg); text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: .5em; }

/* two-column split rows */
.section-row { padding-block: clamp(3.5rem, 2rem + 5vw, 6rem); }
.row-split { display: grid; gap: var(--s-6); }
@media (min-width: 64rem) { .row-split { grid-template-columns: 5fr 7fr; gap: var(--col-gap); align-items: start; } }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.check-list li { position: relative; padding-left: var(--s-6); color: var(--fg-2); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

/* included / not included */
.compare { display: grid; gap: var(--s-5); margin-top: var(--s-7); }
@media (min-width: 56rem) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { padding: var(--s-6); border-radius: var(--r-lg); }
.compare-no { border: 1px dashed var(--line-ui); }
.compare-h { display: flex; align-items: center; gap: var(--s-3); font-size: var(--t-h3); }
.compare-mark { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; font-size: 14px; }
.compare-mark.yes { background: var(--blue); color: var(--ink); }
.compare-mark.no { border: 1px solid var(--line-ui); color: var(--fg-2); }
.compare-list { list-style: none; margin: var(--s-5) 0 0; padding: 0; display: grid; }
.compare-list li { padding-block: var(--s-4); border-top: 1px solid var(--line); }
.compare-list.yes li { color: var(--fg); }

/* contact */
.contact-wrap { max-width: 40rem; }
.contact-phone { margin-top: var(--s-5); font-size: clamp(2rem, 1rem + 4vw, 3.5rem); font-weight: 600; letter-spacing: -.035em; line-height: 1; }
.contact-phone a { color: var(--fg); text-decoration-color: var(--blue); }
.form { padding: var(--s-6); display: grid; gap: var(--s-5); }
.form-unavailable {
  padding: var(--s-4); border: 2px solid var(--line-ui); border-radius: var(--r-md);
  background: var(--surface-2); color: var(--fg); font-weight: 500; overflow-wrap: anywhere;
}
[data-state="ready"] .form-unavailable { display: none; }
.form-fields { min-width: 0; margin: 0; padding: 0; border: 0; display: grid; gap: var(--s-5); }
.form-fields:disabled { opacity: .45; }
.form-assure { color: var(--fg); font-weight: 500; }
.field { min-width: 0; display: grid; gap: var(--s-2); }
.field label { color: var(--fg); font-weight: 500; }
.field-hint { font-size: var(--t-sm); color: var(--fg-3); }
.field input, .field textarea, .field select {
  width: 100%; min-height: var(--tap); padding: var(--s-3) var(--s-4); border-radius: var(--r-md);
  border: 1px solid var(--line-ui); background: var(--surface-2); color: var(--fg);
  font: 400 var(--t-base)/1.4 var(--font-sans);
}
.field textarea { resize: vertical; }
.field select { appearance: auto; }
.field :is(input, textarea, select):focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.field :is(input, textarea, select)[aria-invalid="true"] { border-color: #ffb4ab; }
.field-error { font-size: var(--t-sm); color: #ffb4ab; font-weight: 600; }
.field-error::before { content: "⚠ "; }
.contact-preference { min-width: 0; margin: 0; padding: 0; border: 0; }
.contact-preference legend { color: var(--fg); font-weight: 500; }
.radio-group { display: grid; gap: var(--s-1); margin-top: var(--s-2); }
.radio-group label {
  display: flex; align-items: center; gap: var(--s-3); min-height: var(--tap); padding-inline: var(--s-3);
  border: 1px solid transparent; border-radius: var(--r-md); color: var(--fg-2); cursor: pointer;
}
.radio-group label:hover { background: var(--surface-2); }
.radio-group input { width: 1.25rem; height: 1.25rem; margin: 0; accent-color: var(--blue); }
.radio-group input:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.form-honeypot { display: none; }
.form-notice { font-size: var(--t-sm); color: var(--fg-2); }
.form-actions { display: grid; gap: var(--s-3); align-items: center; }
.form-actions p { font-size: var(--t-sm); color: var(--fg-2); overflow-wrap: anywhere; }
.form-submit { justify-self: start; }
.form-submit:disabled { cursor: wait; opacity: .65; }
.form-after { font-size: var(--t-sm); color: var(--fg-3); }
.error-summary, .form-message {
  padding: var(--s-4); border: 2px solid #ffb4ab; border-radius: var(--r-md); background: var(--surface-2); color: var(--fg);
}
.error-summary h2, .form-message h2 { font-size: var(--t-lg); line-height: 1.3; }
.error-summary h2::before, .form-failure::before { content: "⚠ "; color: #ffb4ab; }
.error-summary ul { margin: var(--s-3) 0 0; padding-left: var(--s-5); }
.error-summary a, .form-message a { color: var(--fg); }
.form-message { display: grid; gap: var(--s-3); overflow-wrap: anywhere; }
.form-success { border-color: var(--blue); }
@media (min-width: 36rem) { .form-actions { grid-template-columns: auto 1fr; gap: var(--s-4); } }
@media (forced-colors: active) {
  .form-unavailable, .error-summary, .form-message { border-color: CanvasText; }
  .field-error, .error-summary h2::before, .form-failure::before { color: CanvasText; }
  .field :is(input, textarea, select)[aria-invalid="true"] { border: 2px solid CanvasText; }
}

/* privacy prose */
.prose > * { max-width: 44rem; }
.prose h2 { margin-top: var(--s-8); font-size: var(--t-h3); letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: var(--s-4); }

/* placeholder that must be decided before publishing: visible on purpose */
.ph { background: none; color: #ffd27a; border: 1px dashed #ffd27a; border-radius: 4px; padding: 0 .3em; font: 500 .9em/1.4 var(--font-mono); }

.notfound { min-height: 70vh; }

/* ==========================================================================
   Home sections: one rhythm for every band (eyebrow → h2 → body → link)
   ========================================================================== */
.band { padding-block: clamp(4rem, 2.5rem + 5vw, 7.5rem); }
.band-head { max-width: 44rem; }
.split .band-body { max-width: 30rem; }
.band-h { margin-top: var(--s-3); font-size: clamp(2rem, 1.1rem + 3vw, 3.25rem); line-height: 1.04; letter-spacing: -.04em; font-weight: 600; max-width: 20ch; }
.band-body { margin-top: var(--s-5); max-width: 36rem; }
.band-body + .band-body { margin-top: var(--s-4); }
.band-link { margin-top: var(--s-5); }
.band-link a { display: inline-block; padding-block: .75rem; }  /* 44px tap height */
.band-head .notice { margin-top: var(--s-5); }
.band .showcase { margin-top: var(--s-8); }
.band .steps, .band .compare, .band .cost-grid { margin-top: var(--s-7); }
.cta .band-body { margin-inline: auto; max-width: 30rem; }
.cta .cta-row { margin-top: var(--s-6); }

/* text + photo, side by side from 56rem */
.media-split { display: grid; gap: var(--s-7); align-items: center; }
@media (min-width: 56rem) { .media-split { grid-template-columns: 1fr 1fr; gap: var(--s-9); } }

.photo { margin: 0; }
.photo img {
  display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--r-lg); border: 1px solid var(--line);
}
.photo figcaption { margin-top: var(--s-2); font-size: var(--t-sm); color: var(--fg-3); }

.area-inner .band-h { margin-inline: auto; }
.area-inner .band-body { margin-inline: auto; color: var(--fg); }
.area-kicker { margin-inline: auto; }

/* ---- Glass header ---------------------------------------------------------
   Translucent + blur, above the page. Inner pages pull their hero up under it
   (--header-h), so the blue glow starts at the very top instead of below a black bar.
   Previous solid header: git tag header-solido-v1. */
:root { --header-h: 9.25rem; }         /* mobile: logo row + menu row */
.site-header {
  z-index: 2;
  background: rgb(0 0 0 / .55);
  border-bottom: 1px solid rgb(255 255 255 / .08);
}
@supports (backdrop-filter: blur(1px)) {
  .site-header { background: rgb(8 12 20 / .28); -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%); }
}
/* the glow is brightest under the header: lighter links keep contrast above 4.5:1 */
.site-header .nav-desktop a { color: rgb(255 255 255 / .82); }
.site-header .nav-desktop a:hover { color: var(--fg); }
main > .page-hero:first-child {
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(4rem, 2rem + 7vw, 8rem));
}
@media (min-width: 60rem) {
  :root { --header-h: 5.75rem; }                      /* 44px row + 2 × 1.5rem */
  .site-header { position: sticky; top: 0; }
}
