/* ================================
   ALPHAEDGE OS — ALPHA TRADES DESIGN SYSTEM
   Dark terminal aesthetic · Sharp corners · Orange #FF6B00
   ================================ */

:root {
  --background: hsl(0 0% 3%);          /* #080808 */
  --foreground: hsl(0 0% 96%);        /* #F5F5F5 */
  --card: hsl(0 0% 5%);               /* #0E0E0E */
  --primary: hsl(25 100% 50%);        /* #FF6B00 orange */
  --primary-hover: hsl(25 100% 54%);  /* #FF8C00 */
  --primary-foreground: hsl(0 0% 0%);  /* #000000 */
  --muted: hsl(0 0% 7%);              /* #111111 */
  --muted-foreground: hsl(0 0% 63%);  /* #A0A0A0 */
  --border: hsl(0 0% 100% / 0.05);
  --ring: hsl(25 100% 50%);           /* #FF6B00 */
  --green: hsl(158 85% 40%);          /* #00C896 */
  --red: hsl(0 79% 58%);              /* #FF3B3B */
  --radius: 0px;
  --font-head: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-fragment: 'Fragment Mono', monospace;
  --max-w: 1100px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── TICKER BAR ─────────────────────────────── */
.ticker-wrap {
  background: var(--background);
  border-bottom: 1px solid hsl(0 0% 100% / 0.06);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
}
.ticker-item .ticker-sym { color: var(--foreground); font-weight: 600; }
.ticker-item .ticker-up   { color: var(--primary); }
.ticker-item .ticker-down { color: var(--red); }
.ticker-sep {
  color: hsl(0 0% 100% / 0.08);
  font-size: 10px;
}

/* ─── NAV ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 36px; /* below ticker */
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(0 0% 100% / 0.05);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--foreground);
}
.nav-logo .logo-normal { color: var(--foreground); }
.nav-logo .logo-orange { color: var(--primary); }
.nav-logo .logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-left: 3px;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--foreground); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.2s, box-shadow 0.2s;
  border: 1px solid var(--primary);
}
.nav-discord-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.25);
}

/* ─── HERO ───────────────────────────────────── */
.hero-section {
  padding-top: 100px; /* nav 64px + ticker 36px */
  min-height: 100vh;
  display: grid;
  grid-template-columns: 40% 60%;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsl(25 100% 50% / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, hsl(25 100% 50% / 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black 20%, transparent 80%);
  pointer-events: none;
}
.hero-left {
  padding: 80px 48px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--primary);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--foreground);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--primary);
}
.hero-lead {
  font-size: 17px;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-meta-item span { color: var(--foreground); font-weight: 600; }
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 32px rgba(255, 107, 0, 0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid hsl(0 0% 100% / 0.12);
  color: var(--muted-foreground);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#ascii-sphere-canvas {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
}

/* ─── STATS BAR ──────────────────────────────── */
.stats-section {
  border-top: 1px solid hsl(0 0% 100% / 0.05);
  border-bottom: 1px solid hsl(0 0% 100% / 0.05);
  background: var(--card);
  padding: 0;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-card {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid hsl(0 0% 100% / 0.05);
}
.stat-card:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-foreground);
}

/* ─── SECTION LABELS ──────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 480px;
  margin: 0 auto;
}

/* ─── FEATURES GRID ───────────────────────────── */
.features-section {
  padding: 96px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsl(0 0% 100% / 0.05);
  border: 1px solid hsl(0 0% 100% / 0.05);
}
.feature-card {
  background: var(--card);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
  border-left: 3px solid transparent;
}
.feature-card:hover {
  background: hsl(0 0% 100% / 0.02);
  border-left-color: var(--primary);
}
.feature-icon {
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ─── HOW IT WORKS ───────────────────────────── */
.how-section {
  padding: 96px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.how-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.how-canvas-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: #000;
  border: 1px solid hsl(0 0% 100% / 0.05);
  overflow: hidden;
}
#torus-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.how-content {}
.how-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.how-body {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 40px;
}
.how-steps { display: flex; flex-direction: column; gap: 24px; }
.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.step-info {}
.step-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.signal-preview {
  background: #0d1117;
  border: 1px solid hsl(0 0% 100% / 0.08);
  border-radius: 0;
  padding: 24px;
  font-family: var(--font-mono);
}
.signal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.signal-pill {
  background: rgba(255, 107, 0, 0.15);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
}
.signal-time {
  font-size: 11px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
}
.signal-direction {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.long-tag {
  background: rgba(0, 200, 150, 0.15);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
}
.signal-levels { display: flex; flex-direction: column; gap: 8px; }
.level-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: hsl(0 0% 100% / 0.03);
}
.level-key {
  font-size: 10px;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}
.level-val {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
}
.level-val.tgt { color: var(--green); }
.level-val.stp { color: var(--red); }
.pts-tag { font-size: 11px; font-weight: 700; margin-left: 8px; }
.signal-rr {
  text-align: center;
  font-size: 11px;
  color: var(--muted-foreground);
  margin-top: 12px;
  padding: 8px;
  border: 1px solid hsl(0 0% 100% / 0.06);
  font-family: var(--font-mono);
}
.signal-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted-foreground);
  margin-top: 12px;
  font-family: var(--font-mono);
}

