:root {
  --bg: #0A1628;
  --surface: #0F1E36;
  --surface2: #142640;
  --fg: #F0EBD8;
  --fg-muted: #A89F8A;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.15);
  --border: rgba(240, 235, 216, 0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FF6B35 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3A7BD5 0%, transparent 70%);
  bottom: 50px; left: -50px;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.label-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat { padding: 0 40px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 40px;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.mark-line { flex: 1; height: 1px; background: var(--border); }
.mark-text {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.manifesto-statement {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ── PLAYBOOK ── */
.playbook {
  padding: 100px 40px;
  background: var(--bg);
}
.playbook-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.1;
}
.playbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.play-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
}
.play-num {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.play-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.play-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── RESULTADOS ── */
.resultados {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.resultados-inner { max-width: 1200px; margin: 0 auto; }
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.res-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: background 0.2s;
}
.res-card:hover { background: var(--bg); }
.res-card-primary { grid-column: 1; grid-row: 1; }
.res-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.res-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.res-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.res-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 860px; margin: 0 auto; }
.closing-badge {
  display: inline-block;
  border: 1px solid var(--accent-dim);
  border-radius: 2px;
  padding: 8px 20px;
  margin-bottom: 48px;
}
.badge-text {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.footer-tag { font-size: 12px; color: var(--fg-muted); }
.footer-meta { font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.footer-sep { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .resultados-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 100px 24px 64px; }
  .manifesto, .playbook, .resultados, .closing { padding: 72px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .resultados-grid { grid-template-columns: 1fr; }
  .playbook-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .nav { padding: 16px 24px; }
}