* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --soft: #f6f4ef;
  --ink: #17211d;
  --muted: #5e6a64;
  --accent: #9a6a3a;
  --accent-dark: #74502b;
  --line: #e6e0d7;
  --premium: #14231f;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(18, 25, 22, 0.08);
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 92%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--premium);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
}

.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(154, 106, 58, 0.14), transparent 35%),
    linear-gradient(180deg, #fbfaf7, #ffffff);
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

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

.light-text {
  color: #d9bc94;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(44px, 7vw, 76px);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 24px;
}

p {
  color: var(--muted);
  font-size: 17px;
}

.hero-text {
  font-size: 21px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.primary {
  background: var(--accent);
  color: #fff;
}

.secondary {
  background: transparent;
  border-color: var(--line);
}

.full {
  width: 100%;
}

.microcopy {
  font-size: 14px;
}

.hero-card {
  background: #fff;
  padding: 24px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.report-mock {
  background: var(--soft);
  border-radius: 24px;
  padding: 28px;
}

.report-top {
  width: 90px;
  height: 12px;
  border-radius: 99px;
  background: var(--accent);
  margin-bottom: 30px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  margin: 18px 0 6px;
  color: var(--ink);
}

.bar {
  height: 10px;
  background: #e3ddd3;
  border-radius: 999px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

.report-note {
  margin-top: 24px;
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.light {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.five {
  grid-template-columns: repeat(5, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.checklist-box,
.visual-panel,
.pricing-card,
.premium-card,
.profile-placeholder {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card {
  font-weight: 700;
  min-height: 130px;
}

.checklist {
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist li,
.pricing-card li {
  margin: 13px 0;
  padding-left: 28px;
  position: relative;
}

.checklist li::before,
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.pill-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill-grid span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.visual-panel {
  background: var(--premium);
  color: white;
}

.visual-panel p {
  color: rgba(255,255,255,.78);
}

.before-after {
  display: grid;
  gap: 20px;
}

.pricing-section {
  background: #fff;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: translateY(-12px);
}

.badge {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--accent);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.tagline {
  font-size: 15px;
  min-height: 48px;
}

.price {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 18px 0;
}

.price span {
  font-size: 18px;
  color: var(--muted);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
}

.best-for {
  font-size: 15px;
}

.profile-placeholder {
  text-align: center;
}

.profile-circle {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--premium);
  color: white;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 900;
}

.premium {
  background: var(--premium);
  color: white;
}

.premium h2,
.premium h3 {
  color: white;
}

.premium p {
  color: rgba(255,255,255,.78);
}

.premium-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

.light-list li {
  color: white;
}

.light-list li::before {
  color: #d9bc94;
}

.light-btn {
  background: #fff;
  color: var(--premium);
}

.quote {
  font-style: italic;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 14px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-bottom: 0;
}

.final-cta {
  padding: 90px 0;
  text-align: center;
  background:
    radial-gradient(circle at bottom left, rgba(154, 106, 58, 0.18), transparent 35%),
    var(--soft);
}

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

footer p {
  font-size: 14px;
  margin: 0;
}

footer a {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .hero-grid,
  .two-col,
  .pricing-grid,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .cards.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .cards.five {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .section {
    padding: 64px 0;
  }

  .brand-name {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
  }
}
