/* =====================
   VARIABLES
   ===================== */
:root {
  --bg: #18120a;
  --surface: #221a10;
  --accent: #e8a838;
  --accent-dim: #c4891e;
  --text: #f5f0e8;
  --text-muted: #a89880;
  --text-dim: #6b5c48;
  --border: #2e2418;
}

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

html { scroll-behavior: smooth; }

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

::selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3 { font-family: 'Playfair Display', serif; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* =====================
   NAV
   ===================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { font-size: 14px; color: var(--accent); line-height: 1; }
.nav-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; letter-spacing: 0.02em; }

.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  display: none;
}

@media (min-width: 768px) { .nav-tag { display: block; } }

/* =====================
   MANIFESTO
   ===================== */
.manifesto {
  position: relative;
  padding: 100px 48px 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 40px;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.manifesto-accent {
  background: var(--accent);
  width: 3px;
  align-self: stretch;
  border-radius: 2px;
}

.manifesto-headline {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--text);
}

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

.manifesto-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.manifesto-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
}

.price-label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.manifesto-bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 28vw;
  font-weight: 900;
  color: var(--surface);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 767px) {
  .manifesto { padding: 60px 24px 80px; }
  .manifesto-bg-text { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-accent { display: none; }
}

/* =====================
   HOW IT WORKS
   ===================== */
.how {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.how-header { margin-bottom: 72px; }

.how-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 600px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--surface);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .how { padding: 60px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
}

/* =====================
   WHO IT'S FOR
   ===================== */
.who {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.who-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.who-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.who-item:hover {
  border-color: var(--accent-dim);
  background: #1e150d;
}

.who-icon {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .who { padding: 60px 24px; }
  .who-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* =====================
   ETHOS / STATS
   ===================== */
.ethos {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.ethos-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 1100px;
}

.ethos-block { padding: 0 40px; }
.ethos-block:first-child { padding-left: 0; }

.ethos-stat {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.ethos-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.ethos-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.ethos-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 8px 0;
}

@media (max-width: 767px) {
  .ethos { padding: 60px 24px; }
  .ethos-inner { grid-template-columns: 1fr; gap: 40px; }
  .ethos-divider { display: none; }
  .ethos-block { padding: 0; border-top: 1px solid var(--border); padding-top: 32px; }
  .ethos-block:first-child { border-top: none; padding-top: 0; }
}

/* =====================
   CLOSING
   ===================== */
.closing {
  padding: 120px 48px;
  text-align: center;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}

.closing-headline {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 28px;
  color: var(--text);
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .closing { padding: 80px 24px; }
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { font-size: 14px; color: var(--accent); }
.footer-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; }

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
}

.footer-legal {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* =====================
   RESPONSIVE HELPERS
   ===================== */
@media (max-width: 1024px) {
  .manifesto-bg-text { font-size: 35vw; right: -40px; }
}

@media (min-width: 768px) {
  .nav { padding: 24px 48px; }
}

@media (max-width: 767px) {
  .nav { padding: 20px 24px; }
  h1 { letter-spacing: -0.01em; }
}