/* ── Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0b0d12;
  --bg-alt:    #0f1117;
  --surface:   #141720;
  --border:    #1e2533;
  --accent:    #00e5a0;
  --accent-dim:#00b37e;
  --red:       #f0544f;
  --text:      #e4e8f0;
  --text-muted:#7a869a;
  --radius:    12px;
  --radius-lg: 20px;
  --font:      'Inter', system-ui, sans-serif;
  --mono:      'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm   { padding: 8px 18px; font-size: 0.85rem; }
.btn--lg   { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* Primary (default) */
.btn:not(.btn--ghost) { background: var(--accent); color: #000; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 18, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav__logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: var(--mono);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,229,160,.12) 0%, transparent 70%);
}
.hero__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(0,229,160,.1);
  border: 1px solid rgba(0,229,160,.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 760px;
}
.hero__sub {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Stats ────────────────────────────────────────────── */
.stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 32px;
  overflow: hidden;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 40px;
  flex: 1;
  min-width: 120px;
}
.stat__val {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--mono);
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}
.stat__unit { font-size: 1.2rem; font-weight: 600; }
.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 4px;
  font-weight: 500;
}
.stat__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section__header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
}
.section__sub { color: var(--text-muted); max-width: 480px; text-align: center; }

/* ── Chart card ───────────────────────────────────────── */
.chart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.chart-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.chart-meta__item { display: flex; align-items: center; gap: 6px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green { background: var(--accent); }
.dot--red   { background: var(--red); }

.equity-svg {
  width: 100%;
  height: 260px;
  display: block;
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: var(--mono);
}

/* ── Steps ────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
}
.step__num {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }
.step__arrow {
  font-size: 1.5rem;
  color: var(--border);
  padding: 0 16px;
  flex-shrink: 0;
}

/* ── Bot grid ─────────────────────────────────────────── */
.bot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.bot-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s;
}
.bot-card:hover { border-color: var(--accent); }
.bot-card__id    { font-family: var(--mono); font-size: 0.72rem; color: var(--accent); font-weight: 600; letter-spacing: 1px; }
.bot-card__pair  { font-size: 1.1rem; font-weight: 700; letter-spacing: -.3px; }
.bot-card__style { font-size: 0.8rem; color: var(--text-muted); }

/* ── Pricing ──────────────────────────────────────────── */
.pricing-card {
  display: flex;
  gap: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.pricing-card__left  { flex: 1.5; min-width: 280px; }
.pricing-card__right { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 24px; justify-content: center; }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price__amount {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: var(--mono);
  letter-spacing: -2px;
  color: var(--accent);
}
.price__period { color: var(--text-muted); font-size: 1rem; }
.pricing-card__tagline { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 28px; }

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}
.check { color: var(--accent); font-weight: 700; flex-shrink: 0; }

.pricing-card__secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--border);
  padding-left: 16px;
  gap: 2px;
}
.proof-stat__val {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--mono);
  letter-spacing: -1px;
  line-height: 1;
}
.proof-stat__lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--accent); }
.faq__item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__disclaimer {
  max-width: 560px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer__copy { font-size: 0.75rem; color: var(--text-muted); }

/* ── Transparency callout ─────────────────────────────── */
.transparency {
  background: rgba(0,229,160,.06);
  border-top: 1px solid rgba(0,229,160,.15);
  border-bottom: 1px solid rgba(0,229,160,.15);
  padding: 16px 0;
}
.transparency__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.transparency__icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.transparency__body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.transparency__body strong { color: var(--text); }
.transparency__link {
  color: var(--accent);
  text-decoration: none;
  margin-left: 6px;
  font-weight: 600;
}

/* ── Going live card ──────────────────────────────────── */
.going-live {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(0,229,160,.05);
  border: 1px solid rgba(0,229,160,.2);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 20px;
}
.going-live__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 0 3px rgba(0,229,160,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,229,160,.2); }
  50%       { box-shadow: 0 0 0 7px rgba(0,229,160,.05); }
}
.going-live__body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.going-live__body strong { color: var(--text); }

