/* ============================================================
   QUEUELESS — venue LED board aesthetic
   Hand-authored. No framework, no CDN.
   ============================================================ */

:root {
  /* ink + ground */
  --bg:        #05080f;
  --bg-2:      #080d1a;
  --panel:     rgba(255, 255, 255, 0.025);
  --panel-2:   rgba(255, 255, 255, 0.04);
  --line:      rgba(160, 190, 255, 0.12);
  --line-soft: rgba(160, 190, 255, 0.07);

  --ink:    #eaf0fb;
  --ink-dim:#aeb9d0;
  --muted:  #76819b;

  /* electric blue */
  --blue:        #3b82f6;
  --blue-bright: #6aa6ff;
  --blue-deep:   #1d4ed8;
  --glow:        rgba(59, 130, 246, 0.45);

  /* type */
  --pixel: "Chakra Petch", sans-serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --mono:  "DM Mono", ui-monospace, monospace;

  /* rhythm */
  --shell: 1200px;
  --gutter: clamp(20px, 5vw, 80px);
  --sec-y: clamp(72px, 11vw, 150px);
  --radius: 16px;

  /* fluid type scale */
  --t-display: clamp(2.6rem, 7.2vw, 5.2rem);
  --t-h2:      clamp(1.9rem, 4.4vw, 3.2rem);
  --t-h3:      1.3rem;
  --t-body:    clamp(1rem, 1.05vw + 0.85rem, 1.18rem);
  --t-num:     clamp(3.4rem, 9vw, 6.6rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle film grain over the whole page */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }

/* keyboard focus — branded ring, only for keyboard nav */
:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* shared kicker / pixel labels */
.eyebrow, .sec-kicker, .store__kicker, .setup__kicker {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink-dim);
}
.eyebrow::before { content: "● "; color: var(--blue); }

