/* SysWP Radar — landing styles
 * Tailwind via CDN handles 95% of layout; this file owns:
 * - radar-themed effects (mesh bg, grid, scan, sweep, pulse)
 * - glass morphism + gradient text
 * - chart container theming
 * - scroll-reveal animations
 * - reduced-motion respect
 */

:root {
  --bg: #06090f;
  --bg-2: #0a1424;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --emerald: #34d399;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --green: #10b981;
  --red: #ef4444;
  --amber: #f59e0b;
  --grad: linear-gradient(135deg, #34d399 0%, #22d3ee 50%, #3b82f6 100%);
  --grad-soft: linear-gradient(135deg, rgba(52,211,153,0.2) 0%, rgba(34,211,238,0.2) 50%, rgba(59,130,246,0.2) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ─── Animated mesh background ──────────────────────────────────── */
.mesh-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(52,211,153,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 25%, rgba(34,211,238,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 50% 75%, rgba(59,130,246,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(34,211,238,0.06) 0%, transparent 55%);
  background-color: var(--bg);
  animation: meshShift 22s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { background-position: 0% 0%, 100% 25%, 50% 75%, 10% 100%; }
  100% { background-position: 5% 5%, 95% 30%, 55% 70%, 15% 95%; }
}

/* ─── Grid overlay (faint) ──────────────────────────────────── */
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(34,211,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 90%);
}

/* ─── Subtle scan-line sweep ──────────────────────────────────── */
.scan-line {
  position: fixed; left: 0; right: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(34,211,238,0.4) 50%, transparent 100%);
  z-index: -1;
  animation: scanDown 9s linear infinite;
}
@keyframes scanDown {
  0% { top: -2%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 102%; opacity: 0; }
}

/* ─── Glass cards ──────────────────────────────────── */
.glass {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.glass-strong {
  background: var(--card-strong);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

/* ─── Gradient text ──────────────────────────────────── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── Buttons ──────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-weight: 600; font-size: 0.95rem;
  color: #06090f;
  background: var(--grad);
  border: none; border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 20px rgba(34,211,238,0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(34,211,238,0.45); filter: brightness(1.06); }
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-weight: 600; font-size: 0.95rem;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-secondary:hover {
  background: rgba(34,211,238,0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ─── Nav ──────────────────────────────────── */
nav[data-nav] {
  transition: backdrop-filter 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
nav[data-nav].scrolled {
  background: rgba(6,9,15,0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--border);
}

/* ─── Lang switcher ──────────────────────────────────── */
.lang-switcher button {
  background: transparent; border: 1px solid transparent;
  border-radius: 6px; cursor: pointer;
  color: var(--text-dim); transition: all 0.15s ease;
}
.lang-switcher button:hover { color: var(--text); }
.lang-switcher button.active {
  color: var(--cyan); border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.06);
}

/* ─── Hero radar visual ──────────────────────────────────── */
.hero-radar {
  width: 380px; height: 380px;
  filter: drop-shadow(0 0 60px rgba(34,211,238,0.25));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ─── Stat counters ──────────────────────────────────── */
.stat-card {
  position: relative;
  padding: 1.25rem 1.4rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0.6;
  background: radial-gradient(circle at top right, rgba(34,211,238,0.18) 0%, transparent 50%);
}
.stat-card > * { position: relative; z-index: 1; }
.stat-card .stat-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 2.1rem; font-weight: 700; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat-card .stat-label {
  font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-top: 0.45rem;
}

/* ─── Section eyebrow ──────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--cyan); text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── Section dividers (radar-y) ──────────────────────────────────── */
.section-decor {
  position: absolute; pointer-events: none;
  width: 600px; height: 600px;
  border: 1px solid rgba(34,211,238,0.06);
  border-radius: 50%;
  z-index: -1;
}
.section-decor::before, .section-decor::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(34,211,238,0.04);
}
.section-decor::before { inset: 12%; }
.section-decor::after  { inset: 28%; }

/* ─── Comparison hero block (Plausible vs Radar) ──────────────────────────────────── */
.compare-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.compare-side {
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.compare-side.them { opacity: 0.85; }
.compare-side.us { border-color: rgba(34,211,238,0.35); background: rgba(34,211,238,0.05); }
.compare-side.us::before {
  content: ''; position: absolute; inset: -1px; border-radius: 16px;
  background: var(--grad); opacity: 0.18; z-index: -1;
  filter: blur(20px);
}
.compare-side .label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted);
}
.compare-side.us .label { color: var(--cyan); }
.compare-side .value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem; font-weight: 800; line-height: 1;
  margin: 0.6rem 0 0.4rem;
}
.compare-side.us .value {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.compare-side .subtext { font-size: 0.85rem; color: var(--text-muted); }
.compare-arrow {
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 0.85rem;
  color: var(--text-muted);
}
.compare-arrow .delta {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .compare-block { grid-template-columns: 1fr; gap: 1rem; }
  .compare-side .value { font-size: 2.4rem; }
}

/* ─── Feature card ──────────────────────────────────── */
.feature-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: -1px; left: -1px; width: 60%; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.3);
  background: var(--card-strong);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.18);
  margin-bottom: 1rem;
  color: var(--cyan);
}

