/* ===== TOKENS ===== */
:root {
  --bg: #0C0B10;
  --bg-raised: #13121C;
  --fg: #F0EBE0;
  --fg-muted: rgba(240,235,224,0.5);
  --fg-dim: rgba(240,235,224,0.25);
  --accent: #FF5B24;
  --accent-bright: #FF7043;
  --accent-glow: rgba(255,91,36,0.15);
  --lime: #B8FF57;
  --lime-glow: rgba(184,255,87,0.12);
}

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

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

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

::selection {
  background: var(--accent);
  color: #0C0B10;
}

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(12,11,16,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,235,224,0.06);
}

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

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(240,235,224,0.12);
  border-radius: 3px;
}

/* ===== MANIFESTO ===== */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, var(--lime-glow) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 780px;
  margin-bottom: 2rem;
}

.manifesto-headline em {
  font-style: normal;
  color: var(--accent);
}

.manifesto-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 4rem;
}

.manifesto-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(240,235,224,0.08);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-raised);
  width: fit-content;
}

.stat {
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}

.stat-divider {
  width: 1px;
  background: rgba(240,235,224,0.08);
  align-self: stretch;
}

.manifesto-accent-block {
  position: absolute;
  right: -2px;
  top: 20%;
  bottom: 20%;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--lime) 100%);
  border-radius: 2px;
}

/* ===== PROCESS ===== */
.process {
  padding: 8rem 2rem;
  background: var(--bg-raised);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,235,224,0.08), transparent);
}

.process-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

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

.process-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.025em;
  color: var(--fg);
}

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(240,235,224,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.process-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.3s ease;
}

.process-card:hover {
  background: var(--bg-raised);
}

.process-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.process-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.process-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  flex: 1;
}

/* ===== VISION ===== */
.vision {
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,91,36,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.vision-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.vision-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 2.5rem;
}

.vision-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--fg);
  font-style: normal;
  margin-bottom: 2rem;
}

.vision-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== CLOSING ===== */
.closing {
  padding: 6rem 2rem 8rem;
  border-top: 1px solid rgba(240,235,224,0.06);
}

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

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
}

/* ===== FOOTER ===== */
footer {
  padding: 2rem;
  border-top: 1px solid rgba(240,235,224,0.06);
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .manifesto { padding: 7rem 1.5rem 4rem; }
  .manifesto-headline { font-size: 2.4rem; }
  .manifesto-stats { flex-direction: column; width: 100%; }
  .stat { padding: 1.2rem 1.5rem; }
  .stat-divider { width: auto; height: 1px; }
  .process { padding: 5rem 1.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 1px; }
  .process-card { padding: 2rem 1.5rem; }
  .vision { padding: 6rem 1.5rem; }
  .closing { padding: 4rem 1.5rem 5rem; }
  nav { padding: 1rem 1.5rem; }
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.manifesto-headline { animation: fadeUp 0.7s ease-out 0.1s both; }
.manifesto-sub { animation: fadeUp 0.7s ease-out 0.2s both; }
.manifesto-stats { animation: fadeUp 0.7s ease-out 0.3s both; }
.process-card { animation: fadeUp 0.6s ease-out both; }
.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }
