/* ============================================================
   Speedy Sparkle Car Wash — spec preview
   Design system: deep water navy + sparkle aqua, editorial type
   ============================================================ */

:root {
  /* color */
  --navy-900: #061b2d;
  --navy-800: #0a2a45;
  --navy-700: #103a5c;
  --aqua-500: #16c2e6;
  --aqua-400: #4dd6f0;
  --aqua-300: #8fe6f6;
  --gold:     #ffc94d;
  --gold-deep:#f0a92e;
  --paper:    #f4f7fa;
  --paper-2:  #e7eef4;
  --ink:      #0d2233;
  --ink-soft: #45596b;
  --white:    #ffffff;
  --line:     rgba(16,58,92,.14);
  --line-dk:  rgba(255,255,255,.14);

  /* type */
  --font-display: "Iowan Old Style", "Palatino Linotype", "Palatino", "Georgia", "Times New Roman", serif;
  --font-sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* fluid scale */
  --step--1: clamp(.82rem, .78rem + .2vw, .92rem);
  --step-0:  clamp(1rem, .95rem + .25vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
  --step-5:  clamp(3.2rem, 2.2rem + 5vw, 6rem);

  /* space + shape */
  --wrap: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px -28px rgba(6,27,45,.45);
  --shadow-soft: 0 14px 40px -22px rgba(6,27,45,.4);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
/* never let a grid child's intrinsic min-content force horizontal overflow */
.hero-grid > *, .story-grid > *, .proof-grid > *, .visit-grid > *,
.footer-inner > *, .svc-grid > *, .proof-stats > * { min-width: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.08; font-weight: 700; letter-spacing: -.01em; }
ul { list-style: none; padding: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: .7rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--aqua-500); outline-offset: 2px; border-radius: 4px; }

.eyebrow {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--aqua-500);
  margin-bottom: 1rem;
}
.section-title { font-family: var(--font-display); font-size: var(--step-3); color: var(--ink); }

/* gold review star, the one warm note on an all-water palette */
.star {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(255,201,77,.45);
  font-size: .88em;
}

/* ============================================================
   buttons
   ============================================================ */
.btn {
  --bg: var(--aqua-500);
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: var(--step--1); letter-spacing: .02em;
  text-decoration: none; border: 0; cursor: pointer;
  padding: .95rem 1.6rem; border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn-primary { background: var(--aqua-500); color: var(--navy-900); box-shadow: 0 12px 30px -12px rgba(22,194,230,.7); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(22,194,230,.85); background: var(--aqua-400); }
.btn-block { display: flex; justify-content: center; width: 100%; }
.btn-ghost {
  background: transparent; color: var(--navy-800);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1.5px var(--aqua-500); color: var(--navy-900); }
.btn-link {
  background: transparent; padding-inline: .2rem; color: var(--navy-800);
  position: relative; border-radius: 0;
}
.btn-link::after {
  content: ""; position: absolute; left: .2rem; right: .2rem; bottom: .3rem; height: 2px;
  background: var(--aqua-500); transform: scaleX(.35); transform-origin: left; transition: transform .4s var(--ease);
}
.btn-link:hover::after { transform: scaleX(1); }
.btn-dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--aqua-500); box-shadow: 0 0 0 4px rgba(22,194,230,.25); }

