:root {
  --bg: #0a0a0c;
  --bg-elevated: #121215;
  --fg: #e8e4df;
  --fg-muted: #9a9590;
  --accent: #e8a848;
  --accent-glow: rgba(232, 168, 72, 0.15);
  --accent-bright: #f0c060;
  --red: #c44030;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 100px;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(232,168,72,0.06) 0%, transparent 70%);
}

.hero-spotlight {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 400px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(232,168,72,0.08) 0%, transparent 70%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.hero-spotlight--right {
  left: auto;
  right: 15%;
  transform: rotate(12deg);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.hero-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-vision {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(232,168,72,0.7);
  font-style: italic;
}

.hero-scene {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  gap: 200px;
  pointer-events: none;
}

.stage-light {
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(232,168,72,0.3), transparent);
}

.stage-light--2 { height: 80px; opacity: 0.5; }
.stage-light--3 { height: 100px; opacity: 0.7; }

/* ---- PROBLEM ---- */
.problem {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(232,168,72,0.1);
  border-bottom: 1px solid rgba(232,168,72,0.1);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.problem-stat {
  text-align: center;
  padding-top: 12px;
}

.big-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.problem-stat p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.problem-punch {
  color: var(--fg) !important;
  font-weight: 500;
  font-size: 1.15rem !important;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 28px;
}

/* ---- FEATURES ---- */
.features {
  padding: 120px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: rgba(232,168,72,0.2);
  box-shadow: 0 0 40px var(--accent-glow);
}

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

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

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

/* ---- HOW ---- */
.how {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(232,168,72,0.1);
  border-bottom: 1px solid rgba(232,168,72,0.1);
}

.how .section-title { margin-bottom: 64px; }

.how-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.how-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
  flex-shrink: 0;
  width: 80px;
  text-align: right;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 1rem;
}

/* ---- CONTROL ---- */
.control {
  padding: 120px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.control-inner {
  text-align: center;
}

.control-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--fg);
}

.control-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.control-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.control-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.control-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(232,168,72,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.control-point strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}

.control-point p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .control-points {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .control-point {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .control-icon {
    flex-shrink: 0;
  }
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(232,168,72,0.05) 0%, transparent 70%);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.closing-tagline {
  color: var(--accent) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 40px;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.footer-note {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--fg);
}

/* ---- PROBLEM QUOTE (replaces stat) ---- */
.problem-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.5;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

/* ---- LEGAL PAGES ---- */
.legal-page {
  min-height: 100vh;
  background: var(--bg);
}

.legal-header {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.legal-back {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.legal-back:hover {
  color: var(--fg);
}

.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px 120px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.legal-content p {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problem-stat { text-align: left; }
  .big-number { font-size: 3.5rem; }

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

  .how-step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    text-align: left;
    font-size: 2rem;
    width: auto;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero { padding: 60px 20px 80px; }
  .hero h1 { font-size: 2.2rem; }
  .feature-card { padding: 28px 24px; }
}

/* ---- CTA BUTTONS (landing) ---- */
.hero-cta, .cta-link {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 36px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: -0.2px;
}

.hero-cta:hover, .cta-link:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
}

.cta-link {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 0.95rem;
  padding: 14px 28px;
}