:root {
  --bg: #0a0a0b;
  --surface: #111113;
  --surface-2: #18181b;
  --border: #27272a;
  --fg: #fafafa;
  --muted: #71717a;
  --green: #4ade80;
  --green-dim: rgba(74, 222, 128, 0.1);
  --green-glow: rgba(74, 222, 128, 0.05);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* HERO */
.hero {
  padding: 96px 32px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--green);
}
.hero-lede {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Dashboard card */
.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.dashboard-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--green-glow), transparent 60%);
  pointer-events: none;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.dashboard-badge {
  font-size: 11px;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.dashboard-rows { display: flex; flex-direction: column; gap: 12px; }
.dash-row {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-metric { font-size: 13px; color: var(--muted); }
.dash-value { font-size: 22px; font-weight: 700; color: var(--fg); }
.dash-value.highlight { color: var(--green); }
.dash-value.accent { color: #a78bfa; }
.dashboard-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* PROOF */
.proof {
  padding: 56px 32px;
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 1180px; margin: 0 auto; }
.proof-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.proof-stat { flex: 1; text-align: center; }
.proof-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
}
.proof-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.proof-caption {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* FEATURES */
.features {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.features-header {
  max-width: 1180px;
  margin: 0 auto 56px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
}
.features-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(74, 222, 128, 0.3); }
.feature-card--large { grid-column: span 2; }
.feature-card--wide { grid-column: span 2; }
.feature-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.feature-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.feature-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.feature-detail span {
  font-size: 11px;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
}

/* MARKETS */
.markets {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.markets-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.markets-list { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; }
.market-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.market-name {
  font-size: 15px;
  font-weight: 500;
}
.market-tag {
  font-size: 11px;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.15);
  padding: 3px 10px;
  border-radius: 100px;
}
.income-streams {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}
.income-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.income-list { display: flex; flex-direction: column; gap: 14px; }
.income-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.income-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 50%;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.income-icon::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.income-item strong { color: var(--fg); }

/* CLOSING */
.closing { padding: 96px 32px; }
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 0 auto 40px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-meta {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large, .feature-card--wide { grid-column: span 2; }
  .markets-inner { grid-template-columns: 1fr; }
  .markets-right { order: -1; }
}
@media (max-width: 600px) {
  .hero { padding: 64px 20px 56px; }
  .proof { padding: 40px 20px; }
  .features { padding: 56px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large, .feature-card--wide { grid-column: span 1; }
  .markets { padding: 56px 20px; }
  .markets-inner { gap: 40px; }
  .closing { padding: 64px 20px; }
  .proof-stats { flex-direction: column; gap: 24px; }
  .proof-divider { width: 40px; height: 1px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}