/* ============================================================
   OCEKS — Design System
   Brand: Matte Black #030303 · OCEKS Lime #C8FF00 · Inter / Georgia
   ============================================================ */

:root {
  --bg: #030303;
  --bg-raised: #0a0a0a;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-bg-hover: rgba(255, 255, 255, 0.055);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(200, 255, 0, 0.4);
  --accent: #C8FF00;
  --accent-hover: #e8ff7a;
  --accent-dim: rgba(200, 255, 0, 0.12);
  --text: #FFFFFF;
  --text-soft: #d4d4d8;
  --text-muted: #A1A1AA;
  --text-faint: #86868f;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-mono: 'SFMono-Regular', ui-monospace, 'Cascadia Mono', Consolas, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.4s var(--ease);
  --radius: 14px;
  --radius-lg: 20px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #000; }

img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.wide { max-width: 1320px; }

/* ---------- Ambient background ---------- */
.ambient {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(circle at 50% -20%, #152010 0%, #030303 70%);
}
#ambient-canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.55; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--card-border);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-brand .wordmark {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  letter-spacing: 1px; color: var(--text);
}
.nav-brand .wordmark span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.2px; transition: color 0.25s ease; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  margin: 5px 0; transition: var(--transition); border-radius: 2px;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(5, 5, 5, 0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 12px 24px 28px;
  display: none; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 8px; font-size: 16px; font-weight: 500; color: var(--text-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu a.active { color: var(--accent); }
.mobile-menu .btn { margin-top: 18px; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
  cursor: pointer; transition: var(--transition); border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #000; box-shadow: 0 4px 16px rgba(200, 255, 0, 0.12); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200, 255, 0, 0.25); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(200, 255, 0, 0.18); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--card-border); }
.btn-ghost:hover { border-color: var(--card-border-hover); background: var(--card-bg); }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Focus states (keyboard accessibility) ---------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.footer-col a:focus-visible,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible,
.footer-bottom a:focus-visible {
  outline-offset: 2px;
  border-radius: 2px;
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

h1.display {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(40px, 6.2vw, 74px); line-height: 1.06;
  letter-spacing: -0.5px; margin-bottom: 26px;
}
h1.display em { font-style: italic; color: var(--accent); }

h2.title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.12;
  letter-spacing: -0.3px; margin-bottom: 18px;
}
h2.title em { font-style: italic; color: var(--accent); }

h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.1px; }

.lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-muted); max-width: 640px; line-height: 1.7; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  background: var(--accent-dim); border: 1px solid rgba(200, 255, 0, 0.25);
  font-size: 12.5px; font-weight: 500; color: var(--accent-hover);
  margin-bottom: 28px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- Layout primitives ---------- */
.hero { padding: calc(var(--nav-h) + 96px) 0 100px; position: relative; }
.hero.centered { text-align: center; }
.hero.centered .lede { margin: 0 auto; }
.hero-ctas { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero.centered .hero-ctas { justify-content: center; }
.hero-note { margin-top: 22px; font-size: 13px; color: var(--text-faint); }

.section { padding: 96px 0; position: relative; }
.section.tight { padding: 64px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .eyebrow::before { display: none; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--card-border), transparent); }

.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.card:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 48px -28px rgba(200, 255, 0, 0.14);
}
.card .icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--accent-dim); border: 1px solid rgba(200, 255, 0, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent);
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }
.card .tag {
  display: inline-block; margin-top: 16px; font-family: var(--font-mono);
  font-size: 11px; color: var(--text-faint); letter-spacing: 0.5px;
}

.card.feature-lg { padding: 40px 36px; }
.card.feature-lg h3 { font-size: 22px; font-family: var(--font-serif); }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 44px 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-serif); font-size: clamp(34px, 4vw, 52px); font-weight: 700;
  color: var(--text); line-height: 1.1;
}
.stat .num .accent { color: var(--accent); }
.stat .label { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); margin-top: 8px; }