/* ============================================================
   header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,247,250,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -20px rgba(6,27,45,.5); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; position: relative; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand-drop {
  width: 13px; height: 13px; border-radius: 60% 60% 60% 0;
  background: linear-gradient(160deg, var(--aqua-300), var(--aqua-500));
  transform: rotate(-45deg);
  box-shadow: 0 0 14px rgba(22,194,230,.8);
}
.brand-words { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy-800); letter-spacing: -.01em; }
.brand-sub { font-size: .62rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ink-soft); }
.site-nav { display: flex; gap: 1.7rem; }
.site-nav a {
  text-decoration: none; font-size: var(--step--1); font-weight: 600; color: var(--ink-soft);
  position: relative; padding: .3rem 0; transition: color .25s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--aqua-500); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.site-nav a:hover { color: var(--navy-900); }
.site-nav a:hover::after { transform: scaleX(1); }
.header-cta { padding-block: .6rem; }

/* ============================================================
   hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(22,194,230,.22), transparent 55%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900) 70%);
  color: #eaf3f8;
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  isolation: isolate;
}
/* wet, reflective floor so the hero resolves instead of fading to flat navy */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 44%;
  z-index: -1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(143,230,246,.45), transparent 3px),
    linear-gradient(to top, rgba(22,194,230,.15), transparent 64%),
    linear-gradient(to top, rgba(2,9,17,.5), transparent 78%);
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg .shimmer {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
}
.shimmer.s1 { width: 520px; height: 520px; top: -150px; right: -120px; background: radial-gradient(circle, rgba(22,194,230,.55), transparent 70%); animation: drift1 18s var(--ease) infinite alternate; }
.shimmer.s2 { width: 360px; height: 360px; bottom: -140px; left: -60px; background: radial-gradient(circle, rgba(77,214,240,.32), transparent 70%); animation: drift2 22s var(--ease) infinite alternate; }
.shimmer.s3 { width: 280px; height: 280px; top: 35%; left: 45%; background: radial-gradient(circle, rgba(143,230,246,.2), transparent 70%); animation: drift1 26s var(--ease) infinite alternate; }

/* concentric water ripples radiating behind the price card */
.rings {
  position: absolute; top: 36%; right: 14%; width: 760px; height: 760px;
  transform: translate(40%, -50%);
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    rgba(143,230,246,.16) 0 1.5px, transparent 1.5px 46px);
  -webkit-mask-image: radial-gradient(circle at center, #000 0, transparent 68%);
  mask-image: radial-gradient(circle at center, #000 0, transparent 68%);
  opacity: .8;
  animation: ripple 8s var(--ease) infinite;
}
/* slow diagonal gloss sweep, like light raking across a clean panel */
.sweep {
  position: absolute; inset: -20% -40%;
  background: linear-gradient(105deg, transparent 38%, rgba(143,230,246,.10) 48%, rgba(255,255,255,.16) 51%, rgba(143,230,246,.08) 54%, transparent 64%);
  transform: translateX(-30%);
  animation: sweep 11s var(--ease) infinite;
}
.hero-bg .bead {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(255,255,255,.98), rgba(143,230,246,.55) 46%, rgba(22,194,230,.08) 78%);
  box-shadow: 0 0 22px rgba(143,230,246,.65), inset 0 0 6px rgba(255,255,255,.6);
  opacity: .85;
}
.bead.b1 { width: 16px; height: 16px; top: 22%; left: 12%; animation: bob 7s ease-in-out infinite; }
.bead.b2 { width: 10px; height: 10px; top: 64%; left: 30%; animation: bob 9s ease-in-out infinite .6s; }
.bead.b3 { width: 22px; height: 22px; top: 16%; right: 32%; animation: bob 8s ease-in-out infinite 1.2s; }
.bead.b4 { width: 8px; height: 8px; bottom: 22%; right: 18%; animation: bob 6s ease-in-out infinite .3s; }
.bead.b5 { width: 13px; height: 13px; top: 46%; right: 8%; animation: bob 7.5s ease-in-out infinite .9s; }
.bead.b6 { width: 6px; height: 6px; top: 30%; left: 46%; animation: bob 6.5s ease-in-out infinite 1.6s; }
@keyframes drift1 { to { transform: translate(-40px, 30px) scale(1.1); } }
@keyframes drift2 { to { transform: translate(40px, -30px) scale(1.08); } }
@keyframes bob { 50% { transform: translateY(-16px); } }
@keyframes ripple { 0% { transform: translate(40%, -50%) scale(.82); opacity: .35; } 55% { opacity: .85; } 100% { transform: translate(40%, -50%) scale(1.12); opacity: 0; } }
@keyframes sweep { 0%, 12% { transform: translateX(-35%); } 60%, 100% { transform: translateX(35%); } }

