:root {
  --bg: #f4efe7;
  --surface: rgba(255, 250, 243, 0.82);
  --surface-strong: #fff8ef;
  --ink: #1f1a17;
  --muted: #65584e;
  --line: rgba(53, 39, 27, 0.12);
  --accent: #c6532d;
  --accent-deep: #8f3519;
  --accent-soft: #f3c98e;
  --card-shadow: 0 24px 80px rgba(75, 39, 11, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 206, 132, 0.55), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(198, 83, 45, 0.18), transparent 22%),
    linear-gradient(180deg, #f8f1e7 0%, #efe4d6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(101, 88, 78, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 88, 78, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 85%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar,
.hero,
.proof-strip,
.problem-solution,
.program,
.testimonial,
.faq,
.cta-section {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  margin-bottom: 24px;
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid rgba(53, 39, 27, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--accent), #dd7a3d);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow,
.brand-subtitle,
.section-kicker,
.card-label,
.proof-label,
.form-note {
  margin: 0;
}

.eyebrow,
.section-kicker,
.card-label {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.brand-subtitle,
.hero-text,
.problem-card p,
.program-card p,
.quote-author,
.lead-form label,
.lead-form input,
.lead-form textarea,
.cta-copy p,
.faq details p,
.proof-label {
  color: var(--muted);
}

.ghost-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ghost-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.primary-button {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 32px rgba(143, 53, 25, 0.22);
}

.secondary-button {
  border: 1px solid rgba(53, 39, 27, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.ghost-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-copy,
.hero-card,
.problem-solution,
.program,
.testimonial,
.faq,
.cta-section {
  background: var(--surface);
  border: 1px solid rgba(53, 39, 27, 0.08);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: 56px;
  border-radius: calc(var(--radius) + 8px);
}

.hero-copy h1,
.section-heading h2,
.cta-copy h2 {
  margin: 14px 0 16px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 10ch;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-stats li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(53, 39, 27, 0.08);
  border-radius: 18px;
}

.hero-stats strong,
.proof-number {
  display: block;
  margin-bottom: 6px;
  font-size: 1.4rem;
  font-family: "Space Grotesk", sans-serif;
}

.hero-card {
  padding: 26px;
  border-radius: calc(var(--radius) + 18px);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.card-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 201, 142, 0.38);
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 0.85rem;
}

.offer-panel {
  padding: 28px;
  margin: 16px 0;
  background: linear-gradient(180deg, #201d1a 0%, #39261d 100%);
  color: #fff8ef;
  border-radius: 24px;
}

.offer-panel h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.offer-panel p {
  margin: 0;
  color: rgba(255, 248, 239, 0.82);
  line-height: 1.7;
}

.metric-grid {
  display: grid;
  gap: 14px;
}

.metric-grid article,
.problem-card,
.program-card,
.faq details {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(53, 39, 27, 0.08);
}

.metric-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.metric-grid h3,
.problem-card h3,
.program-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.metric-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.proof-strip > div {
  padding: 26px;
  border-radius: 24px;
  background: rgba(33, 27, 23, 0.94);
  color: #fff8ef;
  box-shadow: var(--card-shadow);
}

.proof-label {
  max-width: 20ch;
  color: rgba(255, 248, 239, 0.72);
  line-height: 1.5;
}

.problem-solution,
.program,
.faq {
  padding: 42px;
  margin-bottom: 28px;
  border-radius: calc(var(--radius) + 6px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.problem-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-card,
.program-card {
  min-height: 100%;
}

.testimonial {
  padding: 28px;
  margin-bottom: 28px;
  border-radius: calc(var(--radius) + 18px);
}

.quote-card {
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(198, 83, 45, 0.96), rgba(143, 53, 25, 0.98));
  color: white;
}

.quote-mark {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  line-height: 1;
}

blockquote {
  margin: 0;
  max-width: 40ch;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.45;
}

.quote-author {
  margin-top: 20px;
  color: rgba(255, 248, 239, 0.82);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq details summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 30px;
  border-radius: calc(var(--radius) + 18px);
}

.cta-copy {
  padding: 12px 8px 12px 8px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  background: var(--surface-strong);
  border: 1px solid rgba(53, 39, 27, 0.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(53, 39, 27, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: white;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(198, 83, 45, 0.22);
  border-color: rgba(198, 83, 45, 0.35);
}

.form-button {
  width: 100%;
}

.form-note {
  min-height: 1.2em;
  font-size: 0.95rem;
}

.lead-form.is-success .form-note {
  color: #24673f;
}

@media (max-width: 980px) {
  .hero,
  .cta-section,
  .problem-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .problem-solution,
  .program,
  .faq {
    padding: 32px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .brand-lockup {
    align-items: flex-start;
  }

  .ghost-button,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-copy,
  .hero-card,
  .problem-solution,
  .program,
  .testimonial,
  .faq,
  .cta-section {
    border-radius: 26px;
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .proof-strip > div,
  .problem-solution,
  .program,
  .faq,
  .quote-card,
  .lead-form {
    padding: 22px;
  }

  .cta-section {
    padding: 20px;
  }
}