/* ---------- Flow / steps ---------- */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.flow-step { position: relative; padding: 28px 24px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); transition: var(--transition); }
.flow-step:hover { border-color: var(--card-border-hover); }
.flow-step::before {
  counter-increment: step; content: '0' counter(step);
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  display: block; margin-bottom: 14px; letter-spacing: 1px;
}
.flow-step h3 { font-size: 16px; margin-bottom: 8px; }
.flow-step p { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--card-border); border-radius: var(--radius); background: var(--card-bg); }
table.compare { width: 100%; border-collapse: collapse; min-width: 680px; font-size: 14px; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--card-border); }
table.compare thead th { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); font-weight: 600; background: rgba(255, 255, 255, 0.02); }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare td.yes { color: var(--accent); font-weight: 500; }
table.compare td.no { color: var(--text-faint); }
table.compare td:first-child { color: var(--text-soft); font-weight: 500; }

/* ---------- Pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.tier {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 28px 22px; display: flex; flex-direction: column; transition: var(--transition);
}
.tier:hover { border-color: var(--card-border-hover); transform: translateY(-4px); }
.tier.featured {
  border-color: rgba(200, 255, 0, 0.45);
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.06), var(--card-bg));
  box-shadow: 0 24px 60px -28px rgba(200, 255, 0, 0.22);
}
.tier .tier-name { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.tier .tier-for { font-size: 12.5px; color: var(--text-faint); min-height: 36px; margin-bottom: 14px; }
.tier .tier-price { font-size: 24px; font-weight: 700; margin-bottom: 18px; }
.tier .tier-price small { display: block; font-size: 12px; font-weight: 400; color: var(--text-faint); margin-top: 2px; }
.tier ul { flex: 1; margin-bottom: 22px; }
.tier ul li { font-size: 13px; color: var(--text-muted); padding: 7px 0 7px 22px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
.tier ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 12px; }
.tier .btn { justify-content: center; width: 100%; }
.tier-flag {
  display: inline-block; font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); background: var(--accent-dim); border-radius: 100px;
  padding: 4px 10px; margin-bottom: 12px; align-self: flex-start;
}

/* ---------- Code block ---------- */
.codeblock {
  background: #060606; border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 22px 24px; font-family: var(--font-mono); font-size: 13.5px; line-height: 1.8;
  color: var(--text-soft); overflow-x: auto;
}
.codeblock .c { color: var(--text-faint); }
.codeblock .a { color: var(--accent); }

/* ---------- Checklist ---------- */
.checklist li { padding: 10px 0 10px 32px; position: relative; color: var(--text-soft); font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid rgba(200,255,0,0.4);
}
.checklist li::after {
  content: ''; position: absolute; left: 5px; top: 20px;
  width: 6px; height: 3px; border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .visual {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  padding: 36px; min-height: 320px; display: flex; align-items: center; justify-content: center;
}

/* ---------- Forms ---------- */
.form-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--text-soft); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 13px 16px; color: var(--text);
  font-family: var(--font-sans); font-size: 14.5px; transition: border-color 0.25s ease;
  width: 100%;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A1A1AA' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-field select option { background: #0a0a0a; color: var(--text); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: rgba(200, 255, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.25);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--text-faint); margin-top: 16px; }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-family: var(--font-serif); font-size: 26px; margin: 44px 0 14px; }
.prose h3 { font-size: 17px; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--text-soft); }
.prose .updated { font-size: 13px; color: var(--text-faint); margin-bottom: 36px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.07), rgba(200, 255, 0, 0.02));
  border: 1px solid rgba(200, 255, 0, 0.2); border-radius: var(--radius-lg);
  padding: 72px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); max-width: 560px; margin: 0 auto 34px; }
.cta-band .hero-ctas { justify-content: center; margin-top: 0; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--card-border); padding: 72px 0 40px; margin-top: 40px; background: rgba(0, 0, 0, 0.35); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-brand p { font-size: 13.5px; color: var(--text-faint); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 5px 0; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px; color: var(--text-faint);
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--text-muted); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .reveal.visible .ring-fg, .ring-fg { animation: none; stroke-dashoffset: 19.6; }
  .reveal.visible .fw-fill, .fw-fill { transition: none; width: var(--w); }
  .reveal.visible .feed-line, .feed-line { animation: none; opacity: 1; transform: none; }
  .badge .dot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .cols-3 { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: calc(var(--nav-h) + 56px) 0 64px; }
  .section { padding: 64px 0; }
  .cols-2, .cols-4, .flow { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; padding: 36px 0; }
  .tiers { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 52px 24px; }
  .nav-cta .btn-primary { padding: 10px 18px; font-size: 13px; }
}

