:root {
  --bg: #080808;
  --bg-soft: #101010;
  --bg-softer: #171717;
  --text: #fbf7ea;
  --muted: #aaa59a;
  --gold: #edc77e;
  --gold-strong: #f4b84f;
  --line: rgba(237, 199, 126, 0.2);
  --danger: #ff4c4c;
  --warning: #f6c34a;
  --success: #45d483;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compact {
  padding-top: 34px;
  padding-bottom: 34px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(237, 199, 126, 0.14), transparent 32%),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
}

.hero-grid,
.split,
.offer-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 1180px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 1180px;
  font-size: clamp(2.35rem, 5.1vw, 5.7rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.25rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 760px;
  margin: 24px 0 0;
  color: #ddd6c6;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 15px 22px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #080808;
  box-shadow: 0 18px 50px rgba(237, 199, 126, 0.22);
}

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

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: var(--radius);
}

.image-media {
  background: transparent;
  box-shadow: none;
}

.image-media img,
.product-mockup,
.section-mockup,
.offer-mockup {
  display: block;
  width: 100%;
  height: auto;
}

.image-media img {
  max-height: min(78svh, 760px);
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.48));
}

.section-mockup {
  max-width: 520px;
  margin-top: 28px;
  border-radius: 8px;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.42));
}

.product-mockup {
  max-width: 560px;
  margin: 34px auto 0;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.42));
}

.offer-mockup {
  max-width: 620px;
  margin: 28px auto 0;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.5));
}

.proof {
  background: #0c0c0c;
}

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

.proof-grid div,
.steps article,
.audience-grid p,
.deliverable-list div,
.price-box,
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.proof-grid div {
  padding: 18px;
}

.proof-grid strong {
  display: block;
  color: var(--gold);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.voice-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.voice-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: var(--bg-soft);
  color: #e7decc;
  font-weight: 800;
}

.copy-block p:first-child {
  margin-top: 0;
}

.centered {
  text-align: center;
}

.centered-title {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.steps article {
  padding: 24px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 900;
}

.steps p,
.audience-grid p,
.deliverable-list span {
  margin-bottom: 0;
}

.deliverable-list {
  display: grid;
  gap: 12px;
}

.deliverable-list div {
  padding: 18px;
}

.deliverable-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.04rem;
}

.deliverable-list span {
  color: var(--muted);
  line-height: 1.55;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.audience-grid p {
  padding: 20px;
  color: #e5dccb;
  font-weight: 800;
}

.stack {
  background:
    linear-gradient(90deg, rgba(237, 199, 126, 0.08), transparent),
    #0b0b0b;
}

.offer-stack p {
  max-width: 620px;
}

.price {
  background: #0d0d0d;
}

.repeat {
  background: var(--bg);
}

.expert {
  background:
    radial-gradient(circle at 16% 20%, rgba(237, 199, 126, 0.1), transparent 30%),
    #0b0b0b;
}

.expert-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.expert-photo {
  position: relative;
}

.expert-photo::before {
  position: absolute;
  inset: 18px -10px -12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  content: "";
}

.expert-photo img {
  position: relative;
  display: block;
  width: 100%;
  max-height: 520px;
  border: 1px solid rgba(237, 199, 126, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.expert-copy p {
  margin: 20px 0 0;
}

.expert-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.expert-stats div {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(237, 199, 126, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.expert-stats strong {
  display: block;
  color: var(--gold);
  font-weight: 900;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.expert-stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.expert-quote {
  margin: 28px 0 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(237, 199, 126, 0.06);
  color: #eadfca;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.6;
}

.price-box {
  max-width: 760px;
  padding: clamp(28px, 5vw, 46px);
  text-align: center;
}

.price-box p {
  max-width: 620px;
  margin: 18px auto 0;
}

.price-box .button {
  margin-top: 28px;
}

.microcopy {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.guarantee {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #eadfca;
  background: rgba(237, 199, 126, 0.06);
  font-weight: 800;
}

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

.faq-list details {
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.footer {
  padding: 28px 18px 92px;
  background: #050505;
}

.footer-inner {
  display: grid;
  gap: 8px;
}

.footer p {
  margin: 0;
  color: #8c867a;
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .offer-stack,
  .expert-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .proof-grid,
  .steps,
  .audience-grid,
  .expert-stats {
    grid-template-columns: 1fr;
  }

  .expert-photo {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 16px;
  }

  .compact {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .image-media img {
    max-height: none;
  }

  .section-mockup {
    margin-right: auto;
    margin-left: auto;
  }
}
