:root {
  --bg: #080808;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --red: #FF2D55;
  --red-dim: rgba(255, 45, 85, 0.15);
  --red-glow: rgba(255, 45, 85, 0.3);
  --gold: #F0B429;
  --white: #FFFFFF;
  --muted: #888888;
  --subtle: #444444;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--subtle);
  padding: 0 48px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 48px;
}
.hero-inner { display: flex; flex-direction: column; gap: 28px; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-headline { display: flex; flex-direction: column; gap: 4px; }
.hero-siuuu {
  font-family: var(--font-display);
  font-size: clamp(88px, 12vw, 160px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 4px;
  text-shadow: 0 0 80px var(--red-glow), 0 0 160px rgba(255,45,85,0.1);
}
.hero-sub-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
}
.hero-media {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--red);
  letter-spacing: 8px;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.hero-tagline {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
}
.hero-body p {
  font-size: 18px;
  line-height: 1.7;
  color: #cccccc;
  max-width: 480px;
}
.hero-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red-dim);
  padding: 6px 14px;
  border-radius: 2px;
}

/* Hero graphic side */
.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-circle-ring {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 85, 0.2);
}
.ring-1 { width: 100%; height: 100%; animation: spin 20s linear infinite; }
.ring-2 { width: 75%; height: 75%; animation: spin 14s linear infinite reverse; border-color: rgba(255, 45, 85, 0.15); }
.ring-3 { width: 50%; height: 50%; animation: spin 9s linear infinite; border-color: rgba(255, 45, 85, 0.25); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-siuu-text {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--red);
  letter-spacing: 12px;
  text-shadow: 0 0 40px var(--red-glow);
  z-index: 1;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 40px var(--red-glow); }
  50% { text-shadow: 0 0 80px var(--red), 0 0 120px var(--red-dim); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--subtle);
  border-bottom: 1px solid var(--subtle);
  padding: 40px 48px;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  letter-spacing: 2px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--subtle);
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.how-header { margin-bottom: 60px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  letter-spacing: 2px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { display: flex; flex-direction: column; gap: 16px; }
.step-number {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--subtle);
}
.step-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 1px;
}
.step-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ===== WHY RONALDO ===== */
.why {
  background: var(--bg-2);
  border-top: 1px solid var(--subtle);
  border-bottom: 1px solid var(--subtle);
  padding: 100px 48px;
}
.why .section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 40px;
  max-width: 440px;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left { display: flex; flex-direction: column; }
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.why-point strong { color: var(--white); font-size: 15px; display: block; margin-bottom: 4px; }
.why-detail { font-size: 14px; color: var(--muted); line-height: 1.55; }
.why-right { display: flex; flex-direction: column; gap: 24px; }
.why-card {
  background: var(--bg-3);
  border: 1px solid var(--subtle);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-card-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--subtle);
  padding-bottom: 12px;
}
.why-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--white);
}
.why-card-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.why-card-status.live { background: rgba(0,255,100,0.1); color: #00ff64; }
.why-card-status.active { background: var(--red-dim); color: var(--red); }
.why-card-status.evergreen { background: rgba(240,180,41,0.1); color: var(--gold); }
.why-stat-block {
  background: linear-gradient(135deg, var(--red-dim), transparent);
  border: 1px solid rgba(255,45,85,0.2);
  border-radius: 4px;
  padding: 28px;
  text-align: center;
}
.why-big-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.why-big-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 48px;
  font-style: normal;
}
.manifesto-body {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.manifesto-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--subtle);
  padding: 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 32px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-desc { font-size: 13px; color: var(--muted); }
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: 2px;
}
.footer-dot { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--subtle);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--subtle);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-graphic { display: none; }
  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .stat-sep { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .nav { padding: 0 24px; }
  .how, .why, .manifesto, .stats-bar { padding-left: 24px; padding-right: 24px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero-siuuu { font-size: 72px; }
  .hero-media { font-size: 28px; }
  .stat-number { font-size: 36px; }
  .why-big-num { font-size: 52px; }
}