/* ============================================================
   aipple — outcomes-first rebuild
   Black/white premium editorial system + acid-lime signature
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  /* color tokens */
  --bg: #000000;
  --surface: #090909;
  --surface-2: #111111;
  --surface-3: #161616;
  --border: rgba(255, 255, 255, 0.14);
  --hairline: rgba(255, 255, 255, 0.085);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.42);
  --ghost: rgba(255, 255, 255, 0.20);

  /* signature accent (tweakable) */
  --accent: #b7ff4a;
  --accent-ink: #0b0f04;
  --accent-soft: rgba(183, 255, 74, 0.12);

  /* fonts (tweakable) */
  --display: 'Bricolage Grotesque', 'Inter Tight', system-ui, sans-serif;
  --body: 'Hanken Grotesk', 'Inter', system-ui, sans-serif;

  /* rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 10vw, 148px);
  --radius: 18px;
  --radius-lg: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@media (min-width: 768px) { body { font-size: 18px; } }

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

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(54px, 7vw, 96px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint);
}
.eyebrow .num {
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  font-weight: 700;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--hairline); min-width: 28px; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { display: none; }

/* ---------- type scale ---------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
h1.display { font-size: clamp(34px, 7.2vw, 64px); }
h2.display { font-size: clamp(27px, 4.6vw, 44px); line-height: 1.08; }
h3.display { font-size: clamp(21px, 2.6vw, 30px); line-height: 1.12; letter-spacing: -0.025em; }

.lead {
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}
.kicker-num {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  padding: 15px 24px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, border-color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--text); color: #000; }
.btn--primary:hover { background: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- divider ---------- */
.rule { height: 1px; background: var(--hairline); border: 0; margin: 0; }

/* ---------- reveal (neutralized — Motion One layer drives reveals) ---------- */
html.reveal-ready .reveal { opacity: 1; transform: none; }

/* scroll-animation layer: hero word reveal */
[data-reveal="words"] { }
.word { display: inline-block; overflow: hidden; vertical-align: top; line-height: 1.06; }
.word .inner { display: inline-block; will-change: transform; }
section.section img { backface-visibility: hidden; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   ANNOUNCEMENT + HEADER
   ============================================================ */
.announce {
  background: var(--accent); color: var(--accent-ink);
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  text-align: center; padding: 9px 16px;
  display: flex; align-items: center; justify-content: center; gap: 6px 22px; flex-wrap: wrap;
}
.announce > span, .announce > a { white-space: nowrap; }
.announce a { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.announce .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-ink); display: inline-block; }
.announce svg { width: 14px; height: 14px; }

header.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
header.nav.scrolled { border-bottom-color: var(--hairline); background: rgba(0,0,0,0.78); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; transition: height .35s cubic-bezier(.2,.7,.2,1); }
header.nav.scrolled .nav-inner { height: 56px; }
header.nav .brand { transition: font-size .35s cubic-bezier(.2,.7,.2,1); }
header.nav.scrolled .brand { font-size: 21px; }
.brand { display: inline-flex; align-items: center; gap: 2px; font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.04em; }
.brand .tld { color: var(--faint); font-weight: 500; }
.brand-logo { height: 46px; width: auto; display: block; }
header.nav.scrolled .brand-logo { height: 38px; transition: height .3s cubic-bezier(.2,.7,.2,1); }
footer .brand-logo, .footer .brand-logo { height: 56px; }
.nav-links { display: none; gap: 30px; align-items: center; }
.nav-links a { font-size: 14.5px; color: var(--muted); font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: none; align-items: center; gap: 14px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
@media (min-width: 940px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .menu-btn { display: none; }
}
.menu-btn {
  display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 1px solid var(--border); border-radius: 12px;
}
.menu-btn span { width: 18px; height: 1.6px; background: var(--text); transition: transform .3s, opacity .3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
@media (min-width: 940px) { .menu-btn { display: none !important; } }

/* ============================================================
   === MOBILE FIXES (< 768px) ===
   - Nav docks to top edge with solid backdrop (no transparent bleed-through)
   - svc-card sections tighter padding
   - Audit/voice widget margin tightening
   ============================================================ */
@media (max-width: 768px) {
  /* nav: dock to top, solid dark backdrop, no floating gap */
  header.nav {
    top: 0 !important;
    border-radius: 0 !important;
    background: rgba(8,10,12,0.86) !important;
    -webkit-backdrop-filter: blur(22px) saturate(1.6) !important;
            backdrop-filter: blur(22px) saturate(1.6) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }
  header.nav .wrap.nav-inner {
    padding-left: 18px !important;
    padding-right: 18px !important;
    max-width: 100% !important;
  }
  .brand-logo { height: 36px !important; }
  /* keep "Book free audit" CTA visible on mobile — primary conversion lever */
  .nav-cta { display: flex !important; }
  .nav-cta .btn { padding: 9px 14px !important; font-size: 13px !important; }
  /* tighten section padding on mobile */
  .svc-card { padding: 18px !important; }
  .svc-card h3 { margin-top: 18px !important; font-size: 19px !important; }
  .svc-card p { font-size: 14px !important; }
  /* hero stats: keep 2x2 grid but tighter */
  .hero-stats { gap: 0 !important; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(8,10,12,0.92); -webkit-backdrop-filter: blur(28px) saturate(1.4); backdrop-filter: blur(28px) saturate(1.4);
  display: flex; flex-direction: column; justify-content: flex-start; gap: 0;
  padding: 96px var(--gutter) 40px;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .35s;
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 6.5vw, 38px); letter-spacing: -0.025em; line-height: 1.15;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--text); display: flex; align-items: center; justify-content: space-between;
  transition: color .2s, padding-left .25s;
}
.mobile-menu a::after { content: "→"; font-size: 0.7em; opacity: 0.35; transition: opacity .2s, transform .25s; }
.mobile-menu a:hover { padding-left: 6px; }
.mobile-menu a:hover::after { opacity: 0.85; transform: translateX(4px); }
.mobile-menu .btn { margin-top: 28px; border-bottom: 0; justify-content: center; padding: 18px 24px; font-size: 17px; }
.mobile-menu .btn::after { display: none; }
/* nav header gets a soft dark backdrop when menu is open so the brand + X button anchor properly */
body.menu-open header.nav { background: rgba(8,10,12,0.92) !important; -webkit-backdrop-filter: blur(28px) !important; backdrop-filter: blur(28px) !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; top: 0 !important; border-radius: 0 !important; }
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(46px, 7vw, 90px); padding-bottom: clamp(56px, 8vw, 110px); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 60px); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; } }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px 10px; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px 7px 10px;
  font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 26px;
}
.hero-tag .pill { background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .hl { color: var(--text); white-space: nowrap; background: linear-gradient(to top, var(--accent) 0.16em, transparent 0.16em); padding: 0 0.04em; }
.hero .lead { margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-media { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg);
  border: 1px solid var(--border); filter: grayscale(0.15) contrast(1.02);
}
@media (min-width: 940px) { .hero-photo { aspect-ratio: 4/4.4; } }
.hero-float {
  position: absolute; left: -14px; bottom: 22px;
  background: rgba(10,10,10,0.82); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 16px; padding: 14px 18px;
  display: flex; align-items: center; gap: 14px; box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hero-float .big { font-family: var(--display); font-weight: 700; font-size: 30px; letter-spacing: -0.04em; color: var(--accent); line-height: 1; }
.hero-float .small { font-size: 12px; color: var(--muted); line-height: 1.3; max-width: 13ch; }
.hero-float-top {
  position: absolute; right: -12px; top: 26px;
  background: rgba(10,10,10,0.82); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hero-float-top .ring { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px var(--accent-soft);} 50% { box-shadow: 0 0 0 8px rgba(183,255,74,0.04);} }
.hero-float-top .small { font-size: 12.5px; color: var(--text); font-weight: 500; }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof { border-block: 1px solid var(--hairline); }
.proof-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; padding-block: 26px; }
.proof-rating { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-left: -12px; }
.avatars img:first-child { margin-left: 0; }
.proof-rating .stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.proof-rating .rscore { font-family: var(--display); font-weight: 700; font-size: 17px; }
.proof-rating .rmeta { font-size: 13px; color: var(--faint); }
/* Anthropic Claude Partner Network — compact trust strip */
.partner-band { background: #CC785C; color: #fff; padding: 22px clamp(18px, 4vw, 40px); }
.partner-band-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 32px); flex-wrap: wrap; }
.partner-band-mark { flex: 0 0 auto; display: flex; align-items: center; }
.partner-band-mark img { width: clamp(120px, 14vw, 160px); height: auto; display: block; border-radius: 10px; box-shadow: 0 6px 20px rgba(0,0,0,0.14); }
.partner-band-text { flex: 1 1 auto; min-width: 0; max-width: 720px; font-size: clamp(13.5px, 1.05vw, 15px); line-height: 1.45; color: rgba(255,255,255,0.96); font-weight: 400; }
.partner-band-text b { color: #fff; font-weight: 600; }
@media (max-width: 520px) {
  .partner-band { padding: 18px 16px; }
  .partner-band-inner { gap: 14px; }
  .partner-band-mark img { width: 110px; }
  .partner-band-text { text-align: center; font-size: 13px; }
}
.proof-stats { display: flex; flex-wrap: wrap; gap: clamp(22px, 4vw, 52px); }
.proof-stat .n { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.04em; }
.proof-stat .n .accent { color: var(--accent); }
.proof-stat .l { font-size: 12.5px; color: var(--faint); letter-spacing: 0.02em; }

/* ============================================================
   MECHANISM EXPLAINER
   ============================================================ */
.mech { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
@media (min-width: 900px) { .mech { grid-template-columns: 0.85fr 1.15fr; } }
.mech-flow { display: grid; gap: 14px; margin-top: 30px; }
.mech-step { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--hairline); border-radius: 16px; background: var(--surface); transition: border-color .3s, transform .3s; }
.mech-step:hover { border-color: var(--border); transform: translateX(5px); }
.mech-step .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--surface-3); display: grid; place-items: center; color: var(--accent); }
.mech-step .ic svg { width: 20px; height: 20px; }
.mech-step .t { font-weight: 600; font-size: 15.5px; }
.mech-step .d { font-size: 13.5px; color: var(--faint); }

