:root {
  --bg: #0D0D0D;
  --surface: #161614;
  --surface-2: #1E1E1B;
  --cream: #F7F3EE;
  --amber: #E8A838;
  --muted: #8A8680;
  --muted-light: #B8B4AF;
  --text: #F7F3EE;
  --border: rgba(247,243,238,0.08);
}

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav__tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  background: var(--bg);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(232,168,56,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--cream);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.hero__line2 {
  color: var(--amber);
  font-style: italic;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-light);
  max-width: 480px;
  font-weight: 300;
}

/* HERO STACK CARDS */
.hero__stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: center;
  transition: border-color 0.2s;
}
.hero__card:hover { border-color: rgba(232,168,56,0.3); }
.hero__card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  grid-column: 1 / -1;
}
.hero__card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}
.hero__card-status {
  font-size: 13px;
  color: var(--amber);
  text-align: right;
}

/* HOW IT WORKS */
.how {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.how__inner { max-width: 1200px; margin: 0 auto; }
.how__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
}
.how__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 60px;
  max-width: 600px;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how__item { }
.how__num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.how__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 16px;
}
.how__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-light);
  font-weight: 300;
}

/* PERSONAS */
.personas {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.personas__inner { max-width: 1200px; margin: 0 auto; }
.personas__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
}
.personas__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--cream);
  margin-bottom: 60px;
}
.personas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.personas__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
}
.personas__card:hover {
  border-color: rgba(232,168,56,0.25);
  transform: translateY(-2px);
}
.personas__icon {
  margin-bottom: 24px;
}
.personas__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 14px;
}
.personas__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-light);
  font-weight: 300;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.manifesto__inner { max-width: 1200px; margin: 0 auto; }
.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 48px;
  font-style: normal;
  max-width: 900px;
}
.manifesto__quote strong { color: var(--amber); }
.manifesto__body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted-light);
  max-width: 720px;
  font-weight: 300;
  margin-bottom: 24px;
}
.manifesto__body:last-child { margin-bottom: 0; }

/* CLOSING */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,168,56,0.07) 0%, transparent 70%);
}
.closing__inner { max-width: 800px; margin: 0 auto; }
.closing__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}
.closing__sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--cream);
}
.footer__copy {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 100px; }
  .how__grid { grid-template-columns: 1fr; gap: 48px; }
  .personas__grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
  .hero { padding-left: 24px; padding-right: 24px; }
  .how { padding: 80px 24px; }
  .personas { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .hero__headline { font-size: 52px; }
  .hero__card { grid-template-columns: 1fr; }
  .hero__card-status { text-align: left; }
  .nav__tagline { display: none; }
}