:root {
  --bg: #0a0e17;
  --bg-alt: #0f1623;
  --fg: #e8edf5;
  --fg-muted: #8a9ab5;
  --accent: #7dd3fc;
  --accent-warm: #f59e0b;
  --border: rgba(125, 211, 252, 0.12);
  --ring-1: rgba(125, 211, 252, 0.08);
  --ring-2: rgba(125, 211, 252, 0.04);
  --ring-3: rgba(125, 211, 252, 0.02);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  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;
}

/* ── MANIFESTO ── */
.manifesto {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 8vw;
  gap: 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(125, 211, 252, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.manifesto-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 42ch;
  line-height: 1.7;
}

/* Globe */
.globe-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-dot {
  width: 12px;
  height: 12px;
  background: var(--accent-warm);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-warm), 0 0 40px rgba(245, 158, 11, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.15);
}

.ring-1 { width: 160px; height: 160px; animation: orbit 8s linear infinite; }
.ring-2 { width: 280px; height: 280px; border-color: rgba(125, 211, 252, 0.08); animation: orbit 14s linear infinite reverse; }
.ring-3 { width: 400px; height: 400px; border-color: rgba(125, 211, 252, 0.04); animation: orbit 22s linear infinite; }

.globe-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--accent);
}

.ring-2::before { background: rgba(125, 211, 252, 0.5); }
.ring-3::before { background: rgba(125, 211, 252, 0.25); width: 6px; height: 6px; }

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

@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── WHAT ── */
.what {
  padding: 8rem 8vw;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.what-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 3rem;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
}

.what-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.what-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 211, 252, 0.03);
  flex-shrink: 0;
}

.what-text h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
}

.what-text p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── PRINCIPLES ── */
.principles {
  padding: 8rem 8vw;
  border-bottom: 1px solid var(--border);
}

.principles-header {
  margin-bottom: 5rem;
}

.principles-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.principles-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.principles-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 55ch;
  line-height: 1.7;
}

.principles-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.step {
  padding: 3rem 2.5rem 3rem 0;
  border-right: 1px solid var(--border);
}

.step:last-child { border-right: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(125, 211, 252, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-body h4 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.step-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLOSER ── */
.closer {
  padding: 8rem 8vw;
  background: var(--bg-alt);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

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

.closer-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 3rem;
}

.closer-rule {
  width: 60px;
  height: 1px;
  background: var(--accent-warm);
  margin: 0 auto 3rem;
}

.closer-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  padding: 3rem 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

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

.footer-name {
  color: var(--accent-warm);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .manifesto {
    grid-template-columns: 1fr;
    padding: 5rem 6vw;
    min-height: auto;
    gap: 3rem;
  }

  .globe-wrap { width: 260px; height: 260px; }
  .ring-1 { width: 100px; height: 100px; }
  .ring-2 { width: 180px; height: 180px; }
  .ring-3 { width: 260px; height: 260px; }

  .what { padding: 5rem 6vw; }
  .what-grid { grid-template-columns: 1fr; }

  .principles { padding: 5rem 6vw; }
  .principles-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0; }
  .step:last-child { border-bottom: none; }

  .closer { padding: 5rem 6vw; }
  .footer { flex-direction: column; gap: 0.75rem; text-align: center; }
}