:root {
  --bg: #f4eee6;
  --bg-2: #efe6db;
  --surface: #fbf6ef;
  --surface-soft: #f3e9dd;
  --ink: #17130f;
  --muted: #61574f;
  --line: #d8cabd;
  --accent: #2f6a5d;
  --accent-2: #345c8a;
  --radius: 24px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 42%, var(--bg) 100%);
  color: var(--ink);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image: radial-gradient(rgba(83, 60, 44, 0.12) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
}

h1,
h2,
h3 {
  font-family: "Bodoni Moda", serif;
  line-height: 1.04;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  z-index: 999;
  background: rgba(26, 18, 12, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #8a5a3f, #cb8655);
  box-shadow: 0 0 18px rgba(203, 134, 85, 0.48);
}

.top-ribbon {
  position: sticky;
  top: 4px;
  z-index: 90;
  overflow: hidden;
  background: #cc8050;
  color: #fff7ef;
  border-top: 1px solid rgba(255, 244, 234, 0.5);
  border-bottom: 1px solid rgba(99, 54, 28, 0.35);
}

.top-ribbon-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  padding: 7px 16px;
  animation: ribbonMove 24s linear infinite;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes ribbonMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

main {
  overflow: clip;
}

.chapter {
  position: relative;
  transition: filter 0.48s ease, opacity 0.48s ease;
}

.chapter:not(.chapter-active) {
  filter: saturate(0.88) contrast(0.97);
}

.chapter::before,
.chapter::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.chapter::before {
  top: -1px;
  height: 64px;
  background: linear-gradient(180deg, rgba(247, 240, 232, 0.92), rgba(247, 240, 232, 0));
}

.chapter::after {
  bottom: -1px;
  height: 64px;
  background: linear-gradient(0deg, rgba(247, 240, 232, 0.92), rgba(247, 240, 232, 0));
}

.hero-banner {
  width: 100%;
  position: relative;
}

.hero-banner picture {
  display: block;
}

.hero-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  will-change: transform;
  transition: transform 0.08s linear;
}

.hero-quick-cta {
  position: absolute;
  left: 5vw;
  bottom: 9%;
  z-index: 2;
  width: min(33rem, 82vw);
  padding: 22px 22px;
  border-radius: 18px;
  color: #fff5ea;
  border: 1px solid rgba(248, 234, 222, 0.42);
  background: linear-gradient(160deg, rgba(21, 16, 12, 0.6), rgba(21, 16, 12, 0.34));
  backdrop-filter: blur(9px);
  box-shadow: 0 22px 42px rgba(18, 12, 8, 0.26);
  animation: heroEnter 0.85s ease-out both;
}

.hero-quick-cta h1 {
  margin: 3px 0 14px;
  font-size: clamp(2rem, 4.1vw, 3.2rem);
}

.hero-soft-copy {
  margin: 0 0 14px;
  font-size: 0.98rem;
  color: #f3e8dd;
  max-width: 40ch;
}

.hero-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-social-proof {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-social-proof p {
  margin: 0;
  font-size: 0.86rem;
  color: #f0e4d8;
}

.avatar-group {
  display: flex;
  margin-right: 2px;
}

.avatar-group span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 238, 223, 0.7);
  margin-left: -6px;
  background: linear-gradient(150deg, #e8c8ae, #b98260);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro,
.proof,
.method,
.testimonials,
.faq,
.story-scroll {
  padding: 88px 0;
}

.intro {
  padding-top: 74px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.23rem);
  color: #302923;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 26px rgba(39, 73, 99, 0.28);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.sticky-buy {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 65;
  text-decoration: none;
  color: #fff6ed;
  background: linear-gradient(135deg, #5f3f2c, #a66d46);
  border: 1px solid rgba(255, 241, 230, 0.45);
  border-radius: 16px;
  padding: 10px 15px;
  display: grid;
  gap: 2px;
  box-shadow: 0 16px 34px rgba(49, 30, 18, 0.34);
  transform: translateY(0);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.sticky-buy span {
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.9;
}

.sticky-buy strong {
  font-size: 0.98rem;
}

.sticky-buy.hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.proof {
  padding-top: 24px;
}

.proof p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.proof-grid span {
  text-align: center;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 88%, white 12%);
  font-weight: 500;
}

.instagram-community {
  padding: 18px 0 86px;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.community-copy,
.community-stats article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #fff9f2 0%, #f2e7da 100%);
  box-shadow: 0 10px 24px rgba(67, 45, 31, 0.08);
}

.community-copy {
  padding: 26px;
}

.community-copy p {
  color: #3a312a;
}

.community-stats {
  display: grid;
  gap: 10px;
}

.community-stats article {
  padding: 18px;
}

.community-stats h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.community-stats p {
  margin: 0;
  color: var(--muted);
}

.promo-image,
.podcast-feature {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.promo-image {
  min-height: 92vh;
  background-image: url("../assets/promo-bg.webp");
}

.promo-overlay {
  min-height: 92vh;
  background: linear-gradient(
    90deg,
    rgba(13, 11, 9, 0.69) 0%,
    rgba(13, 11, 9, 0.5) 40%,
    rgba(13, 11, 9, 0.2) 62%,
    rgba(13, 11, 9, 0) 78%
  );
  display: flex;
  align-items: center;
}

.promo-content,
.podcast-content {
  color: #f7eee4;
  width: min(51ch, 92vw);
  padding: 82px 0;
}

.promo-content h2,
.podcast-content h2 {
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

.promo-content p,
.podcast-content p {
  margin: 0 0 16px;
  color: #f0e5d9;
  font-size: 1.04rem;
}

.promo-content ul,
.podcast-points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}

.promo-content li,
.podcast-points span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 245, 235, 0.25);
  border-radius: 12px;
  background: rgba(26, 19, 14, 0.3);
}

