/* Fonts */
:root {
  --cream: #FAF6F1;
  --warm-white: #FDFBF8;
  --navy: #1B2631;
  --navy-light: #2D3E50;
  --amber: #D4621A;
  --amber-light: #E8833A;
  --sage: #5C7B6A;
  --text-muted: #6B7280;
  --border: #E8E2DA;
  --card-bg: #FFFFFF;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 96px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy-light);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.feature-icon {
  color: var(--amber);
  font-size: 8px;
  line-height: 1;
}

/* Dashboard Card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.dashboard-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 24px 64px rgba(27, 38, 49, 0.18);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.dash-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dash-metric {}

.metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 2px;
}

.metric-label {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-progress {
  margin-bottom: 20px;
}

.progress-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 99px;
  width: 0%;
}

.progress-num {
  font-size: 11px;
  color: var(--amber-light);
  font-weight: 600;
}

.dash-recent {}

.recent-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.recent-item {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-style: italic;
}

/* Features Section */
.features {
  background: var(--warm-white);
  padding: 96px 48px;
}

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.feature-card {
  background: var(--card-bg);
  padding: 40px;
  border: 1px solid var(--border);
}

.feature-card--left { border-radius: 16px 0 0 0; }
.feature-card--right { border-radius: 0 16px 0 0; }

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--border);
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Metrics Section */
.metrics {
  padding: 96px 48px;
  background: var(--navy);
}

.metrics-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.metrics-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.metrics-body {
  font-size: 16px;
  color: rgba(253,251,248,0.6);
  line-height: 1.65;
}

.metrics-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.metric-block {
  padding-left: 24px;
  border-left: 2px solid var(--amber);
}

.big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 6px;
}

.big-label {
  font-size: 14px;
  color: rgba(253,251,248,0.5);
}

/* Manifesto */
.manifesto {
  padding: 96px 48px;
  background: var(--cream);
}

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

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 28px;
}

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

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 64px;
    gap: 48px;
  }
  .hero-visual { justify-content: flex-start; }
  .dashboard-card { max-width: 100%; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--left { border-radius: 16px 16px 0 0; }
  .feature-card--right { border-radius: 0; }
  .metrics { padding: 64px 24px; }
  .metrics-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto { padding: 64px 24px; }
  .manifesto-quote { font-size: 24px; }
  .footer { padding: 32px 24px; }
}