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

:root {
  --bg: #F5F0E8;
  --surface: #EDE8DE;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #D97706;
  --accent-dark: #B45309;
  --border: #D6D0C4;
  --white: #FDFCF9;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ─── NAV ─── */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--white);
}
.nav__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
}
.nav__tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── HERO ─── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__globe {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__globe svg {
  width: 320px;
  height: 320px;
  animation: spin-slow 30s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero__sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 48px;
}
.manifesto__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.manifesto__rule {
  height: 1px;
  background: rgba(245, 240, 232, 0.2);
}
.manifesto__quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--bg);
  font-style: italic;
  text-align: center;
  padding: 0 20px;
}

/* ─── WHY ─── */
.why {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
}
.why__header {
  margin-bottom: 64px;
}
.why__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.why__sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why__card {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why__icon {
  width: 48px; height: 48px;
  background: var(--surface);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.why__card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.why__card-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── SPECTRUM ─── */
.spectrum {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.spectrum__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.spectrum__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.spectrum__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.spectrum__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-weight: 500;
}
.spectrum__item:first-child { border-top: 1px solid var(--border); }
.spectrum__dash {
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.spectrum__tag {
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── CLOSING ─── */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 48px;
}
.closing__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--bg);
}
.closing__body {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__logo {
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 12px;
  color: var(--white);
}
.footer__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 14px;
}
.footer__sub {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer__legal {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; grid-template-columns: 1fr; gap: 40px; }
  .hero__globe { order: -1; }
  .hero__globe svg { width: 200px; height: 200px; }
  .manifesto { padding: 60px 24px; }
  .why { padding: 60px 24px; }
  .why__grid { grid-template-columns: 1fr; }
  .spectrum { padding: 60px 24px; }
  .spectrum__inner { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
}