/* ---------- Console mockup ---------- */
.console {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,255,0,0.04);
  overflow: hidden;
}
.console-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--card-border);
  background: rgba(255,255,255,0.02);
}
.console-bar .cdot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.console-title { margin-left: 10px; font-size: 12.5px; color: var(--text-muted); letter-spacing: 0.02em; }
.console-env { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.console-body {
  display: grid; grid-template-columns: 240px 1fr 1.2fr; gap: 0;
}
.console-col { padding: 26px 24px; }
.console-col + .console-col { border-left: 1px solid var(--card-border); }

.score-ring { position: relative; width: 128px; height: 128px; margin: 0 auto; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring .ring-bg { fill: none; stroke: rgba(255,255,255,0.07); stroke-width: 8; }
.score-ring .ring-fg {
  fill: none; stroke: var(--accent); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 326.7; stroke-dashoffset: 326.7;
}
.reveal.visible .ring-fg { animation: ringfill 1.6s var(--ease) 0.3s forwards; }
@keyframes ringfill { to { stroke-dashoffset: 19.6; } } /* 94% of 326.7 */
.score-val {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 700; color: var(--text);
}
.score-val span { font-size: 14px; color: var(--text-muted); margin-left: 2px; }
.score-caption { text-align: center; margin-top: 14px; font-size: 13.5px; color: var(--text); font-weight: 600; }
.score-sub { text-align: center; margin-top: 4px; font-size: 12px; color: var(--text-muted); }

.fw-row { margin-bottom: 18px; }
.fw-row:last-child { margin-bottom: 0; }
.fw-head { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 7px; }
.fw-head .fw-name { color: var(--text); font-weight: 600; }
.fw-head .fw-count { font-family: var(--font-mono); color: var(--text-muted); font-size: 11px; }
.fw-track { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.07); overflow: hidden; }
.fw-fill { height: 100%; border-radius: 3px; background: var(--accent); width: 0; transition: width 1.4s var(--ease) 0.4s; }
.reveal.visible .fw-fill { width: var(--w); }

.feed-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.feed-line {
  font-family: var(--font-mono); font-size: 11.5px; line-height: 1.5;
  color: var(--text-muted); padding: 5px 0; display: flex; gap: 10px;
  opacity: 0; transform: translateY(4px);
}
.reveal.visible .feed-line { animation: feedin 0.5s var(--ease) forwards; }
.reveal.visible .feed-line:nth-child(2) { animation-delay: 0.5s; }
.reveal.visible .feed-line:nth-child(3) { animation-delay: 0.9s; }
.reveal.visible .feed-line:nth-child(4) { animation-delay: 1.3s; }
.reveal.visible .feed-line:nth-child(5) { animation-delay: 1.7s; }
.reveal.visible .feed-line:nth-child(6) { animation-delay: 2.1s; }
@keyframes feedin { to { opacity: 1; transform: none; } }
.feed-line .t { color: rgba(255,255,255,0.28); flex-shrink: 0; }
.feed-line .ok { color: var(--accent); }
.feed-line .warn { color: #fbbf24; }
.console-status {
  padding: 12px 20px; border-top: 1px solid var(--card-border);
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.console-status .ok { color: var(--accent); }

@media (max-width: 900px) {
  .console-body { grid-template-columns: 1fr; }
  .console-col + .console-col { border-left: none; border-top: 1px solid var(--card-border); }
  .console-env { display: none; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--card-border); border-radius: 12px;
  background: var(--card-bg); margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-weight: 600; font-size: 15.5px; color: var(--text);
  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-size: 20px; color: var(--accent); flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }

/* ── Announce pill (EU AI Act) ─────────────────────────────── */
.announce-pill { display: inline-flex; align-items: center; gap: 6px; margin: 0 auto 18px; padding: 8px 18px; border: 1px solid rgba(200, 255, 0, 0.35); border-radius: 999px; background: rgba(200, 255, 0, 0.06); color: var(--text-soft); font-size: 13px; text-decoration: none; transition: var(--transition); }
.announce-pill strong { color: var(--accent); font-weight: 600; }
.announce-pill .arrow { color: var(--accent); }
.announce-pill:hover { border-color: rgba(200, 255, 0, 0.6); background: rgba(200, 255, 0, 0.1); }
.hero-note a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 3px; }
.hero-note a:hover { color: var(--accent); }
@media (max-width: 640px) { .announce-pill { font-size: 12px; padding: 7px 14px; } }
