/* dr.water — drwater.club static stylesheet */

:root {
  --peacock: #142B77;
  --trust:   #076AC1;
  --sky:     #9BD3E8;
  --lime:    #C6DB47;
  --white:   #FFFFFF;
  --ink:     #222;
  --ink-soft:#444;
  --muted:   #666;
  --subtle:  #888;
  --surface-0:#FEFEFE;
  --surface-1:#EFEFEF;
  --surface-2:#EAEAEA;
  --border:  #E1E1E1;

  --grad-brand: linear-gradient(180deg,#076AC1 0%, #142B77 100%);
  --grad-light: linear-gradient(180deg, #FFFFFF 0%, #EAF4FA 100%);
  --grad-sky:   linear-gradient(180deg, #EAF4FA 0%, #DCEEF6 100%);
  --grad-gray:  linear-gradient(180deg, #F6F7F9 0%, #EFEFEF 100%);

  --font-display: "Anatoleum", "Archivo Black", system-ui, sans-serif;
  --font-body:    "Just Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-kicker:  "Playball", cursive;

  --shadow-1: 0 4px 24px rgba(20, 43, 119, .08);
  --shadow-2: 0 18px 60px rgba(20, 43, 119, .22);

  --radius-card: 24px;
  --radius-tile: 22px;
  --radius-pill: 999px;

  --curve: 72px;
  --curve-lg: 96px;

  --header-h: 64px;

  --t-fast: 120ms;
  --t-base: 200ms;
  --t-slow: 400ms;
  --ease: cubic-bezier(.2,.8,.2,1);
}

[data-theme="dark"] {
  --white: #0c1230;
  --surface-0: #11173a;
  --surface-1: #161c44;
  --surface-2: #1c2350;
  --border: rgba(255,255,255,.10);
  --ink: #eef1ff;
  --ink-soft: #cdd3f0;
  --muted: #9aa1c2;
  --subtle: #7a82a3;
  --grad-light: linear-gradient(180deg, #0c1230 0%, #131a40 100%);
  --grad-sky:   linear-gradient(180deg, #131a40 0%, #19204c 100%);
  --grad-gray:  linear-gradient(180deg, #0e1437 0%, #131a40 100%);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--trust); text-decoration: none; }
a:hover { color: var(--peacock); }
[data-theme="dark"] a { color: var(--sky); }
[data-theme="dark"] a:hover { color: #fff; }
button { font: inherit; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Type */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--trust);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow.on-dark, [data-theme="dark"] .eyebrow { color: var(--sky); }
.lockup, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--peacock);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}
[data-theme="dark"] .lockup, [data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3 { color: #fff; }
.on-dark, .panel-hero .lockup, .panel-number .megan, .panel-features .lockup, .panel-build .lockup, .panel-offer .lockup, .panel-final .lockup { color: #fff; }
h1.lockup { font-size: clamp(40px, 7.4vw, 84px); line-height: 1.04; }
h2.lockup { font-size: clamp(28px, 4.8vw, 56px); line-height: 1.08; }
h3.lockup { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; }
.kicker { font-family: var(--font-kicker); text-transform: none; letter-spacing: 0; color: var(--sky); font-weight: 400; padding-left: .12em; }
.panel-light .kicker, .panel-sky .kicker, .panel-gray .kicker { color: var(--trust); }
[data-theme="dark"] .panel-light .kicker, [data-theme="dark"] .panel-sky .kicker, [data-theme="dark"] .panel-gray .kicker { color: var(--sky); }
p { margin: 0 0 1em; max-width: 64ch; color: var(--ink-soft); }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: rgba(255,255,255,.92); max-width: 60ch; }
.panel-light .lead, .panel-sky .lead, .panel-gray .lead { color: var(--ink-soft); }
.lead-light { font-size: clamp(17px, 1.6vw, 19px); color: rgba(255,255,255,.92); max-width: 60ch; margin: 12px auto 0; }
.micro { font-size: 13px; color: rgba(255,255,255,.78); margin-top: 14px; }
.panel-light .micro, .panel-sky .micro, .panel-gray .micro { color: var(--muted); }
.consent { font-size: 12px; color: rgba(255,255,255,.72); margin-top: 12px; line-height: 1.5; max-width: 56ch; }
.panel-light .consent, .modal .consent { color: var(--muted); }
.consent a { text-decoration: underline; }

/* Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

/* Pills / buttons */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  background: var(--trust); color: #fff;
  border: 0; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  cursor: pointer; min-height: 44px;
  transition: background var(--t-fast) var(--ease), transform 80ms var(--ease), color var(--t-fast) var(--ease);
}
.pill:hover { background: var(--peacock); color: #fff; }
.pill:active { transform: scale(.98); }
.pill[disabled] { opacity: .6; cursor: not-allowed; }
.pill-sm { padding: 10px 16px; font-size: 14px; min-height: 38px; }
.pill-lg { padding: 17px 28px; font-size: 17px; }
.pill-white { background: #fff; color: var(--peacock); }
.pill-white:hover { background: var(--sky); color: var(--peacock); }
.pill-lime { background: var(--lime); color: var(--peacock); }
.pill-lime:hover { background: #d8e964; color: var(--peacock); }
.pill-outline { background: transparent; border: 1.5px solid var(--peacock); color: var(--peacock); }
.pill-outline:hover { background: var(--peacock); color: #fff; }

/* Icons */
.ic { stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Kickstarter wordmark — CSS lockup: KICK adapts to bg, STARTER stays brand-green */
.ks-wm {
  display: inline-flex; align-items: baseline;
  font-family: "Archivo Black", "Inter", system-ui, sans-serif;
  font-weight: 900; font-style: normal;
  font-size: .92em; line-height: 1; letter-spacing: -.005em;
  text-transform: uppercase; white-space: nowrap;
  vertical-align: -1px;
}
.ks-wm b, .ks-wm i { font-style: normal; font-weight: 900; }
.ks-wm b { color: #222; }
.ks-wm i { color: #05CE78; }
/* On dark/gradient surfaces or in dark theme, KICK goes white. STARTER always green. */
[data-theme="dark"] .ks-wm b,
.panel-hero .ks-wm b,
.panel-features .ks-wm b,
.panel-offer .ks-wm b,
.panel-final .ks-wm b,
.panel-build .ks-wm b,
.announce .ks-wm b,
.drawer .ks-wm b { color: #fff; }
.modal .ks-wm b { color: var(--peacock); }
[data-theme="dark"] .modal .ks-wm b { color: #fff; }
.site-header .ks-wm b { color: var(--ink); }
[data-theme="dark"] .site-header .ks-wm b { color: #fff; }

/* Announce bar */
.announce { background: var(--peacock); color: #fff; font-size: 13px; }
.announce .bar { max-width: 1200px; margin: 0 auto; padding: 8px 16px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.announce strong { color: var(--sky); }
.announce .pill { padding: 6px 14px; min-height: 32px; font-size: 13px; background: #fff; color: var(--peacock); }
.ann-mobile { display: none; }
@media (max-width: 720px) { .ann-desktop { display: none; } .ann-mobile { display: inline; } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface-0); color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-base) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-1); }
.site-header .bar {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  padding: 10px 16px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 22px; width: auto; }
.brand-dark { display: none; }
[data-theme="dark"] .brand-light { display: none; }
[data-theme="dark"] .brand-dark { display: inline-block; }
.header-lockup { display: none; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.header-lockup .ks-wm { font-size: 13px; }
.nav { display: none; margin-left: auto; gap: 22px; }
.nav a { color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.nav a:hover { color: var(--peacock); }
[data-theme="dark"] .nav a { color: var(--ink-soft); }
[data-theme="dark"] .nav a:hover { color: #fff; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.theme-toggle { background: transparent; border: 1px solid var(--border); border-radius: 999px; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-soft); cursor: pointer; }
.theme-toggle:hover { color: var(--peacock); }
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: block; color: var(--sky); }
.hamburger { background: transparent; border: 0; width: 38px; height: 38px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
[data-theme="dark"] .hamburger span { background: #fff; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .header-actions { margin-left: 0; }
  .hamburger { display: none; }
  .header-lockup { display: inline-flex; margin-left: 12px; }
}

/* Drawer */
.drawer { position: fixed; inset: 0; z-index: 80; background: var(--grad-brand); color: #fff; transform: translateX(100%); transition: transform var(--t-slow) var(--ease); }
.drawer[aria-hidden="false"] { transform: translateX(0); }
.drawer-inner { padding: 24px; display: flex; flex-direction: column; gap: 24px; height: 100%; }
.drawer-top { display: flex; justify-content: space-between; align-items: center; }
.drawer .close { background: transparent; border: 0; color: #fff; font-size: 32px; line-height: 1; cursor: pointer; }
.drawer nav { display: flex; flex-direction: column; gap: 16px; }
.drawer nav a { color: #fff; font-family: var(--font-display); font-size: 28px; text-transform: uppercase; }
.lockup-line { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.85); }
.lockup-line .ks-wm { font-size: 14px; }

/* Panels — flat sections (curve ribbon removed) */
.panel {
  position: relative;
  border-radius: 0;
  margin-top: 0;
  padding: 96px 0;
  isolation: isolate;
}
.panel:first-of-type { padding-top: 0; }
@media (max-width: 860px) {
  .panel { padding: 64px 0; }
}

/* Backgrounds per panel */
.panel-hero { background: #06080f; color: rgba(255,255,255,.92); overflow: hidden; padding-top: 32px; padding-bottom: 96px; position: relative; }
.panel-hero .blob { display: none; }
.panel-hero .container { display: flex; align-items: center; gap: 48px; position: relative; z-index: 2; }
.hero-copy { flex: 1 1 0; min-width: 0; max-width: 620px; }
.hero-copy h1.lockup { font-size: clamp(40px, 5.4vw, 72px); line-height: 1.04; }
.hero-media { flex: 0 0 36%; position: relative; align-self: stretch; min-height: 420px; }
.hero-gif { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, #06080f 0%, rgba(6,8,15,0.6) 14%, rgba(6,8,15,0) 40%);
}
@media (max-width: 899px) {
  .panel-hero .container { display: block; }
  .hero-copy { max-width: 100%; }
}
.panel-number { background: var(--trust); color: #fff; overflow: clip; padding: 96px 0; }
.panel-light { background: var(--grad-light); }
.panel-features { background: var(--grad-brand); color: rgba(255,255,255,.92); overflow: clip; }
.panel-sky { background: var(--grad-sky); }
.panel-gray { background: var(--grad-gray); }
.panel-build { background: var(--grad-brand); color: rgba(255,255,255,.92); overflow: clip; }
.panel-offer { background: var(--grad-brand); color: rgba(255,255,255,.92); overflow: clip; padding: 96px 0; }
.panel-final { background: var(--grad-brand); color: rgba(255,255,255,.92); overflow: clip; }
.deep { overflow: visible; }

/* Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; pointer-events: none; z-index: 0; }
.blob-a { width: 520px; height: 520px; background: var(--sky); top: -120px; left: -160px; }
.blob-b { width: 460px; height: 460px; background: var(--trust); bottom: -160px; right: -120px; opacity: .45; }
.blob-c { width: 600px; height: 600px; background: rgba(155, 211, 232, .55); top: 30%; left: 50%; transform: translateX(-50%); }
.panel > .container { position: relative; z-index: 1; }

/* Hero copy column carries everything; on mobile the GIF stacks on top as a centered card. */
.hero-copy .sub { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.88); max-width: 56ch; margin: 18px 0 0; }
@media (max-width: 720px) {
  .panel-hero { padding: 16px 0 56px; }
  .panel-hero .container { padding: 0 20px; display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .panel-hero h1.lockup { font-size: clamp(34px, 9vw, 48px); margin-bottom: 14px; }
  .hero-media {
    position: relative; flex: none; align-self: center;
    width: 100%; max-width: 320px; margin: 0 auto 22px;
    height: 280px; min-height: 0;
    order: -1;
    border-radius: 18px; overflow: hidden;
  }
  .hero-gif { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hero-media::after { background: none; }
  .hero-copy { max-width: 100%; }
  .hero-copy .sub { font-size: 14.5px; line-height: 1.55; max-width: 100%; }
}
.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.price { display: inline-flex; align-items: baseline; gap: 8px; color: #fff; }
.price b { font-family: var(--font-display); font-size: 28px; }
.price s { color: rgba(255,255,255,.6); font-size: 16px; }
.price span { font-size: 12px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .14em; margin-left: 6px; }
.countdown { display: flex; gap: 12px; margin-top: 24px; }
.countdown .ct { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 12px 16px; min-width: 70px; text-align: center; }
.countdown b { display: block; font-family: var(--font-display); font-size: 24px; color: #fff; font-variant-numeric: tabular-nums; }
.countdown span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--sky); }
@media (max-width: 720px) {
  .countdown { gap: 6px; margin-top: 14px; }
  .countdown .ct, .cd-unit { padding: 6px 4px; min-width: 42px; border-radius: 8px; }
  .countdown b, .cd-unit .n { font-size: 16px; }
  .countdown span, .cd-unit .u { font-size: 8px; letter-spacing: .08em; }
}
@media (max-width: 480px) {
  /* Header pill — fit on one line */
  .site-header .pill, .site-header .pill-sm { padding: 8px 12px; font-size: 12px; min-height: 32px; white-space: nowrap; }
  .site-header .bar { gap: 8px; padding: 8px 10px; }
  .site-header .header-actions { gap: 6px; }
  .theme-toggle { width: 32px; height: 32px; }
  .hamburger { width: 32px; height: 32px; }
  /* Hero CTA pill — tighter */
  .panel-hero .cta-row .pill-lg { padding: 12px 20px; font-size: 15px; }
  .panel-hero .cta-row { gap: 12px; }
  /* Consent line near-invisible */
  .panel-hero .consent { font-size: 10px; line-height: 1.4; opacity: .55; margin-top: 8px; }
  .panel-hero .micro { font-size: 12px; margin-top: 10px; }
}

/* Hero bottle (CSS render) */
.hero-product { display: flex; justify-content: center; }
.bottle { position: relative; width: min(340px, 80vw); aspect-ratio: 3 / 5; }
.bottle .halo { position: absolute; inset: -40px; background: radial-gradient(closest-side, rgba(155,211,232,.4), transparent 70%); filter: blur(20px); z-index: 0; }
.bottle .body { position: absolute; inset: 0; background: linear-gradient(180deg, #0c1230, #1c2350); border-radius: 80px / 60px; border: 1px solid rgba(255,255,255,.14); box-shadow: inset 0 0 60px rgba(0,0,0,.4), 0 30px 80px rgba(0,0,0,.5); overflow: hidden; z-index: 1; }
.bottle .cap { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); width: 60%; height: 50px; background: linear-gradient(180deg, #0c1230, #1c2350); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; z-index: 2; }
.chamber { position: absolute; top: 14%; left: 12%; right: 12%; height: 56%; border-radius: 18px; background: radial-gradient(ellipse at 50% 50%, #5cd6ff 0%, #1aa6e8 35%, #076ac1 70%, transparent 100%); box-shadow: 0 0 60px rgba(92, 214, 255, .55), inset 0 0 30px rgba(255,255,255,.25); overflow: hidden; }
.bubbles { position: absolute; inset: 0; }
.bubbles i { position: absolute; bottom: -10px; width: 6px; height: 6px; background: rgba(255,255,255,.7); border-radius: 50%; animation: rise linear infinite; }
@keyframes rise { from { transform: translateY(0); opacity: 0; } 20% { opacity: 1; } to { transform: translateY(-180px); opacity: 0; } }
.screen { position: absolute; bottom: 14%; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.45); border: 1px solid rgba(92,214,255,.35); color: #5cd6ff; font-family: var(--font-body); font-weight: 600; font-size: 14px; padding: 6px 14px; border-radius: 8px; letter-spacing: .08em; }

/* THE NUMBER */
.megan { font-family: var(--font-display); font-size: clamp(80px, 18vw, 220px); color: #fff; line-height: 1; letter-spacing: -.02em; margin: 18px 0 16px; }
.megan-unit { font-size: .35em; vertical-align: .6em; letter-spacing: .04em; }
.megan-star { font-size: .55em; vertical-align: .9em; margin-left: .08em; color: var(--sky); font-family: var(--font-body); font-weight: 400; }
.chip { display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.chip.lime { background: var(--lime); color: var(--peacock); border-color: transparent; }
.panel-light .chip, .panel-sky .chip, .panel-gray .chip { background: var(--surface-1); border-color: var(--border); color: var(--peacock); }

/* How it works */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--surface-0); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px; }
.step h3 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; color: var(--peacock); margin: 8px 0; }
[data-theme="dark"] .step { background: var(--surface-1); }
[data-theme="dark"] .step h3 { color: #fff; }
.step-num { font-family: var(--font-display); color: var(--trust); font-size: 14px; letter-spacing: .14em; }
.step-aside { margin-top: 18px; border-style: dashed; background: transparent; }

/* Features (dark grid of frosted tiles) */
.feature-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.tile { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-tile); padding: 26px; color: #fff; backdrop-filter: blur(6px); }
.tile .ic { color: var(--sky); }
.tile b { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 18px; margin: 10px 0 6px; }
.tile span { color: rgba(255,255,255,.85); font-size: 15px; }

/* Video / image placeholder slots */
.slot {
  position: relative;
  background: repeating-linear-gradient(45deg, var(--surface-1), var(--surface-1) 10px, var(--surface-2) 10px, var(--surface-2) 20px);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-card);
  color: var(--muted);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  min-height: 220px;
}
.video-slot { aspect-ratio: 16/9; margin-top: 28px; overflow: hidden; }
.video-slot .slot-tag { padding: 8px 12px; background: rgba(20,43,119,.85); color: #fff; border-radius: 999px; font-size: 12px; }
.video-slot .overlay-chip { position: absolute; left: 20px; bottom: 20px; padding: 8px 14px; background: var(--peacock); color: #fff; border-radius: 999px; font-size: 13px; font-weight: 600; }

/* Reviews masonry — alternating dark text cards + full-bleed photo cards */
.masonry { columns: 1; column-gap: 18px; margin-top: 28px; }
@media (min-width: 720px) { .masonry { columns: 2; } }
@media (min-width: 1000px) { .masonry { columns: 3; } }
.rv { break-inside: avoid; margin: 0 0 18px; border-radius: var(--radius-card); overflow: hidden; }
.rv-photo { padding: 0; background: transparent; }
.rv-photo img { display: block; width: 100%; height: auto; border-radius: var(--radius-card); }
.rv-text { padding: 24px; background: var(--surface-0); border: 1px solid var(--border); color: var(--ink); display: flex; flex-direction: column; gap: 16px; }
[data-theme="dark"] .rv-text { background: #11173a; border-color: rgba(255,255,255,.08); color: #eef1ff; }
.rv-text .stars { color: var(--lime); font-size: 14px; letter-spacing: 2px; line-height: 1; }
.rv-quote { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.55; }
[data-theme="dark"] .rv-quote { color: #eef1ff; }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-author .avatar { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--trust); color: #fff; font-weight: 700; font-size: 14px; flex: 0 0 auto; font-family: var(--font-body); }
.rv-author b { display: block; color: var(--peacock); font-weight: 700; font-size: 14px; }
[data-theme="dark"] .rv-author b { color: #fff; }
.rv-author span { display: block; color: var(--muted); font-size: 12px; }
.ph-note { display: none; }

/* Advisor + trust strip */
.advisor { margin-top: 24px; display: inline-flex; align-items: center; gap: 16px; padding: 16px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface-0); box-shadow: var(--shadow-1); }
.advisor img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.advisor b { display: block; color: var(--peacock); font-weight: 700; }
[data-theme="dark"] .advisor { background: var(--surface-1); }
[data-theme="dark"] .advisor b { color: #fff; }
.advisor span { color: var(--muted); font-size: 13px; }

.trust-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 48px; padding-top: 32px; padding-bottom: 8px; border-top: 1px solid var(--border); }
@media (min-width: 820px) { .trust-strip { grid-template-columns: repeat(5, 1fr); } }
.tm { text-align: center; padding: 16px 10px; color: var(--ink-soft); }
.tm .ic { margin: 0 auto 10px; color: var(--trust); }
.tm b { display: block; color: var(--peacock); font-size: 14px; }
[data-theme="dark"] .tm b { color: #fff; }
.tm span { font-size: 12px; color: var(--muted); }

/* Pain grid */
.pain-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 28px; }
@media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain { background: var(--surface-0); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 22px; }
[data-theme="dark"] .pain { background: var(--surface-1); }
.pain b { display: block; font-family: var(--font-display); text-transform: uppercase; color: var(--peacock); font-size: 18px; margin-bottom: 6px; }
[data-theme="dark"] .pain b { color: #fff; }
.pain span { color: var(--ink-soft); }
.transition { margin-top: 28px; font-style: italic; color: var(--ink-soft); }

/* Big fix split */
.split { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 920px) { .split { grid-template-columns: 1.05fr .95fr; gap: 64px; } }
.proofs { list-style: none; padding: 0; margin: 18px 0 0; }
.proofs li { padding: 12px 0; border-top: 1px solid var(--border); }
.proofs li:last-child { border-bottom: 1px solid var(--border); }
.proofs b { display: block; color: var(--peacock); font-weight: 700; }
[data-theme="dark"] .proofs b { color: #fff; }
.proofs span { color: var(--ink-soft); font-size: 15px; }
.img-frame { aspect-ratio: 4/5; min-height: 320px; }

/* Deep dives — clean alternating rows, no card chrome */
.deep-stack { max-width: 1200px; margin: 32px auto 0; padding: 0 20px; }
.deep-card { background: none; border: 0; box-shadow: none; border-radius: 0; padding: 64px 0; border-top: 1px solid var(--border); position: static; top: auto; margin: 0; }
.deep-card:first-child { border-top: 0; padding-top: 32px; }
.dc-grid { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 880px) { .dc-grid { grid-template-columns: 1fr 1fr; gap: 64px; } .dc-grid.reverse > :first-child { order: 2; } }
.deep-card .media-frame { background: #06080f; border-radius: 18px; overflow: hidden; }
.deep-card .media-frame img { width: 100%; height: auto; display: block; }

/* Day grid */
.day-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 28px; }
@media (min-width: 720px) { .day-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .day-grid { grid-template-columns: repeat(4, 1fr); } }
.day { min-height: 280px; }
.day figcaption { margin-top: 12px; color: var(--ink-soft); font-size: 14px; }
.day figcaption b { color: var(--peacock); }
[data-theme="dark"] .day figcaption b { color: #fff; }

/* Comparison table */
.cmp-wrap { margin-top: 24px; }
.cmp { width: 100%; border-collapse: collapse; font-size: 16px; }
.cmp th, .cmp td { padding: 16px 14px; text-align: left; border-bottom: 1px solid var(--border); color: var(--ink-soft); }
.cmp thead th { font-family: var(--font-display); text-transform: uppercase; font-size: 13px; letter-spacing: .12em; color: var(--peacock); border-bottom-width: 2px; }
[data-theme="dark"] .cmp thead th { color: #fff; }
.cmp .us { color: var(--trust); font-weight: 600; background: rgba(7,106,193,.04); }
[data-theme="dark"] .cmp .us { color: var(--sky); background: rgba(155,211,232,.06); }
@media (max-width: 720px) {
  .cmp thead { display: none; }
  .cmp tr { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .cmp td { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border: 0; }
  .cmp td::before { content: attr(data-label); font-weight: 600; color: var(--peacock); flex: 0 0 38%; text-transform: uppercase; font-size: 12px; letter-spacing: .1em; }
  [data-theme="dark"] .cmp td::before { color: #fff; }
}

/* Build / feedback form */
.build-form { display: flex; gap: 10px; margin-top: 24px; max-width: 640px; }
.build-form input { flex: 1; padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff; font-size: 15px; }
.build-form input::placeholder { color: rgba(255,255,255,.65); }
.build-form input:focus { outline: 2px solid var(--sky); outline-offset: 2px; }
.thanks { margin-top: 14px; color: var(--sky); font-weight: 600; }

/* Offer card */
.offer-card {
  max-width: 480px; margin: 32px auto 0;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px; padding: 32px; text-align: left;
  box-shadow: var(--shadow-2);
}
.offer-head { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.offer-price { display: flex; align-items: baseline; gap: 14px; margin: 18px 0 0; }
.offer-price b { font-family: var(--font-display); font-size: 56px; color: #fff; }
.offer-price s { color: rgba(255,255,255,.6); font-size: 22px; }
.offer-list { list-style: none; padding: 0; margin: 22px 0; }
.offer-list li { padding: 8px 0; color: rgba(255,255,255,.92); position: relative; padding-left: 26px; }
.offer-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sky); font-weight: 700; }
.closing-line { margin-top: 36px; color: rgba(255,255,255,.85); max-width: 56ch; margin-left: auto; margin-right: auto; }

/* Risks */
.risks { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 24px; }
@media (min-width: 720px) { .risks { grid-template-columns: repeat(3, 1fr); } }
.risk { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--surface-0); }
[data-theme="dark"] .risk { background: var(--surface-1); }
.risk b { display: block; color: var(--peacock); font-family: var(--font-display); text-transform: uppercase; margin-bottom: 8px; }
[data-theme="dark"] .risk b { color: #fff; }

/* Spec details */
.spec { background: var(--surface-0); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px; }
.spec summary { cursor: pointer; font-family: var(--font-display); text-transform: uppercase; color: var(--peacock); font-size: 18px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.spec summary::after { content: '+'; font-family: var(--font-body); font-weight: 300; font-size: 28px; color: var(--trust); }
.spec[open] summary::after { content: '–'; }
[data-theme="dark"] .spec { background: var(--surface-1); }
[data-theme="dark"] .spec summary { color: #fff; }
.spec ul { margin-top: 12px; padding-left: 20px; }
.spec li { margin: 6px 0; color: var(--ink-soft); }

/* FAQ */
.faq-list { margin-top: 24px; }
.faq-list details { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-list details:first-child { border-top: 1px solid var(--border); }
.faq-list summary { cursor: pointer; list-style: none; font-family: var(--font-display); text-transform: uppercase; font-size: 18px; color: var(--peacock); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-list summary::after { content: '+'; font-family: var(--font-body); font-weight: 300; font-size: 28px; color: var(--trust); transition: transform var(--t-base) var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list div { padding-top: 12px; color: var(--ink-soft); }
[data-theme="dark"] .faq-list summary { color: #fff; }

/* Sticky bar */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--surface-0); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(20,43,119,.08);
  transform: translateY(100%); transition: transform var(--t-base) var(--ease);
}
.sticky-bar.in { transform: translateY(0); }
.sticky-bar .container { display: flex; align-items: center; gap: 14px; padding: 10px 16px; }
.sb-info { flex: 1; font-size: 13px; color: var(--ink); }
.sb-info b { color: var(--peacock); font-family: var(--font-display); font-size: 16px; margin-right: 6px; }
[data-theme="dark"] .sb-info, [data-theme="dark"] .sb-info b { color: #fff; }
.sb-info s { color: var(--muted); margin-right: 6px; }

/* Footer */
.site-footer { background: var(--peacock); color: rgba(255,255,255,.78); padding: 56px 0 80px; }
.foot-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .foot-grid { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.brand-foot { height: 26px; width: auto; margin-bottom: 12px; }
.foot-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-nav a { color: rgba(255,255,255,.9); }
.site-footer hr { border: 0; border-top: 1px solid rgba(255,255,255,.12); margin: 32px 0; }
.legal { font-size: 12px; color: rgba(255,255,255,.65); max-width: 100%; }
.muted { color: rgba(255,255,255,.68); }

/* Inline reserve form (in hero, offer, final CTA) — compact */
.inline-reserve { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; max-width: 460px; align-items: stretch; }
.inline-reserve .ir-input {
  flex: 1 1 200px; min-width: 0;
  padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06); color: #fff; font: 400 14px/1.2 var(--font-body);
  min-height: 40px;
}
.inline-reserve .ir-input::placeholder { color: rgba(255,255,255,.6); }
.inline-reserve .ir-input:focus { outline: 2px solid var(--sky); outline-offset: 1px; border-color: transparent; }
.inline-reserve .ir-submit { flex: 0 0 auto; white-space: nowrap; padding: 10px 18px; font-size: 14px; min-height: 40px; border-radius: 10px; }
.inline-reserve.ir-center { justify-content: center; margin-left: auto; margin-right: auto; }
.inline-reserve .ir-err { width: 100%; color: #ffb1a8; font-size: 12px; margin: 2px 0 0; }
.price-row { margin-top: 14px; display: inline-flex; align-items: baseline; gap: 8px; color: #fff; }
.price-row b { font-family: var(--font-display); font-size: 28px; }
.price-row s { color: rgba(255,255,255,.6); font-size: 16px; }
.price-row span { font-size: 12px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .14em; margin-left: 6px; }
@media (max-width: 480px) {
  .inline-reserve { flex-direction: column; }
  .inline-reserve .ir-input, .inline-reserve .ir-submit { width: 100%; }
}

/* Full-screen overlay (replaces compact modal) */
.overlay { position: fixed; inset: 0; z-index: 100; display: flex; align-items: stretch; justify-content: center; }
.overlay[hidden] { display: none; }
.overlay-backdrop { position: absolute; inset: 0; background: rgba(20,43,119,.34); backdrop-filter: blur(12px); }
.overlay-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px;
  background: var(--surface-0); color: var(--ink);
  border-radius: 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  display: grid; grid-template-columns: 1fr 1.05fr;
  overflow: hidden;
  margin: auto;
  max-height: 92dvh;
  animation: overlayIn .35s var(--ease) both;
}
@keyframes overlayIn { from { transform: translateY(-24px); opacity: 0; } to { transform: none; opacity: 1; } }
[data-theme="dark"] .overlay-card { background: var(--surface-1); }

.overlay-media { background: #06080f; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.overlay-media img { width: 100%; height: 100%; object-fit: cover; }

.overlay-body { padding: 24px 36px 28px; overflow: auto; display: flex; flex-direction: column; gap: 14px; }
.overlay-brand { display: inline-flex; margin-bottom: 4px; }
.overlay-brand img { height: 22px; width: auto; }
.overlay-brand .brand-dark { display: none; }
[data-theme="dark"] .overlay-brand .brand-light { display: none; }
[data-theme="dark"] .overlay-brand .brand-dark { display: inline-block; }

.overlay-close { position: absolute; top: 14px; right: 16px; z-index: 2; background: rgba(255,255,255,.7); border: 0; font-size: 26px; line-height: 1; color: var(--peacock); cursor: pointer; width: 36px; height: 36px; border-radius: 50%; }
[data-theme="dark"] .overlay-close { background: rgba(255,255,255,.12); color: #fff; }

.overlay h3 { color: var(--peacock); font-size: clamp(22px, 2.6vw, 30px); margin: 0; }
[data-theme="dark"] .overlay h3 { color: #fff; }
.overlay p { color: var(--ink-soft); margin: 0; }
[data-theme="dark"] .overlay p { color: var(--ink-soft); }
.overlay .ks-wm { font-size: 0.9em; }
.overlay form { display: flex; flex-direction: column; gap: 4px; }

.pill-text { background: transparent; color: var(--muted); padding: 8px 14px; font-weight: 500; font-size: 14px; border: 0; min-height: 36px; }
.pill-text:hover { background: transparent; color: var(--peacock); }
[data-theme="dark"] .pill-text:hover { color: #fff; }

/* Success / KS-follow step — two typefaces only (body + KICKSTARTER lockup) */
.success-card { gap: 16px; display: flex; flex-direction: column; }
.success-title {
  font-family: var(--font-body); font-weight: 700;
  text-transform: none; letter-spacing: 0;
  font-size: clamp(20px, 2.1vw, 24px); line-height: 1.3;
  color: var(--peacock);
}
[data-theme="dark"] .success-title { color: #fff; }
.success-lead { font-family: var(--font-body); font-weight: 500; color: var(--ink); font-size: 14px; line-height: 1.5; margin: 0; }
[data-theme="dark"] .success-lead { color: #fff; }
.success-steps { padding-left: 18px; margin: 4px 0 4px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.success-steps li { color: var(--ink-soft); line-height: 1.5; padding-left: 4px; }
.success-steps li::marker { color: var(--trust); font-weight: 700; }
.success-body { font-family: var(--font-body); font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.success-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: var(--trust);
  border: 1.5px solid var(--trust);
  width: 100%; padding: 12px 22px; font-size: 14px; font-weight: 600;
  border-radius: 10px;
  margin-top: 4px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.success-cta:hover { background: var(--trust); color: #fff; }
.success-cta:hover .ks-wm b { color: #fff; }
[data-theme="dark"] .success-cta { background: transparent; color: var(--sky); border-color: var(--sky); }
[data-theme="dark"] .success-cta:hover { background: var(--sky); color: var(--peacock); }
.success-skip { align-self: center; font-size: 12px; padding: 4px 10px; min-height: 28px; }
.field-wrap { display: block; margin-top: 10px; }
.field-wrap span { display: block; font-size: 12px; font-weight: 600; color: var(--peacock); margin-bottom: 4px; }
.field-wrap span em { font-style: normal; color: var(--muted); font-weight: 400; font-size: 11px; margin-left: 6px; }
[data-theme="dark"] .field-wrap span { color: #fff; }
.field-wrap input { display: block; width: 100%; padding: 10px 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--white); color: var(--ink); font: 400 14px/1.2 var(--font-body); min-height: 40px; }
[data-theme="dark"] .field-wrap input { background: var(--surface-2); color: #fff; }
.field-wrap input:focus { outline: 2px solid var(--trust); outline-offset: 1px; border-color: var(--trust); }
.err { color: #C0382A; font-size: 12px; margin: 4px 0 0; }
.overlay form .pill[type="submit"], .overlay form .pill { width: 100%; margin-top: 12px; padding: 11px 20px; font-size: 14px; min-height: 42px; border-radius: 10px; }
.modal-step[hidden] { display: none; }

/* Overlay mobile: hide image, full-width form */
@media (max-width: 760px) {
  .overlay-card { grid-template-columns: 1fr; max-width: 100vw; max-height: 100dvh; border-radius: 0; height: 100dvh; }
  .overlay-media { display: none; }
  .overlay-body { padding: 56px 20px 24px; }
  .overlay-close { top: 10px; right: 10px; }
}

/* Entrance reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .bubbles i { display: none; }
}

/* body bottom padding so sticky bar doesn't cover content */
body { padding-bottom: 64px; }
@media (min-width: 720px) { body { padding-bottom: 56px; } }