/* ============================================================
   FOUNDER INTRO
   ============================================================ */
.founder { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
@media (min-width: 860px) { .founder { grid-template-columns: 0.8fr 1.2fr; } }
.founder-photo { border-radius: var(--radius-lg); border: 1px solid var(--border); width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(.2); }
.founder blockquote { margin: 0; }
.founder .q { font-family: var(--display); font-weight: 500; font-size: clamp(22px, 3.2vw, 33px); line-height: 1.22; letter-spacing: -0.025em; text-wrap: pretty; }
.founder .q .accent { color: var(--accent); }
.founder .sig { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.founder .sig .nm { font-weight: 600; }
.founder .sig .rl { font-size: 13.5px; color: var(--faint); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; }
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
.svc-card {
  position: relative; overflow: hidden; border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  background: var(--surface); transition: border-color .35s, transform .35s;
}
.svc-card:hover { border-color: var(--border); transform: translateY(-4px); }
.svc-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.02); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s; }
.svc-card:hover .svc-media img { transform: scale(1.05); filter: grayscale(0); }
.svc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,9,0.92), rgba(9,9,9,0) 55%); }
.svc-no { position: absolute; top: 16px; left: 18px; z-index: 2; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--text); letter-spacing: 0.04em; background: rgba(0,0,0,.4); border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; backdrop-filter: blur(6px); }
.svc-body { padding: 26px 26px 30px; }
.svc-body h3 { margin: 0 0 12px; }
.svc-body p { margin: 0 0 18px; color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tags span { font-size: 12px; color: var(--faint); border: 1px solid var(--hairline); border-radius: 999px; padding: 5px 11px; }
.svc-tags span::before { content: "#"; color: var(--accent); margin-right: 1px; }

/* ============================================================
   PROCESS
   ============================================================ */
.proc-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 50px; }
@media (min-width: 820px) { .proc-grid { grid-template-columns: repeat(3, 1fr); } }
.proc-card { border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 32px 28px 36px; background: var(--surface); position: relative; transition: border-color .35s, background .35s; }
.proc-card:hover { border-color: var(--border); background: var(--surface-2); }
.proc-card .step { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 60px; display: flex; align-items: center; gap: 10px; }
.proc-card .step .bar { flex: 1; height: 1px; background: var(--hairline); }
.proc-card h3 { margin: 0 0 12px; }
.proc-card p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.proc-cta { margin-top: 44px; display: flex; justify-content: center; }

/* ============================================================
   PROBLEM COST GRID
   ============================================================ */
.prob { background: var(--surface); border-block: 1px solid var(--hairline); }
.prob-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 46px; border: 1px solid var(--hairline); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 720px) { .prob-grid { grid-template-columns: 1fr 1fr; } }
.prob-cell { padding: 34px 30px; border-bottom: 1px solid var(--hairline); position: relative; transition: background .3s; }
@media (min-width: 720px) { .prob-cell:nth-child(odd) { border-right: 1px solid var(--hairline); } }
.prob-cell:hover { background: var(--surface-2); }
.prob-cell .pn { font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--faint); letter-spacing: 0.1em; }
.prob-cell .pt { font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2.4vw, 23px); letter-spacing: -0.02em; margin: 14px 0 18px; line-height: 1.18; }
.prob-cell .pstat { display: flex; align-items: baseline; gap: 10px; }
.prob-cell .pstat .big { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -0.04em; color: var(--accent); line-height: 1; }
.prob-cell .pstat .lbl { font-size: 13px; color: var(--faint); max-width: 16ch; }

/* ============================================================
   WHY AIPPLE
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 46px; }
@media (min-width: 720px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { border: 1px solid var(--hairline); border-radius: 18px; padding: 26px 24px; display: flex; gap: 16px; align-items: flex-start; background: var(--surface); transition: border-color .3s, transform .3s; }
.why-card:hover { border-color: var(--border); transform: translateY(-3px); }
.why-card .chk { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.why-card .chk svg { width: 16px; height: 16px; }
.why-card p { margin: 0; font-weight: 500; font-size: 16px; line-height: 1.4; }

/* ============================================================
   DASHBOARD SYSTEM VIEW
   ============================================================ */
.dash { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 60px); align-items: center; }
@media (min-width: 940px) { .dash { grid-template-columns: 0.92fr 1.08fr; } }
.dash-ui { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; box-shadow: 0 40px 110px rgba(0,0,0,.55); }
.dash-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--hairline); }
.dash-top .lhs { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.dash-top .live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--accent); font-weight: 600; }
.dash-top .live .d { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--hairline); }
.dash-kpi { padding: 18px 18px; border-right: 1px solid var(--hairline); }
.dash-kpi:last-child { border-right: 0; }
.dash-kpi .k { font-size: 11.5px; color: var(--faint); letter-spacing: 0.04em; text-transform: uppercase; }
.dash-kpi .v { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 3vw, 28px); letter-spacing: -0.03em; margin-top: 6px; }
.dash-kpi .v .accent { color: var(--accent); }
.dash-feed { padding: 8px 8px; }
.dash-row { display: flex; align-items: center; gap: 14px; padding: 13px 14px; border-radius: 12px; transition: background .3s; }
.dash-row:hover { background: var(--surface-2); }
.dash-row + .dash-row { border-top: 1px solid var(--hairline); border-radius: 0; }
.dash-row .ic { flex: none; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--surface-3); color: var(--text); }
.dash-row .ic svg { width: 17px; height: 17px; }
.dash-row .ic.ok { background: var(--accent-soft); color: var(--accent); }
.dash-row .meta { flex: 1; min-width: 0; }
.dash-row .meta .a { font-weight: 600; font-size: 14px; }
.dash-row .meta .b { font-size: 12.5px; color: var(--faint); }
.dash-row .tag { font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.dash-row .tag.booked { background: var(--accent-soft); color: var(--accent); }
.dash-row .tag.fast { background: rgba(255,255,255,.07); color: var(--muted); }
.dash-list { margin-top: 28px; display: grid; gap: 14px; }
.dash-list li { list-style: none; display: flex; gap: 13px; align-items: flex-start; color: var(--muted); font-size: 15.5px; }
.dash-list li .dt { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-top: 8px; }

/* ============================================================
   FREE AUDIT BLOCK
   ============================================================ */
.audit { background: var(--surface); border-block: 1px solid var(--hairline); }
.audit-inner { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
@media (min-width: 880px) { .audit-inner { grid-template-columns: 1.1fr 0.9fr; } }
.audit h2 { margin-bottom: 22px; }
.audit h2 .accent { color: var(--accent); }
.audit p { color: var(--muted); margin: 0 0 18px; max-width: 50ch; }
.audit-points { display: grid; gap: 12px; margin: 26px 0 32px; }
.audit-points li { list-style: none; display: flex; gap: 12px; align-items: center; font-size: 15.5px; }
.audit-points li .c { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); display: grid; place-items: center; }
.audit-points li .c svg { width: 12px; height: 12px; }
.audit-card { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg); padding: 30px; }
.audit-card .row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.audit-card .row:last-of-type { border-bottom: 0; }
.audit-card .row .k { color: var(--muted); font-size: 14.5px; }
.audit-card .row .v { font-weight: 600; }
.audit-card .row .v.free { color: var(--accent); }
.audit-card .total { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.03em; }

/* ============================================================
   FEATURED CASE STUDY
   ============================================================ */
