:root {
  --ink: #0B1A10;
  --forest: #1B3D2F;
  --forest-light: #2A5542;
  --forest-dark: #0E2618;
  --cream: #FAF7F2;
  --cream-warm: #F2EDE3;
  --gold: #C9942A;
  --gold-light: #D9AE4A;
  --gold-pale: #F5E8C8;
  --text: #2C1810;
  --text-muted: #6B5E52;
  --text-faint: #A89888;
}

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

html { font-size: 16px; }

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 61, 47, 0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 36px;
  height: 36px;
  background: var(--forest);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  letter-spacing: -0.5px;
}

.nav-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  letter-spacing: -0.3px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 60px 80px;
  background: var(--forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 148, 42, 0.07) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px);
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 148, 42, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-line {
  display: block;
}

.hero-line-2 {
  color: var(--gold-light);
  font-style: italic;
}

.hero-line-3 {
  color: rgba(250, 247, 242, 0.5);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.7);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--gold-light);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(250, 247, 242, 0.45);
  letter-spacing: 0.3px;
  line-height: 1.3;
  max-width: 100px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(250, 247, 242, 0.12);
}

/* Book stack visual */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-book-stack {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.book-spine {
  width: 14px;
  background: linear-gradient(to right, var(--forest-light) 0%, var(--forest) 100%);
  border-radius: 2px 0 0 2px;
  position: relative;
}

.book-spine::after {
  content: '';
  position: absolute;
  right: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.book-spine-1 { height: 180px; background: linear-gradient(to right, #2E5F47, var(--forest)); }
.book-spine-2 { height: 210px; background: linear-gradient(to right, #254D3A, #1B3D2F); }
.book-spine-3 { height: 195px; background: linear-gradient(to right, #1E4532, #162D22); }
.book-spine-4 { height: 225px; background: linear-gradient(to right, #3A6B54, #2A5542); }
.book-spine-5 { height: 170px; background: linear-gradient(to right, #4A7B64, #3A6B54); }
.book-spine-6 { height: 200px; background: linear-gradient(to right, #5A8B74, #4A7B64); }

/* Book stack shadow */
.hero-book-stack::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  width: 100%;
  background: rgba(201, 148, 42, 0.12);
  border: 1px solid rgba(201, 148, 42, 0.25);
  border-radius: 8px;
  padding: 14px 20px;
  text-align: center;
}

.hero-badge-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-badge-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-light);
}

.hero-badge-sub {
  font-size: 11px;
  color: rgba(250, 247, 242, 0.45);
  letter-spacing: 0.5px;
}

/* Section label */
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

/* Manifesto */
.manifesto {
  padding: 100px 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-warm);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 32px;
  font-weight: 500;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  line-height: 1.45;
  margin-bottom: 36px;
  padding-left: 28px;
  border-left: 3px solid var(--gold);
}

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

.manifesto-body--highlight {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  margin-top: 32px;
}

/* Process */
.process {
  padding: 100px 60px;
  background: var(--cream);
}

.process-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.process-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
}

.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  position: relative;
  padding-top: 28px;
}

.process-step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--cream-warm);
  line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px var(--text-faint);
}

.process-step-connector {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.process-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.3;
}

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

/* Features */
.features {
  padding: 100px 60px;
  background: var(--forest);
}

.features-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.features-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.feature-card--primary {
  background: rgba(201, 148, 42, 0.08);
  border-color: rgba(201, 148, 42, 0.2);
}

.feature-card--primary:hover {
  background: rgba(201, 148, 42, 0.12);
}

.feature-icon {
  color: var(--gold-light);
  margin-bottom: 20px;
}

.feature-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.feature-card-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.6);
  margin-bottom: 20px;
}

.feature-card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 148, 42, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Whitespace */
.whitespace {
  padding: 100px 60px;
  background: var(--cream);
}

.whitespace-inner {
  max-width: 960px;
  margin: 0 auto;
}

.whitespace-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
  font-weight: 500;
}

.whitespace-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 56px;
  line-height: 1.2;
}

.whitespace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-warm);
  border: 1px solid var(--cream-warm);
  margin-bottom: 48px;
}

.whitespace-competitor {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--cream);
}

.whitespace-competitor-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--forest);
  min-width: 120px;
}

.whitespace-competitor-desc {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.whitespace-competitor-status {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}

.whitespace-competitor-status--partial {
  background: rgba(107, 94, 82, 0.1);
  color: var(--text-muted);
}

.whitespace-verdict {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--forest);
  border-radius: 12px;
}

.whitespace-verdict-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.whitespace-verdict-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
}

.whitespace-verdict-text strong {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Closing */
.closing {
  padding: 100px 60px;
  background: var(--forest-dark);
}

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

.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 36px;
}

.closing-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.closing-body p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.6);
}

.closing-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.closing-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.closing-stat-value {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--gold-light);
  line-height: 1;
}

.closing-stat-label {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.4);
  line-height: 1.4;
}

/* Footer */
.footer {
  padding: 48px 60px;
  background: var(--ink);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  background: var(--forest);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.4);
  flex: 1;
}

.footer-meta {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.2);
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .manifesto, .process, .features, .whitespace, .closing { padding: 64px 24px; }
  .process-grid, .features-grid { grid-template-columns: 1fr; }
  .closing-body { grid-template-columns: 1fr; }
  .closing-stats { gap: 32px; flex-wrap: wrap; }
  .whitespace-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
