/* =========================================================================
   WannaStream — marketing landing page
   Hand-written CSS. No framework, no build step.
   Brand: blue #1f6feb · live red #ff0000 · Space Grotesk / Space Mono
   ========================================================================= */

:root {
  /* brand */
  --blue:        #1f6feb;
  --blue-bright: #3b82f6;
  --blue-soft:   #cfe0ff;
  --violet:      #6d28d9;
  --cyan:        #22d3ee;
  --live:        #ff0000;

  /* dark surfaces */
  --ink-0: #070a14;
  --ink-1: #0b1020;
  --ink-2: #121a32;
  --ink-3: #19234180;

  /* light surfaces */
  --paper:   #f6f8fc;
  --paper-2: #ffffff;
  --line:    #e4e9f2;

  /* text */
  --on-dark:      #ffffff;
  --on-dark-mut:  rgba(255,255,255,0.66);
  --on-dark-dim:  rgba(255,255,255,0.42);
  --on-light:     #0b1020;
  --on-light-mut: #4a5470;

  /* type */
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* shape */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;

  --shadow-card:  0 22px 50px -28px rgba(8,12,24,0.18);
  --shadow-float: 0 50px 110px -34px rgba(0,0,0,0.65);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--ink-0);
  color: var(--on-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.03em; line-height: 1.04; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; }

::selection { background: var(--blue); color: #fff; }

/* ---------- focus + skip link ---------- */
:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }
.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: #fff; color: var(--ink-1); padding: 10px 16px; border-radius: 8px;
  font-weight: 600; transition: top .2s;
}
.skip:focus { top: 16px; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.band { position: relative; }
.band.dark  { background: var(--ink-1); color: var(--on-dark); }
.band.light { background: var(--paper); color: var(--on-light); }
.band-pad { padding-block: clamp(72px, 10vw, 136px); }

.eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow.on-dark  { color: var(--cyan); }
.eyebrow.on-light { color: var(--blue); }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .65; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .65; }

