/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050d1a;
  --bg-card: #091424;
  --fg: #c8d8e8;
  --fg-dim: #5a7a94;
  --accent: #00d4ff;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --accent-dim: rgba(0, 212, 255, 0.4);
  --amber: #ffaa00;
  --amber-glow: rgba(255, 170, 0, 0.12);
  --surface: #0d1e30;
  --border: rgba(0, 212, 255, 0.12);
  --font-head: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(12px);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { color: var(--accent); font-size: 20px; }
.brand-name { font-weight: 600; font-size: 16px; letter-spacing: 0.02em; }

.nav-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: calc(100vh - 61px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.headline-accent { color: var(--accent); }

.hero-sub {
  font-size: 16px;
  color: var(--fg-dim);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.7;
}

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

.stat { text-align: center; padding: 0 24px; }
.stat-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === HERO VISUAL === */
.hero-visual { position: relative; z-index: 1; display: flex; align-items: center; }

.correlation-display {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  font-family: var(--font-mono);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.04), inset 0 1px 0 rgba(255,255,255,0.04);
}

.corr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.corr-label {
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.corr-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #22c55e;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

.corr-streams { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.stream {
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  align-items: center;
  gap: 12px;
  animation: stream-in 0.6s ease-out both;
  animation-delay: var(--delay, 0ms);
}

@keyframes stream-in {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.stream-label {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.stream-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dim) 50%, transparent 100%);
  border-radius: 2px;
  animation: bar-load 1.5s ease-in-out infinite;
}

@keyframes bar-load {
  0% { width: 10%; opacity: 0.4; }
  50% { width: 70%; opacity: 1; }
  100% { width: 10%; opacity: 0.4; }
}

.stream-val {
  font-size: 10px;
  color: var(--fg-dim);
  text-align: right;
}

/* Matrix */
.corr-matrix { margin-bottom: 20px; }
.matrix-label {
  font-size: 9px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.matrix-cell {
  aspect-ratio: 1;
  border-radius: 3px;
}
.m-btc { background: rgba(0, 212, 255, 0.25); }
.m-eth { background: rgba(0, 212, 255, 0.5); }
.m-bridge { background: rgba(0, 212, 255, 0.75); }
.m-vol { background: rgba(255, 170, 0, 0.6); }

/* Signal row */
.corr-signal {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 6px;
}
.sig-label {
  font-size: 9px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sig-val {
  font-size: 11px;
  color: var(--fg);
  flex: 1;
}
.sig-edge {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  text-align: center;
}
.manifesto-inner { max-width: 680px; margin: 0 auto; }
.manifesto-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.label-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--border);
}
.manifesto-text {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 48px;
}
.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* === LOOP === */
.loop {
  padding: 100px 60px;
  background: var(--surface);
}
.loop-label {
  text-align: center;
  margin-bottom: 60px;
}
.loop-label span:first-child {
  display: block;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.loop-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}

.loop-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 0;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.06);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-icon { color: var(--accent); margin-bottom: 16px; }

.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.connector-line {
  width: 1px;
  height: 24px;
  background: var(--border);
}
.connector-arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-dim);
}

/* === EDGE === */
.edge {
  padding: 100px 60px;
  background: var(--bg);
}
.edge-header {
  text-align: center;
  margin-bottom: 64px;
}
.edge-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.edge-headline {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.edge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.edge-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.edge-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.06);
}

