/* ═══════════════════════════════════════════════════
   OVERVIEW PAGE — Standalone scrollable page
   ═══════════════════════════════════════════════════ */
body.overview-body {
  overflow: auto;
  height: auto;
  width: 100%;
}

/* ─── NAV ─── */
.ov-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,11,15,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ov-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.ov-nav-logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--green-go), var(--cyan-volume));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-inverse);
}
.ov-nav-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.ov-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ov-nav-link {
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.2s;
  border: 1px solid transparent;
}
.ov-nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}
.ov-nav-link.primary {
  background: linear-gradient(135deg, var(--green-go), var(--cyan-volume));
  color: var(--text-inverse);
  font-weight: 700;
}
.ov-nav-link.primary:hover { opacity: 0.9; }

/* ─── HERO ─── */
.ov-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}
.ov-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 20%, rgba(0,230,118,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 70% 60%, rgba(68,138,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 50% 80%, rgba(179,136,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.ov-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}
.ov-hero-psi {
  font-family: var(--font-mono);
  font-size: 76px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-go), var(--cyan-volume));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  animation: ovFadeUp 0.7s ease forwards;
}
.ov-hero-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 12px;
  position: relative;
  animation: ovFadeUp 0.7s 0.08s ease forwards;
  opacity: 0;
}
.ov-hero-title span {
  background: linear-gradient(135deg, var(--green-go), var(--cyan-volume));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ov-hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
  position: relative;
  animation: ovFadeUp 0.7s 0.16s ease forwards;
  opacity: 0;
}
.ov-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--green-go), var(--cyan-volume));
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  position: relative;
  animation: ovFadeUp 0.7s 0.24s ease forwards;
  opacity: 0;
}
.ov-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,230,118,0.2); }
.ov-scroll-hint {
  position: absolute;
  bottom: 28px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  animation: ovPulse 2s ease infinite;
}

@keyframes ovFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ovPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(4px); }
}

/* ─── SECTIONS ─── */
.ov-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.ov-section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ov-section-label.green { color: var(--green-go); }
.ov-section-label.blue { color: var(--blue-momentum); }
.ov-section-label.purple { color: var(--purple-ai); }
.ov-section-label.amber { color: var(--amber-warn); }
.ov-section-label.cyan { color: var(--cyan-volume); }
.ov-section-label.teal { color: var(--teal-swing); }
.ov-section-label.orange { color: var(--orange-scalp); }

.ov-section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.ov-section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 40px;
}
.ov-divider {
  border: none;
  height: 1px;
  background: var(--border-subtle);
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── FEATURE GRID ─── */
.ov-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ov-feature-grid.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}
.ov-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s;
}
.ov-feature-card:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
}
.ov-feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.ov-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ov-feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── GATE TABLE ─── */
.ov-gate-table {
  width: 100%;
  border-collapse: collapse;
}
.ov-gate-table th {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.ov-gate-table td {
  font-size: 14.5px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.ov-gate-table tr:hover td { background: rgba(255,255,255,0.015); }
.ov-gate-table .mono {
  font-family: var(--font-mono);
  font-size: 13px;
}

/* ─── STRATEGY CARDS (overview version) ─── */
.ov-strat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.ov-strat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}
.ov-strat-card.scalp::before { background: var(--orange-scalp); }
.ov-strat-card.intraday::before { background: var(--blue-momentum); }
.ov-strat-card.swing::before { background: var(--teal-swing); }
.ov-strat-card.vault::before { background: var(--purple-ai); }
.ov-strat-card:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
}
.ov-strat-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.ov-strat-card .tf {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.ov-strat-card .desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.ov-strat-stats {
  display: flex;
  gap: 20px;
}
.ov-strat-stats .s-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
}
.ov-strat-stats .s-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── PRICING CARDS ─── */
.ov-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.ov-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
}
.ov-price-card:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
}
.ov-price-card.featured {
  border-color: rgba(0,230,118,0.2);
  box-shadow: 0 0 40px rgba(0,230,118,0.06);
}
.ov-price-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--green-go-dim);
  color: var(--green-go);
  letter-spacing: 0.5px;
}
.ov-price-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ov-price-amount {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 4px;
}
.ov-price-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ov-price-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ov-price-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ov-price-features li::before {
  content: '✓';
  color: var(--green-go);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── TECH STACK ─── */
.ov-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ov-tech-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.ov-tech-item:hover { border-color: var(--border-active); }
.ov-tech-item .name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.ov-tech-item .role {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ─── ROADMAP ─── */
.ov-roadmap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ov-phase {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.ov-phase::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}
.ov-phase:nth-child(1)::before { background: var(--green-go); }
.ov-phase:nth-child(2)::before { background: var(--blue-momentum); }
.ov-phase:nth-child(3)::before { background: var(--purple-ai); }
.ov-phase:nth-child(4)::before { background: var(--cyan-volume); }
.ov-phase h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.ov-phase .weeks {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.ov-phase ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ov-phase ul li {
  font-size: 13.5px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}
.ov-phase ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-weight: 700;
}

/* ─── FOOTER ─── */
.ov-footer {
  text-align: center;
  padding: 48px 32px;
  border-top: 1px solid var(--border-subtle);
}
.ov-footer-logo {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-go), var(--cyan-volume));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.ov-footer p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
