:root {
  --bg: #070D1A;
  --bg-card: #0D1829;
  --bg-card-hover: #111f35;
  --fg: #e8edf5;
  --fg-muted: #8a9ab5;
  --accent: #00E87C;
  --accent-dim: rgba(0, 232, 124, 0.12);
  --accent-glow: rgba(0, 232, 124, 0.25);
  --border: rgba(255,255,255,0.07);
  --text-card: #c8d8ec;
  --text-muted: #5a7090;
  --green-dim: #1a4a2e;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(7,13,26,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { display: flex; align-items: center; }
.brand-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: 0.03em; color: var(--fg); }

.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--fg-muted); text-decoration: none; font-size: 0.875rem; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

/* HERO */
.hero {
  min-height: calc(100vh - 65px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,232,124,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.stat-item { padding: 20px 28px; flex: 1; }
.stat-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--accent); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

.hero-cta-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* HERO VISUAL */
.hero-visual { display: flex; justify-content: center; }

.pipeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 0 60px rgba(0,232,124,0.06);
}

.pipeline-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-buy { background: rgba(0,232,124,0.1); color: var(--accent); }
.step-ship { background: rgba(100,150,255,0.1); color: #6496ff; }
.step-sell { background: rgba(0,232,124,0.15); color: var(--accent); }

.step-info { flex: 1; }
.step-title { font-weight: 500; font-size: 0.9rem; }
.step-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.step-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; }
.step-cost { color: #ff6b6b; }
.step-fees { color: var(--fg-muted); }
.step-sell { color: var(--accent); }

.pipeline-arrow { display: flex; justify-content: center; padding: 4px 0; }

.pipeline-divider { height: 1px; background: var(--border); margin: 16px 0; }

.pipeline-result { text-align: center; }
.result-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.result-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 3rem; color: var(--accent); line-height: 1; margin-top: 6px; }
.pipeline-roi { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

/* SECTIONS */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

.section-sub { font-size: 1rem; color: var(--fg-muted); }

/* PIPELINE SECTION */
.pipeline-section { padding: 96px 48px; max-width: 1280px; margin: 0 auto; }

.pipeline-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.pipeline-card-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pipeline-card-step:hover { border-color: rgba(0,232,124,0.3); box-shadow: 0 0 30px rgba(0,232,124,0.05); }

.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}

.step-icon-large { margin-bottom: 16px; }

.pipeline-card-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 10px;
}

.pipeline-card-step p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }

.step-detail { display: flex; gap: 8px; flex-wrap: wrap; }
.detail-tag { background: var(--accent-dim); color: var(--accent); font-size: 0.72rem; padding: 3px 10px; border-radius: 100px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.04em; }

.pipeline-arrow-col { display: flex; align-items: center; padding: 0 16px; padding-top: 80px; }

/* WHY SECTION */
.why-section { padding: 96px 48px; background: linear-gradient(180deg, transparent 0%, rgba(0,232,124,0.02) 50%, transparent 100%); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1280px; margin: 0 auto; }

.why-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: 36px; }

.why-points { display: flex; flex-direction: column; gap: 20px; }

.why-point { display: flex; gap: 14px; align-items: flex-start; }

.point-check { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

.point-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 2px; }
.point-desc { font-size: 0.85rem; color: var(--fg-muted); }

/* MARKET CARD */
.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.market-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 8px; }
.market-big { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 5rem; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.market-sub { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.5; }
.market-divider { height: 1px; background: var(--border); margin: 28px 0; }

.market-stat { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.market-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--fg); }
.market-stat-desc { font-size: 0.8rem; color: var(--fg-muted); text-align: right; }

/* TOOLS SECTION */
.tools-section { padding: 96px 48px; max-width: 1280px; margin: 0 auto; }

.tools-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 28px; }

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.tool-card:hover { border-color: rgba(0,232,124,0.25); transform: translateY(-2px); }

.tool-card-bonus { border-color: rgba(0,232,124,0.15); }

.tool-logo { margin-bottom: 16px; }
.tool-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 10px; color: var(--fg); }
.tool-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }
.tool-cost { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--accent); }

.tools-note {
  display: flex;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
}

/* GROWTH SECTION */
.growth-section { padding: 96px 48px; max-width: 1280px; margin: 0 auto; }

.growth-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.growth-phase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.phase-period { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }

.phase-bar { height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; margin-bottom: 12px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent) 0%, rgba(0,232,124,0.4) 100%); }

.phase-earnings { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--fg); margin-bottom: 16px; }

.phase-tasks { display: flex; flex-direction: column; gap: 8px; }
.phase-task { font-size: 0.78rem; color: var(--fg-muted); padding-left: 14px; position: relative; line-height: 1.4; }
.phase-task::before { content: ''; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; opacity: 0.6; }

.growth-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 32px; }

/* CLOSING */
.closing-section {
  padding: 120px 48px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0,232,124,0.04) 100%);
}

.closing-content { max-width: 680px; margin: 0 auto; }

.closing-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: 40px; }

.closing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; text-align: left; }
.closing-feature { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-card); }

.closing-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* FOOTER */
.site-footer { padding: 32px 48px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; }
.footer-note { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }
.footer-legal { font-size: 0.72rem; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .tools-grid { grid-template-columns: 1fr; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .pipeline-arrow-col { display: none; }
  .growth-timeline { grid-template-columns: 1fr 1fr; }
  .navbar { padding: 16px 32px; }
}

@media (max-width: 640px) {
  .hero { padding: 32px 20px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .growth-timeline { grid-template-columns: 1fr; }
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .pipeline-section, .why-section, .tools-section, .growth-section, .closing-section { padding: 64px 20px; }
  .site-footer { padding: 24px 20px; flex-direction: column; gap: 8px; text-align: center; }
}