:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #f5f0e8;
  --text-muted: rgba(245, 240, 232, 0.5);
  --text-dim: rgba(245, 240, 232, 0.25);
  --border: rgba(245, 240, 232, 0.08);
  --green: #34d399;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 64px 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { }

.stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero scan visual */
.hero-scan {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  z-index: 1;
}

.scan-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  animation: scanExpand 3s ease-out infinite;
}

.scan-ring.ring-2 { animation-delay: 1s; }
.scan-ring.ring-3 { animation-delay: 2s; }

@keyframes scanExpand {
  0% { width: 100px; height: 100px; opacity: 0.6; }
  100% { width: 320px; height: 320px; opacity: 0; }
}

.scan-crosshair {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
}

.scan-crosshair::before {
  content: '';
  position: absolute;
  width: 1px; height: 100%;
  background: var(--accent);
  left: 50%; transform: translateX(-50%);
}

.scan-crosshair::after {
  content: '';
  position: absolute;
  height: 1px; width: 100%;
  background: var(--accent);
  top: 50%; transform: translateY(-50%);
}

/* TICKER */
.ticker-wrap {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  background: var(--bg-2);
}

.ticker-label {
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-2);
  padding: 12px 16px;
  z-index: 2;
  border-right: 1px solid var(--border);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
  padding-left: 160px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 24px;
}

.ticker-name {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.ticker-score {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 7px;
  border-radius: 4px;
}

.ticker-sep {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  padding: 0 4px;
}

/* FEATURES */
.features {
  padding: 100px 64px;
  border-bottom: 1px solid var(--border);
}

.features-header {
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 40px 36px;
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.feature-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* HOW SECTION */
.how-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-bottom: 1px solid var(--border);
}

.how-left {
  padding: 80px 64px;
  border-right: 1px solid var(--border);
  background: var(--bg-2);
}

.how-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.score-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.score-ring-wrap {
  position: relative;
  width: 120px; height: 120px;
}

.score-ring {
  width: 120px; height: 120px;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}

.ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
}

.score-number {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.score-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

.score-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.meta-label {
  color: var(--text-muted);
  font-family: var(--font-body);
}

.meta-val {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

.meta-val.up { color: var(--green); }

.meta-val.low { color: var(--accent); }

.how-right {
  padding: 80px 64px;
}

.how-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
  margin-top: 16px;
}

.how-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* OUTCOMES */
.outcomes {
  padding: 80px 64px;
  border-bottom: 1px solid var(--border);
}

.outcomes-header { margin-bottom: 48px; }

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}

.outcome-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.outcome-row:first-child { border-top: 1px solid var(--border); }

.outcome-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.outcome-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.outcome-text strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.outcome-text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 100px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 20px;
}

.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 28px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-scan { display: none; }

  .hero-headline { font-size: 40px; }

  .hero-stats { gap: 20px; }

  .stat-value { font-size: 22px; }

  .features { padding: 60px 24px; }

  .features-grid { grid-template-columns: 1fr; }

  .how-section { grid-template-columns: 1fr; }

  .how-left {
    padding: 48px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .how-right { padding: 48px 24px; }

  .outcomes { padding: 60px 24px; }

  .closing { padding: 60px 24px; }

  .footer { padding: 20px 24px; flex-direction: column; gap: 12px; align-items: flex-start; }

  .ticker-label { display: none; }

  .ticker-track { padding-left: 16px; }
}