.cs { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 940px) { .cs { grid-template-columns: 1.25fr 0.75fr; } }
.cs-main { border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); background: var(--surface); }
.cs-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 22px; }
.cs-main h3 { margin: 0 0 18px; font-size: clamp(22px, 3vw, 30px); }
.cs-main p { color: var(--muted); margin: 0 0 24px; max-width: 54ch; }
.cs-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 14px; overflow: hidden; margin-bottom: 28px; }
.cs-field { background: var(--surface); padding: 16px 18px; }
.cs-field .k { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); }
.cs-field .v { font-weight: 600; font-size: 14.5px; margin-top: 5px; }
.cs-side { display: grid; gap: 22px; align-content: start; }
.cs-metric { border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--surface); padding: 28px; }
.cs-metric .n { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 6vw, 58px); letter-spacing: -0.05em; color: var(--accent); line-height: 1; }
.cs-metric .l { color: var(--muted); font-size: 14.5px; margin-top: 10px; }
.cs-quote { border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--surface); padding: 28px; }
.cs-quote p { margin: 0 0 20px; font-size: 16px; line-height: 1.5; }
.cs-quote .who { display: flex; align-items: center; gap: 12px; }
.cs-quote .who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.cs-quote .who .nm { font-weight: 600; font-size: 14px; }
.cs-quote .who .rl { font-size: 12.5px; color: var(--faint); }

/* ============================================================
   CASE STUDY GRID
   ============================================================ */
.csg { display: flex; gap: 18px; margin-top: 46px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter); -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 8px; }
.csg::-webkit-scrollbar { display: none; }
/* case studies scroll horizontally — same on mobile and desktop */
.csg-card { flex: 0 0 auto; width: clamp(280px, 80vw, 400px); scroll-snap-align: start; }
.csg-card { border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 28px 26px 30px; background: var(--surface); transition: border-color .3s, transform .3s; display: flex; flex-direction: column; }
.csg-card:hover { border-color: var(--border); transform: translateY(-4px); }
.csg-card .vert { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.csg-card h4 { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; margin: 14px 0 20px; }
.csg-ba { display: grid; gap: 12px; margin-bottom: 22px; }
.csg-ba .ln { display: flex; gap: 10px; font-size: 14px; }
.csg-ba .ln .tag { flex: none; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; width: 48px; }
.csg-ba .ln.before .tag { color: var(--faint); }
.csg-ba .ln.after .tag { color: var(--accent); }
.csg-ba .ln span:last-child { color: var(--muted); }
.csg-card .impact { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--hairline); font-size: 13.5px; color: var(--muted); }
.csg-card .impact b { font-family: var(--display); color: var(--text); font-weight: 700; }

/* ============================================================
   RISK REVERSAL
   ============================================================ */
.risk { text-align: center; }
.risk-card { border: 1px solid var(--accent); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--accent-soft), transparent); padding: clamp(40px, 6vw, 72px) var(--gutter); position: relative; overflow: hidden; }
.risk-card h2 { margin: 0 auto 18px; max-width: 20ch; }
.risk-card h2 .accent { color: var(--accent); }
.risk-card p { color: var(--muted); max-width: 52ch; margin: 0 auto 30px; }
.risk-note { font-size: 12.5px; color: var(--faint); margin-top: 22px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 46px; }
@media (min-width: 820px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { border: 1px solid var(--hairline); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); transition: border-color .3s; }
.team-card:hover { border-color: var(--border); }
.team-photo { aspect-ratio: 1/1; width: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .5s; }
.team-card:hover .team-photo { filter: grayscale(0); }
.team-info { padding: 18px 18px 22px; }
.team-info .nm { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -0.02em; }
.team-info .role { font-size: 12.5px; color: var(--accent); font-weight: 600; margin-top: 3px; }
.team-info .focus { font-size: 13px; color: var(--faint); margin-top: 10px; line-height: 1.4; }

/* ============================================================
   FOUNDER BELIEF TIMELINE
   ============================================================ */
.belief { background: var(--surface); border-block: 1px solid var(--hairline); }
.belief-head { max-width: 60ch; margin-bottom: 50px; }
.belief-head h2 .accent { color: var(--accent); }
.belief-line { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--hairline); }
@media (min-width: 820px) { .belief-line { grid-template-columns: repeat(4, 1fr); border-top: 0; } }
.belief-item { padding: 26px 22px 26px 0; border-bottom: 1px solid var(--hairline); position: relative; }
@media (min-width: 820px) { .belief-item { border-bottom: 0; border-top: 1px solid var(--hairline); padding: 30px 22px 0 0; } }
.belief-item .yr { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--accent); letter-spacing: 0.04em; }
.belief-item .yr::before { content: ""; display: none; }
@media (min-width: 820px) { .belief-item .yr { position: relative; } .belief-item::before { content: ""; position: absolute; top: -1px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); transform: translateY(-50%); } }
.belief-item .txt { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.5; }

/* ============================================================
   PRICING
   ============================================================ */
.price-head { text-align: center; max-width: 60ch; margin: 0 auto 14px; }
.price-toggle { display: inline-flex; align-items: center; gap: 4px; padding: 5px; border: 1px solid var(--border); border-radius: 999px; margin: 0 auto 44px; }
.price-toggle button { border: 0; background: transparent; color: var(--muted); font-weight: 600; font-size: 14px; padding: 9px 20px; border-radius: 999px; transition: background .3s, color .3s; }
.price-toggle button.active { background: var(--text); color: #000; }
.price-toggle .save { font-size: 11px; color: var(--accent); font-weight: 700; margin-left: 2px; }
.price-grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card { border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--surface); padding: 32px 28px; display: flex; flex-direction: column; }
.price-card.feat { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-soft), var(--surface) 30%); position: relative; }
.price-card.feat::before { content: "Most popular"; position: absolute; top: -11px; left: 28px; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.price-card .tier { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.price-card .who { font-size: 13.5px; color: var(--faint); margin-top: 8px; min-height: 38px; }
.price-card .amt { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 4px; }
.price-card .amt .cur { font-size: 20px; color: var(--muted); font-weight: 600; }
.price-card .amt .num { font-family: var(--display); font-weight: 700; font-size: 44px; letter-spacing: -0.04em; }
.price-card .amt .per { font-size: 14px; color: var(--faint); }
.price-card .frommark { font-size: 12.5px; color: var(--faint); margin-bottom: 22px; }
.price-card .btn { margin-bottom: 26px; }
.price-card .group-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin: 8px 0 12px; }
.price-feats { list-style: none; padding: 0; margin: 0 0 8px; display: grid; gap: 11px; }
.price-feats li { display: flex; gap: 11px; font-size: 14px; color: var(--muted); line-height: 1.4; }
.price-feats li svg { flex: none; width: 16px; height: 16px; color: var(--accent); margin-top: 2px; }
.price-math { margin-top: 50px; border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--surface); padding: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
@media (min-width: 820px) { .price-math { grid-template-columns: 1.2fr 0.8fr; } }
.price-math h3 { margin: 0 0 14px; }
.price-math p { color: var(--muted); margin: 0; max-width: 52ch; }
.math-rows { display: grid; gap: 14px; }
.math-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border: 1px solid var(--hairline); border-radius: 16px; }
.math-row.win { border-color: var(--accent); background: var(--accent-soft); }
.math-row .ml { font-size: 14px; color: var(--muted); }
.math-row .mv { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.03em; }
.math-row.win .mv { color: var(--accent); }

/* ============================================================
   PLAYBOOK + NEWSLETTER
   ============================================================ */
.play-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 46px; }
@media (min-width: 820px) { .play-grid { grid-template-columns: repeat(3, 1fr); } }
.play-card { border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 26px 24px; background: var(--surface); transition: border-color .3s, transform .3s; display: flex; flex-direction: column; min-height: 200px; }
.play-card:hover { border-color: var(--border); transform: translateY(-4px); }
.play-card .date { font-size: 12.5px; color: var(--faint); }
.play-card h4 { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; line-height: 1.2; margin: 14px 0 0; }
.play-card .more { margin-top: auto; padding-top: 22px; font-size: 13.5px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.play-card .more svg { width: 14px; height: 14px; transition: transform .3s; }
.play-card:hover .more svg { transform: translateX(3px); }
.newsletter { margin-top: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-2); padding: clamp(28px, 4vw, 40px); display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
@media (min-width: 760px) { .newsletter { grid-template-columns: 1fr auto; } }
.newsletter h3 { margin: 0 0 8px; }
.newsletter p { margin: 0; color: var(--muted); font-size: 14.5px; max-width: 46ch; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-form input { background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: 999px; padding: 14px 20px; font-family: inherit; font-size: 15px; min-width: 220px; flex: 1; }
.news-form input:focus { outline: none; border-color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 40px; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; font-family: var(--display); font-weight: 600; font-size: clamp(17px, 2.2vw, 21px); letter-spacing: -0.02em; }
.faq-q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: background .3s, color .3s, transform .3s; }
.faq-q .ic svg { width: 15px; height: 15px; transition: transform .3s; }
.faq-item.open .faq-q .ic { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.faq-item.open .faq-q .ic svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.2,1); }
.faq-a-inner { padding: 0 4px 28px; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 70ch; }

