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

:root {
  --bg:        #0A0A0A;
  --bg-2:      #111111;
  --bg-3:      #181818;
  --fg:        #F0F0F0;
  --fg-muted:  #8A8A8A;
  --accent:    #C8F547;
  --accent-dim:#8AAF2E;
  --border:    rgba(200, 245, 71, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:      4px;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.status-label {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === MANIFESTO === */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  padding: 80px 60px 100px;
  min-height: 640px;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 245, 71, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

.manifesto-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.manifesto-body strong {
  color: var(--fg);
  font-weight: 600;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 0 28px;
}

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

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Manifesto visual */
.manifesto-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-orb {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(200, 245, 71, 0.18) 0%, rgba(200, 245, 71, 0.04) 40%, transparent 70%);
  border: 1px solid rgba(200, 245, 71, 0.15);
  box-shadow: 0 0 80px rgba(200, 245, 71, 0.08), inset 0 0 60px rgba(200, 245, 71, 0.04);
  position: relative;
  animation: orb-glow 4s ease-in-out infinite alternate;
}

@keyframes orb-glow {
  from { box-shadow: 0 0 80px rgba(200, 245, 71, 0.08), inset 0 0 60px rgba(200, 245, 71, 0.04); }
  to   { box-shadow: 0 0 120px rgba(200, 245, 71, 0.14), inset 0 0 80px rgba(200, 245, 71, 0.08); }
}

.visual-orb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 245, 71, 0.6) 0%, rgba(200, 245, 71, 0.1) 60%, transparent 80%);
  box-shadow: 0 0 30px rgba(200, 245, 71, 0.4);
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 245, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 245, 71, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
}

.visual-scanline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 360px;
  background: linear-gradient(180deg, transparent, rgba(200, 245, 71, 0.4), transparent);
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0%   { top: -360px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 360px; opacity: 0; }
}

/* === PLAYBOOK === */
.playbook {
  padding: 100px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.playbook-header {
  text-align: center;
  margin-bottom: 72px;
}

.playbook-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.playbook-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
}

.playbook-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 240px;
  transition: border-color 0.2s;
}

.step:hover { border-color: rgba(200, 245, 71, 0.3); }

.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.7;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}

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

.step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* === OUTCOMES === */
.outcomes {
  padding: 100px 60px;
  background: var(--bg);
}

.outcomes-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 48px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.outcome {
  background: var(--bg);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.outcome:hover { background: var(--bg-2); }

.outcome-icon {
  width: 28px;
  height: 28px;
}

.outcome-icon svg { width: 100%; height: 100%; }

.outcome-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.outcome-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 100px 60px 120px;
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 245, 71, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.closing-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-highlight {
  color: var(--accent);
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}

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

.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .manifesto {
    grid-template-columns: 1fr;
    padding: 60px 32px 80px;
  }

  .manifesto-visual { display: none; }

  .manifesto-headline { font-size: 2.2rem; }

  .manifesto-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat { padding: 0; }
  .stat-sep { display: none; }

  .playbook { padding: 80px 32px; }

  .playbook-steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .step { max-width: 100%; }

  .outcomes { padding: 80px 32px; }

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

  .closing { padding: 80px 32px 100px; }

  .footer { padding: 32px; }

  .nav { padding: 16px 24px; }
  .nav-status { display: none; }
}

@media (max-width: 480px) {
  .manifesto { padding: 48px 24px 64px; }
  .manifesto-headline { font-size: 1.8rem; }
  .playbook { padding: 60px 24px; }
  .outcomes { padding: 60px 24px; }
  .closing { padding: 60px 24px 80px; }
  .footer { padding: 24px; }
}