/* ─── Dashboard preview frame ──────────────────────────────────── */
.dashboard-frame {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 1.25rem;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  overflow: hidden;
}
.dashboard-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(34,211,238,0.4) 50%, transparent 100%);
}
.dashboard-titlebar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.4rem 0.6rem 1rem; border-bottom: 1px solid var(--border);
  margin-bottom: 1.2rem;
}
.dashboard-titlebar .dots { display: flex; gap: 6px; }
.dashboard-titlebar .dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.dashboard-titlebar .url-pill {
  padding: 0.35rem 0.85rem; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.dashboard-titlebar .url-pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald); box-shadow: 0 0 8px var(--emerald);
  animation: blink 1.6s infinite;
}
.dashboard-titlebar .live-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--emerald); padding: 0.2rem 0.6rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3); border-radius: 999px;
}

.dashboard-stat {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.dashboard-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.6rem; font-weight: 700; line-height: 1;
}
.dashboard-stat .lbl {
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-top: 0.4rem;
}
.dashboard-stat.humans .num { color: var(--emerald); }
.dashboard-stat.bots .num { color: var(--cyan); }
.dashboard-stat.ai .num { color: #a78bfa; }
.dashboard-stat.attacks .num { color: var(--red); }

.chart-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}
.chart-wrap .chart-title {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.chart-host { width: 100%; height: 240px; }
.chart-host.tall { height: 320px; }
.chart-host.short { height: 200px; }

.upsell-banner {
  margin-top: 1.25rem;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(245,158,11,0.06));
  border: 1px solid rgba(239,68,68,0.25);
  display: flex; align-items: center; gap: 1rem;
}
.upsell-banner .upsell-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(239,68,68,0.15);
  display: grid; place-items: center; flex-shrink: 0;
  color: var(--red);
}
.upsell-banner .upsell-text { flex: 1; }
.upsell-banner .upsell-text strong { color: var(--text); display: block; margin-bottom: 0.15rem; }
.upsell-banner .upsell-text span { color: var(--text-muted); font-size: 0.88rem; }
.upsell-banner a {
  color: var(--cyan); font-weight: 600; font-size: 0.88rem;
  text-decoration: none; white-space: nowrap;
}
.upsell-banner a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .upsell-banner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ─── Comparison table ──────────────────────────────────── */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th, .compare-table td {
  padding: 0.85rem 1rem; text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.compare-table th {
  font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,0.025);
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.compare-table th.radar-col, .compare-table td.radar-col {
  background: rgba(34,211,238,0.06);
  border-left: 1px solid rgba(34,211,238,0.18);
  border-right: 1px solid rgba(34,211,238,0.18);
}
.compare-table th.radar-col {
  color: var(--cyan); font-weight: 700;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
  text-align: left; color: var(--text); font-weight: 500;
}
.compare-table tr:hover td { background: rgba(255,255,255,0.015); }
.compare-table tr:hover td.radar-col { background: rgba(34,211,238,0.09); }

.tag-yes, .tag-no, .tag-partial {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; height: 28px; border-radius: 8px;
  font-weight: 700; font-size: 0.85rem;
}
.tag-yes { color: var(--emerald); background: rgba(52,211,153,0.12); }
.tag-no { color: var(--red); background: rgba(239,68,68,0.1); opacity: 0.7; }
.tag-partial { color: var(--amber); background: rgba(245,158,11,0.12); font-size: 0.72rem; padding: 0 0.5rem; min-width: auto; }

@media (max-width: 720px) {
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.5rem; }
}