.hl {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hl-soft { color: var(--blue-bright); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--solid {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 0 0 var(--glow);
}
.btn--solid:hover {
  background: var(--blue-bright);
  box-shadow: 0 8px 30px -8px var(--glow);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--blue-bright); color: var(--blue-bright); }
.btn--ghost .arr { transition: transform .2s ease; }
.btn--ghost:hover .arr { transform: translateY(3px); }
.btn--block { width: 100%; justify-content: center; padding: 16px; }

/* line icons */
.ic {
  width: 26px; height: 26px;
  fill: none; stroke: var(--blue-bright);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.is-stuck {
  background: rgba(5, 8, 15, .72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.nav__logo { height: 22px; width: auto; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--ink-dim);
  position: relative; transition: color .2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--blue-bright); transition: width .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 11px 22px; }
.nav__back {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .85rem; font-weight: 500; color: var(--ink-dim);
  transition: color .2s ease, border-color .2s ease;
}
.nav__back:hover { color: var(--ink); border-color: var(--blue-bright); }
.nav__back .arr { transition: transform .2s ease; }
.nav__back:hover .arr { transform: translateX(-3px); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(29, 78, 216, .28), transparent 55%),
    radial-gradient(90% 70% at 100% 10%, rgba(59, 130, 246, .12), transparent 50%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.hero__glow {
  position: absolute; top: -20%; left: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, var(--glow), transparent 65%);
  filter: blur(40px); opacity: .5; pointer-events: none;
}
.hero__grid-tex {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(60px, 9vw, 110px);
}
.hero__copy { max-width: 620px; }
.hero__title {
  font-family: var(--pixel);
  font-weight: 700;
  font-size: var(--t-display);
  line-height: 1;
  letter-spacing: -.01em;
  margin: 22px 0 24px;
}
.hero__sub { font-size: var(--t-body); color: var(--ink-dim); max-width: 52ch; }
.hero__sub strong { color: var(--ink); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__proof {
  list-style: none; display: flex; gap: 36px; margin-top: 42px;
  padding-top: 26px; border-top: 1px solid var(--line-soft); flex-wrap: wrap;
}
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof b { font-family: var(--pixel); font-size: 1.5rem; color: var(--ink); }
.hero__proof span { font-size: .8rem; color: var(--muted); letter-spacing: .02em; }

/* ---- phone / product screen ---- */
.hero__device { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: min(300px, 76vw); aspect-ratio: 9 / 18.6;
  background: #0b1120;
  border: 1px solid rgba(160, 190, 255, .18);
  border-radius: 40px;
  padding: 10px;
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, .8),
    0 0 70px -20px var(--glow),
    inset 0 0 0 1px rgba(255,255,255,.03);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.phone__notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; border-radius: 99px; background: rgba(255,255,255,.12); z-index: 3;
}
.phone__screen {
  height: 100%; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, #0a1020, #070b15);
  display: flex; flex-direction: column;
  padding: 30px 16px 16px; gap: 14px;
}
.store__bar {
  font-family: var(--mono); font-size: .62rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-soft);
  padding: 7px 10px; border-radius: 8px;
}
.store__dot { width: 7px; height: 7px; border-radius: 99px; background: #34d399; box-shadow: 0 0 8px #34d399; }
.store__kicker { display: block; }
.store__head h3 { font-family: var(--pixel); font-weight: 500; font-size: 1.2rem; margin-top: 4px; }
.store__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.prod {
  background: var(--panel-2); border: 1px solid var(--line-soft);
  border-radius: 12px; padding: 9px; display: flex; flex-direction: column; gap: 7px;
}
.prod__img {
  aspect-ratio: 1; border-radius: 8px; overflow: hidden;
  background: #111827;
}
.prod__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 8px;
}
.prod__row { display: flex; justify-content: space-between; font-size: .72rem; color: var(--ink-dim); }
.prod__row b { color: var(--ink); }
.prod__add {
  font-family: var(--sans); font-weight: 700; font-size: .68rem;
  background: rgba(59,130,246,.16); color: var(--blue-bright);
  border: 1px solid rgba(59,130,246,.3); border-radius: 7px; padding: 6px; cursor: pointer;
}
.store__bag {
  margin-top: auto; display: flex; justify-content: space-between; align-items: center;
  background: var(--blue); color: #fff; border-radius: 11px; padding: 12px 14px;
  font-size: .8rem; font-weight: 600;
}
.toast {
  position: absolute; bottom: 31%; right: -5%;
  display: flex; align-items: center; gap: 10px;
  background: rgba(8, 14, 28, .92); border: 1px solid rgba(52,211,153,.35);
  border-radius: 12px; padding: 11px 14px; backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.7);
  animation: toast 6s ease-in-out infinite;
}
@keyframes toast {
  0%, 12%   { opacity: 0; transform: translateY(14px) scale(.96); }
  20%, 80%  { opacity: 1; transform: translateY(0) scale(1); }
  92%,100%  { opacity: 0; transform: translateY(14px) scale(.96); }
}
.toast__ic {
  width: 26px; height: 26px; border-radius: 99px; flex: none;
  background: #34d399; color: #042; font-weight: 800;
  display: grid; place-items: center; font-size: .85rem;
}
.toast b { display: block; font-size: .8rem; }
.toast span { font-size: .68rem; color: var(--muted); }

/* ---- LED ticker ---- */
.ticker {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(59, 130, 246, .05);
  overflow: hidden; padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap; will-change: transform;
  animation: marquee 32s linear infinite;
}
.ticker__track span {
  font-family: var(--pixel); font-weight: 600; font-size: 1rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
}
.ticker__track i { color: var(--blue); font-style: normal; font-size: .7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { padding-block: var(--sec-y); }
.problem__inner { max-width: 920px; margin-inline: auto; text-align: center; }
.problem__lead {
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.35; font-weight: 500;
  color: var(--ink); letter-spacing: -.01em;
}
.problem__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: clamp(40px, 6vw, 64px);
}
.stat {
  position: relative;
  border: 1px solid rgba(170, 200, 255, .14);
  border-radius: 20px;
  padding: 28px 18px;
  background:
    radial-gradient(140% 95% at 0% 0%, rgba(255, 255, 255, .14), transparent 46%),
    linear-gradient(150deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .015) 62%);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, .24),
    inset 0 -1px 1px 0 rgba(255, 255, 255, .04),
    0 12px 34px -16px rgba(0, 0, 0, .75);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 200, 255, .26);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, .32),
    inset 0 -1px 1px 0 rgba(255, 255, 255, .05),
    0 18px 44px -16px rgba(0, 0, 0, .8);
}
.stat b { font-family: var(--pixel); font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--blue-bright); display: block; }
.stat b small { font-size: .4em; color: var(--muted); margin-left: 2px; }
.stat span { font-size: .9rem; color: var(--ink-dim); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(44px, 6vw, 70px); }
.sec-head--left { text-align: left; margin-inline: 0; }
.sec-head h2 {
  font-family: var(--pixel); font-weight: 600; font-size: var(--t-h2);
  line-height: 1.08; letter-spacing: -.01em; margin-top: 16px;
}