.pain {
  padding: 74px 0;
  background: linear-gradient(180deg, #ecdfd2, #e9d9ca);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.split ul {
  margin: 0;
  padding-left: 20px;
  font-size: 1.1rem;
}

.split li {
  margin-bottom: 12px;
}

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

.card,
.story-card,
.story-head {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fffaf2 0%, #f3e8db 100%);
  box-shadow: 0 12px 26px rgba(66, 46, 33, 0.07);
}

.card,
.story-card {
  padding: 24px;
}

.step {
  margin: 0 0 8px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}

.card p {
  margin: 0;
  color: #3b332c;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
}

.story-head {
  position: sticky;
  top: 98px;
  padding: 24px;
}

.story-head p {
  margin: 0;
  color: var(--muted);
}

.story-cards {
  display: grid;
  gap: 14px;
}

.podcast-feature {
  min-height: 88vh;
  background-image: url("../assets/Web-podcast.webp");
}

.podcast-overlay {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(16, 13, 10, 0.72) 0%,
    rgba(16, 13, 10, 0.53) 44%,
    rgba(16, 13, 10, 0.19) 66%,
    rgba(16, 13, 10, 0) 83%
  );
}

.offer {
  padding: 84px 0;
  background: #141210;
  color: #f8f0e7;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.offer ul {
  padding-left: 20px;
  margin: 0;
}

.offer li {
  margin-bottom: 11px;
}

.checkout-box {
  background: #1f1c19;
  border: 1px solid #3f3934;
  border-radius: var(--radius);
  padding: 26px;
}

.before {
  margin: 0;
  color: #b9ada1;
  text-decoration: line-through;
}

.price {
  margin: 5px 0 16px;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.secure {
  color: #c7bcaf;
  text-align: center;
  font-size: 0.9rem;
}

.quote {
  font-size: 1.08rem;
}

.quote span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.06rem;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-row p {
  margin: 0;
  color: var(--muted);
}

.footer-row a {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(4px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 980px) {
  .intro-grid,
  .proof-grid,
  .community-grid,
  .split,
  .cards,
  .offer-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .top-ribbon {
    top: 4px;
  }

  .intro,
  .method,
  .testimonials,
  .faq,
  .story-scroll {
    padding: 64px 0;
  }

  .promo-image,
  .promo-overlay,
  .podcast-feature,
  .podcast-overlay {
    min-height: 78vh;
  }

  .promo-overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 11, 9, 0.62) 0%,
      rgba(13, 11, 9, 0.47) 44%,
      rgba(13, 11, 9, 0.27) 100%
    );
  }

  .podcast-overlay {
    background: linear-gradient(
      180deg,
      rgba(16, 13, 10, 0.64) 0%,
      rgba(16, 13, 10, 0.48) 48%,
      rgba(16, 13, 10, 0.25) 100%
    );
  }

  .hero-quick-cta {
    left: 50%;
    transform: translateX(-50%);
    bottom: 4%;
    width: min(34rem, 90vw);
    text-align: center;
    padding: 18px;
    animation: heroEnterMobile 0.75s ease-out both;
  }

  .hero-social-proof {
    justify-content: center;
  }

  @keyframes heroEnterMobile {
    from {
      opacity: 0;
      transform: translate(-50%, 14px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }

  .story-head {
    position: static;
  }

  .chapter::before,
  .chapter::after {
    height: 36px;
  }

  .sticky-buy {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 12px;
    text-align: center;
  }
}