/* ─── Pricing cards ──────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 1.6rem 1.4rem;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.price-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.price-card.popular {
  border-color: rgba(34,211,238,0.4);
  background: rgba(34,211,238,0.05);
  transform: scale(1.03);
  box-shadow: 0 20px 60px -20px rgba(34,211,238,0.4);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-3px); }
.price-card.popular::before {
  content: ''; position: absolute; inset: -1px; border-radius: 16px;
  background: var(--grad); opacity: 0.15; z-index: -1; filter: blur(20px);
}
@media (max-width: 1100px) { .price-card.popular { transform: none; } }

.price-card .badge-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 0.3rem 0.8rem; border-radius: 999px;
  background: var(--grad); color: #06090f;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
}
.price-card .tier-name {
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em;
}
.price-card.popular .tier-name { color: var(--cyan); }
.price-card .tier-tagline {
  font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem;
  min-height: 2.4rem;
}
.price-card .tier-price-row {
  display: flex; align-items: baseline; gap: 0.4rem;
  margin: 1.2rem 0 0.2rem;
}
.price-card .tier-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem; font-weight: 800; line-height: 1;
}
.price-card.popular .tier-price {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-card .tier-month { color: var(--text-muted); font-size: 0.95rem; }
.price-card .tier-secondary { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 1.2rem; }
.price-card .tier-features {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
  flex: 1;
}
.price-card .tier-features li {
  font-size: 0.88rem; color: var(--text);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.price-card .tier-features li::before {
  content: '✓'; color: var(--emerald); font-weight: 700;
  flex-shrink: 0; margin-top: 0.05rem;
}
.price-card.popular .tier-features li::before { color: var(--cyan); }
.price-card .tier-cta { margin-top: 1.4rem; }

.enterprise-card {
  margin-top: 1.5rem;
  padding: 1.4rem 1.8rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.enterprise-card .ent-text strong { color: var(--text); display: block; margin-bottom: 0.2rem; }
.enterprise-card .ent-text span { color: var(--text-muted); font-size: 0.9rem; }

/* ─── Waitlist form ──────────────────────────────────── */
.waitlist-card {
  padding: 2.2rem;
  border-radius: 20px;
  background: var(--card-strong);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.waitlist-card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(34,211,238,0.06) 0%, transparent 50%);
  animation: waitlistPulse 6s ease-in-out infinite;
}
@keyframes waitlistPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.waitlist-card > * { position: relative; z-index: 1; }

.field {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.field label {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted);
}
.field input, .field select {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.15s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(34,211,238,0.04);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.12);
}
.field input::placeholder { color: var(--text-dim); }

.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem;
}
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill {
  cursor: pointer;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text);
  transition: all 0.15s ease;
  display: flex; align-items: center; gap: 0.5rem;
}
.radio-pill::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0; transition: all 0.15s ease;
}
.radio-pill:hover { border-color: var(--border-strong); background: rgba(34,211,238,0.04); }
.radio-pill.checked {
  border-color: var(--cyan);
  background: rgba(34,211,238,0.08);
  color: var(--cyan);
}
.radio-pill.checked::before {
  background: var(--cyan); border-color: var(--cyan);
  box-shadow: inset 0 0 0 3px var(--bg);
}

.waitlist-result {
  text-align: center; padding: 2rem 1rem;
}
.waitlist-result .icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(34,211,238,0.3);
  color: var(--cyan); font-size: 1.6rem;
}
.waitlist-result.error .icon {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
  color: var(--red);
}

/* ─── FAQ ──────────────────────────────────── */
details.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 0.6rem;
  transition: border-color 0.2s ease;
}
details.faq-item[open] { border-color: rgba(34,211,238,0.3); background: var(--card-strong); }
details.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: 1rem; color: var(--text);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; font-family: 'JetBrains Mono', monospace; font-weight: 700;
  color: var(--cyan); font-size: 1.4rem; line-height: 1;
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after { content: '−'; transform: rotate(0); }
details.faq-item .answer {
  padding: 0 1.4rem 1.2rem; color: var(--text-muted);
  font-size: 0.95rem; line-height: 1.6;
}

/* ─── Shield integration block ──────────────────────────────────── */
.shield-block {
  position: relative;
  padding: 2.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, rgba(34,211,238,0.05) 100%);
  border: 1px solid var(--border-strong);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) { .shield-block { grid-template-columns: 1fr; } }

.eco-diagram {
  display: grid; grid-template-columns: 1fr; gap: 0.6rem;
  font-family: 'JetBrains Mono', monospace; font-size: 0.85rem;
}
.eco-node {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.7rem;
}
.eco-node.radar { border-color: rgba(34,211,238,0.4); background: rgba(34,211,238,0.08); }
.eco-node.shield { border-color: rgba(99,102,241,0.4); background: rgba(99,102,241,0.08); }
.eco-node.pulse { border-color: rgba(168,85,247,0.4); background: rgba(168,85,247,0.06); opacity: 0.7; }
.eco-node strong { color: var(--text); }
.eco-node span { color: var(--text-muted); margin-left: auto; font-size: 0.78rem; }
.eco-arrow {
  text-align: center; color: var(--text-dim); padding: 0.2rem 0;
  font-family: 'JetBrains Mono', monospace; font-size: 0.85rem;
}

/* ─── Footer ──────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  margin-top: 6rem;
  padding: 3.5rem 0 2rem;
  position: relative;
}
footer .footer-status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-muted);
  padding: 0.35rem 0.8rem; border-radius: 999px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
}
footer .footer-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald); box-shadow: 0 0 10px var(--emerald);
  animation: blink 1.6s infinite;
}

/* ─── Scroll reveal ──────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ─── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mesh-bg, .scan-line, .hero-radar, [data-reveal] { animation: none !important; transition: none !important; }
  svg animate, svg animateTransform { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─── Mobile menu ──────────────────────────────────── */
[data-menu] { transform-origin: top; }
[data-menu].opening { animation: slideDown 0.18s ease-out; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Utility ──────────────────────────────────── */
.text-balance { text-wrap: balance; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }
