/* ════════════════════════════════════════════════════════════════
 * AIOmni V7 Visual Identity — Design System
 * Locked 2026-05-11. Single source of truth for the marketing site.
 * ════════════════════════════════════════════════════════════════ */

:root {
  /* ─── Brand accent colors ─────────────────────────── */
  --amber:        #ffb800;   /* PRIMARY: Pro tier, CTA buttons, paywall, "Most Popular" */
  --amber-soft:   rgba(255,184,0,0.14);
  --amber-glow:   rgba(255,184,0,0.32);
  --amber-xl:     rgba(255,184,0,0.55);

  --aqua:         #1be7ff;   /* SECONDARY: Rankings tier, info, links, active selections */
  --aqua-soft:    rgba(27,231,255,0.12);
  --aqua-glow:    rgba(27,231,255,0.28);

  --green:        #6eeb83;   /* Success, Pulse engine, positive deltas */
  --green-soft:   rgba(110,235,131,0.12);

  --chartreuse:   #e4ff1a;   /* High-intensity, MFL platform, mid-tier warnings */
  --flame:        #ff5714;   /* Tiger Flame: Fleaflicker, errors, urgent flags */

  /* ─── Engine accents ──────────────────────────────── */
  --formula:      #D4FF00;   /* AIOmni Formula (algorithmic, server-side) */
  --pulse:        #6eeb83;   /* AIOmni Pulse (community blend, client-side) */

  /* ─── Background stack (dark teal-black) ──────────── */
  --bg-0:         #0a1214;   /* Deepest layer */
  --bg-1:         #0c1618;   /* Slightly elevated */
  --bg-2:         #0f1c22;   /* Card backing */
  --bg-3:         #12252e;   /* Standard card surface */
  --bg-4:         #14282f;   /* Elevated card / modal */
  --border:       #1a3542;   /* Borders, dividers, separators */
  --border-soft:  rgba(26,53,66,0.6);

  /* ─── Text hierarchy ──────────────────────────────── */
  --ink:          #f0f4f5;   /* Primary text */
  --ink-2:        #7a9eaa;   /* Secondary text */
  --ink-3:        #4a6a76;   /* Tertiary, placeholders */

  /* ─── Platform colors ─────────────────────────────── */
  --p-sleeper:     #00FFF9;
  --p-espn:        #e52534;
  --p-yahoo:       #7c3aed;
  --p-mfl:         #e4ff1a;
  --p-fleaflicker: #ff5714;

  /* ─── Tier colors ─────────────────────────────────── */
  --tier-free:     #7a9eaa;
  --tier-rankings: #1be7ff;
  --tier-pro:      #ffb800;

  /* ─── Layout ──────────────────────────────────────── */
  --wrap:         1180px;
  --nav-h:        68px;
  --radius-s:     6px;
  --radius:       10px;
  --radius-l:     14px;
}

/* ─── Reset / base ───────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', system-ui, -apple-system, 'SF Pro Text', Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--amber-soft), transparent 55%),
    radial-gradient(800px 500px at 90% 20%, var(--aqua-soft), transparent 55%),
    radial-gradient(600px 400px at 0% 70%, rgba(110,235,131,0.04), transparent 55%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 60%, var(--bg-2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ─── Type utilities ─────────────────────────────────── */
.display { font-family: 'Bebas Neue', 'Bebas', 'Oswald', sans-serif; letter-spacing: .02em; font-weight: 400; }
.mono { font-family: 'Space Mono', 'SF Mono', ui-monospace, Menlo, monospace; letter-spacing: .04em; }

h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .02em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 96px); }
h2 { font-size: clamp(32px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }
h4 { font-size: clamp(18px, 2vw, 22px); }
p  { margin: 0 0 12px; color: var(--ink-2); line-height: 1.65; }
strong { color: var(--ink); }
em { font-style: italic; color: var(--ink-2); }
code { font-family: 'Space Mono', monospace; font-size: .88em; background: var(--bg-3); border: 1px solid var(--border); padding: 1px 6px; border-radius: 4px; color: var(--aqua); }
hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }

/* ─── Layout primitives ──────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .lede { max-width: 680px; margin: 0 auto; }
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: .24em;
  color: var(--amber); text-transform: uppercase; font-weight: 700;
  margin-bottom: 12px;
}
.eyebrow.aqua { color: var(--aqua); }
.eyebrow.green { color: var(--green); }
.lede { color: var(--ink-2); font-size: 17px; line-height: 1.6; }

/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(10,18,20,0.78);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: var(--radius-s);
  background: linear-gradient(135deg, var(--amber), #d68f00);
  display: grid; place-items: center;
  color: var(--bg-0); font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  box-shadow: 0 0 18px var(--amber-glow);
}
.brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: .04em; }
.brand-name .accent { color: var(--amber); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
  font-family: 'Space Mono', monospace; font-size: 11px;
  padding: 8px 14px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-2);
  border-radius: var(--radius-s);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--ink); background: var(--bg-3); }
.nav-link.current { color: var(--amber); background: var(--amber-soft); }
.nav-cta {
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: .1em;
  background: var(--amber); color: var(--bg-0);
  padding: 9px 16px; border-radius: var(--radius-s);
  margin-left: 10px;
  box-shadow: 0 0 16px var(--amber-glow);
  transition: transform .12s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 28px var(--amber-xl); }
@media (max-width: 880px) {
  .nav-links .nav-link { display: none; }
  .nav-cta { margin-left: 0; }
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  font-family: 'Bebas Neue', sans-serif; font-size: 16px;
  padding: 13px 28px; border-radius: var(--radius-s);
  letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: var(--bg-0); box-shadow: 0 0 24px var(--amber-glow); }
.btn-primary:hover { box-shadow: 0 0 36px var(--amber-xl); }
.btn-aqua { background: var(--aqua); color: var(--bg-0); box-shadow: 0 0 24px var(--aqua-glow); }
.btn-aqua:hover { box-shadow: 0 0 36px rgba(27,231,255,0.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-3); border-color: var(--ink-2); }
.btn-arrow { transition: transform .15s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ─── Cards ──────────────────────────────────────────── */
.card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 28px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--ink-3); background: var(--bg-4); }
.card.elevated { background: var(--bg-4); }

/* ─── Hero ───────────────────────────────────────────── */
.hero { padding: 80px 0 56px; text-align: center; }
.hero h1 { margin: 22px auto 22px; max-width: 14ch; }
.hero h1 .amber { color: var(--amber); }
.hero h1 .aqua  { color: var(--aqua); }
.hero p.sub { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); max-width: 680px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

/* Kicker badge */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .22em;
  color: var(--amber); padding: 7px 14px; border-radius: 999px;
  background: var(--amber-soft);
  border: 1px solid rgba(255,184,0,0.32);
  text-transform: uppercase;
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 12px var(--amber);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(1.4); }
}

/* ─── Platforms strip ────────────────────────────────── */
.platforms {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.platform { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .22em; color: var(--ink-2); display: flex; align-items: center; gap: 10px; }
.platform::before { content: ""; width: 6px; height: 6px; border-radius: 50%; }
.platform.sleeper::before     { background: var(--p-sleeper); }
.platform.espn::before        { background: var(--p-espn); }
.platform.yahoo::before       { background: var(--p-yahoo); }
.platform.mfl::before         { background: var(--p-mfl); }
.platform.fleaflicker::before { background: var(--p-fleaflicker); }

/* ─── Stat strip ─────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 28px 0; border-bottom: 1px solid var(--border-soft); }
.stat { text-align: center; padding: 0 16px; border-right: 1px solid var(--border-soft); }
.stat:last-child { border-right: 0; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px, 4vw, 50px); color: var(--amber); line-height: 1; }
.stat-num.aqua { color: var(--aqua); }
.stat-num.green { color: var(--green); }
.stat-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: .22em; color: var(--ink-3); margin-top: 10px; text-transform: uppercase; }
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border-soft); padding-bottom: 18px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 18px; }
}

/* ─── Section hub cards (home) ───────────────────────── */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 880px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  text-decoration: none; color: var(--ink);
  position: relative; overflow: hidden;
}
.hub-card:hover { transform: translateY(-3px); background: var(--bg-4); }
.hub-card.amber:hover { border-color: var(--amber); }
.hub-card.aqua:hover { border-color: var(--aqua); }
.hub-card.green:hover { border-color: var(--green); }
.hub-card.flame:hover { border-color: var(--flame); }
.hub-card .icon { width: 44px; height: 44px; border-radius: var(--radius-s); margin-bottom: 18px; display: grid; place-items: center; }
.hub-card.amber .icon { background: var(--amber-soft); border: 1px solid rgba(255,184,0,0.32); }
.hub-card.amber .icon svg { stroke: var(--amber); }
.hub-card.aqua .icon  { background: var(--aqua-soft); border: 1px solid rgba(27,231,255,0.32); }
.hub-card.aqua .icon svg { stroke: var(--aqua); }
.hub-card.green .icon { background: var(--green-soft); border: 1px solid rgba(110,235,131,0.32); }
.hub-card.green .icon svg { stroke: var(--green); }
.hub-card.flame .icon { background: rgba(255,87,20,0.12); border: 1px solid rgba(255,87,20,0.32); }
.hub-card.flame .icon svg { stroke: var(--flame); }
.hub-card svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hub-card h3 { margin: 0 0 8px; color: var(--ink); }
.hub-card p { margin: 0 0 18px; color: var(--ink-2); font-size: 14.5px; flex: 1; }
.hub-card .more {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .14em;
  color: var(--amber); text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px;
}
.hub-card.aqua .more  { color: var(--aqua); }
.hub-card.green .more { color: var(--green); }
.hub-card.flame .more { color: var(--flame); }

/* ─── Differentiator ─────────────────────────────────── */
.diff-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .diff-grid { grid-template-columns: 1fr; gap: 32px; } }
.diff-list { list-style: none; padding: 0; margin: 24px 0 0; }
.diff-list li { padding: 14px 0; border-bottom: 1px solid var(--border-soft); font-size: 16px; color: var(--ink-2); display: flex; gap: 14px; align-items: flex-start; }
.diff-list li:last-child { border-bottom: 0; }
.diff-list .pill {
  font-family: 'Space Mono', monospace; font-size: 11px;
  background: var(--amber); color: var(--bg-0);
  padding: 4px 10px; border-radius: 4px;
  flex-shrink: 0; font-weight: 700; letter-spacing: .06em;
}
.diff-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 32px;
  position: relative; overflow: hidden;
}
.diff-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at top right, var(--amber-soft), transparent 60%);
  pointer-events: none;
}
.diff-card h3 { color: var(--amber); margin-bottom: 14px; }
.diff-card p { font-size: 15px; line-height: 1.7; margin: 0; }

/* ─── Steps ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; margin-top: 40px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 32px 26px 26px;
  position: relative; counter-increment: step;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.step:hover { transform: translateY(-3px); border-color: var(--aqua); background: var(--bg-4); }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 22px; right: 26px;
  font-family: 'Bebas Neue', sans-serif; font-size: 48px;
  color: var(--aqua); opacity: .18; line-height: 1;
}
.step .step-tag { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .18em; color: var(--aqua); text-transform: uppercase; }
.step h3 { font-family: 'Bebas Neue', sans-serif; margin: 14px 0 10px; }
.step p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.65; }

/* ─── Features grid ─────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1000px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 26px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.feature:hover { transform: translateY(-3px); border-color: var(--amber); background: var(--bg-4); }
.feature .icon { width: 44px; height: 44px; border-radius: var(--radius-s); display: grid; place-items: center; margin-bottom: 18px; background: var(--amber-soft); border: 1px solid rgba(255,184,0,0.32); }
.feature .icon svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.feature .tag {
  font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: .14em;
  color: var(--amber); padding: 3px 7px; border: 1px solid rgba(255,184,0,0.32);
  border-radius: 4px; text-transform: uppercase; font-weight: 700;
}
.feature p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.65; }

/* ─── Comparison table ───────────────────────────────── */
.compare-wrap { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; }
.compare { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--border-soft); }
.compare th { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .18em; color: var(--ink-3); font-weight: 500; text-transform: uppercase; background: var(--bg-2); }
.compare th.featured { color: var(--amber); background: var(--amber-soft); }
.compare td { color: var(--ink-2); }
.compare td.featured { background: rgba(255,184,0,0.04); color: var(--ink); font-weight: 500; }
.compare tr:last-child td { border-bottom: 0; }
.compare td:first-child { font-weight: 700; color: var(--ink); }
.compare .check { color: var(--green); font-weight: 900; font-size: 17px; }
.compare .x { color: var(--flame); font-weight: 900; font-size: 17px; }