.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 52px); }
.section-head p { margin-top: 18px; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55; }
.dark  .section-head p { color: var(--on-dark-mut); }
.light .section-head p { color: var(--on-light-mut); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15.5px; line-height: 1;
  border-radius: var(--r-md); padding: 14px 22px; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff; box-shadow: 0 10px 28px -8px rgba(31,111,235,0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(31,111,235,0.8); }
.btn-ghost-dark { background: rgba(255,255,255,0.05); color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-ghost-light { background: #fff; color: var(--ink-1); border-color: var(--line); }
.btn-ghost-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-white { background: #fff; color: var(--ink-1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(0,0,0,0.5); }
.btn-lg { padding: 16px 28px; font-size: 16.5px; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: padding .25s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding-block: 11px;
  background: rgba(8,12,22,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255,255,255,0.08);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 20px; color: #fff; letter-spacing: -0.02em; }
.brand .live-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--live); flex: none; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--on-dark-mut); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* live pulse */
.live-dot, .ld {
  box-shadow: 0 0 0 0 rgba(255,0,0,0.55);
  animation: livePulse 2.4s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,0,0,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot, .ld { animation: none; }
}

/* =========================================================================
   HERO  (Direction A — spotlight split)
   ========================================================================= */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(128% 96% at 80% -12%, #1b3c92 0%, var(--ink-1) 44%, var(--ink-0) 100%);
  color: #fff;
  padding-top: clamp(120px, 16vw, 168px);
  padding-bottom: clamp(56px, 7vw, 88px);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0;
}
.hero-glow.g1 { width: 620px; height: 620px; top: -200px; right: -140px; background: rgba(31,111,235,0.5); animation: drift 16s ease-in-out infinite alternate; }
.hero-glow.g2 { width: 420px; height: 420px; bottom: -160px; left: 180px; background: rgba(34,211,238,0.16); animation: drift2 20s ease-in-out infinite alternate; }
@keyframes drift  { to { transform: translate(-40px, 36px) scale(1.08); } }
@keyframes drift2 { to { transform: translate(50px, -30px) scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .hero-glow { animation: none !important; } }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 1fr; align-items: center; gap: clamp(32px, 5vw, 72px);
}
.hero-copy { max-width: 560px; }
.hero h1 { font-size: clamp(40px, 5.6vw, 70px); }
.hero h1 .nowrap { white-space: nowrap; }
.hero-sub { margin: 26px 0 34px; font-size: clamp(17px, 1.9vw, 20px); line-height: 1.55; color: var(--on-dark-mut); max-width: 510px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.trust { margin-top: clamp(40px, 5vw, 60px); }
.trust-label { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-dim); margin-bottom: 14px; }
.crest-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.crest {
  width: 44px; height: 44px; border-radius: 10px; flex: none;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 6px, rgba(255,255,255,0.02) 6px 12px);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 9px; color: var(--on-dark-dim);
  text-align: center; line-height: 1.1;
}

.hero-visual { position: relative; z-index: 1; display: flex; justify-content: flex-end; }
.hero-visual .mock { transform: rotate(1.2deg); }
@media (max-width: 980px) { .hero-visual .mock { transform: none; } }

/* =========================================================================
   PRODUCT MOCKUP (reused: hero + how-it-works + pricing accents)
   ========================================================================= */
.mock {
  width: 100%; max-width: 600px; border-radius: var(--r-lg); overflow: hidden;
  background: #0d1424; border: 1px solid rgba(255,255,255,0.13);
  box-shadow: var(--shadow-float), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: #131b30; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mock-bar .tl { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.mock-url {
  margin-left: 12px; flex: 1; height: 26px; border-radius: 7px;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; gap: 7px;
  padding: 0 12px; font-family: var(--mono); font-size: 11.5px; color: var(--on-dark-dim);
}
.mock-url svg { width: 12px; height: 12px; }
.player { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #1c2950, #0b1322); }
.player::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(118deg, transparent 0 26px, rgba(255,255,255,0.018) 26px 27px),
    radial-gradient(120% 90% at 28% 16%, rgba(31,111,235,0.28), transparent 62%);
}
.live-pill {
  position: absolute; top: 15px; left: 15px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--live); color: #fff; font-weight: 700;
  font-size: 12px; letter-spacing: 0.09em; padding: 6px 11px; border-radius: 7px;
  box-shadow: 0 6px 18px -4px rgba(255,0,0,0.5);
}
.live-pill .ld { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.viewers {
  position: absolute; top: 15px; right: 15px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
  color: #fff; font-family: var(--mono); font-size: 11px; padding: 6px 10px; border-radius: 7px;
}
.viewers svg { width: 13px; height: 13px; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.32);
  display: grid; place-items: center;
}
.play-btn::after { content: ""; border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.scrub { position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 2; }
.scrub-track { height: 4px; border-radius: 3px; background: rgba(255,255,255,0.22); position: relative; }
.scrub-track::before { content: ""; position: absolute; inset: 0 38% 0 0; background: var(--live); border-radius: 3px; }
.scrub-track::after { content: ""; position: absolute; left: 62%; top: 50%; width: 12px; height: 12px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); box-shadow: 0 0 0 4px rgba(255,0,0,0.25); }

.vod { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; padding: 15px; background: #0d1424; }
.vod-head { grid-column: 1/-1; display: flex; justify-content: space-between; align-items: center; }
.vod-head b { font-size: 13.5px; font-weight: 600; color: #fff; white-space: nowrap; }
.vod-head span { font-family: var(--mono); font-size: 10.5px; color: var(--on-dark-dim); white-space: nowrap; }
.vod-card { border-radius: var(--r-sm); overflow: hidden; background: #131b30; border: 1px solid rgba(255,255,255,0.06); transition: transform .16s, border-color .16s; }
.vod-card:hover { transform: translateY(-2px); border-color: rgba(31,111,235,0.5); }
.vod-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, #1d2a4c, #0e1628); position: relative; }
.vod-thumb::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(118deg, transparent 0 14px, rgba(255,255,255,0.02) 14px 15px); }
.vod-thumb .dur { position: absolute; bottom: 5px; right: 6px; z-index: 1; font-family: var(--mono); font-size: 9px; background: rgba(0,0,0,0.62); padding: 1px 5px; border-radius: 4px; color: #fff; }
.vod-meta { padding: 8px 9px 10px; }
.vod-meta b { display: block; font-size: 11.5px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.vod-meta small { font-family: var(--mono); font-size: 9px; color: var(--on-dark-dim); }

/* =========================================================================
   VALUE PROPS  (light)
   ========================================================================= */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.v-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px 30px; box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.v-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(8,12,24,0.28); border-color: #cdd8ec; }
.v-ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(150deg, rgba(31,111,235,0.12), rgba(109,40,217,0.1));
  color: var(--blue); border: 1px solid rgba(31,111,235,0.18);
}
.v-ico svg { width: 24px; height: 24px; }
.v-card h3 { font-size: 19px; margin-bottom: 9px; }
.v-card p { font-size: 14.5px; line-height: 1.55; color: var(--on-light-mut); }

/* =========================================================================
   USE CASES  (dark)
   ========================================================================= */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.uc-card {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--ink-2), #0e1528);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg);
  padding: 30px 28px; min-height: 208px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 22px;
  transition: transform .18s, border-color .18s;
}
.uc-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .25s;
  background: radial-gradient(110% 120% at 100% 0%, rgba(31,111,235,0.22), transparent 60%);
}
.uc-card:hover { transform: translateY(-4px); border-color: rgba(31,111,235,0.5); }
.uc-card:hover::before { opacity: 1; }
.uc-card.flagship { border-color: rgba(31,111,235,0.4); background: linear-gradient(170deg, #14224a, #0e1528); }
.uc-top { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; }
.uc-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(31,111,235,0.16); color: var(--blue-soft); border: 1px solid rgba(31,111,235,0.28); }
.uc-ico svg { width: 22px; height: 22px; }
.uc-tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); border: 1px solid rgba(34,211,238,0.4); padding: 4px 8px; border-radius: 6px; }
.uc-body { position: relative; z-index: 1; margin-top: auto; }
.uc-body h3 { font-size: 20px; margin-bottom: 8px; line-height: 1.18; }
.uc-body p { font-size: 14px; line-height: 1.5; color: var(--on-dark-mut); }

/* =========================================================================
   HOW IT WORKS  (light)
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 31px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--violet) 100%); opacity: 0.25; z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 22px;
  background: linear-gradient(160deg, var(--blue-bright), var(--blue));
  box-shadow: 0 14px 30px -10px rgba(31,111,235,0.55);
}
.step h3 { font-size: 21px; margin-bottom: 11px; }
.step p { font-size: 15px; line-height: 1.55; color: var(--on-light-mut); max-width: 320px; }

/* =========================================================================
   FEATURES  (dark)
   ========================================================================= */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 54px; }