/* ============================================================
   REVENUE
   ============================================================ */
.revenue {
  padding-block: var(--sec-y);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(29, 78, 216, .14), transparent 60%),
    var(--bg);
  border-block: 1px solid var(--line-soft);
}
.rev-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px);
}
.rev {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--panel); padding: clamp(28px, 4vw, 44px) 24px; text-align: center;
  position: relative;
}
.rev--accent {
  border-color: rgba(59,130,246,.4);
  background: linear-gradient(180deg, rgba(59,130,246,.12), rgba(59,130,246,.02));
  box-shadow: 0 0 50px -20px var(--glow);
}
.rev .num {
  font-family: var(--pixel); font-weight: 700; font-size: var(--t-num);
  line-height: 1; display: block;
  background: linear-gradient(180deg, #cfe0ff, var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rev__label { display: block; margin-top: 14px; font-weight: 600; color: var(--ink); }
.rev__note { display: block; font-family: var(--mono); font-size: .72rem; color: var(--muted); margin-top: 4px; letter-spacing: .03em; }
.rev__kicker {
  max-width: 760px; margin: clamp(40px,6vw,60px) auto 0; text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; color: var(--ink-dim);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding-block: var(--sec-y); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--panel); padding: 30px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); background: var(--panel-2); }
.card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.card__no { font-family: var(--pixel); font-size: 1.6rem; color: rgba(160,190,255,.3); }
.card h3 { font-family: var(--sans); font-weight: 700; font-size: var(--t-h3); margin-bottom: 12px; }
.card p { color: var(--ink-dim); font-size: 1rem; }
.card__list { list-style: none; margin-top: 18px; display: grid; gap: 8px; }
.card__list li { position: relative; padding-left: 20px; font-size: .9rem; color: var(--muted); }
.card__list li::before { content: "→"; position: absolute; left: 0; color: var(--blue-bright); }

/* ============================================================
   FAN FLOW
   ============================================================ */
.flow { padding-top: var(--sec-y); padding-bottom: clamp(36px, 5vw, 72px); background: linear-gradient(180deg, var(--bg), var(--bg-2)); border-top: 1px solid var(--line-soft); }
.flow__steps {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.flow__steps li {
  position: relative; counter-increment: step;
  border: 1px solid rgba(170, 200, 255, .14); border-radius: 20px;
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px;
  background:
    radial-gradient(140% 95% at 0% 0%, rgba(255, 255, 255, .14), transparent 46%),
    linear-gradient(150deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .015) 62%);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, .24),
    inset 0 -1px 1px 0 rgba(255, 255, 255, .04),
    0 12px 34px -16px rgba(0, 0, 0, .75);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.flow__steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 200, 255, .26);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, .32),
    inset 0 -1px 1px 0 rgba(255, 255, 255, .05),
    0 18px 44px -16px rgba(0, 0, 0, .8);
}
.flow__steps li::after {
  content: "0" counter(step);
  position: absolute; top: 18px; right: 20px;
  font-family: var(--pixel); font-size: .9rem; color: rgba(160,190,255,.4);
}
/* Liquid-glass fallback for browsers without backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .stat, .flow__steps li {
    background: linear-gradient(150deg, rgba(20, 30, 54, .92), rgba(10, 16, 32, .92));
  }
}

.flow__steps .ic { width: 30px; height: 30px; margin-bottom: 6px; }
.flow__steps b { font-family: var(--sans); font-size: 1.1rem; }
.flow__steps span { font-size: .92rem; color: var(--ink-dim); }

/* ============================================================
   SETUP + DATA
   ============================================================ */