/* ============================================================
   CTA CALENDAR
   ============================================================ */
.cta-cal { background: var(--surface); border-block: 1px solid var(--hairline); }
.cal-wrap { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
@media (min-width: 940px) { .cal-wrap { grid-template-columns: 0.95fr 1.05fr; } }
.cal-copy h2 { margin-bottom: 18px; }
.cal-copy h2 .accent { color: var(--accent); }
.cal-copy p { color: var(--muted); max-width: 46ch; margin: 0 0 26px; }
.cal-trust { display: grid; gap: 12px; margin-top: 28px; }
.cal-trust li { list-style: none; display: flex; gap: 11px; align-items: center; font-size: 14.5px; color: var(--muted); }
.cal-trust li svg { flex: none; width: 17px; height: 17px; color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding-top: clamp(60px, 8vw, 100px); padding-bottom: 40px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--hairline); }
@media (min-width: 820px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { font-size: 30px; margin-bottom: 18px; }
.footer-brand .trust { color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 38ch; margin: 0 0 24px; }
.footer-contact { display: grid; gap: 8px; font-size: 14.5px; }
.footer-contact a { color: var(--muted); transition: color .2s; }
.footer-contact a:hover { color: var(--accent); }
.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin: 0 0 18px; font-weight: 600; }
.footer-col a { display: block; color: var(--muted); font-size: 15px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 30px; }
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13.5px; color: var(--faint); }
.footer-bottom .legal a:hover { color: var(--text); }
.footer-bottom .cc { font-size: 13.5px; color: var(--faint); }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: border-color .2s, color .2s, background .2s; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent); }
.footer-social svg { width: 17px; height: 17px; }

/* warning banner */
.warn-band { border-block: 1px solid var(--hairline); overflow: hidden; }
.warn-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 28s linear infinite; }
.warn-track span { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 4vw, 44px); letter-spacing: -0.03em; padding: 22px 36px; display: inline-flex; align-items: center; gap: 36px; }
.warn-track span .accent { color: var(--accent); }
.warn-track span .star { color: var(--faint); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* misc accents */
.text-accent { color: var(--accent); }
/* build: v2 */

/* ============================================================
   TWEAK VARIANTS
   ============================================================ */
/* hero layout: centered */
body.hero-centered .hero-grid { grid-template-columns: 1fr; text-align: center; max-width: 940px; margin-inline: auto; }
body.hero-centered .hero-copy { display: flex; flex-direction: column; align-items: center; }
body.hero-centered .hero-cta { justify-content: center; }
body.hero-centered .lead { margin-inline: auto; }
body.hero-centered .hero-media { width: 100%; max-width: 820px; margin: 6px auto 0; }
body.hero-centered .hero-photo { aspect-ratio: 16/9 !important; }
body.hero-centered .hero-float { left: 8px; bottom: 14px; }
body.hero-centered .hero-float-top { right: 8px; top: 16px; }

/* photo treatments */
body.photos-color .hero-photo,
body.photos-color .svc-media img,
body.photos-color .founder-photo,
body.photos-color .team-photo { filter: none; }
body.photos-bw .hero-photo,
body.photos-bw .svc-media img,
body.photos-bw .founder-photo,
body.photos-bw .team-photo { filter: grayscale(1) contrast(1.05); }
body.photos-bw .svc-card:hover .svc-media img,
body.photos-bw .team-card:hover .team-photo { filter: grayscale(1) contrast(1.05); }

/* ============================================================
   LIQUID GLASS RESKIN — iteration 3
   Floating frosted panels over a cinematic landscape.
   Appended last so it overrides the dark-surface base system.
   ============================================================ */
:root {
  --bg: #05070b;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-bg-strong: rgba(255,255,255,0.14);
  --glass-bg-tint: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.18);
  --glass-rim-top: rgba(255,255,255,0.32);
  --glass-rim-bottom: rgba(0,0,0,0.18);
  --glass-shadow: 0 24px 60px -20px rgba(0,0,0,0.55), 0 2px 8px -2px rgba(0,0,0,0.35);
  --glass-blur: 28px;
  --glass-blur-strong: 40px;
  --glass-saturate: 1.6;
  --border: rgba(255,255,255,0.18);
  --hairline: rgba(255,255,255,0.12);
  --muted: rgba(255,255,255,0.82);
  --faint: rgba(255,255,255,0.56);
}

/* ---------- cinematic background system ---------- */
html { background: #05070b; }
body { background: transparent !important; font-weight: 450; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=2400&q=80');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-attachment: fixed;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(3,5,9,0.50) 0%, rgba(3,5,9,0.66) 50%, rgba(3,5,9,0.87) 100%);
}
@media (max-width: 768px) { body::before { background-attachment: scroll; } }

/* ---------- legibility over photography ---------- */
.display { text-shadow: 0 1px 2px rgba(0,0,0,0.38); }
.lead, .eyebrow, .section p, .founder .q, .footer-brand .trust, .cal-copy p, .audit p { text-shadow: 0 1px 1px rgba(0,0,0,0.28); }

/* ---------- glass utility ---------- */
.glass {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--glass-rim-top) 0%, rgba(255,255,255,0.04) 40%, var(--glass-rim-bottom) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}
.glass::after {
  content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  pointer-events: none; z-index: 2;
}
.glass--strong {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(1.8) brightness(1.05);
  backdrop-filter: blur(var(--glass-blur-strong)) saturate(1.8) brightness(1.05);
}
.glass--tint-accent {
  background: linear-gradient(135deg, rgba(183,255,74,0.20), rgba(183,255,74,0.06));
  border-color: rgba(183,255,74,0.45);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass, .glass--strong, .nav-inner, .footer,
  .svc-card, .proc-card, .why-card, .mech-step, .dash-ui, .audit-card,
  .cs-main, .cs-metric, .cs-quote, .csg-card, .price-card, .play-card,
  .team-card, .newsletter, .faq-item, .risk-card, .price-math, .math-row,
  .price-toggle, .prob-grid, .founder blockquote { background: rgba(20,20,22,0.86) !important; }
}
@media (max-width: 480px) { :root { --glass-blur: 16px; --glass-blur-strong: 24px; } }

/* ---------- apply glass to component cards ---------- */
.svc-card, .proc-card, .why-card, .mech-step, .dash-ui, .audit-card,
.cs-main, .cs-metric, .cs-quote, .csg-card, .price-card, .play-card,
.team-card, .newsletter, .faq-item, .risk-card, .price-math, .math-row,
.price-toggle, .prob-grid, .founder blockquote, .hero-proof-pill {
  background: var(--glass-bg) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.22) !important;
}
.svc-card:hover, .proc-card:hover, .why-card:hover, .csg-card:hover,
.play-card:hover, .team-card:hover, .mech-step:hover {
  background: var(--glass-bg-strong) !important;
  border-color: rgba(255,255,255,0.30) !important;
  transform: translateY(-4px);
}
.proc-card:hover, .prob-cell:hover, .dash-row:hover { background: rgba(255,255,255,0.07) !important; }

/* glassy nested image frame inside service cards */
.svc-media::after { background: linear-gradient(to top, rgba(5,7,11,0.85), rgba(5,7,11,0) 55%); }

/* founder quote becomes a floating panel */
.founder blockquote { border-radius: 24px; padding: clamp(26px, 4vw, 44px) !important; }

/* ---------- band sections go transparent (landscape breathes through) ---------- */
.proof, .prob, .audit, .belief, .cta-cal { background: transparent !important; }
.proof { border-color: var(--hairline) !important; }
.prob, .audit, .belief, .cta-cal { border-color: var(--hairline) !important; }

/* ---------- floating glass nav pill ---------- */
header.nav { position: sticky; top: 16px; background: transparent !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; border-bottom: 0 !important; }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 14px 0 24px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(16px) saturate(1.6); backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid var(--glass-border); border-radius: 60px;
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.22);
  height: 64px;
}
header.nav.scrolled .nav-inner { height: 54px; }
.brand .tld { color: var(--accent) !important; }   /* the single accent dot in the nav */

