:root {
  --bg-deep: #0a1628;
  --bg-mid: #0f1f3a;
  --bg-card: #142440;
  --accent: #e8a838;
  --accent-soft: #f0c36e;
  --text-primary: #f5f0e8;
  --text-secondary: #a8b4c8;
  --text-muted: #6b7a94;
  --cream: #faf6ef;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(232,168,56,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(15,31,58,0.9) 0%, var(--bg-deep) 70%);
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,168,56,0.3);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-visual {
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.orbit-ring {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(232,168,56,0.15);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  animation: spin 30s linear infinite;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--bg-deep);
  animation: counter-spin 30s linear infinite;
}

.orbit-item {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-card);
  padding: 0.35em 0.8em;
  border-radius: 20px;
  border: 1px solid rgba(168,180,200,0.15);
  animation: counter-spin 30s linear infinite;
}

.o1 { top: -12px; left: 50%; transform: translateX(-50%); }
.o2 { top: 50%; right: -20px; transform: translateY(-50%); }
.o3 { bottom: -12px; left: 50%; transform: translateX(-50%); }
.o4 { top: 50%; left: -20px; transform: translateY(-50%); }
.o5 { top: 15%; right: 5%; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes counter-spin { to { transform: rotate(-360deg); } }

/* ── PROBLEM ── */
.problem {
  padding: 6rem 2rem;
  background: var(--cream);
  color: #1a1a1a;
}

.problem-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.problem-stat {
  position: sticky;
  top: 2rem;
}

.big-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--bg-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.problem-text p {
  color: #444;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 2rem;
  background: var(--bg-mid);
}

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.how h2 .accent {
  color: var(--accent);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(232,168,56,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}

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

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ── FEATURES ── */
.features {
  padding: 6rem 2rem;
  background: var(--bg-deep);
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-block {
  background: var(--bg-card);
  border: 1px solid rgba(168,180,200,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 520px;
  transition: border-color 0.3s ease;
}

.feature-block:hover {
  border-color: rgba(232,168,56,0.25);
}

.fb-left { align-self: flex-start; }
.fb-right { align-self: flex-end; }

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

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

.feature-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ── FOOTER ── */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-mid);
  border-top: 1px solid rgba(168,180,200,0.08);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

  .problem-stat {
    position: static;
  }

  .step {
    flex-direction: column;
    gap: 0.5rem;
  }

  .step-num {
    width: auto;
    font-size: 1.8rem;
  }

  .fb-left, .fb-right {
    align-self: stretch;
    max-width: 100%;
  }

  .orbit-ring {
    width: 220px;
    height: 220px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 4rem 1.5rem 3rem;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 2rem; }
  .big-number { font-size: 3rem; }
}