/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #08080c;
  --bg-2: #0e0e14;
  --surface: #13131c;
  --surface-2: #1a1a26;
  --fg: #f0ede6;
  --fg-muted: #8a8799;
  --accent: #f5a623;
  --accent-dim: rgba(245,166,35,0.12);
  --border: rgba(240,237,230,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; }

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,12,0.85);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.nav-tag {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 14vh, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: -20%;
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.07) 0%, transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,237,230,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,230,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.2);
  background: var(--accent-dim);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, #e8890a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 2rem;
}

.stat:first-child { padding-left: 0; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  max-width: 120px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== PAIN ===== */
.pain {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

.pain-inner {
  max-width: 700px;
}

.pain-label, .section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.pain-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.pain-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ===== FEATURES ===== */
.features {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 4rem;
  max-width: 640px;
}

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

.feature-card {
  background: var(--bg-2);
  padding: 2.25rem;
  transition: background 0.2s;
}

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

.feature-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  background: var(--accent-dim);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== HOW ===== */
.how {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

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

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}

.step {
  flex: 1;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

.step-arrow {
  color: var(--fg-muted);
  flex-shrink: 0;
  margin-top: 2.5rem;
  opacity: 0.4;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.manifesto-attr {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 2rem;
  opacity: 0.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.closing-vision {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
}

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

/* ===== LIVE WIDGET ===== */
.live-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.lw-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.lw-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.lw-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.lw-period {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.lw-numbers {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.lw-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.5rem;
}

.lw-stat:first-child { padding-left: 0; }

.lw-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  transition: color 0.2s;
}

.lw-key {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
  line-height: 1.4;
}

.lw-stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.lw-ticker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: 8px;
  margin-bottom: 1.75rem;
}

.lw-ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.lw-ticker-text {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.lw-cta-row {
  margin-bottom: 0.85rem;
}

.lw-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.lw-cta:hover {
  background: #e8890a;
  transform: translateY(-1px);
}

.lw-subtext {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .stat-divider { display: none; }
  .stat { padding: 0; }

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

  .how-steps {
    flex-direction: column;
  }

  .step-arrow {
    display: none;
  }

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

  .lw-numbers {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .lw-stat-sep { display: none; }
  .lw-stat { padding: 0; }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.4rem;
  }
  .nav-tag { display: none; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
