/* Design tokens */
:root {
  --bg: #17160f;
  --panel: #201f17;
  --line: #46402f;
  --line-soft: #322d21;
  --amber: #ffb020;
  --amber-dim: #cf8a12;
  --amber-glow: rgba(255, 176, 32, 0.14);
  --green: #35e08a;
  --red: #ff5f5f;
  --text: #ffffff;
  --text-bright: #ffffff;
  --muted: #ddd7c8;
  --muted-2: #a39c8c;
  --muted-3: #7a7364;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --mono-display: "Space Grotesk", "IBM Plex Mono", var(--mono);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--mono);
  color: var(--text);
  background: var(--bg);
}

/* Reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
svg { display: block; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin-top: 0; }

/* Background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 60% at 50% 0%, black 35%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 85% 60% at 50% 0%, black 35%, transparent 90%);
}
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  opacity: .6;
}

/* Page layout */
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
section { padding: 52px 0; }
.section-grid { display: grid; grid-template-columns: 1fr 0.95fr; align-items: center; gap: 44px; }
.hero { padding-top: 40px; }

/* Section headings */
.section-heading {
  max-width: 640px;
  margin: 0 0 32px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.faq .section-heading { max-width: none; }

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-family: var(--mono-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 12.5px;
}
.status-pill strong { color: var(--green); font-weight: 700; }
.cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--amber);
  margin-left: 3px;
  animation: blink 1s steps(1) infinite;
  vertical-align: -2px;
}

h1 {
  margin: 16px 0 16px;
  font-family: var(--mono-display);
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--text-bright);
}
h1 span { color: var(--amber); }
h2 {
  margin: 0 0 10px;
  font-family: var(--mono-display);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--text-bright);
}
h3 { font-family: var(--mono-display); font-size: 18px; letter-spacing: -0.01em; font-weight: 700; color: var(--text-bright); }
.lead, .section-text { color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.lead { max-width: 560px; }

/* Motion */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes blink { 50% { opacity: 0; } }
@keyframes line-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
@keyframes popular-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 176, 32, .22); }
  50% { box-shadow: 0 0 26px 3px rgba(255, 176, 32, .16); }
}
