﻿:root {
  --bg: #0A0E14;
  --panel: #12161F;
  --panel-alt: #0D1119;
  --hairline: #1E2530;
  --text: #E4E7EB;
  --muted: #6B7280;
  --muted-dim: #4B5563;
  --gold: #D4A24C;
  --crimson: #C13B4A;
  --green: #3FBF7F;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.mono {
  font-family: ui-monospace, "SF Mono", "Roboto Mono", Menlo, monospace;
}

a { text-decoration: none; color: inherit; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  background: rgba(10,14,20,0.9);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--hairline);
  transition: all 0.15s ease;
}

.btn-gold {
  background: var(--gold);
  color: #0A0E14;
  border-color: var(--gold);
}

.btn-gold:hover {
  opacity: 0.88;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--hairline);
}

.btn-ghost:hover {
  border-color: var(--muted);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* Hero */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 24px 70px;
  text-align: center;
}

.hero-ticker {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: ui-monospace, "SF Mono", "Roboto Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--muted-dim);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Features */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 90px;
}

.features h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 44px;
  letter-spacing: -0.01em;
}

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

.feature-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  padding: 28px 24px;
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
}

/* About teaser */
.about-teaser {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--panel-alt);
}

.about-teaser-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 70px 24px;
  text-align: center;
}

.about-teaser h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

.about-teaser p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-weight: 700;
}

.footer-nav {
  display: flex;
  gap: 22px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--muted);
}

.disclaimer {
  font-size: 12px;
  color: var(--muted-dim);
  max-width: 720px;
  margin-bottom: 16px;
}

.copyright {
  font-size: 12px;
  color: var(--muted-dim);
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .hero h1 { font-size: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
}

/* Product page */
.page-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 24px 50px;
  text-align: center;
}

.page-hero h1 {
  font-size: 38px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.product-block {
  padding: 60px 24px;
  border-top: 1px solid var(--hairline);
}

.product-block.alt {
  background: var(--panel-alt);
}

.product-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.product-block-inner.reverse {
  direction: rtl;
}

.product-block-inner.reverse > * {
  direction: ltr;
}

.product-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.product-text p {
  color: var(--muted);
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
}

.check-list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Mock panel */
.mock-panel {
  background: var(--panel);
  border: 1px solid var(--hairline);
  overflow: hidden;
}

.mock-panel-header {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--hairline);
  background: var(--panel-alt);
}

.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}

.mock-row-head {
  font-size: 11px;
  color: var(--muted-dim);
  font-weight: 600;
}

.up { color: var(--green); font-family: ui-monospace, monospace; }
.hot { color: var(--green); font-weight: 700; font-family: ui-monospace, monospace; }
.score-hi { color: var(--crimson); font-weight: 700; font-family: ui-monospace, monospace; }
.score-mid { color: var(--gold); font-weight: 700; font-family: ui-monospace, monospace; }
.score-lo { color: var(--text); font-family: ui-monospace, monospace; }

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  width: fit-content;
}

.tag-blue { color: #5B8DEF; background: rgba(91,141,239,0.12); }
.tag-purple { color: #A78BFA; background: rgba(167,139,250,0.12); }
.tag-gold { color: var(--gold); background: rgba(212,162,76,0.12); }

.news-mock { padding-bottom: 8px; }

.news-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
}

.news-headline {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flame { font-size: 10px; }
.flame-hot { color: var(--crimson); }
.flame-warm { color: #E8A33D; }

.cta-band {
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--hairline);
}

.cta-band h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

@media (max-width: 720px) {
  .product-block-inner,
  .product-block-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* About page */
.about-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

.about-body p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 22px;
}

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 40px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

/* Explainer band */
.explainer-band {
  background: var(--panel-alt);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.explainer-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}

.explainer-inner h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

.explainer-inner p {
  color: var(--muted);
  font-size: 15px;
}

/* Pricing page */
.pricing-block {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  padding: 40px 32px;
  text-align: center;
}

.pricing-name {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-amount {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 28px;
}

.placeholder-tag {
  font-size: 15px;
  color: var(--gold);
  border: 1px dashed var(--gold);
  padding: 4px 14px;
}

.pricing-list {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-cta {
  display: block;
  width: 100%;
  margin-bottom: 14px;
}

.pricing-note {
  font-size: 12px;
  color: var(--muted-dim);
}

.faq-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 30px 24px 90px;
}

.faq-block h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 36px;
}

.faq-item {
  border-top: 1px solid var(--hairline);
  padding: 22px 0;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
  font-size: 14px;
}

/* A+ setup band */
.a-plus-band .explainer-inner {
  max-width: 720px;
  text-align: left;
}

.a-plus-band h2 {
  text-align: center;
  margin-bottom: 24px;
}

.a-plus-band p {
  margin-bottom: 18px;
}

.a-plus-band em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* Wordmark L-arrow */
.l-arrow {
  position: relative;
  display: inline-block;
}

.l-arrow {
  color: var(--green);
}

.l-arrow::after {
  content: "";
  position: absolute;
  top: 0.20em;
  left: 0.00em;
  width: 0;
  height: 0;
  border-left: 0.16em solid transparent;
  border-right: 0.16em solid transparent;
  border-bottom: 0.3em solid var(--green);
}









/* Pricing page - two-column layout */
.pricing-block.two-col {
  max-width: 820px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.pricing-block.two-col .pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-block.two-col .pricing-list {
  flex-grow: 1;
}

.pricing-card {
  position: relative;
  border-color: #3A4150;
}

.pricing-card.featured {
  border-color: var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0E14;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  white-space: nowrap;
}

.per-month {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 720px) {
  .pricing-block.two-col {
    grid-template-columns: 1fr;
  }
}


/* Hero edge callout */
.hero-edge {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  max-width: 620px;
  margin: 0 auto 36px;
}

/* Feedback link */
.feedback-line {
  font-size: 12px;
  color: var(--muted-dim);
  margin-bottom: 8px;
}

.feedback-link {
  color: var(--gold);
  text-decoration: underline;
}

.feedback-link:hover {
  opacity: 0.85;
}

/* News mock - decoded verdict layout */
.news-mock-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--hairline);
}

.news-mock-headline-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.news-mock-headline-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}

.news-mock-decoded {
  font-size: 12px;
  line-height: 1.5;
  padding-left: 23px;
}

.news-mock-decoded.bullish {
  color: var(--green);
}

.news-mock-decoded.bearish {
  color: var(--crimson);
}