/* ─── Pricing ────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 880px) { .pricing { grid-template-columns: 1fr; } }
.tier {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform .15s ease, border-color .15s ease;
  position: relative;
}
.tier:hover { transform: translateY(-4px); }
.tier.free:hover     { border-color: var(--tier-free); }
.tier.rankings:hover { border-color: var(--tier-rankings); }
.tier.pro:hover      { border-color: var(--tier-pro); }
.tier.featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, rgba(255,184,0,0.06) 0%, var(--bg-3) 70%);
  box-shadow: 0 0 50px var(--amber-soft), 0 0 0 1px rgba(255,184,0,0.18) inset;
}
.tier .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 13px;
  background: var(--amber); color: var(--bg-0);
  padding: 6px 16px; border-radius: 6px;
  letter-spacing: .14em; box-shadow: 0 0 24px var(--amber-glow);
}
.tier .tname { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 6px; }
.tier.free      .tname { color: var(--tier-free); }
.tier.rankings  .tname { color: var(--tier-rankings); }
.tier.pro       .tname { color: var(--tier-pro); }
.tier .price { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; margin: 16px 0 4px; color: var(--ink); }
.tier .price small { font-size: 20px; color: var(--ink-3); }
.tier .period { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--ink-3); margin-bottom: 24px; }
.tier ul.features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.tier ul.features li { padding: 10px 0; font-size: 14.5px; color: var(--ink-2); display: flex; gap: 12px; align-items: flex-start; border-bottom: 1px solid var(--border-soft); }
.tier ul.features li:last-child { border-bottom: 0; }
.tier ul.features li::before {
  content: ""; width: 16px; height: 16px; border-radius: 4px;
  flex-shrink: 0; margin-top: 2px;
  background-repeat: no-repeat; background-position: center;
}
.tier.free ul.features li::before {
  background: rgba(122,158,170,0.18); border: 1px solid rgba(122,158,170,0.32);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%237a9eaa' stroke-width='2.5' stroke-linecap='round'><path d='M3 8 l3 3 7-7'/></svg>");
}
.tier.rankings ul.features li::before {
  background: var(--aqua-soft); border: 1px solid rgba(27,231,255,0.32);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231be7ff' stroke-width='2.5' stroke-linecap='round'><path d='M3 8 l3 3 7-7'/></svg>");
}
.tier.pro ul.features li::before {
  background: var(--amber-soft); border: 1px solid rgba(255,184,0,0.32);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffb800' stroke-width='2.5' stroke-linecap='round'><path d='M3 8 l3 3 7-7'/></svg>");
}
.tier .btn { width: 100%; justify-content: center; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq { display: grid; gap: 12px; margin-top: 40px; }
details.faq-item {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color .15s ease;
}
details.faq-item[open] { border-color: var(--aqua); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 26px; font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: .02em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: 'Space Mono', monospace; font-size: 22px; color: var(--aqua);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-body { padding: 0 26px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.7; }
.faq-body code { color: var(--aqua); }

/* ─── Page hero (smaller than home hero) ─────────────── */
.page-hero { padding: 64px 0 32px; text-align: center; border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 72px); margin: 18px 0 16px; max-width: 18ch; margin-left: auto; margin-right: auto; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 17px; color: var(--ink-2); }
.page-hero .kicker { margin-bottom: 4px; }

/* ─── Final CTA banner ───────────────────────────────── */
.cta-banner {
  text-align: center; padding: 80px 24px;
  background: radial-gradient(800px 400px at center, var(--amber-soft), transparent 60%);
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
}
.cta-banner h2 { margin: 12px 0 14px; }
.cta-banner p { max-width: 520px; margin: 0 auto 26px; font-size: 17px; }

/* ─── Footer ─────────────────────────────────────────── */
footer { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin-bottom: 12px; letter-spacing: .04em; }
.footer-brand .amber { color: var(--amber); }
.footer-blurb { color: var(--ink-3); font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-col-title { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .22em; color: var(--amber); text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 8px 0; font-size: 14px; }
.footer-col a { color: var(--ink-2); transition: color .15s ease; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--ink-3); font-size: 12px; font-family: 'Space Mono', monospace; letter-spacing: .06em; }

/* ─── Rankings page (interactive table) ──────────────── */
.engine-tabs { display: flex; gap: 4px; padding: 6px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); width: max-content; margin: 0 auto 28px; }
.engine-tab {
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--radius-s); cursor: pointer;
  background: transparent; color: var(--ink-2); border: 0;
  transition: background .15s ease, color .15s ease;
}
.engine-tab:hover { color: var(--ink); }
.engine-tab.active.formula { background: var(--formula); color: var(--bg-0); box-shadow: 0 0 18px rgba(212,255,0,0.32); }
.engine-tab.active.pulse   { background: var(--pulse);   color: var(--bg-0); box-shadow: 0 0 18px rgba(110,235,131,0.32); }