/* ---------- buttons in the glass system ---------- */
.btn--accent {
  background: linear-gradient(135deg, rgba(183,255,74,0.95), rgba(170,240,66,0.82)) !important;
  color: #0b0f04 !important;
  border: 1px solid rgba(183,255,74,0.5) !important;
  box-shadow: 0 10px 28px -10px rgba(183,255,74,0.45), inset 0 1px 0 rgba(255,255,255,0.45) !important;
}
.btn--accent:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn--ghost {
  background: var(--glass-bg) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid var(--glass-border) !important; color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20) !important;
}
.btn--ghost:hover { background: var(--glass-bg-strong) !important; border-color: rgba(255,255,255,0.35) !important; transform: translateY(-2px); }
.btn--primary { background: rgba(255,255,255,0.94) !important; color: #05070b !important; }
.btn--primary:hover { background: #fff !important; }

/* ---------- accent discipline: lime only on CTA, eyebrow num, hero-stat rule, nav dot ---------- */
.hero-tag .pill { background: rgba(255,255,255,0.12) !important; color: #fff !important; }
.hero h1 .hl { background: none !important; color: #fff !important; padding: 0 !important; }
.mech-step .ic { background: rgba(255,255,255,0.10) !important; color: rgba(255,255,255,0.92) !important; }
.why-card .chk { background: rgba(255,255,255,0.10) !important; color: #fff !important; }
.dash-row .ic.ok { background: rgba(255,255,255,0.12) !important; color: #fff !important; }
.audit-points li .c { border-color: rgba(255,255,255,0.5) !important; color: #fff !important; }
.cal-trust li svg, .price-feats li svg, .audit-points li .c svg { color: #fff !important; }
.proc-card .step, .cs-badge, .csg-card .vert, .belief-item .yr, .play-card .more { color: rgba(255,255,255,0.74) !important; }
.svc-tags span::before { color: rgba(255,255,255,0.5) !important; }
.faq-item.open .faq-q .ic { background: rgba(255,255,255,0.92) !important; color: #05070b !important; border-color: transparent !important; }
.cs-metric .n, .prob-cell .pstat .big, .proof-stat .n .accent, .dash-kpi .v .accent,
.audit h2 .accent, .risk-card h2 .accent, .cal-copy h2 .accent, .founder .q .accent,
.text-accent, .audit-card .row .v.free, .belief-head h2 .accent { color: #fff !important; }
.price-card p[style*="accent"] { color: rgba(255,255,255,0.86) !important; }
.proof-rating .stars { color: rgba(255,255,255,0.9) !important; }
.dash-top .live { color: rgba(255,255,255,0.82) !important; }
.dash-top .live .d { background: rgba(255,255,255,0.82) !important; }
.warn-track span .accent { color: rgba(255,255,255,0.85) !important; }
.warn-track span .star { color: rgba(255,255,255,0.4) !important; }
@media (min-width: 820px) { .belief-item::before { background: rgba(255,255,255,0.6) !important; } }
.news-form input:focus { border-color: rgba(255,255,255,0.6) !important; }
.price-card.feat { border-color: var(--glass-border) !important; background: var(--glass-bg-strong) !important; }
.price-card.feat::before { background: rgba(255,255,255,0.94) !important; color: #05070b !important; }
.math-row.win { background: var(--glass-bg-strong) !important; border-color: rgba(255,255,255,0.26) !important; }
.math-row.win .mv { color: #fff !important; }
.footer-social a:hover { background: rgba(255,255,255,0.92) !important; color: #05070b !important; border-color: transparent !important; }
.footer-contact a:hover { color: #fff !important; }

/* ---------- FAQ items as stacked glass pills ---------- */
.faq-grid { border-top: 0 !important; display: grid; gap: 12px; }
.faq-item { border-bottom: 0 !important; border-radius: 18px; }
.faq-q { padding: 22px 22px !important; }
.faq-a-inner { padding: 0 22px 26px !important; }

/* ---------- footer panel ---------- */
.footer {
  background: var(--glass-bg) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.5); backdrop-filter: blur(24px) saturate(1.5);
  border-top: 1px solid var(--glass-border);
  border-radius: 40px 40px 0 0; margin-top: 48px;
}

/* ---------- HERO: single cinematic glass card ---------- */
.hero { padding-top: clamp(124px, 17vh, 220px); padding-bottom: clamp(60px, 10vw, 130px); }
.hero-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero-card { width: 100%; max-width: 1100px; padding: clamp(34px, 6vw, 84px); text-align: center; will-change: backdrop-filter; }
.hero-card .hero-tag { margin: 0 0 26px; }
.hero-card h1 { margin: 0 auto 22px; }
.hero-card .lead { margin: 0 auto 30px; }
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; margin: 0 auto 34px;
  border: 1px solid var(--hairline); border-radius: 18px; overflow: hidden; max-width: 780px;
  background: rgba(255,255,255,0.04);
}
.hstat { flex: 1 1 0; min-width: 132px; padding: 18px 16px; }
.hstat + .hstat { border-left: 1px solid var(--hairline); }
.hstat .hn { font-family: var(--display); font-weight: 700; font-size: clamp(23px, 3vw, 32px); letter-spacing: -0.03em; line-height: 1; }
.hstat .hn::after { content: ""; display: block; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; margin: 9px auto 0; }
.hstat .hlbl { font-size: 12px; color: var(--faint); margin-top: 9px; letter-spacing: 0.01em; }
.hero-card .hero-cta { justify-content: center; }
.hero-proof-pill { display: inline-flex; align-items: center; gap: 13px; padding: 9px 20px 9px 11px; border-radius: 999px !important; font-size: 13.5px; color: var(--muted); }
.hero-proof-pill .avatars { display: flex; flex-shrink: 0; }
.hero-proof-pill .avatars img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.25); margin-left: -10px; flex-shrink: 0; }
.hero-proof-pill .avatars img:first-child { margin-left: 0; }
.hero-proof-pill > span { min-width: 0; }
@media (max-width: 480px) {
  .hero-proof-pill { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 18px; border-radius: 20px !important; }
}



/* ==== INJECTED: voice-demo styles (vd-*) ==== */
* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; background: #05070b; }

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 450;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}
@media (min-width: 768px) { body { font-size: 18px; } }

/* ---------- cinematic background ---------- */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=2400&q=80');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-attachment: fixed;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.66) 50%, rgba(0,0,0,0.85) 100%);
}
@media (max-width: 768px) { body::before { background-attachment: scroll; } }

::selection { background: var(--accent); color: var(--accent-ink); }
button { font-family: inherit; cursor: pointer; color: inherit; }
input { font-family: inherit; }

/* ---------- glass utilities ---------- */
.glass {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.6);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.6);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--glass-rim-top) 0%, rgba(255,255,255,0.04) 40%, var(--glass-rim-bottom) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}
.glass--strong { background: var(--glass-bg-strong); backdrop-filter: blur(var(--glass-blur-strong)) saturate(1.8) brightness(1.05); -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(1.8) brightness(1.05); }
.glass--tint-accent {
  background: linear-gradient(135deg, rgba(183,255,74,0.20), rgba(183,255,74,0.06));
  border-color: rgba(183,255,74,0.45);
  color: var(--accent-ink);
}

/* ---------- section ---------- */
.section { padding-block: var(--section-y); position: relative; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 22px;
}
.eyebrow .num { font-variant-numeric: tabular-nums; color: var(--accent); font-weight: 700; }
.eyebrow::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.12); min-width: 28px; }

h2.display {
  font-family: var(--display); font-weight: 700; line-height: 1.08;
  letter-spacing: -0.03em; margin: 0;
  font-size: clamp(28px, 4vw, 40px); text-wrap: balance;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.lede {
  font-size: clamp(17px, 2.1vw, 20px); line-height: 1.5; color: var(--muted);
  max-width: 60ch; margin: 16px 0 0; text-wrap: pretty;
  text-shadow: 0 1px 2px rgba(0,0,0,0.28);
}

/* ============================================================
   WIDGET
   ============================================================ */
.vd-widget { margin-top: clamp(32px, 5vw, 52px); border-radius: 32px; padding: clamp(20px, 3vw, 36px); }
.vd-grid { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 2.4vw, 30px); }
@media (min-width: 940px) { .vd-grid { grid-template-columns: 60fr 40fr; } }

/* ---------- nested glass (lighter blur, per perf budget) ---------- */
.gn { position: relative; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.16); }

/* ---------- industry tabs ---------- */
.vd-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.vd-tab {
  border: 1px solid var(--glass-border); background: var(--glass-bg);
  -webkit-backdrop-filter: blur(16px) saturate(1.4); backdrop-filter: blur(16px) saturate(1.4);
  color: var(--text); padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.vd-tab:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.34); }
.vd-tab.active {
  background: linear-gradient(135deg, rgba(183,255,74,0.20), rgba(183,255,74,0.06));
  border-color: rgba(183,255,74,0.55); color: var(--accent);
}

/* ---------- feature card grid ---------- */
.vd-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 440px) { .vd-cards { grid-template-columns: 1fr; } }
.vd-card {
  position: relative; padding: 16px; border-radius: 18px; text-align: left;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(16px) saturate(1.4); backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
  cursor: pointer; display: block; width: 100%;
}
.vd-card .ic { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); margin-bottom: 12px; }
.vd-card .ic svg { width: 20px; height: 20px; stroke: var(--accent); }
.vd-card .lab { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -0.02em; margin: 0 0 5px; }
.vd-card .desc { font-size: 12.5px; line-height: 1.4; color: var(--faint); margin: 0; }
.vd-cards.has-active .vd-card { opacity: 0.55; }
.vd-card.active {
  opacity: 1 !important; transform: scale(1.02);
  border-color: rgba(183,255,74,0.85);
  box-shadow: 0 0 0 1px rgba(183,255,74,0.6), 0 0 24px -4px rgba(183,255,74,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
}
.vd-card.active .ic { background: rgba(183,255,74,0.14); border-color: rgba(183,255,74,0.4); }

/* ---------- right column ---------- */
.vd-right { display: flex; flex-direction: column; gap: 16px; }

/* playhead */
.vd-player { padding: 18px; border-radius: 18px; }
.vd-wave { display: flex; align-items: flex-end; gap: 2px; height: 36px; margin-bottom: 10px; overflow: hidden; }
.vd-wave .bar { flex: 1 1 0; min-width: 0; max-width: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; transition: background .12s linear; }
.vd-wave .bar.on { background: var(--accent); }
.vd-times { display: flex; justify-content: space-between; font-size: 11px; font-variant-numeric: tabular-nums; color: var(--faint); letter-spacing: 0.04em; margin-bottom: 14px; }
.vd-controls { display: flex; align-items: center; gap: 14px; }
.vd-play {
  width: 56px; height: 56px; flex: 0 0 56px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid rgba(183,255,74,0.55);
  background: linear-gradient(135deg, rgba(183,255,74,0.22), rgba(183,255,74,0.08));
  transition: transform .2s, filter .2s;
}
.vd-play:hover { transform: scale(1.05); filter: brightness(1.1); }
.vd-play svg { width: 22px; height: 22px; fill: var(--accent); }
.vd-livepill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--muted); padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border);
}
.vd-livepill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); }
.vd-livepill.playing .dot { background: var(--accent); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

/* transcript */
.vd-transcript { padding: 18px; border-radius: 16px; max-height: 320px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent; }
.vd-transcript::-webkit-scrollbar { width: 6px; }
.vd-transcript::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
.vd-line { margin-bottom: 16px; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, border-color .3s, padding .3s; }
.vd-line.shown { opacity: 1; transform: none; }
.vd-line:last-child { margin-bottom: 0; }
.vd-line .spk {
  display: inline-flex; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px; margin-bottom: 7px;
}
.vd-line.caller .spk { background: rgba(255,255,255,0.12); color: var(--muted); border: 1px solid rgba(255,255,255,0.14); }
.vd-line.sara .spk { background: rgba(183,255,74,0.10); color: var(--accent); border: 1px solid rgba(183,255,74,0.45); }
.vd-line .txt { font-size: 15px; line-height: 1.5; color: var(--text); margin: 0; }
.vd-line.caller .txt { color: var(--muted); }
.vd-line.active { border-left: 2px solid var(--accent); padding-left: 12px; }
.vd-tx-empty { font-size: 13px; color: var(--faint); font-style: italic; }

/* action log */
.vd-actions { background: rgba(0,0,0,0.35); border: 1px solid var(--glass-border); border-radius: 12px; padding: 14px; }
.vd-actions .hd { font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.vd-actions .hd .ldot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(183,255,74,0.7); }
.vd-log { font-family: 'SFMono-Regular', ui-monospace, Menlo, Consolas, monospace; font-size: 13px; line-height: 1.7; min-height: 92px; }
.vd-log .row { color: var(--accent); white-space: nowrap; overflow: hidden; transition: opacity .4s; }
.vd-log .row .cur { display: inline-block; width: 7px; margin-left: 1px; background: var(--accent); animation: blink 1s step-end infinite; }
.vd-log .row.done .cur { display: none; }
@keyframes blink { 50% { opacity: 0; } }
.vd-log-empty { color: rgba(255,255,255,0.3); font-style: italic; }

/* ---------- below widget ---------- */
.vd-foot { margin-top: clamp(22px, 3vw, 32px); padding-top: clamp(22px, 3vw, 30px); border-top: 1px solid var(--glass-border); }
.vd-langs { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 22px; }
.vd-langlabel { font-size: 12px; color: var(--faint); letter-spacing: 0.04em; margin-right: 4px; }
.vd-flag {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--glass-border); background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16); transition: background .2s, border-color .2s, transform .2s;
}
.vd-flag .em { font-size: 15px; line-height: 1; }
.vd-flag:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.34); }
.vd-flag.active { background: linear-gradient(135deg, rgba(183,255,74,0.20), rgba(183,255,74,0.06)); border-color: rgba(183,255,74,0.55); color: var(--accent); }
.vd-flag .tip {
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(4px);
  width: max-content; max-width: 240px; padding: 9px 13px; border-radius: 12px; font-size: 12px;
  font-weight: 450; line-height: 1.4; color: var(--text); background: rgba(12,14,8,0.92);
  border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow);
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 5; text-align: center;
}
.vd-flag:hover .tip { opacity: 1; transform: translateX(-50%) translateY(0); }