.setup { padding-block: var(--sec-y); }
.setup__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.setup__steps { list-style: none; display: grid; gap: 18px; margin-top: 12px; }
.setup__steps li { display: flex; gap: 18px; align-items: flex-start; }
.setup__no {
  flex: none; width: 38px; height: 38px; border-radius: 99px;
  border: 1px solid rgba(59,130,246,.4); color: var(--blue-bright);
  display: grid; place-items: center; font-family: var(--pixel); font-size: 1rem;
}
.setup__steps p { color: var(--ink-dim); padding-top: 6px; }
.setup__data {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), transparent);
  padding: clamp(28px, 4vw, 40px);
}
.setup__data h3 { font-family: var(--pixel); font-weight: 600; font-size: 1.5rem; margin: 12px 0 22px; line-height: 1.15; }
.data__list { list-style: none; display: grid; gap: 12px; }
.data__list li {
  position: relative; padding-left: 26px; color: var(--ink-dim); font-size: .98rem;
  padding-bottom: 12px; border-bottom: 1px solid var(--line-soft);
}
.data__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.data__list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 9px; height: 9px; background: var(--blue); border-radius: 2px;
  box-shadow: 0 0 8px var(--glow);
}

/* ============================================================
   CTA / FORM
   ============================================================ */
.cta {
  padding-block: var(--sec-y);
  background:
    radial-gradient(70% 80% at 80% 50%, rgba(29,78,216,.2), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line-soft);
}
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.cta__title { font-family: var(--pixel); font-weight: 700; font-size: var(--t-h2); line-height: 1.02; letter-spacing: -.01em; }
.cta__copy p { color: var(--ink-dim); margin-top: 20px; max-width: 44ch; }
.cta__list { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.cta__list li { position: relative; padding-left: 24px; color: var(--ink-dim); }
.cta__list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-bright); font-weight: 800; }

.cta__form {
  background: rgba(8, 13, 26, .7); border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(26px, 4vw, 38px);
  display: grid; gap: 16px; backdrop-filter: blur(8px);
}
.cta__form h3 { font-family: var(--sans); font-weight: 700; font-size: 1.4rem; }
.cta__form label { display: grid; gap: 7px; }
.cta__form label span { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cta__form input {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: 10px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
}
.cta__form input::placeholder { color: #4d5670; }
.cta__form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,.2); }
.cta__fine { font-size: .82rem; color: var(--muted); text-align: center; }
.cta__form.is-sent .btn--solid { background: #34d399; }

/* ============================================================
   CLOSING (public homepage)
   ============================================================ */
.closing {
  padding-block: var(--sec-y);
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(29,78,216,.16), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line-soft);
}
.closing__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.closing h2 {
  font-family: var(--pixel); font-weight: 700; font-size: var(--t-h2);
  line-height: 1.04; letter-spacing: -.01em;
}
.closing p { color: var(--ink-dim); margin: 18px auto 0; max-width: 52ch; }
.closing .btn { margin-top: 34px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding-block: 48px; border-top: 1px solid var(--line-soft); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__logo { height: 18px; width: auto; opacity: .7; }
.footer__links { display: flex; gap: 26px; }
.footer__links a { font-size: .9rem; color: var(--ink-dim); transition: color .2s; }
.footer__links a:hover { color: var(--blue-bright); }
.footer__meta { font-family: var(--mono); font-size: .76rem; color: var(--muted); letter-spacing: .03em; }
.footer__meta a { color: var(--muted); transition: color .2s; }
.footer__meta a:hover { color: var(--blue-bright); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Progressive enhancement: content is visible by default; only hidden
   for pre-reveal when JS is present, so a JS/observer failure never
   leaves the page blank. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
.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; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__device { margin-top: 12px; }
  .phone { width: min(280px, 72vw); }
  .toast { right: 2%; bottom: 30%; }
  .setup__inner, .cta__inner { grid-template-columns: 1fr; }
  .how__grid, .flow__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__back-long { display: none; }
  .nav__burger { display: block; margin-left: auto; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: rgba(5,8,15,.97); backdrop-filter: blur(14px);
    padding: 16px var(--gutter) 24px; border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .problem__stats, .rev-row, .how__grid, .flow__steps { grid-template-columns: 1fr; }
  .hero__proof { gap: 22px; }
  .hero { padding-top: 96px; }
}