.hero-grid {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1.08fr .92fr; align-items: center;
}
.hero-copy { max-width: none; min-width: 0; }
.hero .eyebrow { color: var(--aqua-300); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 1.2rem + 4vw, 4.3rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
}
.hero-lede { font-size: var(--step-1); color: #b9d2e0; max-width: 46ch; margin-bottom: 2rem; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 2.4rem; }
.hero-actions .btn-link { color: #cfe6f1; }
.hero-actions .btn-link::after { background: var(--aqua-400); }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem .7rem;
  border-top: 1px solid var(--line-dk); padding-top: 1.5rem;
  font-size: var(--step--1); color: #9fbccd;
}
.hero-meta li {
  display: inline-flex; align-items: baseline; gap: .4ch;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: .42rem .9rem; line-height: 1.2;
}
.hero-meta strong { color: #fff; font-weight: 700; }

.hero-card {
  background:
    linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04) 40%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.18);
  position: relative; overflow: hidden;
}
/* soft raking light across the glass card */
.hero-card::before {
  content: ""; position: absolute; top: -40%; right: -30%; width: 70%; height: 80%;
  background: radial-gradient(circle at 50% 50%, rgba(143,230,246,.22), transparent 65%);
  pointer-events: none;
}
.card-flag {
  display: inline-block; font-size: .68rem; text-transform: uppercase; letter-spacing: .16em;
  font-weight: 700; color: var(--navy-900); background: var(--aqua-400);
  padding: .35rem .7rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.card-name { font-family: var(--font-display); font-size: var(--step-2); color: #fff; margin-bottom: .6rem; }
.card-desc { color: #b9d2e0; font-size: var(--step--1); margin-bottom: 1.4rem; }
.card-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .85rem 0; border-top: 1px solid var(--line-dk);
}
.card-row-label { color: #9fbccd; font-size: var(--step--1); }
.card-row-val {
  font-family: var(--font-display); font-size: 1.85rem; color: var(--aqua-300);
  font-weight: 700; letter-spacing: -.01em; line-height: 1; white-space: nowrap;
  text-shadow: 0 0 24px rgba(143,230,246,.35);
}
.hero-card .btn { margin-top: 1.2rem; }
.card-note { font-size: .76rem; color: #8aa9bb; margin-top: 1rem; text-align: center; }

/* ============================================================
   marquee strip
   ============================================================ */
.strip {
  background: var(--navy-900); color: #cfe6f1; overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
}
.strip-track {
  display: flex; align-items: center; gap: 1.6rem; white-space: nowrap;
  padding: .9rem 0; width: max-content;
  font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .02em;
  animation: marquee 28s linear infinite;
}
.strip-track span { opacity: .9; }
.strip-dot { color: var(--aqua-500); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   story
   ============================================================ */
.story { padding-block: var(--section-y); background: var(--paper); }
.story-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.story-figure { position: relative; aspect-ratio: 4/5; }
.story-panel {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 72% 22%, rgba(22,194,230,.5), transparent 62%),
    radial-gradient(50% 45% at 22% 78%, rgba(77,214,240,.22), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.06);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 1rem; padding: clamp(1.4rem, 3vw, 2.2rem); color: #fff; overflow: hidden;
}
/* floating glass rating tile, top of the panel — turns dead space into proof */
.story-rating {
  position: relative; align-self: flex-end;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  background: rgba(8,28,46,.55); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 16px; padding: .85rem 1.1rem; box-shadow: var(--shadow-soft);
}
.sr-score {
  font-family: var(--font-display); font-weight: 700; font-size: 1.65rem;
  color: #fff; line-height: 1; letter-spacing: -.01em; display: inline-flex; gap: .3ch; align-items: baseline;
}
.sr-meta { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: #9fbccd; }
/* foam beads scattered across the panel */
.story-panel::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 68% 24%, rgba(255,255,255,.9) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 34%, rgba(255,255,255,.7) 0 3px, transparent 4px),
    radial-gradient(circle at 58% 16%, rgba(255,255,255,.6) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.5) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 74% 40%, rgba(143,230,246,.7) 0 2px, transparent 3px),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.45) 0 2px, transparent 3px);
}
/* concentric water-ripple centerpiece so the panel reads designed, not empty */
.story-panel::after {
  content: ""; position: absolute; top: 30%; left: 52%; width: 118%; aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: repeating-radial-gradient(circle at center,
    rgba(143,230,246,.22) 0 1.5px, transparent 1.5px 30px);
  -webkit-mask-image: radial-gradient(circle at center, #000 0, transparent 60%);
  mask-image: radial-gradient(circle at center, #000 0, transparent 60%);
  opacity: .7; pointer-events: none;
}
/* big soft gloss highlight, like a clean curved windshield */
.story-shine {
  position: absolute; top: -22%; right: -28%; width: 78%; height: 78%; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, rgba(255,255,255,.32), rgba(255,255,255,.06) 45%, transparent 64%);
  pointer-events: none;
}
.story-badge {
  position: relative; align-self: flex-start;
  background: rgba(8,28,46,.62);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 18px; padding: 1.15rem 1.3rem 1.25rem; max-width: 18rem;
  box-shadow: var(--shadow-soft);
}
.story-badge-k {
  display: block;
  font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3rem); font-weight: 700;
  line-height: .9; color: var(--aqua-300); letter-spacing: -.02em;
}
.story-badge-v { display: block; font-size: var(--step--1); color: #d6e6ef; margin-top: .55rem; line-height: 1.45; }
.story-chip {
  position: absolute; font-weight: 700; font-size: var(--step--1);
  background: #fff; color: var(--navy-800); padding: .55rem 1rem; border-radius: 999px;
  box-shadow: var(--shadow-soft); white-space: nowrap;
}
.chip-a { bottom: 15%; right: -14px; }
.chip-b { top: 12%; left: -18px; background: var(--aqua-400); color: var(--navy-900); }
.story-copy p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 52ch; }
.story-copy .section-title { margin-bottom: 1.4rem; }
.feature-list { display: grid; gap: .9rem; margin-top: 1.6rem; }
.feature-list li { display: flex; align-items: center; gap: .8rem; font-weight: 600; color: var(--ink); }
.fl-mark {
  width: 22px; height: 22px; flex: none; border-radius: 7px;
  background: linear-gradient(150deg, var(--aqua-400), var(--aqua-500)); position: relative;
}
.fl-mark::after {
  content: ""; position: absolute; left: 7px; top: 4px; width: 6px; height: 10px;
  border: solid var(--navy-900); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}