.filter-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; align-items: center; }
.filter-group { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: .18em; color: var(--ink-3); text-transform: uppercase; margin-right: 4px; align-self: center; }
.chip {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 12px; border: 1px solid var(--border); border-radius: var(--radius-s);
  background: var(--bg-3); color: var(--ink-2); cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { color: var(--ink); border-color: var(--ink-3); }
.chip.active { background: var(--aqua); color: var(--bg-0); border-color: var(--aqua); box-shadow: 0 0 12px var(--aqua-glow); }
.chip.pos.active { background: var(--amber); color: var(--bg-0); border-color: var(--amber); box-shadow: 0 0 12px var(--amber-glow); }

.rk-meta {
  text-align: center; font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--ink-3); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px;
}
.rk-meta .engine { font-weight: 700; }
.rk-meta .engine.formula { color: var(--formula); }
.rk-meta .engine.pulse   { color: var(--pulse); }

.rk-table-wrap { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-l); overflow-x: auto; }
.rk-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
.rk-table th { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); padding: 14px 18px; text-align: left; background: var(--bg-2); border-bottom: 1px solid var(--border); font-weight: 500; }
.rk-table th.r { text-align: right; }
.rk-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-soft); color: var(--ink-2); }
.rk-table td.r { text-align: right; font-family: 'Space Mono', monospace; }
.rk-table tr:hover td { background: var(--bg-4); color: var(--ink); }
.rk-table tr:last-child td { border-bottom: 0; }
.rk-rank { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--amber); width: 50px; }
.rk-name { font-weight: 700; color: var(--ink); font-size: 15px; }
.rk-team { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--ink-3); letter-spacing: .14em; margin-left: 8px; }
.rk-score { color: var(--ink-2); font-family: 'Space Mono', monospace; font-size: 13px; }
.rk-tier { display: inline-block; padding: 2px 8px; border-radius: 4px; font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 700; }
.rk-tier-1 { background: var(--amber); color: var(--bg-0); }
.rk-tier-2 { background: var(--aqua); color: var(--bg-0); }
.rk-tier-3 { background: var(--green); color: var(--bg-0); }
.rk-tier-4 { background: var(--chartreuse); color: var(--bg-0); }
.rk-tier-5 { background: var(--bg-4); color: var(--ink-2); border: 1px solid var(--border); }

@media (max-width: 720px) {
  .rk-table th, .rk-table td { padding: 10px 12px; font-size: 12.5px; }
  .rk-rank { font-size: 17px; width: 36px; }
  .rk-name { font-size: 13.5px; }
}

/* Engine info card on rankings page */
.engine-info { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 22px 28px; margin-bottom: 28px; }
.engine-info.formula { border-left: 4px solid var(--formula); }
.engine-info.pulse { border-left: 4px solid var(--pulse); }
.engine-info h3 { font-family: 'Bebas Neue', sans-serif; margin-bottom: 6px; }
.engine-info.formula h3 { color: var(--formula); }
.engine-info.pulse   h3 { color: var(--pulse); }
.engine-info p { margin: 0; font-size: 14px; line-height: 1.65; }


/* ─── Real AIOmni wordmark (AI + Spectrum C mark + MNI) ─── */
.brand { display:flex; align-items:center; gap:0; text-decoration:none; }
.wm-ai, .wm-mni {
  font-family:'Bebas Neue','Impact','Helvetica Neue Condensed Bold',Impact,sans-serif;
  font-size:26px; letter-spacing:.04em; line-height:1; color: var(--ink);
}
.wm-mni { opacity:.45; }
.wm-mark { display:inline-flex; align-items:center; margin:0 -3px; }
.wm-mark svg { filter: drop-shadow(0 0 10px rgba(255,184,0,0.22)); }
.footer-brand { display:flex; align-items:center; gap:0; margin-bottom:14px; }
.footer-brand .wm-ai, .footer-brand .wm-mni { font-size:30px; }
.footer-brand .wm-mark svg { width:34px; height:34px; }
.footer-brand .wm-mark { margin:0 -4px; }
/* deprecate old solid amber brand-mark square */
.brand-mark, .brand-name { display:none; }


/* ─── Spectrum C mark — animated spin (matches live getaiomni.com) ─── */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spec-spin { animation: spin 5s linear infinite; transform-origin: center; }
@media (prefers-reduced-motion: reduce) {
  .spec-spin { animation: none; }
}
