:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface-2: #1c2330;
  --fg: #e8eaf0;
  --fg-muted: #8b95a5;
  --accent: #f0b429;
  --accent-dim: rgba(240, 180, 41, 0.15);
  --green: #3dd68c;
  --green-dim: rgba(61, 214, 140, 0.12);
  --red: #f75a5a;
  --red-dim: rgba(247, 90, 90, 0.12);
  --blue: #58a6ff;
  --border: rgba(255,255,255,0.07);
  --radius: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
}
.label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.label-dot.green { background: var(--green); }
.label-dot.amber { background: var(--accent); }
.label-dot.blue { background: var(--blue); }

/* HERO CTAS */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0d1117;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--fg-muted); color: var(--accent); }

/* SIGNAL STRIP */
.signal-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 32px;
}
.strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.strip-ticker {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  font-family: 'DM Sans', monospace;
  letter-spacing: 0.04em;
}
.strip-signal {
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', monospace;
  padding: 2px 10px;
  border-radius: 4px;
}
.strong-bull { color: var(--green); background: var(--green-dim); }
.mild-bull { color: #7ee8a8; background: rgba(126,232,168,0.1); }
.neutral { color: var(--fg-muted); background: rgba(139,149,165,0.1); }
.mild-bear { color: #e8887a; background: rgba(232,136,122,0.1); }
.strong-bear { color: var(--red); background: var(--red-dim); }
.strip-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 16px;
  opacity: 0.6;
}

/* FEATURES */
.features {
  padding: 96px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 56px;
}
.features-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.features-sub {
  font-size: 16px;
  color: var(--fg-muted);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface); }
.accent-card { background: var(--surface-2); }
.feature-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.accent-num { color: var(--fg-muted); }
.feature-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 34px);
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  font-style: normal;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body strong { color: var(--fg); }

/* CLOSING */
.closing {
  padding: 96px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-inner { max-width: 680px; }
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.closing-note {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: var(--surface);
}
.closing-note strong { color: var(--fg); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--fg);
}
.footer-desc {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.7;
  opacity: 0.7;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 100px 20px 64px; }
  .features, .manifesto, .closing, .footer { padding-left: 20px; padding-right: 20px; }
  .signal-strip { padding: 24px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .manifesto-quote { font-size: 22px; }
}
@media (max-width: 480px) {
  .hero-labels { gap: 12px; }
  .strip-items { gap: 12px 20px; }
}

/* PRICING */
.pricing {
  padding: 96px 32px;
  background: var(--bg);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.15;
}
.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: rgba(255,255,255,0.15); }
.pricing-card--featured {
  background: var(--surface-2);
  border-color: var(--accent);
  transform: translateY(-8px);
}
.pricing-card--current { border-color: var(--green); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d1117;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card-header { display: flex; flex-direction: column; gap: 8px; }
.plan-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.plan-price { display: flex; align-items: baseline; gap: 2px; }
.plan-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-period { font-size: 15px; color: var(--fg-muted); margin-left: 4px; }
.plan-tagline { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.feature-check {
  color: var(--green);
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--fg);
  background: transparent;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.plan-cta:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}
.plan-cta--featured {
  background: var(--accent);
  color: #0d1117;
  border-color: var(--accent);
}
.plan-cta--featured:hover { opacity: 0.88; color: #0d1117; }
.plan-cta--current {
  border-color: var(--green);
  color: var(--green);
  cursor: default;
}

/* PRICING FAQ */
.pricing-faq { max-width: 800px; margin: 0 auto; }
.faq-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 32px;
}
.faq-item { display: flex; flex-direction: column; gap: 8px; }
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.faq-a {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.faq-link {
  color: var(--accent);
  text-decoration: none;
}
.faq-link:hover { text-decoration: underline; }
.pricing-disclaimer {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.65;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* PRICING RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pricing { padding: 64px 20px; }
  .plan-amount { font-size: 36px; }
}

/* ── MARKET DISCLAIMER (persistent, non-dismissible) ── */
.market-disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 200;
}
.disc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.disc-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.disc-text {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.65;
  opacity: 0.85;
}
.disc-link {
  color: var(--accent);
  text-decoration: none;
  opacity: 0.9;
}
.disc-link:hover { opacity: 1; text-decoration: underline; }
.disc-sep { margin: 0 8px; opacity: 0.4; }

/* ── RISK WARNING ICON & BADGE ── */
.risk-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  cursor: default;
  vertical-align: middle;
}
.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
}
.risk-badge--low    { background: var(--green-dim); color: var(--green); }
.risk-badge--medium  { background: var(--accent-dim); color: var(--accent); }
.risk-badge--high    { background: var(--red-dim); color: var(--red); }
.risk-badge--very_high { background: var(--red-dim); color: var(--red); font-weight: 700; }

/* ── HIGH RISK BANNER ── */
.high-risk-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(247, 90, 90, 0.08);
  border: 1px solid rgba(247, 90, 90, 0.3);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--red);
}
.high-risk-banner svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .disc-inner { padding: 12px 20px; }
  .disc-text { font-size: 11px; }
}