.feat {
  display: flex; gap: 13px; align-items: flex-start;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 20px 18px;
  transition: background .18s, border-color .18s;
}
.feat:hover { background: rgba(31,111,235,0.08); border-color: rgba(31,111,235,0.4); }
.feat-check { flex: none; width: 24px; height: 24px; border-radius: 7px; background: rgba(31,111,235,0.18); color: var(--cyan); display: grid; place-items: center; margin-top: 1px; }
.feat-check svg { width: 15px; height: 15px; }
.feat b { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.feat span { font-size: 13px; line-height: 1.45; color: var(--on-dark-mut); }

/* =========================================================================
   SOCIAL PROOF  (light)
   ========================================================================= */
.proof-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; margin-top: 8px; }
.proof-crests { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.crest.light {
  background: repeating-linear-gradient(135deg, #eef2f9 0 6px, #e6ecf6 6px 12px);
  border-color: var(--line); color: #97a3bd; width: 56px; height: 56px;
}
.proof-note { font-family: var(--mono); font-size: 11px; color: #9aa6bf; margin-top: 22px; line-height: 1.6; }
.proof-facts { display: grid; gap: 12px; margin-top: 28px; }
.pf { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--on-light); }
.pf svg { width: 20px; height: 20px; color: var(--blue); flex: none; }
.quotes { display: grid; gap: 18px; }
.quote {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px; box-shadow: var(--shadow-card);
}
.quote p { font-size: 17px; line-height: 1.5; font-weight: 500; }
.quote .mark { color: var(--blue); font-size: 40px; line-height: 0; font-family: Georgia, serif; }
.quote footer { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(150deg, var(--blue), var(--violet)); flex: none; }
.quote cite { font-style: normal; }
.quote cite b { display: block; font-size: 14px; }
.quote cite span { font-size: 12.5px; color: var(--on-light-mut); }

/* =========================================================================
   PRICING  (light, soft)
   ========================================================================= */
.price-card {
  margin-top: 48px; max-width: 880px; margin-inline: auto;
  background: linear-gradient(135deg, var(--ink-1), #14204a);
  border-radius: var(--r-xl); padding: clamp(36px, 5vw, 56px);
  color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(15,30,80,0.7);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.price-card::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(31,111,235,0.4); filter: blur(80px); top: -120px; right: -80px; }
.price-card > * { position: relative; z-index: 1; }
.price-card h3 { font-size: clamp(26px, 3vw, 34px); }
.price-card .lede { margin-top: 16px; font-size: 16.5px; line-height: 1.55; color: var(--on-dark-mut); }
.price-list { display: grid; gap: 12px; }
.price-list li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: rgba(255,255,255,0.9); }
.price-list svg { width: 18px; height: 18px; color: var(--cyan); flex: none; }
.price-list ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.price-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.price-cta .from { font-family: var(--mono); font-size: 12.5px; color: var(--on-dark-dim); letter-spacing: 0.05em; }

/* =========================================================================
   CONTACT  (dark gradient — book-ends hero)
   ========================================================================= */
.contact {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 110% at 20% 0%, #1c3c90 0%, var(--ink-1) 46%, var(--ink-0) 100%);
  color: #fff;
}
.contact-glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; filter: blur(90px); background: rgba(31,111,235,0.34); top: -180px; left: -120px; pointer-events: none; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact h2 { font-size: clamp(34px, 4.6vw, 56px); }
.contact .lede { margin-top: 20px; font-size: 18px; line-height: 1.55; color: var(--on-dark-mut); max-width: 460px; }
.contact-methods { margin-top: 34px; display: grid; gap: 14px; }
.cm {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md);
  transition: background .16s, border-color .16s, transform .16s;
}
.cm:hover { background: rgba(255,255,255,0.08); border-color: rgba(31,111,235,0.5); transform: translateX(3px); }
.cm-ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(31,111,235,0.18); color: var(--blue-soft); flex: none; }
.cm-ico svg { width: 20px; height: 20px; }
.cm b { display: block; font-size: 15px; }
.cm span { font-size: 13px; color: var(--on-dark-mut); font-family: var(--mono); }
.reassure { margin-top: 26px; display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--on-dark-mut); }
.reassure svg { width: 17px; height: 17px; color: var(--cyan); }

