:root {
  --bg: #09070b;
  --bg-top: #110d14;
  --surface: rgba(22, 17, 20, 0.78);
  --surface-strong: #130f12;
  --surface-soft: #1c1519;
  --ink: #f7efe7;
  --muted: #cbb8ab;
  --line: rgba(244, 225, 201, 0.16);
  --gold: #c9a56a;
  --gold-bright: #f4dbb1;
  --berry: #6d2233;
  --berry-soft: #3f1822;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.52);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
}

* {
  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(201, 165, 106, 0.12), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(109, 34, 51, 0.2), transparent 24%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.4;
}

.page-shell {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  padding: 22px;
}

.atmosphere {
  position: fixed;
  width: 36vw;
  height: 36vw;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
}

.atmosphere-left {
  top: 14vh;
  left: -12vw;
  background: radial-gradient(circle, rgba(109, 34, 51, 0.42), transparent 68%);
}

.atmosphere-right {
  top: 48vh;
  right: -12vw;
  background: radial-gradient(circle, rgba(201, 165, 106, 0.18), transparent 70%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  background: rgba(15, 12, 14, 0.78);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  position: sticky;
  top: 18px;
  z-index: 4;
  box-shadow: var(--shadow-soft);
}

.eyebrow,
.topnav a,
.button {
  text-decoration: none;
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.topnav a {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.topnav a:hover::after {
  transform: scaleX(1);
}

.section {
  position: relative;
  z-index: 1;
  padding: 104px 14px;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 240, 223, 0.035), rgba(255, 240, 223, 0.012)),
    rgba(18, 14, 17, 0.7);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding-left: 34px;
  padding-right: 34px;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 52px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7.8vw, 6.7rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 3.7rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
}

.lede,
.section-head p,
.offer-copy p,
.faq-item p,
.result-card li,
.audience-card li,
.offer-list li,
.checklist li,
.hero-notes li {
  color: var(--muted);
}

.lede {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-copy {
  position: relative;
  padding-left: 24px;
}

.hero-rule {
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: 180px;
  background: linear-gradient(180deg, var(--gold-bright), rgba(244, 219, 177, 0.06));
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 54px;
  padding: 0 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a130d;
  box-shadow: 0 16px 34px rgba(213, 178, 122, 0.28);
}

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

.button.wide {
  width: 100%;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-notes li::before {
  content: "*";
  color: var(--gold);
  margin-right: 9px;
}

.hero-card {
  display: grid;
  gap: 24px;
  justify-items: center;
  position: relative;
}

.hero-frame {
  position: absolute;
  inset: 8% 8% auto auto;
  width: 78%;
  height: 82%;
  border: 1px solid rgba(244, 219, 177, 0.12);
  border-radius: 32px;
  transform: rotate(8deg);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  border: 1px solid rgba(244, 219, 177, 0.14);
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  left: -30px;
  bottom: 32px;
  max-width: 250px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(244, 219, 177, 0.18);
  background: rgba(20, 15, 13, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.hero-badge-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  line-height: 1.35;
}

.stat-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  padding: 16px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.stat span {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--gold-bright);
}

.stat small {
  color: var(--muted);
}

.section-head {
  margin-bottom: 32px;
}

.section-head.narrow {
  max-width: 760px;
}

.two-col,
.offer-panel,
.audience-grid,
.results-grid {
  display: grid;
  gap: 24px;
}

.two-col {
  grid-template-columns: 1fr 1fr;
}

.checklist-card,
.audience-card,
.result-card,
.faq-item,
.framework-card,
.offer-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.022));
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.checklist-card,
.audience-card,
.result-card,
.faq-item,
.offer-box {
  padding: 26px;
}

.checklist,
.offer-list,
.audience-card ul,
.result-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.insight {
  padding: 22px 24px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(244, 219, 177, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.reframe-media {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 26px;
  align-items: center;
  margin: 0 0 24px;
}

.reframe-copy {
  padding: 8px 6px 8px 0;
}

.reframe-copy p {
  color: var(--muted);
  margin: 0 0 16px;
}

.reframe-visual {
  position: relative;
}

.support-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(244, 219, 177, 0.14);
  box-shadow: var(--shadow);
}

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

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

.review-card {
  position: relative;
  padding: 28px 24px 22px;
  border-radius: 26px;
  border: 1px solid rgba(244, 219, 177, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.022)),
    rgba(18, 14, 17, 0.66);
  box-shadow: var(--shadow-soft);
}

.review-mark {
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: "Cinzel", serif;
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(244, 219, 177, 0.16);
}

.review-card p {
  margin: 0 0 18px;
  color: var(--ink);
}

.review-meta {
  display: grid;
  gap: 4px;
}

.review-meta strong {
  font-size: 0.98rem;
}

.review-meta span {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.framework-card {
  padding: 26px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.framework-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 165, 106, 0.12), transparent 70%);
}

.framework-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.framework-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.result-card.accent {
  background:
    linear-gradient(180deg, rgba(213, 178, 122, 0.12), rgba(109, 34, 51, 0.16)),
    rgba(255, 255, 255, 0.03);
}

.offer-panel {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 178, 122, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(109, 34, 51, 0.12), transparent 28%),
    rgba(20, 15, 13, 0.82);
  box-shadow: var(--shadow);
}

.offer-copy {
  padding-right: 10px;
}

.price-block {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.price-block small,
.offer-note {
  color: var(--muted);
}

.price-block strong {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
}

.offer-note {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.offer-box {
  position: sticky;
  top: 112px;
}

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

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

.faq-item h3 {
  margin-bottom: 10px;
}

.final-cta {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.final-cta p:last-of-type {
  color: var(--muted);
  margin: 16px auto 26px;
  max-width: 54ch;
}

@media (max-width: 980px) {
  .hero,
  .two-col,
  .offer-panel,
  .framework-grid,
  .reviews-grid,
  .results-grid,
  .audience-grid,
  .insight-strip,
  .reframe-media {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  h1 {
    max-width: none;
  }

  .offer-box {
    position: static;
  }

  .hero-image-wrap {
    width: min(100%, 600px);
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .section-band {
    padding: 72px 18px;
  }

  .offer-panel {
    padding: 20px;
  }

  .hero-actions,
  .topnav {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-notes {
    flex-direction: column;
    gap: 8px;
  }

  .hero-copy {
    padding-left: 18px;
  }

  .hero-rule {
    height: 132px;
  }

  .hero-badge {
    position: static;
    margin-top: 14px;
    max-width: none;
  }
}
