:root {
  --plum: #4A1D3F;
  --plum-deep: #2E1028;
  --cream: #FAF5EF;
  --gold: #C9A84C;
  --gold-muted: #A8893F;
  --sage: #7D9C6B;
  --fg: #1A0A1F;
  --fg-muted: #6B4E7A;
  --border: rgba(74, 29, 63, 0.15);
  --card-bg: rgba(250, 245, 239, 0.7);
}

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(201, 168, 76, 0.8); }

.hero {
  padding: 80px 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  margin-bottom: 56px;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: var(--plum);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__headline em { font-style: italic; color: var(--plum-deep); }
.hero__sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
}

.panel {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(74, 29, 63, 0.08);
}
.panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--plum);
  color: white;
}
.panel__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.panel__title { font-size: 13px; font-weight: 500; flex: 1; }
.panel__time { font-size: 11px; opacity: 0.6; }
.alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.alert:last-of-type { border-bottom: none; }
.alert__dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.alert__dot--gold { background: var(--gold); }
.alert__dot--plum { background: var(--plum); }
.alert__dot--sage { background: var(--sage); }
.alert__name { font-size: 14px; font-weight: 500; color: var(--fg); margin-bottom: 3px; }
.alert__meta { font-size: 12px; color: var(--fg-muted); }
.panel__count { padding: 12px 20px; font-size: 11px; color: var(--fg-muted); letter-spacing: 0.04em; }

.hero__stats {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.stat { flex: 1; padding: 20px 28px; text-align: center; }
.stat__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 4px;
}
.stat__label { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.stat__sep { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

.how {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.how__inner { max-width: 1100px; margin: 0 auto; }
.how__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--plum);
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 480px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(74, 29, 63, 0.12);
  margin-bottom: 16px;
  line-height: 1;
}
.step__title { font-size: 17px; font-weight: 500; color: var(--plum); margin-bottom: 10px; }
.step__text { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

.manifesto {
  position: relative;
  background: var(--plum-deep);
  padding: 100px 48px;
  overflow: hidden;
}
.manifesto__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(125,156,107,0.06) 0%, transparent 60%);
}
.manifesto__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: rgba(250,245,239,0.95);
  line-height: 1.4;
  padding-top: 8px;
}
.manifesto__body p { font-size: 15px; color: rgba(250,245,239,0.7); line-height: 1.75; margin-bottom: 16px; }
.manifesto__body p strong { color: var(--gold); font-weight: 500; }

.features { padding: 80px 48px; }
.features__inner { max-width: 1100px; margin: 0 auto; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(74, 29, 63, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat__title { font-size: 15px; font-weight: 500; color: var(--plum); margin-bottom: 6px; }
.feat__text { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

.closing {
  background: var(--plum);
  padding: 100px 48px;
  text-align: center;
}
.closing__inner { max-width: 640px; margin: 0 auto; }
.closing__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.closing__sub {
  font-size: 16px;
  color: rgba(250,245,239,0.7);
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing__tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
}

.footer { border-top: 1px solid var(--border); padding: 40px 48px; }
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 4px;
}
.footer__descriptor { font-size: 12px; color: var(--fg-muted); }
.footer__meta { font-size: 13px; color: var(--fg-muted); text-align: right; max-width: 340px; }

@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__panel { max-width: 460px; }
  .hero__stats { flex-wrap: wrap; }
  .stat { flex: 1 1 33%; padding: 16px 20px; }
  .stat__sep { display: none; }
  .how { padding: 56px 24px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .manifesto { padding: 64px 24px; }
  .manifesto__inner { grid-template-columns: 1fr; gap: 36px; }
  .features { padding: 56px 24px; }
  .features__grid { grid-template-columns: 1fr; }
  .closing { padding: 72px 24px; }
  .footer { padding: 32px 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: 36px; }
  .closing__headline { font-size: 40px; }
  .nav__tagline { display: none; }
}