:root {
  --bg: #0a0a0a;
  --bg-deep: #050505;
  --surface: #1a1a1a;
  --surface-2: #202020;
  --border: #2a2a2a;
  --text: #ffffff;
  --muted: #b8b8b8;
  --dim: #7a7a7a;
  --pink: #ff4fd8;
  --pink-deep: #cc2fa8;
  --green: #34c759;
  --wrap: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--pink); color: #0a0a0a; }
a { color: var(--pink); text-decoration: none; }
a:hover { color: #ff7ae4; }
p { color: var(--muted); margin: 0; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

/* ---------- Nav ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem clamp(1.25rem, 4vw, 3.5rem);
  position: relative;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.coin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--pink-deep);
  flex-shrink: 0;
}

.coin.small { width: 20px; height: 20px; border-width: 0; }

nav#nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  flex-wrap: wrap;
}

nav#nav a { color: var(--muted); }
nav#nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.08s ease, opacity 0.08s ease;
}

.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--pink); color: #0a0a0a; }
.btn-dark { background: #0a0a0a; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 79, 216, 0.12);
  color: var(--pink);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-weight: 900;
  font-size: clamp(2.6rem, 6.2vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1.75rem;
}

.hero h1 .accent { color: var(--pink); }

.hero .sub {
  color: var(--dim);
  font-size: 0.85rem;
  margin-top: 0.9rem;
  font-weight: 600;
}

.phone-wrap { display: flex; justify-content: center; }

.phone {
  width: min(300px, 78vw);
  aspect-ratio: 300 / 610;
  animation: wgFloat 6s ease-in-out infinite;
  background: #000;
  border-radius: 44px;
  border: 8px solid #1a1a1a;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  padding: 14px;
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.notif {
  position: absolute;
  top: 16px;
  left: 12px;
  right: 12px;
  background: rgba(30, 30, 32, 0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 13px 15px;
  display: flex;
  gap: 11px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  z-index: 3;
  animation: wgNotif 9s cubic-bezier(0.2, 0.9, 0.3, 1.2) infinite;
}

.notif-icon { width: 36px; height: 36px; border-radius: 9px; overflow: hidden; flex-shrink: 0; }
.notif-icon img { width: 100%; height: 100%; object-fit: cover; }
.notif-row { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 2px; }
.notif-title { font-weight: 800; font-size: 0.8rem; color: #fff; }
.notif-time { font-size: 0.68rem; color: var(--dim); font-weight: 600; }
.notif-body { font-size: 0.78rem; color: #d8d8d8; line-height: 1.35; }
.notif-body b { color: #fff; }

@keyframes wgFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes wgNotif {
  0% { opacity: 0; transform: translateY(-24px) scale(0.9); }
  6% { opacity: 1; transform: translateY(0) scale(1); }
  88% { opacity: 1; transform: translateY(0) scale(1); }
  94%, 100% { opacity: 0; transform: translateY(-24px) scale(0.9); }
}
@media (prefers-reduced-motion: reduce) { .phone, .notif { animation: none; } }

/* ---------- Verdict screen (phone mockup) ---------- */
.verdict-screen {
  --vs-card: #1c1519;
  width: 100%;
  height: 100%;
  background: var(--bg);
  padding: 0 0.75rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow: hidden;
}

.vs-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0.1rem 0.55rem; flex-shrink: 0; color: #fff;
}
.vs-statusbar .vs-time { display: flex; align-items: center; gap: 0.3rem; font-size: 0.78rem; font-weight: 700; }
.vs-statusbar .vs-loc-arrow { width: 0; height: 0; border-style: solid; border-width: 4px 0 4px 6px; border-color: transparent transparent transparent #fff; opacity: 0.9; }
.vs-statusbar .vs-icons { display: flex; align-items: center; gap: 5px; }
.vs-statusbar .vs-bars { display: flex; align-items: flex-end; gap: 2px; height: 9px; }
.vs-statusbar .vs-bars span { width: 3px; background: #fff; border-radius: 1px; }
.vs-statusbar .vs-battery { display: flex; align-items: center; gap: 3px; }
.vs-statusbar .vs-battery-pct { font-size: 0.68rem; font-weight: 700; }
.vs-statusbar .vs-battery-shell { width: 22px; height: 11px; border: 1.3px solid rgba(255,255,255,0.7); border-radius: 3px; padding: 1.5px; }
.vs-statusbar .vs-battery-fill { height: 100%; width: 68%; background: #fff; border-radius: 1px; }

.vs-top-label { font-weight: 800; font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); }

.vs-header { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.vs-title { font-weight: 900; font-size: 1.5rem; letter-spacing: -0.01em; color: #fff; }
.vs-title .accent { color: var(--pink); }

.vs-collect-card { background: var(--pink); border-radius: 12px; padding: 0.35rem 0.7rem; text-align: center; flex-shrink: 0; }
.vs-collect-label { font-size: 0.46rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(10, 10, 10, 0.6); }
.vs-collect-amt { font-weight: 900; font-size: 1.05rem; color: #0a0a0a; line-height: 1.2; }

.vs-sub { font-size: 0.68rem; color: var(--muted); line-height: 1.4; margin-bottom: 0.2rem; }

.vs-label { font-weight: 800; font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); }

.vs-result-card { display: flex; gap: 0.65rem; align-items: center; background: var(--vs-card); border-radius: 16px; padding: 0.6rem 0.7rem; }
.vs-result-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  border: 2.5px solid var(--pink); display: flex; align-items: center; justify-content: center;
  color: var(--pink); font-weight: 900; font-size: 1.2rem;
}
.vs-result-title-row { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.vs-result-title { font-weight: 900; font-size: 0.85rem; color: #fff; }
.vs-badge { background: rgba(255, 79, 216, 0.18); color: var(--pink); font-weight: 800; font-size: 0.5rem; letter-spacing: 0.05em; padding: 0.15rem 0.4rem; border-radius: 999px; }
.vs-result-desc { font-size: 0.62rem; color: var(--dim); margin-top: 0.2rem; line-height: 1.3; }

.vs-checklist-head { display: flex; justify-content: space-between; font-size: 0.53rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--dim); padding: 0 0.1rem; }
.vs-checklist-head .vs-passed { color: var(--green); }
.vs-checklist { background: var(--vs-card); border-radius: 16px; padding: 0.1rem 0.7rem; }
.vs-check-row { display: flex; justify-content: space-between; align-items: center; padding: 0.42rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); gap: 0.4rem; }
.vs-check-row:last-child { border-bottom: none; }
.vs-check-left { display: flex; align-items: center; gap: 0.42rem; min-width: 0; }
.vs-check-dot { width: 17px; height: 17px; border-radius: 50%; background: var(--pink); color: #0a0a0a; font-size: 0.55rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vs-check-left span:last-child { font-size: 0.62rem; font-weight: 700; color: #e8e8e8; white-space: nowrap; }
.vs-pass { font-size: 0.55rem; font-weight: 800; color: var(--green); letter-spacing: 0.04em; flex-shrink: 0; }

.vs-observed { background: var(--vs-card); border-radius: 16px; padding: 0.6rem 0.7rem; display: flex; align-items: center; gap: 0.5rem; }
.vs-observed > div { flex: 1; min-width: 0; }
.vs-observed-label { font-size: 0.5rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.2rem; }
.vs-observed-text { font-size: 0.64rem; color: var(--muted); line-height: 1.3; }
.vs-chevron { color: var(--dim); font-size: 1.05rem; flex-shrink: 0; }

.vs-actions { display: flex; flex-direction: column; gap: 0.4rem; margin-top: auto; }
.vs-btn-payout, .vs-btn-override { text-align: center; border-radius: 999px; padding: 0.6rem; font-weight: 800; font-size: 0.74rem; }
.vs-btn-payout { background: var(--pink); color: #0a0a0a; }
.vs-btn-override { background: transparent; border: 1.5px solid var(--border); color: #fff; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: wgMarquee 24s linear infinite;
  color: var(--dim);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
}

.marquee-track .dot { color: var(--pink); }

@keyframes wgMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Section shells ---------- */
section.block { padding: clamp(3.5rem, 9vw, 7.5rem) 0; }
.block-dark { background: var(--bg-deep); }
.block-black { background: #000; }

.kicker {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  text-align: center;
}

h2.title {
  font-weight: 900;
  font-size: clamp(1.9rem, 4.8vw, 3.25rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 1rem;
}

.lead-center {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-align: center;
  max-width: 56ch;
  margin: 0 auto;
}

/* ---------- Demo ---------- */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1050px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
}

.demo-steps { display: flex; flex-direction: column; gap: 0.75rem; }

.demo-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.15rem 1.4rem;
  border-radius: 18px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--surface);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.demo-step.active { background: var(--surface); border-color: var(--pink); }

.demo-step .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  background: var(--surface);
  color: var(--dim);
  transition: background 0.25s ease, color 0.25s ease;
}

.demo-step.active .num { background: var(--pink); color: #0a0a0a; }

.demo-step .stitle { font-weight: 900; font-size: 1.05rem; margin-bottom: 0.2rem; color: var(--muted); }
.demo-step.active .stitle { color: #fff; }
.demo-step .sdesc { color: var(--dim); font-size: 0.85rem; line-height: 1.5; }

.demo-reset {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--dim);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.demo-reset:hover { color: var(--muted); }

.demo-phone-col { justify-self: center; position: relative; }

.demo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.16), transparent 68%);
  pointer-events: none;
}

.demo-phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 330 / 714;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  background: #000;
}

.demo-screen { position: absolute; inset: 0; display: none; flex-direction: column; background: #000; }
.demo-screen.visible { display: flex; }
.demo-screen.image-screen { display: none; }
.demo-screen.image-screen.visible { display: block; }
.demo-screen.image-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fake-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.1rem 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.fake-statusbar .sb-icons { display: flex; gap: 4px; align-items: center; }
.fake-statusbar .sb-bar { width: 3px; background: #fff; border-radius: 1px; }

.create-screen .brand-mini { padding: 0.1rem 1.25rem 0; font-weight: 900; font-size: 1.4rem; color: #fff; letter-spacing: -0.02em; }
.create-screen .bet-area { flex: 1; position: relative; padding: 0 1.25rem; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.create-screen .bet-text { font-weight: 900; line-height: 1.04; color: #fff; font-size: clamp(1.6rem, 5vw, 2.6rem); }
.create-screen .cta-area { padding: 0.6rem 1.25rem 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.create-screen .cta-hint { font-weight: 800; font-size: 0.55rem; letter-spacing: 0.1em; color: #5a5a5a; text-align: center; text-transform: uppercase; }
.create-screen .cta-btn { border-radius: 999px; padding: 0.85rem; text-align: center; font-weight: 800; font-size: 1rem; cursor: pointer; background: var(--pink); color: #0a0a0a; }
.create-screen .keyboard-img { width: 100%; display: block; }

.judge-screen { position: absolute; inset: 0; background: #0a0a0a; overflow: hidden; }
.judge-flip { position: absolute; inset: 0; transition: transform 900ms cubic-bezier(0.5, 0.05, 0.3, 1); }
.judge-half {
  position: absolute; left: 0; right: 0; height: 50%;
  display: flex; flex-direction: column; justify-content: center; padding: 0 1.5rem; overflow: hidden;
}
.judge-half.top { top: 0; transform: rotate(180deg); background: #0a0a0a; }
.judge-half.bottom { bottom: 0; background: var(--pink); }
.judge-half .who-label { font-weight: 800; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; }
.judge-half.top .who-label { color: var(--pink); }
.judge-half.bottom .who-label { color: #0a0a0a; }
.judge-half .claim { font-weight: 900; font-size: clamp(1.1rem, 3vw, 1.6rem); line-height: 1.06; margin-top: 0.4rem; }
.judge-half.top .claim { color: var(--pink); }
.judge-half.bottom .claim { color: #0a0a0a; }
.judge-half .who { position: absolute; left: 1.5rem; bottom: 1.3rem; display: flex; align-items: center; gap: 0.4rem; font-weight: 800; font-size: 0.78rem; }
.judge-half .who-dot { width: 8px; height: 8px; border-radius: 9px; opacity: 0.85; }
.judge-half.top .who-dot { background: var(--pink); }
.judge-half.top .who { color: var(--pink); }
.judge-half.bottom .who-dot { background: #0a0a0a; }
.judge-half.bottom .who { color: #0a0a0a; }
.judge-divider { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; align-items: center; }
.judge-divider .line { height: 2px; flex: 1; }
.judge-divider .line.l { background: #0a0a0a; }
.judge-divider .line.r { background: var(--pink); }
.judge-divider .gap { width: 64px; flex-shrink: 0; }
.judge-vs {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 25;
  width: 47px; height: 47px; border-radius: 999px; background: #0a0a0a; border: 2px solid var(--pink);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
  font-weight: 900; font-size: 0.95rem; color: var(--pink);
}
.judge-status { position: absolute; top: 3.4rem; left: 0; right: 0; text-align: center; z-index: 30; }
.judge-status .jlabel { font-weight: 800; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pink); }
.judge-status .jid { font-size: 0.6rem; color: var(--dim); margin-top: 0.2rem; }
.judge-msg-wrap { position: absolute; bottom: 2.5rem; left: 0; right: 0; display: flex; justify-content: center; z-index: 30; padding: 0 1.5rem; }
.judge-msg { background: rgba(10, 10, 10, 0.6); padding: 0.4rem 0.9rem; border-radius: 999px; font-weight: 700; font-size: 0.72rem; color: #fff; transition: opacity 0.28s ease; }
.judge-nav-zone { position: absolute; top: 0; height: 100%; z-index: 50; cursor: pointer; }
.judge-nav-zone.prev { left: 0; width: 32%; }
.judge-nav-zone.next { right: 0; width: 68%; }

.image-nav-zone { position: absolute; top: 0; height: 100%; }
.image-nav-zone.prev { left: 0; width: 32%; }
.image-nav-zone.next { right: 0; width: 68%; }

.demo-dots { display: flex; gap: 9px; justify-content: center; margin-top: 1.4rem; }
.demo-dots .dot {
  height: 9px; border-radius: 999px; background: #3a3a3a; cursor: pointer; transition: all 0.25s ease; width: 9px;
}
.demo-dots .dot.active { background: var(--pink); width: 26px; }

.demo-arrow {
  position: absolute; top: 44%;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 1.15rem; font-weight: 700;
}
.demo-arrow.prev { left: -60px; background: var(--surface); border: 1px solid var(--border); color: #fff; }
.demo-arrow.next { right: -60px; background: var(--pink); color: #0a0a0a; }
@media (max-width: 900px) { .demo-arrow { display: none; } }

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.how-card {
  background: var(--surface);
  border-radius: 24px;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.how-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(255, 79, 216, 0.08); }
.how-card .idx { font-weight: 900; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--pink); margin-bottom: 1.1rem; }
.how-card h3 { font-weight: 900; font-size: 1.4rem; margin: 0 0 0.75rem; }
.how-card p { font-size: clamp(0.92rem, 1.4vw, 1.05rem); line-height: 1.6; }

/* ---------- AI Judge ---------- */
.judge-section { position: relative; overflow: hidden; }
.judge-glow {
  position: absolute; top: 30%; left: clamp(1.25rem, 4vw, 3.5rem);
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.25), transparent 70%);
  pointer-events: none;
}

.judge-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.judge-copy h2 { font-weight: 900; font-size: clamp(1.9rem, 4.4vw, 3rem); letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 1.25rem; text-align: left; }
.judge-copy p.lead { font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.6; margin-bottom: 1.75rem; max-width: none; text-align: left; }

.stat-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.stat-card { background: var(--surface); border-radius: 16px; padding: 1.15rem 1.3rem; flex: 1; min-width: 160px; }
.stat-card .stat-num { font-weight: 900; font-size: 1.7rem; color: var(--green); }
.stat-card .stat-num.plain { color: var(--text); font-size: 1.3rem; }
.stat-card .stat-label { font-size: 0.8rem; color: var(--dim); font-weight: 700; margin-top: 0.2rem; }

.verdict-card { background: var(--surface); border-radius: 24px; padding: clamp(1.5rem, 3vw, 2.25rem); border: 1px solid var(--border); }
.verdict-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; gap: 0.75rem; flex-wrap: wrap; }
.verdict-tag { font-weight: 800; font-size: 0.72rem; letter-spacing: 0.14em; color: var(--pink); text-transform: uppercase; }
.verdict-confidence { background: rgba(52, 199, 89, 0.15); color: var(--green); font-weight: 800; font-size: 0.72rem; padding: 0.35rem 0.75rem; border-radius: 999px; }
.verdict-result { font-weight: 900; font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.05; margin-bottom: 1rem; }
.verdict-result .accent { color: var(--pink); }
.verdict-desc { font-size: 1rem; margin-bottom: 1.5rem; }
.verdict-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.verdict-tile { background: var(--surface-2); border-radius: 12px; padding: 0.85rem; }
.verdict-tile .t-num { font-weight: 900; font-size: 1.3rem; }
.verdict-tile .t-label { font-size: 0.68rem; color: var(--dim); font-weight: 700; text-transform: uppercase; margin-top: 0.2rem; }
.verdict-bar-row { margin-top: 1.5rem; }
.verdict-bar-label { display: flex; justify-content: space-between; font-size: 0.68rem; color: var(--dim); font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.verdict-bar-label .val { color: var(--green); }
.verdict-bar-track { height: 8px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.verdict-bar-fill { height: 100%; background: linear-gradient(90deg, var(--pink), var(--green)); border-radius: 999px; width: 97%; }

/* ---------- Flow / pipeline ---------- */
.flow-section { background: var(--bg-deep); border-top: 1px solid #1a1a1a; overflow: hidden; }
.flow-badge-row { display: flex; align-items: center; justify-content: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.flow-badge {
  display: inline-flex; align-items: center; gap: 9px; background: #101014; border: 1px solid #26263a;
  border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 700; color: #c8c8d8;
}
.flow-badge img { width: 18px; height: 18px; animation: sparkPulse 2.6s ease-in-out infinite; }
.flow-badge b { color: #fff; }

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 46px 1.1fr 46px 1fr;
  align-items: start;
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .flow-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .flow-connector { display: none; }
}

.flow-card { background: #0a0a0a; border: 1px solid #1e1e2a; border-radius: 16px; overflow: hidden; }
.flow-card-head { display: flex; align-items: center; gap: 7px; padding: 0.75rem 1rem; border-bottom: 1px solid #1a1a26; }
.flow-card-head img { width: 20px; height: 20px; border-radius: 5px; }
.flow-card-head span { font-size: 0.72rem; color: #6a6a7a; font-weight: 700; }
.flow-request-body { padding: 1.1rem; min-height: 90px; display: flex; align-items: flex-start; }
.flow-bet-text { font-weight: 900; font-size: clamp(1.1rem, 2.4vw, 1.6rem); line-height: 1.05; letter-spacing: -0.02em; color: #fff; }
.caret { display: inline-block; width: 4px; height: 22px; background: var(--pink); margin-left: 2px; vertical-align: -3px; animation: caretBlink 1s step-end infinite; }

.flow-connector { position: relative; align-self: start; margin-top: 3.2rem; height: 4px; border-radius: 2px; }
.flow-connector.c1 { background: repeating-linear-gradient(90deg, var(--pink) 0 8px, transparent 8px 20px); background-size: 20px 4px; animation: flowLine 1s linear infinite; }
.flow-connector.c2 { background: repeating-linear-gradient(90deg, var(--green) 0 8px, transparent 8px 20px); background-size: 20px 4px; animation: flowLine 1s linear infinite; }
.flow-connector .packet { position: absolute; top: -5px; left: 0; width: 12px; height: 12px; border-radius: 50%; }
.flow-connector.c1 .packet { background: var(--pink); box-shadow: 0 0 14px var(--pink); animation: flowPacket 3s ease-in-out infinite; }
.flow-connector.c2 .packet { background: var(--green); box-shadow: 0 0 14px var(--green); animation: flowPacket2 3s ease-in-out infinite; }
@media (max-width: 900px) { .flow-connector { margin-top: 0; } }

.model-card { background: #0c0c12; border: 1px solid #24243a; border-radius: 16px; padding: 1rem; position: relative; overflow: hidden; }
.model-scan { position: absolute; left: 0; right: 0; height: 60px; background: linear-gradient(180deg, rgba(120, 140, 255, 0.18), transparent); animation: scanSweep 3s ease-in-out infinite; pointer-events: none; }
.model-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.model-core { position: relative; width: 42px; height: 42px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.model-core .ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px dashed #4c5be0; animation: coreSpin 6s linear infinite; }
.model-core img { width: 22px; height: 22px; animation: sparkPulse 2.6s ease-in-out infinite; }
.model-head .mname { font-weight: 900; font-size: 1.05rem; letter-spacing: -0.02em; }
.model-head .msub { font-family: "SF Mono", ui-monospace, monospace; font-size: 0.68rem; color: #6a6a8a; }
.model-checks { display: flex; flex-direction: column; gap: 0.45rem; }
.model-check { display: flex; align-items: center; justify-content: space-between; background: #141420; border: 1px solid #1e1e2e; border-radius: 10px; padding: 0.5rem 0.75rem; }
.model-check .ck-left { display: flex; align-items: center; gap: 9px; }
.model-check .ck-dot { width: 16px; height: 16px; border-radius: 50%; background: rgba(52, 199, 89, 0.18); color: var(--green); font-size: 0.6rem; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.model-check .ck-label { font-size: 0.78rem; font-weight: 700; color: #e0e0ec; }
.model-check .ck-val { font-family: "SF Mono", ui-monospace, monospace; font-weight: 700; font-size: 0.7rem; color: #7ec8ff; }
.model-foot { font-family: "SF Mono", ui-monospace, monospace; font-size: 0.65rem; color: #5a5a72; margin-top: 0.75rem; display: flex; justify-content: space-between; }
.model-foot .ok { color: #9ee6a0; }

.flow-response { display: flex; flex-direction: column; gap: 0.75rem; }
.resp-json { background: #0b0b0f; border: 1px solid #1e2a1e; border-radius: 16px; overflow: hidden; font-family: "SF Mono", ui-monospace, Menlo, monospace; }
.resp-json .rh { display: flex; align-items: center; gap: 8px; padding: 0.68rem 1rem; border-bottom: 1px solid #1a261a; background: #0e140e; }
.resp-json .rh .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: barPulse 1.4s ease-in-out infinite; }
.resp-json .rh span { font-size: 0.68rem; color: #6a8a6a; font-weight: 600; }
.resp-body { padding: 0.9rem 1rem; font-size: 0.78rem; line-height: 1.8; }
.resp-body .k { color: #7ec8ff; }
.resp-body .p { color: #5a5a6a; }
.resp-body .s { color: var(--pink); }
.resp-body .n { color: #f9ab55; }
.resp-body .g { color: #9ee6a0; }

.log-card { background: #0b0b0f; border: 1px solid #1e1e2a; border-radius: 16px; overflow: hidden; font-family: "SF Mono", ui-monospace, Menlo, monospace; }
.log-card .rh { display: flex; align-items: center; gap: 8px; padding: 0.68rem 1rem; border-bottom: 1px solid #1a1a26; background: #0e0e14; }
.log-card .rh .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #7ec8ff; animation: barPulse 1.4s ease-in-out infinite; }
.log-card .rh span { font-size: 0.68rem; color: #6a6a8a; font-weight: 600; }
.log-card .rh .tag { margin-left: auto; font-size: 0.62rem; color: #4a4a5a; }
.log-viewport { height: 104px; overflow: hidden; position: relative; }
.log-scroll { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.75rem 1rem; animation: logScroll 12s linear infinite; }
.log-row { display: flex; gap: 9px; align-items: baseline; font-size: 0.68rem; line-height: 1.4; }
.log-row .lt { color: #4a4a5a; flex-shrink: 0; font-variant-numeric: tabular-nums; }
.log-row .lnote { color: #c0c0d0; flex: 1; }
.log-row .lrule { color: var(--green); flex-shrink: 0; font-weight: 700; }

.verdict-flash { background: var(--pink); border-radius: 14px; padding: 1rem 1.1rem; display: flex; justify-content: space-between; align-items: center; animation: verdictFlip 3s ease-in-out infinite; }
.verdict-flash .vf-tag { font-size: 0.62rem; color: rgba(10, 10, 10, 0.6); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.verdict-flash .vf-amt { font-weight: 900; font-size: 1.85rem; color: #0a0a0a; }
.verdict-flash .vf-pct { font-weight: 900; font-size: 0.95rem; color: #0a0a0a; }

@keyframes flowPacket { 0% { left: 0; opacity: 0; } 8% { opacity: 1; } 42% { opacity: 1; } 50%, 100% { left: calc(100% - 12px); opacity: 0; } }
@keyframes flowPacket2 { 0%, 50% { left: 0; opacity: 0; } 58% { opacity: 1; } 92% { opacity: 1; } 100% { left: calc(100% - 12px); opacity: 0; } }
@keyframes flowLine { 0% { background-position: 0 0; } 100% { background-position: 40px 0; } }
@keyframes coreSpin { to { transform: rotate(360deg); } }
@keyframes sparkPulse { 0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 6px rgba(120, 140, 255, 0.5)); } 50% { transform: scale(1.12) rotate(45deg); filter: drop-shadow(0 0 18px rgba(120, 140, 255, 0.85)); } }
@keyframes scanSweep { 0% { top: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
@keyframes verdictFlip { 0%, 44% { opacity: 0; transform: translateY(10px) scale(0.96); } 58%, 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes caretBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes barPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes logScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .flow-badge img, .model-core .ring, .model-core img, .model-scan, .verdict-flash,
  .resp-json .rh .pulse-dot, .log-card .rh .pulse-dot, .log-scroll, .flow-connector .packet {
    animation: none;
  }
}

/* ---------- Mid CTA ---------- */
.mid-cta {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  background: var(--pink); color: #0a0a0a;
}
.mid-cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; width: 100%; }
.mid-cta h3 { font-weight: 900; font-size: clamp(1.5rem, 3.4vw, 2rem); letter-spacing: -0.02em; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: clamp(2.5rem, 6vw, 4rem) auto 0; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--surface); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 1.6rem; cursor: pointer; background: none; border: none; width: 100%; text-align: left; color: var(--text);
}
.faq-q .qtext { font-weight: 800; font-size: clamp(1rem, 1.8vw, 1.2rem); }
.faq-q .plus { color: var(--pink); font-weight: 900; font-size: 1.3rem; transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a-inner { padding: 0 1.6rem 1.6rem; color: var(--muted); font-size: 1rem; line-height: 1.6; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a, #1a0713);
}
.final-cta h2 { font-weight: 900; font-size: clamp(2rem, 5.5vw, 3.5rem); letter-spacing: -0.02em; margin: 0 0 1.1rem; }
.final-cta .sub { color: var(--muted); font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 2.25rem; }

.waitlist-form {
  display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap;
}
.waitlist-form input[type="email"] {
  flex: 1; min-width: 200px; background: var(--surface); border: 2px solid var(--border); border-radius: 999px;
  padding: 0.95rem 1.3rem; color: #fff; font-size: 1rem; font-weight: 600; outline: none;
}
.waitlist-form input[type="email"]:focus { border-color: var(--pink); }
.waitlist-form input::placeholder { color: var(--dim); }
.final-cta .fine { font-size: 0.8rem; color: var(--dim); margin-top: 1rem; font-weight: 600; }
.waitlist-note { min-height: 1.2rem; font-size: 0.85rem; font-weight: 700; color: var(--green); margin-top: 0.9rem; }

/* ---------- Footer ---------- */
.footer {
  padding: 2rem clamp(1.25rem, 4vw, 3.5rem);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--border);
  color: var(--dim); font-size: 0.85rem; font-weight: 600;
}
.footer .fbrand { display: flex; align-items: center; gap: 0.6rem; }
.footer .flinks { display: flex; gap: 1.5rem; }
.footer .flinks a { color: var(--dim); }
.footer .flinks a:hover { color: var(--muted); }

/* ---------- Reveal-on-scroll ---------- */
.wg-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.wg-reveal.wg-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .wg-reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero .phone-wrap { order: -1; }
  .hero, .hero .eyebrow, .hero h1, .hero .actions, .hero .sub { text-align: center; }
  .hero .actions { justify-content: center; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-phone-col { order: -1; }
  .how-grid { grid-template-columns: 1fr; }
  .judge-grid { grid-template-columns: 1fr; }
  .judge-copy h2, .judge-copy p.lead { text-align: center; }
  .stat-row { justify-content: center; }
  .verdict-tiles { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .verdict-tiles { grid-template-columns: 1fr; }
  .mid-cta .wrap { justify-content: center; text-align: center; }
}

.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