/* ============================================================
   services
   ============================================================ */
.services { padding-block: var(--section-y); background: var(--paper-2); }
.section-head { max-width: 56ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-intro { color: var(--ink-soft); font-size: var(--step-1); margin-top: .8rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); }
.svc {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.svc-index { font-family: var(--font-display); font-size: 1.4rem; color: var(--line); font-weight: 700; }
.svc:hover .svc-index { color: var(--aqua-500); transition: color .4s; }
.svc-price {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
  color: var(--navy-800); background: var(--paper); padding: .35rem .7rem; border-radius: 999px;
}
.svc-name { font-family: var(--font-display); font-size: var(--step-2); margin-bottom: .7rem; color: var(--ink); }
.svc-desc { color: var(--ink-soft); font-size: var(--step--1); margin-bottom: 1.4rem; flex: 1; }
.svc-points { display: grid; gap: .6rem; border-top: 1px solid var(--line); padding-top: 1.3rem; }
.svc-points li { display: flex; align-items: center; gap: .6rem; font-size: var(--step--1); color: var(--ink); }
.svc-points li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--aqua-500); box-shadow: 0 0 0 3px rgba(22,194,230,.18);
}
/* featured card */
.svc-full {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-color: transparent; color: #eaf3f8; transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.svc-full::before {
  content: ""; position: absolute; top: 0; left: 18%; right: 18%; height: 3px; border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, transparent, var(--aqua-400), var(--aqua-300), var(--aqua-400), transparent);
}
.svc-full:hover { transform: translateY(-16px); }
.svc-full .svc-name { color: #fff; }
.svc-full .svc-desc { color: #b9d2e0; }
.svc-full .svc-index { color: rgba(255,255,255,.2); }
.svc-full:hover .svc-index { color: var(--aqua-400); }
.svc-full .svc-price { background: rgba(255,255,255,.1); color: #fff; }
.svc-full .svc-points { border-top-color: rgba(255,255,255,.14); }
.svc-full .svc-points li { color: #d6e6ef; }
.svc-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
  background: var(--aqua-400); color: var(--navy-900); padding: .35rem .9rem; border-radius: 999px;
  white-space: nowrap;
}
.svc-foot { text-align: center; margin-top: clamp(1.8rem, 4vw, 3rem); color: var(--ink-soft); font-size: var(--step-1); }

/* ============================================================
   proof
   ============================================================ */
.proof {
  padding-block: var(--section-y); color: #eaf3f8; position: relative; overflow: hidden;
  background:
    radial-gradient(90% 60% at 78% 0%, rgba(22,194,230,.14), transparent 60%),
    var(--navy-900);
}
.proof::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143,230,246,.4) 50%, transparent);
}
.proof-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.proof .eyebrow { color: var(--aqua-300); }
.proof .section-title { color: #fff; }
.proof-copy p { color: #b9d2e0; margin: 1.2rem 0 1.6rem; max-width: 46ch; }
.proof-copy .btn-link { color: var(--aqua-300); }
.proof-copy .btn-link::after { background: var(--aqua-400); }
.proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.8rem, 2vw, 1.4rem); }
.stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 1.8rem);
  transition: transform .4s var(--ease), border-color .4s;
}
.stat:hover { transform: translateY(-6px); border-color: rgba(22,194,230,.5); }
.stat-num { display: block; font-family: var(--font-display); font-size: var(--step-3); color: var(--aqua-300); font-weight: 700; line-height: 1; }
.stat-label { display: block; margin-top: .6rem; font-size: var(--step--1); color: #9fbccd; }

/* ============================================================
   visit
   ============================================================ */
.visit { padding-block: var(--section-y); background: var(--paper); }
.visit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.visit-copy p { color: var(--ink-soft); margin: 1.2rem 0 1.8rem; max-width: 48ch; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.visit-panel {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); color: #eaf3f8;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.visit-panel::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,194,230,.4), transparent 70%);
}
.visit-list { display: grid; gap: 1.4rem; position: relative; }
.visit-list dt { font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: var(--aqua-300); font-weight: 700; margin-bottom: .35rem; }
.visit-list dd { font-size: var(--step-1); color: #eaf3f8; line-height: 1.4; }
.visit-list dd a { color: #fff; text-decoration: none; border-bottom: 2px solid var(--aqua-500); }

/* ============================================================
   footer
   ============================================================ */
.site-footer { background: var(--navy-900); color: #b9d2e0; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1.7fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 2.5rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-tag { margin-top: .8rem; max-width: 34ch; font-size: var(--step--1); color: #8aa9bb; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-cols h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--aqua-300); margin-bottom: .7rem; }
.footer-cols p { font-size: var(--step--1); color: #b9d2e0; line-height: 1.7; }
.footer-cols a { color: #b9d2e0; text-decoration: none; transition: color .25s; }
.footer-cols a:hover { color: #fff; }
.footer-base { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.5rem; }
.footer-base p { font-size: .8rem; color: #6f8ea0; }

/* spec footer (mandatory) */
.spec-footer {
  background: #04121f; color: #7d97a8; text-align: center;
  padding: 1.1rem var(--gutter); font-size: .8rem; line-height: 1.6;
}
.spec-footer a { color: var(--aqua-300); }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .story-grid, .proof-grid, .visit-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-card { max-width: 440px; width: 100%; }
  .story-figure { max-width: 340px; aspect-ratio: 5/4; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}
@media (max-width: 760px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-full { transform: none; }
  .svc-full:hover { transform: translateY(-8px); }
  .proof-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .header-cta { display: none; }
  .hero-card { max-width: 100%; }
  .hero-meta { gap: .6rem 1.3rem; }
  .card-row-val { font-size: 1.6rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .shimmer, .bead, .strip-track { animation: none !important; }
  .btn, .svc, .stat, .site-nav a::after { transition: none; }
}
