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

:root {
  --bg: #fafaf8;
  --bg-alt: #f0ede8;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --accent: #f5a623;
  --accent-dark: #c47d0a;
  --border: #e2ddd8;
  --card-bg: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-highlight {
  color: var(--accent);
  font-style: italic;
}
.hero-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn-primary {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: #333; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--fg); }
.btn-large { padding: 16px 32px; font-size: 1.05rem; }

/* STAT PANELS */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  background: var(--card-bg);
  text-align: right;
  min-width: 160px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* PILLARS */
.pillars-section {
  background: var(--bg-alt);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}
.pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px 32px;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pillar-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.hiw-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.hiw-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hiw-card {
  padding: 24px;
}
.hiw-icon { margin-bottom: 16px; }
.hiw-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.hiw-card-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* SAMPLE REPORT */
.sample-section {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 40px;
}
.sample-inner { max-width: 900px; margin: 0 auto; }
.sample-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.sample-project {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #fff;
}
.sample-score-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 12px;
}
.sample-score-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sample-score-num span { font-size: 2rem; color: #666; }
.sample-verdict { font-size: 1.2rem; color: #aaa; }
.sample-verdict strong { color: var(--accent); }
.sample-cost {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 24px;
}
.sample-cost strong { color: var(--accent); }
.sample-pillars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.sample-pillar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  font-size: 0.9rem;
}
.sample-pillar-name { color: #ccc; }
.score-red { color: #e05050; font-weight: 700; }
.score-yellow { color: #f5a623; font-weight: 700; }
.sample-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: #999;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.sample-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #777;
}
.sample-link { color: var(--accent); text-decoration: none; font-weight: 600; }
.sample-link:hover { text-decoration: underline; }

/* VERDICT */
.verdict-section {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.verdict-statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.verdict-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.verdict-founder { display: flex; align-items: center; gap: 20px; }
.founder-img-wrap { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.founder-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-name { font-weight: 700; font-size: 1rem; color: var(--fg); margin-bottom: 2px; }
.founder-role { font-size: 0.82rem; color: var(--fg-muted); }
.founder-note { font-size: 0.78rem; color: var(--fg-muted); font-style: italic; margin-top: 4px; }
.verdict-pricing { text-align: right; }
.pricing-main {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-sub { font-size: 0.85rem; color: var(--fg-muted); margin: 8px 0 20px; line-height: 1.5; }
.pricing-note { font-size: 0.78rem; color: var(--fg-muted); margin-top: 10px; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: var(--fg-muted); text-decoration: none; }
.footer-links a:hover { color: var(--fg); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { flex-direction: row; }
  .stat-panel { min-width: unset; flex: 1; text-align: left; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
  .verdict-footer { flex-direction: column; }
  .verdict-pricing { text-align: left; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .pillars-section { padding: 48px 20px; }
  .hiw-section { padding: 48px 20px; }
  .sample-section { padding: 48px 20px; }
  .verdict-section { padding: 48px 20px 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .hero-right { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
  .footer { padding: 20px; }
  .nav { padding: 16px 20px; }
  .footer-links { gap: 16px; }
}