/* ─── SIGNALS / DISCORD CTA ──────────────────── */
.signals-section {
  padding: 96px 24px;
  background: var(--card);
  border-top: 1px solid hsl(0 0% 100% / 0.05);
  border-bottom: 1px solid hsl(0 0% 100% / 0.05);
}
.signals-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.signals-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsl(0 0% 100% / 0.05);
  border: 1px solid hsl(0 0% 100% / 0.05);
  margin-top: 48px;
}
.check-item {
  background: var(--background);
  padding: 28px 24px;
  text-align: left;
}
.check-icon {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.check-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 4px;
}
.check-desc {
  font-size: 12px;
  color: var(--muted-foreground);
}
.discord-cta-row {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #5865F2;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
}
.discord-btn:hover {
  background: #4752C4;
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.3);
}
.discord-sub { font-size: 13px; color: var(--muted-foreground); }

/* ─── RESULTS / TRADE HISTORY ────────────────── */
.results-section {
  padding: 96px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.result-card {
  background: var(--card);
  border: 1px solid hsl(0 0% 100% / 0.05);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color 0.2s;
}
.result-card.win { border-top: 2px solid var(--green); }
.result-card:hover { border-color: hsl(0 0% 100% / 0.1); }
.result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.result-ticker {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.result-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-foreground);
}
.result-dir {
  font-size: 16px;
  font-weight: 700;
}
.result-dir.up { color: var(--green); }
.result-dir.dn { color: var(--red); }
.result-body { display: flex; flex-direction: column; gap: 4px; }
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.result-row + .result-row { border-top: 1px solid hsl(0 0% 100% / 0.04); }
.r-key {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.r-val {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-foreground);
  font-weight: 500;
}
.r-val.pts-win {
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
}
.results-disclaimer {
  font-size: 12px;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 24px;
}

/* ─── PRICING ─────────────────────────────────── */
.pricing-section {
  padding: 96px 24px;
  background: var(--card);
  border-top: 1px solid hsl(0 0% 100% / 0.05);
  border-bottom: 1px solid hsl(0 0% 100% / 0.05);
}
.pricing-grid {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pricing-card {
  background: var(--background);
  border: 1px solid hsl(0 0% 100% / 0.05);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.15);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 40px rgba(255, 107, 0, 0.12); }
  50%       { box-shadow: 0 0 40px rgba(255, 107, 0, 0.28); }
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  display: block;
  margin-bottom: 10px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.04em;
}
.price-period {
  font-size: 15px;
  color: var(--muted-foreground);
}
.pricing-tagline {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 28px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pf-item {
  font-size: 13px;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pf-item.dimmed { color: hsl(0 0% 63% / 0.5); }
.pf-check { color: var(--primary); font-weight: 700; }
.pf-x { color: hsl(0 0% 100% / 0.2); }
.btn-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
}
.btn-cta:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.25);
}
.btn-cta-outline {
  display: block;
  text-align: center;
  padding: 14px;
  background: transparent;
  border: 1px solid hsl(0 0% 100% / 0.1);
  color: var(--muted-foreground);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.btn-cta-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pricing-note {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-foreground);
  margin-top: 24px;
}

/* ─── TESTIMONIALS ────────────────────────────── */
.testimonials-section {
  padding: 96px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid hsl(0 0% 100% / 0.05);
  border-left: 3px solid var(--primary);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.1);
  transform: translateY(-2px);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 56px;
  color: var(--primary);
  line-height: 0.6;
  margin-bottom: 16px;
}
.quote-text {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 24px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-initial {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--foreground);
  display: block;
}
.author-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-foreground);
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── FAQ ACCORDION ───────────────────────────── */
.faq-section {
  padding: 96px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.06);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  font-size: 18px;
  color: var(--muted-foreground);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ─── FINAL CTA ───────────────────────────────── */
.final-cta {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.final-sub {
  font-size: 17px;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 40px;
}
.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ───────────────────────────────────── */
.footer {
  border-top: 1px solid hsl(0 0% 100% / 0.05);
  padding: 56px 24px 32px;
  background: var(--card);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: 12px;
}
.footer-logo .logo-normal {}
.footer-logo .logo-orange { color: var(--primary); }
.footer-logo .logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-left: 3px;
  margin-top: -2px;
}
.footer-tagline { font-size: 14px; color: var(--muted-foreground); margin-bottom: 8px; }
.footer-col {}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-subscribe { display: flex; gap: 0; }
.subscribe-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--background);
  border: 1px solid hsl(0 0% 100% / 0.08);
  border-right: none;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-input:focus { border-color: var(--primary); }
.subscribe-btn {
  padding: 10px 16px;
  background: var(--primary);
  color: #000;
  border: 1px solid var(--primary);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-btn:hover { background: var(--primary-hover); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid hsl(0 0% 100% / 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 480px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: hsl(0 0% 100% / 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ─── FADE IN UP ANIMATIONS ───────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px 40px; }
  .hero-headline { font-size: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-canvas-wrap { max-width: 480px; }
  .signals-checklist { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-top: 1px solid hsl(0 0% 100% / 0.05); }
  .stat-card:nth-child(4) { border-top: 1px solid hsl(0 0% 100% / 0.05); border-right: none; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-left { padding: 48px 16px 32px; }
  .section-header { margin-bottom: 40px; }
  .features-section { padding: 64px 16px; }
  .how-section { padding: 64px 16px; }
  .signals-section { padding: 64px 16px; }
  .results-section { padding: 64px 16px; }
  .pricing-section { padding: 64px 16px; }
  .testimonials-section { padding: 64px 16px; }
  .faq-section { padding: 64px 16px; }
  .final-cta { padding: 64px 16px; }
  .footer { padding: 40px 16px 24px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-top: 1px solid hsl(0 0% 100% / 0.05); }
  .stat-card:first-child { border-top: none; }
}