/* ── Loading state on checkout btn ───────────────────── */
.btn--loading {
  opacity: .7;
  pointer-events: none;
  cursor: not-allowed;
}

/* ── Nav links ────────────────────────────────────────── */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.05); }

/* ── Trade log CTA ────────────────────────────────────── */
.tradelog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(0,229,160,.05);
  border: 1px solid rgba(0,229,160,.18);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.tradelog-cta__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tradelog-cta__text strong { font-size: 0.95rem; }
.tradelog-cta__text span  { font-size: 0.82rem; color: var(--text-muted); }

/* ── Dashboard mockup ─────────────────────────────────── */
.dash-mockup {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  margin-bottom: 48px;
}
.dash-mockup__bar {
  background: #090c10;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.dash-mockup__dots {
  display: flex; gap: 5px; flex-shrink: 0;
}
.dash-mockup__dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.dash-mockup__dots span:nth-child(1) { background: #f0544f; }
.dash-mockup__dots span:nth-child(2) { background: #f9b233; }
.dash-mockup__dots span:nth-child(3) { background: #2dba4e; }
.dash-mockup__url {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--mono);
  margin: 0 auto;
}
.dash-mockup__body {
  background: var(--bg);
  padding: 20px;
  position: relative;
}

/* Dashboard header */
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.dash-logo {
  font-family: var(--mono);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.5px;
}
.dash-logo span { color: var(--accent); }
.dash-header__right { display: flex; align-items: center; gap: 14px; }
.dash-live-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(0,229,160,.1);
  border: 1px solid rgba(0,229,160,.2);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}
.dash-user { font-size: 0.78rem; color: var(--text-muted); }

/* Stats strip */
.dash-stats {
  display: flex; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  margin-bottom: 16px;
}
.dash-stat {
  display: flex; flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  flex: 1;
}
.dash-stat__val {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1;
}
.dash-stat__lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-top: 4px;
  font-weight: 500;
}
.dash-stat__div { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Main grid */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* Signal card */
.dash-signal {
  background: var(--surface);
  border: 1px solid rgba(0,229,160,.25);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dash-signal__head {
  display: flex; align-items: center; justify-content: space-between;
}
.dash-signal__live {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.dash-signal__ago { font-size: 0.72rem; color: var(--text-muted); }
.dash-signal__pair {
  display: flex; align-items: center; gap: 10px;
}
.dash-signal__sym {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.5px;
}
.dash-signal__dir {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}
.dash-signal__dir.buy  { color: #60a5fa; background: rgba(96,165,250,.12); }
.dash-signal__dir.sell { color: #fb923c; background: rgba(251,146,60,.12); }
.dash-signal__levels { display: flex; flex-direction: column; gap: 8px; }
.dash-level {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 10px;
  background: var(--bg);
  border-radius: 6px;
}
.dash-level__lbl { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.dash-level__val { font-family: var(--mono); font-size: 0.85rem; font-weight: 600; }
.dash-level--sl .dash-level__val { color: var(--red); }
.dash-level--tp .dash-level__val { color: var(--accent); }
.dash-signal__bot {
  font-size: 0.72rem; color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

/* Mini chart */
.dash-chart-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-chart-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; }
.dash-chart { width: 100%; height: 90px; display: block; }

/* Recent trades */
.dash-trades {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.dash-trades__head {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.dash-trade {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.dash-trade:last-child { border-bottom: none; }
.dash-trade__sym { font-family: var(--mono); font-weight: 700; min-width: 72px; }
.dash-trade__dir { font-size: 0.78rem; font-weight: 600; min-width: 56px; }
.dash-trade__dir.buy  { color: #60a5fa; }
.dash-trade__dir.sell { color: #fb923c; }
.dash-trade__date { color: var(--text-muted); font-size: 0.78rem; flex: 1; }
.dash-trade__pnl { font-family: var(--mono); font-weight: 700; }
.dash-trade__pnl.win  { color: var(--accent); }
.dash-trade__pnl.loss { color: var(--red); }
.dash-trade__badge {
  font-size: 0.68rem; font-weight: 700;
  padding: 2px 7px; border-radius: 4px;
  letter-spacing: .5px;
}
.dash-trade__badge.win  { background: rgba(0,229,160,.12); color: var(--accent); border: 1px solid rgba(0,229,160,.2); }
.dash-trade__badge.loss { background: rgba(240,84,79,.12);  color: var(--red);    border: 1px solid rgba(240,84,79,.2); }
.dash-blurred { opacity: .25; filter: blur(3px); pointer-events: none; }

/* Locked overlay */
.dash-locked {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(to top, rgba(11,13,18,1) 0%, rgba(11,13,18,.7) 100%);
  padding: 20px 16px 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.dash-locked svg { color: var(--accent); flex-shrink: 0; }

/* Live dot */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* Value props below mockup */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-prop {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-prop__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0,229,160,.1);
  border: 1px solid rgba(0,229,160,.2);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-prop strong { display: block; margin-bottom: 5px; font-size: 0.95rem; }
.value-prop p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

/* ── Logo ─────────────────────────────────────────────── */
.logo-icon {
  display: block;
  flex-shrink: 0;
}
.logo-wordmark {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

/* ── Footer logo ──────────────────────────────────────── */
.footer__logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

/* ── Prop Firms Section ───────────────────────────────── */
.prop-compare {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
}
.prop-compare__row {
  display: grid;
  grid-template-columns: 260px 1fr 60px;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.prop-compare__row:last-child { margin-bottom: 0; }
.prop-compare__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.prop-compare__row--ours .prop-compare__label {
  color: var(--text);
  font-weight: 600;
}
.prop-compare__track {
  height: 10px;
  background: rgba(255,255,255,.06);
  border-radius: 99px;
  overflow: hidden;
}
.prop-compare__bar {
  height: 100%;
  border-radius: 99px;
  transition: width .6s ease;
}
.prop-compare__bar--limit { background: var(--red); opacity: .7; }
.prop-compare__bar--mid   { background: #f5a623; opacity: .6; }
.prop-compare__bar--ours  { background: var(--accent); box-shadow: 0 0 8px rgba(0,229,160,.4); }
.prop-compare__val {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
}
.prop-compare__val--muted { color: var(--text-muted); }
.prop-compare__note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.prop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.prop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s;
}
.prop-card:hover { border-color: rgba(0,229,160,.3); }
.prop-card--featured {
  border-color: rgba(0,229,160,.35);
  background: linear-gradient(135deg, rgba(0,229,160,.06) 0%, var(--surface) 60%);
  position: relative;
}
.prop-card--featured::before {
  content: 'Most Relevant';
  position: absolute;
  top: -1px; right: 20px;
  background: var(--accent);
  color: #0b0d12;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}
.prop-card__num {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1;
}
.prop-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.prop-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.prop-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(0,229,160,.08) 0%, rgba(0,229,160,.03) 100%);
  border: 1px solid rgba(0,229,160,.25);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}
.prop-cta__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prop-cta__text strong {
  font-size: 1rem;
  color: var(--text);
}
.prop-cta__text span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .dash-grid { grid-template-columns: 1fr; }
  .value-props { grid-template-columns: 1fr; gap: 16px; }
  .dash-stat { padding: 14px 12px; }
  .dash-stat__val { font-size: 1.1rem; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .stat__divider { display: none; }
  .stat { border-bottom: 1px solid var(--border); width: 50%; }
  .step__arrow { display: none; }
  .step { max-width: 100%; }
  .pricing-card { padding: 28px 20px; }
  .hero { padding: 64px 0 48px; }
  .tradelog-cta { flex-direction: column; align-items: flex-start; }
  .nav__link { display: none; }
  .prop-cards { grid-template-columns: 1fr; }
  .prop-compare__row { grid-template-columns: 1fr; gap: 8px; }
  .prop-compare__val { text-align: left; }
  .prop-cta { flex-direction: column; align-items: flex-start; }
  .numbers-grid { grid-template-columns: 1fr; }
  .trust-bar__div { display: none; }
  .trust-bar__inner { gap: 8px; flex-direction: column; align-items: center; }
  .final-cta__buttons { flex-direction: column; width: 100%; }
  .final-cta__buttons .btn { width: 100%; justify-content: center; }
  .anti-telegram__body p { font-size: 0.95rem; }
  .section--problem { padding: 64px 0; }
  .section--contrast { padding: 64px 0; }
}

/* ── Hero urgency line ────────────────────────────────── */
.hero__urgency {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: -4px;
  text-align: center;
}

/* ── Trust bar ────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow-x: auto;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-bar__item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--mono);
  white-space: nowrap;
}
.trust-bar__div {
  color: var(--border);
  user-select: none;
  font-size: 0.9rem;
}
.trust-bar__link {
  color: var(--accent);
  text-decoration: none;
}
.trust-bar__link:hover { text-decoration: underline; }

/* ── The Prop Firm Problem ────────────────────────────── */
.section--problem {
  background: #060810;
  padding: 96px 0;
}
.problem__headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  text-align: center;
  max-width: 740px;
  margin: 0 auto 48px;
  color: var(--text);
}
.problem__body {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.problem__para {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.problem__para--close {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

/* ── Numbers grid ─────────────────────────────────────── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.number-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s;
}
.number-card:hover { border-color: rgba(0,229,160,.3); }
.number-card--featured {
  border-color: rgba(0,229,160,.3);
  background: linear-gradient(135deg, rgba(0,229,160,.06) 0%, var(--surface) 60%);
}
.number-card__stat {
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text);
}
.number-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.number-card__note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.numbers-footnote {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-top: 4px;
}
.accent-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
}
.accent-link:hover { text-decoration: underline; }

/* ── Firm badges ──────────────────────────────────────── */
.firm-intro {
  max-width: 600px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.firm-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.firm-badge {
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.firm-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
  opacity: .75;
  line-height: 1.5;
}

/* ── Bot card note ────────────────────────────────────── */
.bot-card__note {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .3px;
  margin-top: 4px;
}
.bot-card--highlight { border-color: rgba(0,229,160,.25); }

/* ── Pillars grid ─────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
}
.pillar-card:hover { border-color: rgba(0,229,160,.3); }
.pillar-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,229,160,.1);
  border: 1px solid rgba(0,229,160,.2);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.pillar-card__body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.pillar-card__link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  align-self: flex-start;
}
.pillar-card__link:hover { text-decoration: underline; }

/* ── Two-card pricing ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 24px;
}
.pricing-card-full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  opacity: .55;
}
.pricing-full__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.pricing-full__price {
  font-family: var(--mono);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text-muted);
  line-height: 1.1;
}
.pricing-full__price span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}
.pricing-full__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pricing-card-founding {
  background: linear-gradient(135deg, rgba(0,229,160,.07) 0%, var(--surface) 55%);
  border: 2px solid rgba(0,229,160,.4);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-founding__badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b0d12;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .04em;
  align-self: flex-start;
  margin-bottom: 4px;
}
.pricing-founding__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
}
.pricing-founding__price {
  font-family: var(--mono);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  line-height: 1;
}
.pricing-founding__price span {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-muted);
}
.pricing-founding__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pricing-founding__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.pricing-founding__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.pricing-trust {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 860px;
  margin: 0 auto;
}

/* ── Anti-Telegram ────────────────────────────────────── */
.section--contrast {
  background: #050709;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.anti-telegram {
  max-width: 640px;
  margin: 0 auto;
}
.anti-telegram__headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 44px;
  color: var(--text);
  text-align: center;
}
.anti-telegram__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.anti-telegram__body p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.anti-telegram__close {
  font-size: 1.05rem !important;
  color: var(--text) !important;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}
.anti-telegram__close strong { color: var(--accent); }

/* ── Final CTA ────────────────────────────────────────── */
.final-cta-section { padding: 96px 0; }
.final-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta__headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.final-cta__sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
