/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --black: #0d0d0d;
  --dark:  #1a1a1a;
  --grey:  #3a3a3a;
  --muted: #777;
  --light: #e8e8e0;
  --cream: #f5f5f0;
  --white: #ffffff;
  --accent: #d4a855; /* muted gold */
  --red: #c0392b;
}

/* ─── Base ───────────────────────────────────────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────── */
.display {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.headline {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.subhead {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 400;
}

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.overline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── Buttons ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--grey); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 27px;
  border: 2px solid var(--black);
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

/* ─── Layout Helpers ─────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0;
}

/* ─── Nav ────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 7px 16px;
  transition: color 0.15s, border-color 0.15s;
}
.nav-cta:hover { color: var(--black); border-color: var(--black); }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero-headline {
  max-width: 820px;
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  max-width: 540px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-tagline {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--black);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.3;
}

/* ─── Who This Is For ────────────────────────────────── */
.audience {
  background: var(--black);
  color: var(--white);
}

.audience .overline {
  color: var(--accent);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 60px;
}

.audience-card {
  background: var(--dark);
  padding: 40px 36px;
}

.audience-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

.audience-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.audience-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ─── What You Get ───────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
  margin-top: 60px;
}

.offer-card {
  background: var(--white);
  padding: 48px 40px;
}

.offer-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.offer-card h3 {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ─── Credibility ────────────────────────────────────── */
.credibility {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.credibility-image {
  aspect-ratio: 4/3;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.credibility-image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credibility-image-text {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}

.initials-block {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}

.credibility-content .overline { margin-bottom: 16px; }
.credibility-content .divider { margin: 20px 0; }
.credibility-content .subhead { margin-bottom: 36px; }

.cred-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.1);
}

.cred-stat {
  padding: 24px 20px;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.cred-stat:last-child { border-right: none; }

.cred-stat-val {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}

.cred-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.3;
}

/* ─── Results ────────────────────────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.result-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 36px 32px;
  position: relative;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.result-number {
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
}

.result-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: -0.01em;
}

.result-card blockquote {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.65;
  font-style: italic;
}

/* ─── Final CTA ───────────────────────────────────────── */
.final-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.final-cta .headline {
  color: var(--white);
}

.final-cta .subhead {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 20px auto 48px;
}

.final-cta .btn-primary {
  font-size: 1rem;
  padding: 18px 40px;
}

.final-cta-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ─── Footer ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.4);
  padding: 40px 0;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .hero { padding: 80px 0 72px; }

  .audience-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .results-grid { grid-template-columns: 1fr; }
  .cred-stats { grid-template-columns: 1fr; }
  .cred-stats .cred-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .cred-stats .cred-stat:last-child { border-bottom: none; }

  .hero-stat-value { font-size: 1.5rem; }
  .hero-tagline { gap: 28px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

/* ─── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }
.fade-up:nth-child(6) { animation-delay: 0.6s; }