.vd-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.vd-cta-primary {
  display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
  padding: 18px 32px; border-radius: 999px; border: 1px solid rgba(183,255,74,0.55);
  background: linear-gradient(135deg, rgba(183,255,74,0.95), rgba(170,240,66,0.82)); color: var(--accent-ink);
  box-shadow: 0 10px 30px -10px rgba(183,255,74,0.5); transition: transform .25s, filter .25s;
}
.vd-cta-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.vd-cta-primary svg { width: 18px; height: 18px; transition: transform .3s; }
.vd-cta-primary:hover svg { transform: translateX(3px); }
.vd-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600;
  padding: 16px 24px; border-radius: 999px; border: 1px solid var(--glass-border);
  background: var(--glass-bg); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18); transition: background .2s, border-color .2s, transform .2s;
}
.vd-cta-secondary:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.34); }
@media (max-width: 600px) { .vd-cta-primary { width: 100%; justify-content: center; } .vd-cta-secondary { width: 100%; justify-content: center; } }
.vd-fineprint { font-size: 12px; color: var(--faint); margin: 16px 0 0; }

/* inline panels */
.vd-panel { margin-top: 16px; padding: 18px; border-radius: 16px; display: none; }
.vd-panel.open { display: block; animation: panelIn .3s cubic-bezier(.16,1,.3,1); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.vd-calling { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 500; }
.vd-calling .pdot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(183,255,74,0.6); animation: ring 1.4s ease-out infinite; flex: 0 0 12px; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(183,255,74,0.55); } 100% { box-shadow: 0 0 0 16px rgba(183,255,74,0); } }

/* reveal */
.section[data-reveal] { opacity: 0; }
html.reveal-ready .section[data-reveal] { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .vd-line { opacity: 1; transform: none; }
  .vd-livepill.playing .dot, .vd-calling .pdot, .vd-actions .hd .ldot { animation: none; }
}
@media (max-width: 480px) {  }

/* ==== INJECTED: audit-tool styles (au-*, glass-input) ==== */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: #05070b; }

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 450;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}
@media (min-width: 768px) { body { font-size: 18px; } }

/* ---------- cinematic background ---------- */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=2400&q=80');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-attachment: fixed;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.66) 50%, rgba(0,0,0,0.85) 100%);
}
@media (max-width: 768px) { body::before { background-attachment: scroll; } }

::selection { background: var(--accent); color: var(--accent-ink); }
button { font-family: inherit; cursor: pointer; color: inherit; }
input { font-family: inherit; }

/* ---------- glass utilities ---------- */
.glass {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.6);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.6);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--glass-rim-top) 0%, rgba(255,255,255,0.04) 40%, var(--glass-rim-bottom) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}
.glass--strong { background: var(--glass-bg-strong); backdrop-filter: blur(var(--glass-blur-strong)) saturate(1.8) brightness(1.05); -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(1.8) brightness(1.05); }
.glass--tint-accent {
  background: linear-gradient(135deg, rgba(183,255,74,0.20), rgba(183,255,74,0.06));
  border-color: rgba(183,255,74,0.45);
  color: var(--accent-ink);
}

/* ---------- section scaffold ---------- */
.section { padding-block: var(--section-y); position: relative; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 22px;
}
.eyebrow .num { font-variant-numeric: tabular-nums; color: var(--accent); font-weight: 700; }
.eyebrow::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.12); min-width: 28px; }

h2.display {
  font-family: var(--display); font-weight: 700; line-height: 1.08;
  letter-spacing: -0.03em; margin: 0;
  font-size: clamp(28px, 4vw, 40px); text-wrap: balance;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  max-width: 18ch;
}
.lede {
  font-size: clamp(17px, 2.1vw, 20px); line-height: 1.5; color: var(--muted);
  max-width: 62ch; margin: 16px 0 0; text-wrap: pretty;
  text-shadow: 0 1px 2px rgba(0,0,0,0.28);
}

