:root {
  --ink: #20221f;
  --soft-black: #11130f;
  --muted: #6d6e68;
  --paper: #f6f3ec;
  --warm-white: #fbfaf6;
  --hairline: #dedbd2;
  --accent: #0e5a45;
  --accent-soft: #eaf2ee;
  --accent-dark: #083b2d;
  --shadow: 0 30px 80px rgba(20, 20, 15, .10);
  --radius: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--warm-white);
  color: var(--ink);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  gap: 40px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(251, 250, 246, .88);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 26px;
  margin-right: auto;
}

.nav nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

.nav a { text-decoration: none; color: inherit; }

.nav-cta {
  border: 1px solid var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 6vw;
  padding: 7vw 6vw 6vw;
  align-items: center;
  overflow: hidden;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 800;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(62px, 8vw, 118px);
  line-height: .88;
  max-width: 780px;
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
}

h3 {
  font-size: 30px;
  line-height: 1.08;
}

.lead {
  font-size: 22px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 700px;
  margin: 28px 0 36px;
}

.url-card {
  display: flex;
  max-width: 760px;
  padding: 8px;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.url-card input {
  flex: 1;
  border: 0;
  padding: 0 24px;
  font-size: 17px;
  outline: none;
  background: transparent;
}

.url-card button,
.price-card a,
.final-cta a {
  border: 0;
  background: var(--accent);
  color: white;
  padding: 18px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-proof span {
  border: 1px solid var(--hairline);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.strategy-card {
  background: var(--soft-black);
  color: white;
  border-radius: 32px;
  padding: 42px;
  max-width: 480px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.strategy-card .label,
.price-card .label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}

.strategy-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-size: 16px;
}

.floating-pill {
  position: absolute;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  font-weight: 700;
  font-size: 14px;
}

.floating-pill.one { top: 12%; left: 6%; }
.floating-pill.two { right: 0; top: 34%; }
.floating-pill.three { left: 18%; bottom: 12%; }

.proof-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 24px 6vw;
  border-block: 1px solid var(--hairline);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
  background: var(--paper);
}

.how, .analysis-preview, .report-preview, .pricing, .final-cta {
  padding: 110px 6vw;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.steps article {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 34px;
}

.steps span {
  display: block;
  font-size: 13px;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 60px;
}

.steps p, .analysis-copy p, .report-copy p, .pricing p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.analysis-preview {
  background: var(--soft-black);
  color: white;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 6vw;
  align-items: center;
}

.analysis-preview .eyebrow { color: #b7d5c8; }
.analysis-copy p { color: rgba(255,255,255,.68); }

.analysis-canvas {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background: radial-gradient(circle at 50% 40%, rgba(14,90,69,.35), transparent 40%);
  overflow: hidden;
}

.node {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-weight: 700;
  animation: float 7s ease-in-out infinite;
}

.node.center {
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: var(--ink);
  border-radius: 24px;
  padding: 28px;
}

.n1 { left: 10%; top: 18%; }
.n2 { right: 10%; top: 22%; animation-delay: .5s; }
.n3 { left: 18%; bottom: 22%; animation-delay: 1s; }
.n4 { right: 16%; bottom: 18%; animation-delay: 1.5s; }
.n5 { left: 38%; top: 8%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.insight-transform {
  padding: 90px 6vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  background: var(--paper);
}

.panel {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px;
}

.panel.accent {
  background: var(--accent-dark);
  color: white;
}

.panel.accent .eyebrow { color: #b7d5c8; }

.arrow {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 30px;
}

.report-preview,
.pricing {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 6vw;
  align-items: center;
}

.report-card, .price-card {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 32px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.report-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 14px;
}

.report-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.quiet-metrics {
  margin-top: 30px;
  border-top: 1px solid var(--hairline);
}

.quiet-metrics div {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}

.quiet-metrics span { color: var(--muted); }

.pricing { background: var(--paper); }
.price-card .label { color: var(--accent); }

.price-card h3 {
  font-size: 64px;
  margin: 12px 0 20px;
}

.price-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 30px;
}

.final-cta {
  text-align: center;
  background: var(--accent-dark);
  color: white;
}

.final-cta p {
  color: rgba(255,255,255,.7);
  font-size: 20px;
  margin-bottom: 32px;
}

.final-cta a {
  background: white;
  color: var(--accent-dark);
}

@media (max-width: 900px) {
  .nav nav { display: none; }
  .hero, .analysis-preview, .report-preview, .pricing {
    grid-template-columns: 1fr;
  }
  .url-card {
    border-radius: 24px;
    flex-direction: column;
  }
  .url-card input { padding: 18px; }
  .insight-transform {
    grid-template-columns: 1fr;
  }
  .arrow { transform: rotate(90deg); }
  .steps { grid-template-columns: 1fr; }
  .proof-strip { flex-wrap: wrap; gap: 18px; }
}

/* ─── Footer ─── */
.site-footer { background: #1a1a1a; color: #999; padding: 48px 6vw; margin-top: 0; }
.footer-content { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { color: white; font-size: 16px; }
.footer-brand span { font-size: 12px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #999; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-attribution { font-size: 12px; }
.footer-attribution a { color: #aaa; text-decoration: none; }
.footer-attribution a:hover { color: white; }

/* ─── Sample Review Section ─── */
.report-sample { display: flex; flex-direction: column; gap: 24px; }
.sample-card { background: white; border: 1px solid var(--hairline); border-radius: 20px; padding: 32px; }
.sample-card.cover { background: #fafaf9; }
.sample-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.sample-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 700; }
.sample-industry { font-size: 12px; color: var(--muted); }
.sample-title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; line-height: 1.35; margin-bottom: 20px; }
.sample-dashboard { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; border-top: 1px solid var(--hairline); padding-top: 16px; }
.sample-dashboard div { display: flex; flex-direction: column; gap: 4px; }
.sample-dashboard span { font-size: 11px; color: var(--muted); }
.sample-dashboard strong { font-size: 13px; font-weight: 700; color: var(--ink); }

.sample-sections { display: flex; flex-direction: column; gap: 0; background: white; border: 1px solid var(--hairline); border-radius: 20px; overflow: hidden; }
.sample-section { display: flex; align-items: baseline; gap: 14px; padding: 16px 24px; border-bottom: 1px solid #f0f0f0; }
.sample-section:last-child { border-bottom: none; }
.section-num { font-size: 12px; font-weight: 700; color: var(--accent); flex-shrink: 0; min-width: 20px; }
.sample-section h4 { font-size: 14px; font-weight: 700; display: inline; margin-right: 8px; }
.sample-section p { font-size: 13px; color: var(--muted); display: inline; line-height: 1.5; }
.sample-section div { display: inline; }

@media (max-width: 600px) {
  .sample-dashboard { grid-template-columns: repeat(2, 1fr); }
}
