:root {
  --bg: #f8f7f4;
  --ink: #1c1c1c;
  --accent: #d4920a;
  --sage: #4a7c6f;
  --muted: #8a8680;
  --border: #e2e0db;
  --card-bg: #ffffff;
}

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

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

/* Navigation */
.nav {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}

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

/* Hero */
.hero {
  padding: 80px 48px 96px;
}

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

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

.hero-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 480px;
}

/* Snapshot Card */
.snapshot-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  font-size: 13px;
}

.snapshot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #fafaf9;
}

.snapshot-dots {
  display: flex;
  gap: 6px;
}

.snapshot-dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.snapshot-dots span:first-child { background: #ff5f57; }
.snapshot-dots span:nth-child(2) { background: #febc2e; }
.snapshot-dots span:last-child { background: #28c840; }

.snapshot-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.snapshot-section {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.snapshot-section:last-child { border-bottom: none; }

.snapshot-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.leak-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.leak-item:last-child { margin-bottom: 0; }

.leak-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fef3e2;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.leak-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.leak-meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.competitor-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.competitor-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
}

.competitor-score {
  font-size: 11px;
  font-weight: 600;
  color: var(--sage);
  background: #e8f0ed;
  padding: 2px 8px;
  border-radius: 4px;
}

.competitor-detail {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.fix-box {
  background: #fef3e2;
  border: 1px solid #f0d08a;
  border-radius: 8px;
  padding: 12px;
}

.fix-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.fix-time {
  font-size: 12px;
  color: #8a6b2e;
}

/* Manifesto */
.manifesto {
  background: var(--ink);
  color: #f8f7f4;
  padding: 96px 48px;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.stat-number {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.stat-text {
  font-size: 14px;
  color: #a0a0a0;
  margin-top: 12px;
  line-height: 1.5;
}

.manifesto-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  color: #f8f7f4;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.manifesto-body {
  font-size: 16px;
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
}

.manifesto-body:last-child { margin-bottom: 0; }

/* Snapshot Offer */
.snapshot-offer {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 56px;
}

.snapshot-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sf-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sf-icon {
  width: 40px;
  height: 40px;
  background: #fef3e2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sf-text strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.sf-text span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Process */
.process {
  padding: 96px 48px;
  background: #f2f1ee;
}

.process .section-label,
.process .section-headline {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process .section-sub {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

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

.step-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.5;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Full Report */
.full-report {
  padding: 96px 48px;
}

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

.report-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.report-body {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.report-price {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 48px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.report-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.incl-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  font-size: 14px;
}

.incl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.incl-list li {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.incl-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #e8f0ed;
  border-radius: 4px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%234a7c6f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Report Visual */
.report-sample {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  font-size: 13px;
}

.report-sample-yours {
  border-color: #e8c4a0;
}

.report-sample-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: #fafaf9;
}

.report-sample-yours .report-sample-label {
  color: #8a6b2e;
  background: #fef8f0;
  border-color: #f0d08a;
}

.report-competitor-row {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.cr-header {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
}

.cr-name { color: var(--ink); font-weight: 600; }

.cr-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cr-score-bar {
  height: 6px;
  background: var(--sage);
  border-radius: 3px;
  flex: 1;
  max-width: 200px;
}

.cr-score-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.cr-metrics {
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.cr-metric {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 4px 0;
  color: #555;
}

.cr-pass { color: var(--sage); font-weight: 600; }
.cr-warn { color: #b0760e; font-weight: 600; }
.cr-fail { color: #c0392b; font-weight: 600; }

.cr-finding {
  padding: 12px 16px;
  background: #fafaf9;
}

.cr-finding-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.cr-finding-text {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* Closing */
.closing {
  background: var(--ink);
  color: #f8f7f4;
  padding: 96px 48px;
  text-align: center;
}

.closing-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: #f8f7f4;
  max-width: 800px;
  margin: 0 auto 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.closing-sub {
  font-size: 16px;
  color: #888;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 18px;
  color: var(--ink);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

.footer-meta {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .manifesto-inner,
  .report-inner {
    grid-template-columns: 1fr;
  }
  .manifesto-inner {
    gap: 32px;
  }
  .hero {
    padding: 56px 24px 72px;
  }
  .snapshot-features,
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nav { padding: 16px 24px; }
  .snapshot-offer,
  .process,
  .full-report,
  .manifesto,
  .closing {
    padding: 64px 24px;
  }
  .footer { padding: 24px; }
}
