/* Verdict — marketing site styles. Palette mirrors the app (client/tailwind.config.js). */
:root {
  --bg-base: #0e0c1a;
  --bg-surface: #15122a;
  --bg-elevated: #1d1838;
  --bg-border: #332b56;
  --brand: #8b5cf6;
  --brand-dim: #6d28d9;
  --bull: #10b981;
  --bear: #ef4444;
  --warn: #f59e0b;
  --text-primary: #f2f0fa;
  --text-secondary: #a39bc7;
  --text-muted: #6f6694;
  --brand-gradient: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: #a78bfa; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 12, 26, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-lockup .mark { width: 30px; height: 30px; border-radius: 8px; }
.brand-lockup .name { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: var(--text-primary); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text-primary); }
@media (max-width: 640px) { .nav-links a.hide-sm { display: none; } }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent; transition: all .18s ease;
}
.btn-primary { background: var(--brand-gradient); color: #fff; box-shadow: 0 0 0 1px rgba(139,92,246,.35), 0 0 24px rgba(139,92,246,.18); }
.btn-primary:hover { filter: brightness(1.1); color: #fff; }
.btn-ghost { background: var(--bg-elevated); color: var(--text-primary); border-color: var(--bg-border); }
.btn-ghost:hover { border-color: var(--brand); color: var(--text-primary); }

/* ── Hero ───────────────────────────────────────────────── */
.hero { position: relative; padding: 96px 0 72px; text-align: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 720px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(139,92,246,.16) 0%, rgba(139,92,246,0) 62%);
}
.hero .eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.25);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 26px;
}
.hero h1 { font-size: clamp(34px, 6vw, 60px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; }
.hero h1 .grad { background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { margin: 22px auto 0; max-width: 620px; font-size: clamp(16px, 2.4vw, 19px); color: var(--text-secondary); }
.hero .cta-row { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .tagline { margin-top: 18px; font-size: 14px; color: var(--text-muted); }

/* ── Sections ───────────────────────────────────────────── */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.02em; font-weight: 700; }
.section-head p { margin-top: 12px; color: var(--text-secondary); font-size: 16px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: 16px; padding: 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(139,92,246,.45); transform: translateY(-2px); }
.card .icon {
  width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  background: rgba(139,92,246,.12); color: var(--brand); margin-bottom: 16px;
}
.card h3 { font-size: 17px; font-weight: 650; margin-bottom: 8px; }
.card p { color: var(--text-secondary); font-size: 14.5px; }

/* ── Disclaimer band ────────────────────────────────────── */
.disclaimer-band { background: var(--bg-surface); border-top: 1px solid var(--bg-border); border-bottom: 1px solid var(--bg-border); }
.disclaimer-band .wrap { padding: 28px 24px; display: flex; gap: 14px; align-items: flex-start; }
.disclaimer-band .badge { flex: none; color: var(--warn); margin-top: 2px; }
.disclaimer-band p { font-size: 13px; color: var(--text-secondary); }

/* ── CTA strip ──────────────────────────────────────────── */
.cta-strip { text-align: center; }
.cta-strip .box {
  background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: 20px;
  padding: 48px 32px; position: relative; overflow: hidden;
}
.cta-strip h2 { font-size: clamp(24px, 4vw, 34px); letter-spacing: -0.02em; }
.cta-strip p { color: var(--text-secondary); margin: 12px auto 28px; max-width: 460px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--bg-border); padding: 40px 0; margin-top: 16px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.site-footer .brand-lockup .name { font-size: 16px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); font-size: 14px; }
.footer-links a:hover { color: var(--text-primary); }
.footer-fine { width: 100%; color: var(--text-muted); font-size: 12.5px; padding-top: 8px; }

/* ── Legal / content pages ──────────────────────────────── */
.legal { padding: 56px 0 80px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(28px, 5vw, 40px); letter-spacing: -0.02em; margin-bottom: 6px; }
.legal .updated { color: var(--text-muted); font-size: 13px; margin-bottom: 36px; }
.legal h2 { font-size: 20px; margin: 34px 0 10px; letter-spacing: -0.01em; }
.legal h3 { font-size: 16px; margin: 22px 0 8px; color: var(--text-primary); }
.legal p, .legal li { color: var(--text-secondary); font-size: 15px; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 12px; }
.legal li { margin-bottom: 7px; }
.legal strong { color: var(--text-primary); }
.legal .callout {
  background: rgba(245,158,11,.07); border: 1px solid rgba(245,158,11,.3); border-radius: 12px;
  padding: 16px 18px; margin: 24px 0; color: var(--text-secondary); font-size: 14px;
}
.contact-card {
  background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: 16px;
  padding: 28px; margin-top: 24px;
}
.contact-card .email { font-size: 20px; font-weight: 650; color: var(--brand); }
.back-link { display: inline-block; margin-bottom: 28px; color: var(--text-secondary); font-size: 14px; }