/* ============================================================
   AUDIT WIDGET
   ============================================================ */
.au-widget { margin-top: clamp(32px, 5vw, 52px); border-radius: 32px; padding: clamp(28px, 4vw, 56px); }

.au-grid { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 40px); }
@media (min-width: 940px) { .au-grid { grid-template-columns: 7fr 5fr; align-items: start; } }

/* ---------- left: form ---------- */
.au-left .au-h3 {
  font-family: var(--display); font-weight: 600; letter-spacing: -0.02em;
  font-size: 20px; margin: 0 0 20px; text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
@media (min-width: 768px) { .au-left .au-h3 { font-size: 24px; } }

.au-form { display: flex; flex-direction: column; gap: 14px; }
.au-field { display: flex; flex-direction: column; gap: 7px; }
.au-label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--faint); padding-left: 2px; }

.glass-input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  font: 16px/1.4 'Hanken Grotesk', sans-serif;
  transition: border-color 200ms, background 200ms;
}
.glass-input::placeholder { color: var(--faint); }
.glass-input:focus {
  outline: none;
  border-color: rgba(183,255,74,0.55);
  background: rgba(255,255,255,0.10);
}
.au-helper { font-size: 13px; color: var(--faint); margin: 7px 0 0; padding-left: 2px; }

.au-cta {
  width: 100%; margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  padding: 18px 24px; border-radius: 16px; cursor: pointer;
  border: 1px solid rgba(183,255,74,0.6);
  background: linear-gradient(135deg, rgba(183,255,74,0.96), rgba(170,240,66,0.84));
  color: var(--accent-ink);
  box-shadow: 0 12px 34px -12px rgba(183,255,74,0.55);
  transition: transform .25s, filter .25s;
}
.au-cta:hover { transform: translateY(-2px); filter: brightness(1.05); }
.au-cta svg { width: 18px; height: 18px; transition: transform .3s; }
.au-cta:hover svg { transform: translateX(3px); }

.au-trust { font-size: 13px; color: var(--faint); margin: 14px 0 0; padding-left: 2px; }

/* what-happens-next flow pills */
.au-flow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin: 22px 0 0; padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
}
.au-flow .step {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 13px; letter-spacing: -0.01em; color: var(--muted); font-weight: 500;
}
.au-flow .arr { color: var(--accent); font-size: 12px; line-height: 1; opacity: 0.85; }

/* progress panel (replaces form on submit) */
.au-progress { display: none; }
.au-progress.on { display: block; }
.au-prog-head {
  font-family: var(--display); font-weight: 600; letter-spacing: -0.02em;
  font-size: 20px; margin: 0 0 4px;
}
.au-prog-sub { font-size: 14px; color: var(--faint); margin: 0 0 20px; }
.au-prog-sub .biz { color: var(--muted); }

/* slim progress bar */
.au-bar-track { height: 4px; width: 100%; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 22px; }
.au-bar-fill { height: 100%; width: 0%; border-radius: 999px; background: var(--accent); box-shadow: 0 0 10px rgba(183,255,74,0.55); transition: width .4s linear; }

.au-steps { display: flex; flex-direction: column; gap: 2px; }
.au-step {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 4px; font-size: 16px; color: var(--faint);
  transition: color .35s ease;
}
.au-step + .au-step { border-top: 1px solid rgba(255,255,255,0.07); }
.au-step.active { color: var(--text); font-weight: 500; }
.au-step.done { color: var(--muted); }
.au-step-txt { flex: 1; }
.au-elapsed { font-family: ui-monospace, Menlo, monospace; font-size: 10px; color: var(--faint); opacity: 0; transition: opacity .3s; }
.au-step.done .au-elapsed { opacity: 1; }

/* 18px status indicator — pending / active / complete */
.au-dot { flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%; position: relative; display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,0.30); background: transparent; transition: background .3s, border-color .3s; }
.au-step.active .au-dot {
  border-color: var(--accent); background: var(--accent);
  box-shadow: 0 0 0 0 rgba(183,255,74,0.5);
  animation: au-pulse 1.1s ease-in-out infinite;
}
@keyframes au-pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(183,255,74,0.45); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 5px rgba(183,255,74,0); }
}
.au-step.done .au-dot { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 12px -2px rgba(183,255,74,0.7); }
.au-dot svg { width: 11px; height: 11px; stroke: var(--accent-ink); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transition: opacity .2s; }
.au-step.done .au-dot svg { opacity: 1; }

/* success block */
.au-done { display: none; }
.au-done.on { display: block; animation: au-fade .4s cubic-bezier(.16,1,.3,1); }
.au-error { display: none; }
.au-error.on { display: block; animation: au-fade .4s cubic-bezier(.16,1,.3,1); }
.au-error-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,90,71,0.18); border: 1px solid rgba(255,90,71,0.6); color: #ff5a47; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; margin: 0 0 18px; }
.au-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; pointer-events: none; }
@keyframes au-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.au-done-check {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(183,255,74,0.95), rgba(170,240,66,0.82));
  box-shadow: 0 0 26px -4px rgba(183,255,74,0.7);
}
.au-done-check svg { width: 26px; height: 26px; stroke: var(--accent-ink); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.au-done-h {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.02em;
  font-size: 22px; margin: 0 0 8px;
}
.au-done-sub { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0 0 22px; max-width: 42ch; }
.au-done-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.au-restart {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600;
  padding: 12px 20px; border-radius: 999px; border: 1px solid var(--glass-border);
  background: var(--glass-bg); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16); transition: border-color .2s, transform .2s;
}
.au-restart:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.34); }
.au-restart svg { width: 14px; height: 14px; stroke: var(--accent); stroke-width: 2; fill: none; }
.au-book {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700;
  padding: 12px 20px; border-radius: 999px; border: 1px solid rgba(183,255,74,0.55);
  background: linear-gradient(135deg, rgba(183,255,74,0.20), rgba(183,255,74,0.06)); color: var(--accent);
  transition: transform .2s, filter .2s;
}
.au-book:hover { transform: translateY(-1px); filter: brightness(1.1); }
.au-book svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.2; fill: none; transition: transform .3s; }
.au-book:hover svg { transform: translateX(3px); }

/* ---------- right: what you get ---------- */
.au-right .au-right-lab {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint); margin: 0 0 16px;
}
.au-deliverables { display: flex; flex-direction: column; gap: 12px; }
.au-dcard {
  position: relative; display: flex; gap: 14px; align-items: flex-start;
  padding: 14px; border-radius: 16px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px) saturate(1.4); backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}
.au-dcard .au-num {
  position: absolute; top: 12px; right: 14px;
  font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--faint);
  font-variant-numeric: tabular-nums; letter-spacing: 0;
}
.au-dic {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(183,255,74,0.22), rgba(183,255,74,0.07));
  border: 1px solid rgba(183,255,74,0.42);
}
.au-dic svg { width: 18px; height: 18px; stroke: var(--accent); stroke-width: 1.5; fill: none; }
.au-dtext { padding-right: 18px; }
.au-dtitle { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); margin: 1px 0 3px; }
.au-dbody { font-size: 14px; line-height: 1.4; color: var(--muted); margin: 0; }

/* ---------- sample reports strip ---------- */
.au-foot { margin-top: 40px; padding-top: clamp(24px, 3vw, 32px); border-top: 1px solid var(--glass-border); }
@media (min-width: 940px) { .au-foot { margin-top: 56px; } }
.au-strip-lab {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint); margin: 0 0 18px;
}
.au-strip-lab .ldot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(183,255,74,0.7); }

.au-strip {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  margin-inline: calc(-1 * clamp(28px, 4vw, 56px));
  padding-inline: clamp(28px, 4vw, 56px);
  scrollbar-width: none;
}
.au-strip::-webkit-scrollbar { display: none; }

.au-page {
  scroll-snap-align: start; flex: 0 0 auto;
  width: clamp(280px, 30vw, 360px); aspect-ratio: 8.5 / 13;
  border-radius: 16px; padding: 18px;
  background: rgba(255,255,255,0.07);
  -webkit-backdrop-filter: blur(16px) saturate(1.5); backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 14px 40px -18px rgba(0,0,0,0.6);
  display: flex; flex-direction: column;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), border-color .2s;
  cursor: default; overflow: hidden;
}
.au-page:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.32); }