.edge-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.edge-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.edge-card p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
.closing-inner { text-align: center; }
.closing-rule {
  width: 60px; height: 2px;
  background: var(--border);
  margin: 0 auto 64px;
}
.closing-statement {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.closing-accent { color: var(--accent); }
.closing-detail p {
  font-size: 16px;
  color: var(--fg-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; color: var(--fg); font-weight: 600; }
.footer-copy { color: var(--fg-dim); }
.footer-meta { color: var(--accent-dim); letter-spacing: 0.08em; text-transform: uppercase; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px; }
  .hero-visual { display: none; }
  .loop-steps { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .edge-grid { grid-template-columns: 1fr; }
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .manifesto { padding: 64px 24px; }
  .loop { padding: 64px 24px; }
  .edge { padding: 64px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .stat-value { font-size: 22px; }
}

/* === LIVE SIGNALS SECTION === */
.signals-section {
  padding: 100px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.signals-header { text-align: center; margin-bottom: 56px; }

.signals-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 16px 0 12px;
}

.signals-sub {
  color: var(--fg-dim);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Loading state */
.signal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 60px;
  color: var(--fg-dim);
}

.loading-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.loading-text { margin-left: 8px; font-family: var(--font-mono); font-size: 13px; }

/* Signal cards grid */
.signals-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  position: relative;
  transition: border-color 0.2s;
}
.signal-card:hover { border-color: var(--accent-dim); }
.signal-card.strong-edge   { border-left: 3px solid var(--accent); }
.signal-card.moderate-edge { border-left: 3px solid var(--amber); }
.signal-card.weak-edge     { border-left: 3px solid var(--fg-dim); }

.signal-rank {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
}

.signal-pair {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.signal-leader   { font-family: var(--font-mono); font-size: 16px; font-weight: 600; color: var(--accent); }
.signal-arrow    { color: var(--fg-dim); font-size: 18px; }
.signal-follower { font-family: var(--font-mono); font-size: 16px; font-weight: 600; color: #fff; }

.signal-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.signal-stat { display: flex; flex-direction: column; gap: 2px; }
.signal-stat .stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-dim); }
.signal-stat .stat-value { font-family: var(--font-mono); font-size: 14px; color: #fff; }
.signal-stat .score-val  { color: var(--accent); }

/* Score bar */
.score-bar-track {
  height: 3px;
  background: rgba(0,212,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.6s ease;
}

/* Empty / error state */
.signal-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 13px;
  border: 1px dashed var(--border);
  border-radius: 12px;
}
.signal-error { color: var(--amber); border-color: var(--amber-glow); }

/* Footer row */
.signals-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.signals-meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); }
.signals-api-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.signals-api-link:hover { opacity: 0.7; }

/* Pulse on eyebrow dot for live section */
.eyebrow-dot.pulse {
  animation: pulseGlow 1.8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50%       { box-shadow: 0 0 0 6px transparent; }
}

@media (max-width: 768px) {
  .signals-section { padding: 60px 24px; }
  .signal-stats    { gap: 12px; }
}

/* === PRICING PAGE === */
.pricing-hero {
  padding: 100px 60px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.pricing-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.pricing-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.eyebrow-text { color: var(--accent); }
.pricing-headline {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.pricing-section {
  padding: 80px 60px 100px;
  background: var(--surface);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.06);
}
.tier-featured {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.08);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.tier-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tier-featured .tier-badge { color: var(--accent); }
.tier-quant .tier-badge { color: var(--amber); }

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-period {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-dim);
}

.tier-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 32px;
  line-height: 1.5;
}

.tier-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.feature-item {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-item::before {
  content: '✓';
  font-family: var(--font-mono);
  font-size: 12px;
  flex-shrink: 0;
}
.feature-yes { color: var(--fg); }
.feature-yes::before { color: var(--accent); }
.feature-no  { color: var(--fg-dim); opacity: 0.5; text-decoration: line-through; }
.feature-no::before  { content: '—'; color: var(--fg-dim); }

.tier-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 12px;
}
.tier-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
}
.btn-secondary:hover { border-color: var(--accent-dim); }
.btn-quant {
  background: var(--amber);
  color: var(--bg);
}

.tier-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  text-align: center;
  letter-spacing: 0.04em;
}

/* FAQ */
.pricing-faq {
  padding: 100px 60px;
  background: var(--bg);
}
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  text-align: center;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.faq-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.faq-item p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
}
.faq-item code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  padding: 1px 5px;
  border-radius: 3px;
}

/* Checkout Success */
.success-section {
  min-height: calc(100vh - 61px - 81px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}
.success-inner {
  max-width: 640px;
  text-align: center;
}
.success-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.success-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.success-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.success-body {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 56px;
}
.success-next {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 40px;
  text-align: left;
}
.next-title {
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.next-steps { display: flex; flex-direction: column; gap: 24px; }
.next-step { display: flex; gap: 20px; align-items: flex-start; }
.next-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 2px;
  flex-shrink: 0;
}
.next-step strong { font-size: 15px; display: block; margin-bottom: 4px; }
.next-step p { font-size: 13px; color: var(--fg-dim); line-height: 1.6; margin: 0; }
.next-step code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  padding: 1px 5px;
  border-radius: 3px;
}
.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.success-support {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
}
.success-support a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent-dim); }

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-hero { padding: 64px 24px 48px; }
  .pricing-section { padding: 48px 24px 64px; }
  .pricing-faq { padding: 64px 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .success-section { padding: 48px 24px; }
  .success-actions { flex-direction: column; }
  .success-actions .tier-btn { width: 100%; }
}