:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface2: #1a1a1a;
  --accent: #E8FF00;
  --accent-dim: rgba(232, 255, 0, 0.08);
  --accent-mid: rgba(232, 255, 0, 0.25);
  --fg: #F0EFE9;
  --fg-dim: rgba(240, 239, 233, 0.55);
  --fg-mid: rgba(240, 239, 233, 0.35);
  --rule: rgba(240, 239, 233, 0.12);
  --yellow-text: #E8FF00;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 80px 60px;
  position: relative;
  gap: 60px;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,255,0,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232,255,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,239,233,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,239,233,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-title span { display: block; }
.hero-title .line-accent { color: var(--accent); }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-dim);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.7;
}

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

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-dim);
  margin-top: 4px;
  max-width: 80px;
  line-height: 1.3;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--rule);
}

/* Dashboard mock */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(232,255,0,0.05);
}

.mock-bar {
  background: var(--surface2);
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--rule);
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rule);
}
.mock-dot:first-child { background: #FF5F57; }
.mock-dot:nth-child(2) { background: #FFBD2E; }
.mock-dot:nth-child(3) { background: #28CA41; }

.mock-content { padding: 20px; }

.mock-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mock-rows { margin-bottom: 20px; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--rule);
}
.mock-row:last-child { border-bottom: none; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot.green { background: #28CA41; }
.dot.yellow { background: var(--accent); }
.track {
  font-size: 12px;
  color: var(--fg);
  flex: 1;
}
.badge {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 20px;
  background: var(--rule);
  color: var(--fg-dim);
}
.badge.accent {
  background: var(--accent);
  color: var(--bg);
  font-weight: 500;
}

.mock-section { margin-top: 16px; }

.royalty-bar {
  height: 6px;
  background: var(--surface2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.royalty-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}
.royalty-nums {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.r-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--fg);
}
.r-lbl { font-size: 11px; color: var(--fg-dim); }

.grow-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid var(--rule);
}
.grow-row:last-child { border-bottom: none; }
.grow-metric { font-size: 12px; color: var(--fg); }
.grow-period {
  font-size: 10px;
  color: var(--fg-dim);
  background: var(--surface2);
  padding: 1px 6px;
  border-radius: 20px;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 80px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.manifesto-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.manifesto-rule {
  height: 1px;
  background: var(--rule);
  margin: 0 auto;
}

.manifesto-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
  color: var(--fg);
  padding: 48px 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.manifesto-detail {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-top: 40px;
  font-weight: 300;
}

/* ── FEATURES ── */
.features {
  padding: 100px 80px;
  background: var(--surface);
}

.features-header { margin-bottom: 60px; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.feature-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--surface2); }

.feature-icon {
  margin-bottom: 24px;
  opacity: 0.9;
}

.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* ── THE GRIND ── */
.thegrind {
  padding: 100px 80px;
  background: var(--bg);
}

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

.thegrind-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}

.thegrind-body {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.thegrind-items { display: flex; flex-direction: column; gap: 0; }

.grind-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.grind-item:last-child { border-bottom: none; }

.grind-x {
  color: #FF5F57;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.grind-check {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.thegrind-solution { padding-top: 40px; }

/* ── CLOSING ── */
.closing {
  padding: 120px 80px;
  background: var(--surface);
  text-align: center;
}

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

.closing-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.eyebrow-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.eyebrow-text {
  font-size: 12px;
  color: var(--fg-dim);
  max-width: 320px;
  text-align: center;
  line-height: 1.5;
}

.closing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 80px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: 0.08em;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-dim);
}

.footer-meta {
  font-size: 12px;
  color: var(--fg-mid);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px 40px;
  }
  .hero-visual { justify-content: flex-start; }
  .dashboard-mock { max-width: 100%; }
  .manifesto { padding: 60px 32px; }
  .features { padding: 60px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .thegrind { padding: 60px 32px; }
  .thegrind-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 80px 32px; }
  .footer { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { flex-wrap: wrap; }
  .desktop-only { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 72px; }
  .manifesto-text { font-size: 26px; }
}
