:root {
  --bg: #0d0f0d;
  --bg-2: #111411;
  --bg-3: #161a16;
  --bg-4: #1c211c;
  --surface: #1e241e;
  --surface-2: #242b24;
  --border: #2a342a;
  --border-light: #334033;
  --green: #5fa524;
  --green-bright: #72c42a;
  --green-dim: #3d6c17;
  --green-glow: rgba(95, 165, 36, 0.15);
  --green-glow-strong: rgba(95, 165, 36, 0.25);
  --text: #f0f4ee;
  --text-2: #c8d4c4;
  --text-muted: #7a917a;
  --text-dim: #4a5f4a;
  --white: #ffffff;
  --red: #d64a46;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-green: 0 16px 40px rgba(95, 165, 36, 0.2);
  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --max-width: 1160px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(100% - 28px, var(--max-width));
  margin: 0 auto;
}

.section { padding: 96px 0; }

/* ── HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.logo { width: 280px; max-width: 46vw; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links .nav-login { color: var(--text-2); }
.nav-cta { padding: 9px 16px !important; }

.mobile-menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 8px 13px;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }

.btn-primary {
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(95, 165, 36, 0.3);
}
.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 12px 32px rgba(95, 165, 36, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2) !important;
  border-color: var(--border-light);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--text) !important;
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(95,165,36,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-inner { text-align: center; position: relative; z-index: 1; }

.hero-tag {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(95, 165, 36, 0.06);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-accent {
  color: var(--green);
  display: block;
}

.hero-sub {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-2);
}

.hero-trades {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
}

.typewriter {
  color: var(--green);
  font-weight: 700;
  border-right: 2px solid var(--green);
  padding-right: 3px;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  0%, 100% { border-color: var(--green); }
  50% { border-color: transparent; }
}

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

.hero-testimonial {
  margin-top: 28px;
  padding: 18px 24px;
  border-left: 3px solid var(--green);
  background: rgba(95, 165, 36, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.testimonial-quote {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial-source {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── DASHBOARD PREVIEW ───────────────────────────────────────────────── */
.dashboard-preview {
  margin-top: 52px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(95,165,36,0.08);
  background: var(--bg-3);
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-4);
  border-bottom: 1px solid var(--border);
}

.dash-dots {
  display: flex;
  gap: 7px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
}

.dash-title {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.dash-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
}

.dash-sidebar {
  background: var(--bg-4);
  border-right: 1px solid var(--border);
  padding: 20px 16px;
}

.dash-logo-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-2);
}

.dash-logo-row img { width: 22px; height: 22px; }

.dash-sidebar ul { list-style: none; display: grid; gap: 4px; }

.dash-sidebar li {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}

.dash-sidebar li.active {
  background: rgba(95, 165, 36, 0.12);
  color: var(--green);
  border: 1px solid rgba(95, 165, 36, 0.2);
}

.dash-main {
  padding: 20px;
  background: var(--bg-3);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dash-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.dash-stat p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.dash-stat h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.dash-stat span {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.profit-stat {
  border-color: rgba(95, 165, 36, 0.3);
  background: rgba(95, 165, 36, 0.06);
}

.profit-stat h3 { color: var(--green); }

.dash-panels {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-top: 12px;
}

.dash-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.ai-panel {
  border-color: rgba(95, 165, 36, 0.25);
  background: rgba(95, 165, 36, 0.05);
}

.panel-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.dash-panel p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.6;
}

.track-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-2);
  font-size: 0.92rem;
}

.track-list li::before {
  content: "→ ";
  color: var(--green);
  font-weight: 700;
}

/* ── STATS STRIP ─────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-pill {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  color: var(--border-light);
  font-size: 1.1rem;
}

/* ── SECTION LABELS / HEADINGS ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: rgba(95, 165, 36, 0.06);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-2);
  font-size: 1.06rem;
  line-height: 1.72;
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ── PROBLEM ─────────────────────────────────────────────────────────── */
.problem-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: left;
  transition: border-color 0.2s;
}