.au-page-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.au-wordmark { font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace; font-size: 12px; font-weight: 600; letter-spacing: -0.02em; color: var(--accent); }
.au-pageno { font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace; font-size: 10px; color: var(--faint); letter-spacing: 0.02em; }
.au-page-h { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); margin: 0 0 3px; }
.au-page-sub { font-size: 10px; color: var(--faint); margin: 0 0 13px; letter-spacing: 0.01em; }
.au-page-sub .pass { color: var(--accent); font-weight: 600; }
.au-page-sub .fix { color: #ffb547; font-weight: 600; }
.au-page-foot { margin-top: auto; padding-top: 10px; font-size: 9px; font-style: italic; color: var(--faint); letter-spacing: 0.01em; }

/* card 1 — scorecard gauges + metrics */
.au-gauges { display: flex; gap: 8px; justify-content: space-between; margin: 2px 0 14px; }
.au-gauge { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.au-gauge .ring { position: relative; width: 58px; height: 58px; }
.au-gauge .ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.au-gauge .gtrack { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 4; }
.au-gauge .gval { fill: none; stroke-width: 4; stroke-linecap: round; }
.au-gauge .gval.lime { stroke: var(--accent); }
.au-gauge .gval.amber { stroke: #ffb547; }
.au-gauge .gnum { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--text); }
.au-gauge .glab { font-size: 9px; letter-spacing: 0.04em; color: var(--faint); text-align: center; }

.au-metrics { display: flex; flex-direction: column; }
.au-metric { display: flex; align-items: center; gap: 8px; padding: 6px 0; }
.au-metric + .au-metric { border-top: 1px solid rgba(255,255,255,0.08); }
.au-metric .mname { flex: 0 0 auto; width: 38px; font-family: ui-monospace, Menlo, monospace; font-size: 10px; color: var(--muted); }
.au-metric .mval { flex: 1; font-family: var(--display); font-size: 11px; font-weight: 600; color: var(--text); }
.au-metric .mdot { flex: 0 0 8px; width: 8px; height: 8px; border-radius: 50%; }
.au-metric .mdot.green { background: #8bd34d; box-shadow: 0 0 5px rgba(139,211,77,0.5); }
.au-metric .mdot.amber { background: #ffb547; box-shadow: 0 0 5px rgba(255,181,71,0.5); }
.au-metric .mdot.red { background: #ff5a47; box-shadow: 0 0 5px rgba(255,90,71,0.5); }

/* card 2 — checkpoint table */
.au-checks { display: flex; flex-direction: column; position: relative; }
.au-check-row { display: flex; align-items: center; gap: 9px; height: 22px; }
.au-check-ic { flex: 0 0 12px; width: 12px; height: 12px; }
.au-check-ic svg { width: 12px; height: 12px; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.au-check-ic.ok svg { stroke: var(--accent); }
.au-check-ic.bad svg { stroke: #ff5a47; }
.au-check-txt { font-size: 10px; line-height: 1.2; color: var(--text); }
.au-check-row.bad .au-check-txt { color: var(--muted); }
.au-checks-fade { position: relative; max-height: 180px; overflow: hidden; }
.au-checks-fade::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46px; background: linear-gradient(180deg, rgba(20,24,14,0) 0%, rgba(8,10,5,0.9) 100%); pointer-events: none; }

/* card 3 — 30-day timeline */
.au-timeline { position: relative; padding-left: 18px; margin-top: 2px; }
.au-timeline::before { content: ""; position: absolute; left: 4px; top: 5px; bottom: 8px; width: 1px; background: rgba(255,255,255,0.16); }
.au-week { position: relative; margin-bottom: 13px; }
.au-week:last-child { margin-bottom: 0; }
.au-week::before { content: ""; position: absolute; left: -18px; top: 2px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-ink); border: 2px solid var(--accent); box-shadow: 0 0 7px rgba(183,255,74,0.5); }
.au-week .wlab { font-family: ui-monospace, Menlo, monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.au-week .wtitle { font-family: var(--display); font-size: 12px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); margin: 0 0 2px; }
.au-week .wbody { font-size: 10px; line-height: 1.35; color: var(--faint); margin: 0; }

/* cost transparency strip */
.au-cost { max-width: 720px; margin: 40px auto 0; text-align: center; }
.au-cost p { font-style: italic; font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; text-wrap: pretty; }
.au-cost .hl { color: var(--accent); font-style: normal; font-weight: 600; }

/* reveal baseline */
.section[data-reveal] { opacity: 0; }
html.reveal-ready .section[data-reveal] { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .au-step.active .au-dot { animation: none; }
}
@media (max-width: 480px) {
  
  h2.display { max-width: none; }
  .au-step { font-size: 14px; }
  .au-gauge .ring { width: 48px; height: 48px; }
  .au-gauge .gnum { font-size: 15px; }
}

/* ============================================================
   === BACKGROUND PHOTO OVERRIDE ===
   Single dramatic photo for the cinematic mood. Swap the URL below.
   Overlay tuned so glass cards stay legible over any image.
   ============================================================ */
body::before {
  background-image: url('https://images.unsplash.com/photo-1672279410716-c676739163e9?w=2400&q=80') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}
body::after {
  background: linear-gradient(180deg,
    rgba(0,0,0,0.40) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.78) 100%) !important;
}
@media (max-width: 768px) { body::before { background-attachment: scroll !important; } }

/* ============================================================
   === SERVICE WIDGET PATTERN (paid traffic + retention sections) ===
   2-card grid w/ alternating dark-teal panels, autoplay-loop-muted videos.
   Pattern inspired by miaso.co. Placeholder videos until real aipple
   footage replaces them — see data-placeholder="miaso-temp" attribute.
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: clamp(32px, 5vw, 56px);
}
@media (max-width: 768px) { .svc-grid { grid-template-columns: 1fr; gap: 18px; } }
.svc-card {
  background: #061a1c;
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
}
.svc-card.alt { background: #0c2626; }
.svc-card .svc-media {
  width: 100%;
  aspect-ratio: 1/1;             /* match source videos (1080×1080 square) */
  border-radius: 14px;
  overflow: hidden;
  background: transparent;       /* no letterbox color — blends into card */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card video {
  width: 100%;
  height: 100%;
  object-fit: contain;           /* show full video frame — no crop */
  object-position: center;
  display: block;
}
.svc-card h3 {
  margin: clamp(20px, 3vw, 28px) 0 8px;
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 42ch;
}

/* ============================================================
   === CONTENT-MOCKUP WIDGET (replaces grad photo in Section 04) ===
   Animated faux GBP dashboard. Pure HTML+CSS+JS, no video file.
   ============================================================ */
.svc-media--mock {
  background: linear-gradient(180deg, #050708 0%, #0a0e10 100%);
  padding: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.cm-widget {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px 18px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.86);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
}
.cm-head { display: flex; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.cm-pill { display: inline-flex; align-items: center; gap: 5px; padding: 2px 8px; border-radius: 999px; background: rgba(183,255,74,0.12); color: var(--accent); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; }
.cm-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent); animation: cm-pulse 1.4s ease-in-out infinite; }
@keyframes cm-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.cm-name { font-size: 11px; color: rgba(255,255,255,0.72); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cm-rank { font-size: 10px; color: var(--accent); font-weight: 600; }
.cm-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.cm-stat { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 10px 8px; display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.cm-val { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.cm-lbl { font-size: 9.5px; color: rgba(255,255,255,0.56); letter-spacing: 0.02em; }
.cm-activity { display: flex; flex-direction: column; gap: 7px; }
.cm-row { display: flex; align-items: flex-start; gap: 9px; padding: 9px 11px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; opacity: 0; transform: translateY(6px); animation: cm-row-in .5s cubic-bezier(.16,1,.3,1) forwards; animation-play-state: paused; }
.cm-widget.cm-playing .cm-row { animation-play-state: running; }
.cm-widget.cm-playing .cm-row[data-row="0"] { animation-delay: 0.2s; }
.cm-widget.cm-playing .cm-row[data-row="1"] { animation-delay: 1.4s; }
.cm-widget.cm-playing .cm-row[data-row="2"] { animation-delay: 2.6s; }
@keyframes cm-row-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cm-row-ic { font-size: 13px; line-height: 1.1; }
.cm-row-txt { font-size: 11px; line-height: 1.45; color: rgba(255,255,255,0.78); }
.cm-row-txt b { color: var(--text); font-weight: 600; }

/* ============================================================
   === KENT STARR BLOCK (bigger photo + outbound links) ===
   ============================================================ */
.kent-photo {
  width: 96px !important; height: 96px !important;
  border-radius: 16px !important;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.kent-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.kent-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.kent-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px; font-weight: 500; color: var(--text);
  text-decoration: none; transition: background .2s, border-color .2s, transform .15s;
}
.kent-link:hover { background: rgba(183,255,74,0.10); border-color: rgba(183,255,74,0.40); transform: translateY(-1px); }
.kent-link span { font-size: 10px; opacity: 0.7; }
@media (max-width: 480px) {
  .kent-photo { width: 72px !important; height: 72px !important; }
  .kent-links { gap: 6px; }
  .kent-link { padding: 5px 10px; font-size: 11px; }
}