/* form */
.form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl); padding: clamp(26px, 3.5vw, 38px);
  backdrop-filter: blur(10px);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--on-dark-mut); }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 15px; color: #fff;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-md); padding: 13px 15px; transition: border-color .15s, background .15s;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-bright); background: rgba(31,111,235,0.1); }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff80' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .ok-ico { width: 60px; height: 60px; border-radius: 50%; background: rgba(34,211,238,0.16); color: var(--cyan); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ok-ico svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--on-dark-mut); font-size: 15px; }

/* honeypot — off-screen rather than display:none, which some bots skip */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* invalid fields, flagged only after a submit attempt */
.form.submitted .field input:invalid,
.form.submitted .field select:invalid { border-color: rgba(255,80,80,0.7); background: rgba(255,0,0,0.06); }

.form-error {
  margin-top: 14px; font-size: 14px; line-height: 1.5;
  color: #ffb4b4; background: rgba(255,0,0,0.09);
  border: 1px solid rgba(255,80,80,0.32); border-radius: var(--r-md);
  padding: 12px 14px;
}
.form-error[hidden] { display: none; }

/* Turnstile only takes up space once it actually renders something */
.cf-turnstile { margin-top: 4px; }
.cf-turnstile:not(:empty) { margin-top: 16px; }

.form .btn[aria-busy="true"] { opacity: .62; pointer-events: none; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink-0); color: var(--on-dark-mut); border-top: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-block: 56px 40px; }
.footer .brand { margin-bottom: 14px; }
.footer-tag { font-size: 14px; max-width: 280px; line-height: 1.55; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-dim); margin-bottom: 14px; font-weight: 400; }
.footer-col a { display: block; font-size: 14.5px; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--on-dark-dim); }
.footer-bottom .mono { font-family: var(--mono); }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,12,22,0.96); backdrop-filter: blur(16px);
    padding: 12px var(--gutter) 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-toggle { display: block; }
  .nav-right .btn:not(.nav-toggle) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: center; }
  .hero-copy { max-width: 620px; }
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .proof-grid { grid-template-columns: 1fr; gap: 36px; }
  .price-card { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .value-grid, .feat-grid, .uc-grid { grid-template-columns: 1fr; }
  .vod { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  .hero h1 .nowrap { white-space: normal; }
}