.problem-card:hover { border-color: var(--border-light); }

.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.problem-card p {
  color: var(--text-2);
  font-weight: 600;
  line-height: 1.6;
  font-size: 1rem;
}

/* ── WHY IT EXISTS ───────────────────────────────────────────────────── */
.why-section {
  background: var(--bg);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-body {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 18px;
}

.why-bold {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 28px;
}

.why-visual {
  display: grid;
  gap: 16px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.why-card-good {
  border-color: rgba(95, 165, 36, 0.3);
  background: rgba(95, 165, 36, 0.05);
}

.why-card-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.why-card-good .why-card-label { color: var(--green); }

.why-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.why-list li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.5;
}

.why-list-good li { color: var(--text); }

/* ── FEATURES ────────────────────────────────────────────────────────── */
.features-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: left;
  transition: all 0.22s ease;
  cursor: pointer;
  outline: none;
  position: relative;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.68;
  font-size: 0.95rem;
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.feature-card-highlight {
  border-color: rgba(95, 165, 36, 0.3);
  background: rgba(95, 165, 36, 0.06);
}

.feature-top-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: var(--radius);
  background: rgba(95, 165, 36, 0.15);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.interactive-card:hover,
.interactive-card:focus,
.interactive-card.active-touch {
  border-color: var(--green-dim);
  box-shadow: 0 0 0 1px rgba(95,165,36,0.15), 0 12px 32px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* ── HOW IT WORKS ────────────────────────────────────────────────────── */
.how-section {
  background: var(--bg);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 8px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: left;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.9;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border-light);
  margin: 0 8px;
  flex-shrink: 0;
}

/* ── AI SECTION ──────────────────────────────────────────────────────── */
.ai-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.ai-bullets {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
}

.ai-bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.98rem;
}

.ai-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.ai-note {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(95, 165, 36, 0.06);
  border: 1px solid rgba(95, 165, 36, 0.2);
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.95rem;
}

.ai-chat-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chat-header {
  padding: 14px 18px;
  background: var(--bg-4);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chat-messages {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.chat-msg {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.58;
}

.chat-msg.user {
  margin-left: auto;
  background: rgba(95, 165, 36, 0.12);
  color: var(--text);
  border: 1px solid rgba(95, 165, 36, 0.2);
}

.chat-msg.ai {
  background: var(--bg-4);
  color: var(--text-2);
  border: 1px solid var(--border);
}

/* ── FINAL CTA ───────────────────────────────────────────────────────── */
.final-cta {
  background: var(--bg);
}

.final-cta-inner {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 64px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(95,165,36,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── CONTACT ─────────────────────────────────────────────────────────── */
.contact-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  text-align: left;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-field { display: flex; flex-direction: column; gap: 8px; }

.contact-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-field input,
.contact-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-3);
  outline: none;
  transition: border-color 0.18s ease;
  resize: vertical;
  font-family: inherit;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--green-dim);
}

.contact-submit { width: 100%; padding: 14px; font-size: 16px; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-4);
}

.footer-inner {
  min-height: 90px;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo { width: 160px; max-width: 100%; }

.footer-left p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .dash-body,
  .problem-grid,
  .feature-grid,
  .why-inner,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-connector {
    width: 2px;
    height: 24px;
    margin: 4px auto;
  }

  .dash-sidebar { display: none; }

  .dash-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .dash-panels {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 52px; }
  .logo { width: 240px; }
  .section { padding: 64px 0; }
}

@media (max-width: 860px) {
  .mobile-menu-btn { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 14px;
    z-index: 200;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 10px 12px;
    border-radius: var(--radius);
  }

  .nav-links a:hover { background: var(--surface); }

  .dash-stats { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(2.4rem, 8vw, 4rem); }
  .section-title { font-size: clamp(2rem, 6vw, 3rem); }
}

@media (max-width: 560px) {
  .stats-inner { flex-direction: column; gap: 10px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}