:root {
  --bg: #0a0f1a;
  --bg-soft: #111827;
  --bg-card: #1a2234;
  --fg: #e8ecf4;
  --fg-muted: #8892a4;
  --accent: #34d399;
  --accent-glow: rgba(52, 211, 153, 0.15);
  --warm: #f59e0b;
  --warm-glow: rgba(245, 158, 11, 0.12);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* PROBLEM */
.problem {
  padding: 100px 24px;
  background: var(--bg-soft);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 32px;
}

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

.problem-text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.problem-highlight {
  color: var(--warm) !important;
  font-weight: 600;
}

.tool-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tool-item {
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
  transition: transform 0.2s;
}

.tool-item.t1 { transform: rotate(-1deg); }
.tool-item.t2 { transform: rotate(0.5deg); }
.tool-item.t3 { transform: rotate(-0.3deg); }
.tool-item.t4 { transform: rotate(0.8deg); }
.tool-item.t5 { transform: rotate(-0.6deg); }

.arrow-down {
  text-align: center;
  font-size: 2rem;
  color: var(--accent);
  padding: 16px 0;
}

.solution-item {
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(52,211,153,0.15), rgba(52,211,153,0.05));
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}

/* FEATURES */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(52,211,153,0.2);
  transform: translateY(-2px);
}

.feature-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card), rgba(52,211,153,0.06));
  border-color: rgba(52,211,153,0.15);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* MARKETPLACE */
.marketplace {
  padding: 100px 24px;
  background: var(--bg-soft);
}

.marketplace-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.marketplace-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.marketplace-content p {
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.marketplace-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg);
}

.mp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.marketplace-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-card {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
}

.mp-card span {
  display: block;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-display);
}

.mp-offset { margin-left: 24px; }
.mp-offset-2 { margin-left: 48px; }

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-modules {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mod {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  transition: border-color 0.2s, color 0.2s;
}

.mod:hover {
  border-color: rgba(52,211,153,0.3);
  color: var(--accent);
}

/* FOOTER */
.site-footer {
  padding: 60px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 80px 20px 60px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: 1; }
  .marketplace-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .mp-offset, .mp-offset-2 { margin-left: 0; }
  .hero-gradient { width: 300px; height: 300px; top: -10%; right: -20%; }
}