@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
  --wine: #6b243d;
  --wine-deep: #401525;
  --wine-soft: #582038;
  --beige: #e7d8c4;
  --beige-light: #f5eee4;
  --beige-shade: #cfb99d;
  --white: #ffffff;
  --green: #39ff14;
  --green-hover: #6aff47;
  --green-dark: #148509;
  --green-ink: #10220c;
  --green-glow: 57, 255, 20;
  --ink: #39252d;
  --muted: #705661;
  --line-light: rgba(231, 216, 196, 0.28);
  --line-dark: rgba(107, 36, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", Arial, sans-serif;
  color: var(--beige-light);
  background: var(--wine-deep);
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
  text-align: center;
}

.section-dark {
  background: var(--wine-deep);
}

.ticker {
  position: relative;
  z-index: 10;
  height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--wine);
  color: var(--beige-light);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 100%;
  animation: ticker 18s linear infinite;
}

.ticker b {
  color: var(--beige-shade);
  font-size: 20px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-38%);
  }
}

.hero {
  min-height: calc(100vh - 56px);
  background-color: var(--wine-deep);
  background-image: url("assets/hero-desktop.png");
  background-position: top center;
  background-size: cover;
}

.hero__content {
  width: min(560px, calc(100% - 48px));
  padding: 80px 0 38px;
  margin-left: max(8.2vw, 48px);
}

.hero__logo {
  position: relative;
  width: min(560px, 100%);
  margin-bottom: 30px;
}

.hero__wordmark {
  width: 100%;
  height: auto;
}

.hero__book {
  position: absolute;
  top: 1.634%;
  left: 5.625%;
  width: 29.75%;
  height: 87.255%;
  object-fit: contain;
}

.hero__main,
.hero__branding {
  display: contents;
}

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

.fact {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--beige-light);
  font-size: 15.5px;
  line-height: 1.2;
}

.fact svg {
  width: 32px;
  height: 32px;
  color: var(--beige);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.hero h1 {
  color: var(--beige);
  font-size: clamp(31px, 2.42vw, 33px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.hero__lead {
  max-width: 535px;
  color: var(--beige-light);
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.hero__sub {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 28px;
}

.check-list,
.x-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.x-list li {
  position: relative;
  min-height: 24px;
  padding-left: 34px;
  margin: 13px 0;
  font-size: 19px;
  line-height: 1.35;
}

.check-list li::before,
.x-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  transform: rotate(45deg);
  background: linear-gradient(180deg, var(--beige-light), var(--beige-shade));
}

.check-list li::after,
.x-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: -1px;
  z-index: 1;
  color: var(--wine-deep);
  font-size: 18px;
  font-weight: 900;
}

.check-list--dark li::before {
  background: var(--wine);
}

.check-list--dark li::after {
  color: var(--white);
}

.x-list li::before {
  background: transparent;
  border: 1px solid var(--wine);
}

.x-list li::after {
  color: var(--wine);
}

.x-list li::after {
  content: "×";
  left: 5px;
  top: -3px;
  font-size: 24px;
}

.hero__checks {
  margin-bottom: 28px;
}

.hero__checks li {
  color: var(--beige-light);
  font-size: 19px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 17px 42px;
  border-radius: 999px;
  border-bottom: 2px solid var(--green-dark);
  background: var(--green);
  color: var(--green-ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 10px rgba(var(--green-glow), 0.2);
  animation: cta-green-glow 4s ease-in-out infinite;
  transition: transform 180ms ease, background-color 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  background: var(--green-hover);
}

.cta:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  animation: none;
  box-shadow: 0 0 0 6px var(--green-dark), 0 0 22px rgba(var(--green-glow), 0.45);
}

@keyframes cta-green-glow {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 0 8px rgba(var(--green-glow), 0.18),
      0 0 0 0 rgba(var(--green-glow), 0);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 0 20px rgba(var(--green-glow), 0.65),
      0 0 36px 4px rgba(var(--green-glow), 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    animation: none;
    transition: none;
  }

  .cta:hover,
  .cta:focus-visible {
    transform: none;
  }
}

.cta--large {
  width: 100%;
  font-size: 20px;
}

.cta--small {
  min-height: 48px;
  padding: 13px 34px;
  font-size: 14px;
}

.note {
  margin-top: 20px;
  color: var(--beige-light);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.progress {
  position: relative;
  width: min(384px, 72%);
  height: 15px;
  margin: 42px auto 14px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--beige-light);
}

.progress::before {
  content: "";
  position: absolute;
  inset: 0 14px 0 0;
  border-radius: inherit;
  background-color: var(--wine);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 16px,
    rgba(255, 255, 255, 0.16) 16px,
    rgba(255, 255, 255, 0.16) 40px
  );
}

.progress span {
  color: var(--white);
  position: absolute;
  right: 16px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 900;
}

.progress-copy {
  color: var(--beige-light);
  font-size: 15px;
  text-align: center;
}

.gold-section {
  padding: 70px 0 76px;
  background: var(--beige);
  color: var(--ink);
}

.gold-section h2 {
  color: var(--wine);
  max-width: 800px;
  margin: 0 auto 26px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  font-weight: 900;
}

.gold-section h3 {
  margin-bottom: 26px;
  color: var(--wine);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.18;
  font-weight: 900;
}

.gold-section p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.gold-section p + p {
  margin-top: 18px;
}

.for-you {
  padding: 78px 0 54px;
}

.for-you h2 {
  margin-bottom: 34px;
  text-align: center;
  font-size: 38px;
  font-weight: 900;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: var(--wine-soft);
}

.reason-grid div {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 24px;
  background: var(--wine-soft);
  color: var(--beige-light);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.reason-grid div:nth-child(even) {
  background: var(--wine-deep);
}

.diagnostic {
  padding: 40px 0 80px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.diagnostic h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 3.2vw, 46px);
  line-height: 1.18;
  font-weight: 900;
}

.diagnostic h2 span {
  color: var(--beige);
}

.diagnostic p {
  color: var(--beige-light);
  font-size: 18px;
  line-height: 1.45;
}

.quote {
  margin-top: 42px;
  font-weight: 900;
  font-style: italic;
}

.divider-col {
  padding-left: 40px;
  border-left: 1px solid var(--line-light);
}

.divider-col p + p {
  margin-top: 20px;
}

.divider-col .cta {
  width: 100%;
  margin-top: 28px;
}

.pattern-box {
  width: min(920px, calc(100% - 48px));
  margin: 100px auto 0;
  padding: 40px 40px 46px;
  border-radius: 22px;
  background: var(--beige-light);
  color: var(--ink);
  text-align: center;
}

.pattern-box h2 {
  margin-bottom: 30px;
  color: var(--wine);
  font-size: 32px;
  line-height: 1.15;
  text-transform: uppercase;
}

.pattern-box__body {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: center;
}

.pattern-box__cover {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.pattern-box__copy {
  min-width: 0;
  text-align: left;
}

.pattern-box__copy .cta {
  width: 100%;
}

.pattern-box ul {
  display: inline-block;
  margin: 0 auto 26px;
  padding-left: 22px;
  text-align: left;
}

.pattern-box li {
  margin: 11px 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.pattern-box li::marker {
  color: var(--wine);
}

.pattern-box p {
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 30px;
}

.schedule {
  padding: 32px 0 96px;
}

.schedule h2 {
  max-width: 850px;
  margin: 0 auto 34px;
  font-size: clamp(34px, 3.3vw, 43px);
  line-height: 1.08;
  font-weight: 900;
  text-align: center;
}

.schedule h2 span {
  color: var(--beige);
}

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

.day-grid article {
  min-height: 334px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--wine-soft);
}

.day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.day-tags span,
.day-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 4px;
  background: var(--white);
}

.day-tags span {
  background: var(--beige);
}

.day-grid h3 {
  margin-bottom: 22px;
  color: var(--beige);
  font-size: 25px;
  line-height: 1.12;
  font-weight: 900;
}

.day-grid p,
.center-copy {
  color: var(--beige-light);
  font-size: 17px;
  line-height: 1.45;
}

.center-copy {
  width: min(760px, 100%);
  margin: 42px auto 28px;
  text-align: center;
}

.schedule .cta {
  display: flex;
  width: min(480px, 100%);
  margin: 0 auto;
}

.protocol {
  padding: 0 0 80px;
}

.protocol__box {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 70px 40px;
  border: 1px dashed var(--line-light);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--wine-soft) 0%, var(--wine-deep) 100%);
  text-align: center;
}

.protocol h2 {
  width: min(720px, 100%);
  margin: 0 auto 36px;
  color: var(--beige);
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.13;
  font-weight: 900;
}

.protocol p {
  width: min(710px, 100%);
  margin: 0 auto;
  color: var(--beige-light);
  font-size: 19px;
  line-height: 1.45;
}

.protocol p + p {
  margin-top: 34px;
}

.protocol .red-line {
  max-width: 560px;
  color: var(--beige);
  font-weight: 900;
}

.protocol .cta {
  width: min(480px, 100%);
  margin-top: 36px;
}

.bio {
  min-height: 620px;
  padding: 60px 0 58px;
  background-color: var(--beige-light);
  background-image: url("assets/expert-desktop.png");
  background-blend-mode: multiply;
  background-position: top center;
  background-size: cover;
  color: var(--ink);
}

.bio__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 54px;
}

.bio__text {
  max-width: 560px;
}

.bio h2 {
  color: var(--wine);
  margin-bottom: 22px;
  font-size: clamp(32px, 3vw, 43px);
  line-height: 1.1;
  font-weight: 900;
}

.bio h3 {
  color: var(--wine);
  margin-bottom: 30px;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1;
  font-weight: 900;
}

.bio p {
  color: var(--wine-deep);
  font-size: 17px;
  line-height: 1.43;
}

.bio p + p {
  margin-top: 20px;
}

.proof {
  padding: 78px 0 92px;
  background: linear-gradient(180deg, var(--wine-soft) 0%, var(--wine-deep) 100%);
  text-align: center;
}

.proof h2 {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 80px;
  color: var(--beige-light);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
  font-weight: 900;
}

.proof h2 span {
  color: var(--beige);
}

.testimonials-carousel {
  width: min(1040px, calc(100% - 48px));
  margin-inline: auto;
}

.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 2);
  align-items: start;
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 6px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonials-slide {
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.testimonials-slide img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.testimonials-controls[hidden] {
  display: none;
}

.testimonials-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--beige);
  border-radius: 50%;
  color: var(--wine-deep);
  background: var(--beige-light);
  cursor: pointer;
}

.testimonials-arrow:hover:not(:disabled) {
  background: var(--beige);
}

.testimonials-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.testimonials-arrow:focus-visible,
.testimonials-track:focus-visible {
  outline: 3px solid var(--beige);
  outline-offset: 4px;
}

.testimonials-status {
  min-width: 72px;
  color: var(--beige-light);
  font-size: 16px;
  font-weight: 600;
}

.objection {
  padding: 0 0 72px;
}

.split-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  color: var(--ink);
}

.split-card > div {
  padding: 42px 40px;
  background: var(--beige-light);
}

.split-card > div:nth-child(2) {
  background: var(--beige);
}

.split-card h2 {
  color: var(--wine);
  margin-bottom: 28px;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.17;
  font-weight: 900;
  font-style: italic;
}

.split-card p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.43;
}

.split-card p + p {
  margin-top: 20px;
}

.cost {
  padding: 64px 0 80px;
}

.narrow--light {
  color: var(--beige-light);
}

.pretitle {
  color: var(--beige);
  font-size: 24px;
  font-weight: 900;
}

.cost h2 {
  margin-top: 20px;
  color: var(--beige-light);
  font-size: clamp(34px, 3.5vw, 44px);
  line-height: 1.12;
  font-weight: 900;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  margin: 36px 0 56px;
}

.chips span {
  padding: 4px 12px;
  border: 1px solid var(--line-light);
  border-radius: 5px;
  background: rgba(231, 216, 196, 0.1);
  color: var(--beige-light);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.gold-text {
  color: var(--beige);
}

.cost .gold-text {
  color: var(--beige);
  font-size: 22px;
  margin-bottom: 42px;
}

.cost h3 {
  margin-bottom: 42px;
  color: var(--beige);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.14;
  font-weight: 900;
}

.cost p {
  color: var(--beige-light);
  font-size: 22px;
  line-height: 1.45;
}

.cost p + p {
  margin-top: 22px;
}

.offer {
  padding: 20px 0 80px;
}

.offer-card {
  display: grid;
  grid-template-columns: 1.38fr 0.97fr;
  align-items: stretch;
  width: min(1140px, calc(100% - 48px));
  min-height: 610px;
  margin: 0 auto;
  border-radius: 22px;
  background: var(--beige-light);
  color: var(--ink);
}

.offer-card__left {
  align-self: center;
  padding: 54px 40px;
}

.offer-card h2 {
  margin-bottom: 24px;
  color: var(--wine);
  font-size: 29px;
  line-height: 1.14;
  font-weight: 900;
}

.check-list--dark li {
  color: var(--ink);
  font-size: 18px;
}

.price-panel {
  align-self: center;
  min-height: 700px;
  margin-top: -55px;
  margin-bottom: -55px;
  padding: 40px 32px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, var(--wine) 0%, var(--wine-soft) 100%);
  color: var(--beige-light);
  text-align: center;
}

.price-panel h2 {
  color: var(--white);
  font-size: 30px;
  text-transform: uppercase;
}

.price-panel p {
  color: var(--beige-light);
  font-size: 16px;
  line-height: 1.35;
}

.offer-price {
  width: min(360px, 100%);
  margin: 28px auto 16px;
  padding: 26px 20px 20px;
  border: 1px solid var(--beige);
  border-radius: 16px;
  background: var(--beige-light);
  box-shadow: 0 12px 28px rgba(64, 21, 37, 0.24);
  color: var(--wine-deep);
}

.offer-price__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-price__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
  font-size: 88px;
  line-height: 1;
  font-weight: 900;
}

.offer-price__amount span {
  font-size: 30px;
  font-weight: 700;
}

.price-panel .offer-price__payment {
  color: var(--wine-deep);
  font-size: 14px;
}

.offer-price__access {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-panel .price-panel__reassurance {
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.price-panel .cta {
  width: 100%;
  margin: 0 0 18px;
}

.progress--light {
  width: 72%;
  height: 14px;
  margin: 0 auto 10px;
}

.progress--light::before {
  right: 0;
  background: var(--beige);
}

.fit {
  padding: 60px 0 70px;
  background: var(--beige-light);
  color: var(--ink);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.fit article {
  min-height: 305px;
  padding: 44px 26px 36px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--beige);
}

.fit h2 {
  margin-bottom: 20px;
  color: var(--wine);
  font-size: 27px;
  font-weight: 900;
}

.fit li {
  font-size: 18px;
}

.faq {
  padding: 80px 0 88px;
  background: var(--beige);
  color: var(--wine-deep);
}

.faq h2 {
  margin-bottom: 42px;
  text-align: center;
  font-size: clamp(38px, 3.5vw, 46px);
  line-height: 1.1;
  font-weight: 900;
}

.accordion {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
}

.accordion details {
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: var(--beige-light);
}

.accordion details[open] {
  background: var(--white);
  border-color: var(--wine);
}

.accordion details + details {
  margin-top: 16px;
}

.accordion summary {
  position: relative;
  min-height: 60px;
  padding: 18px 54px 18px 18px;
  color: var(--wine);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 17px;
  top: 14px;
  color: var(--wine);
  font-size: 28px;
  font-weight: 900;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  padding: 0 18px 28px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.final-cta {
  padding: 78px 0 72px;
  background: linear-gradient(180deg, var(--wine-soft) 0%, var(--wine-deep) 100%);
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 34px;
  color: var(--beige-light);
  font-size: clamp(32px, 3.4vw, 43px);
  line-height: 1.18;
  font-weight: 900;
}

.final-cta p {
  color: var(--beige-light);
  font-size: 22px;
  line-height: 1.38;
}

.final-cta p + p {
  margin-top: 22px;
}

.final-cta .gold-text {
  color: var(--beige);
}

.final-cta .cta {
  width: min(480px, 100%);
  margin-top: 44px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(8.2vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--wine-deep);
  color: var(--beige-light);
  font-size: 14px;
}

footer div:nth-child(2) {
  color: var(--beige);
}

.footer__support {
  margin-top: 8px;
}

.footer__support a {
  overflow-wrap: anywhere;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .container,
  .narrow {
    width: min(920px, calc(100% - 40px));
  }

  .hero__content {
    margin-left: 48px;
  }

}

@media (max-width: 767px) {
  .ticker {
    height: 28px;
    font-size: 13px;
  }

  .ticker__track {
    gap: 18px;
    animation-duration: 12s;
  }

  .container,
  .narrow {
    width: calc(100% - 40px);
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    background-color: #20060d;
    background-image: url("assets/BGHERO-CELL.png");
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    width: calc(100% - 32px);
    min-height: inherit;
    margin: 0 auto;
    padding: 56vw 0 20px;
    text-align: center;
  }

  .hero__main {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 8px;
  }

  .hero__main > * {
    flex-shrink: 0;
  }

  .hero__branding {
    position: relative;
    display: block;
    isolation: isolate;
    margin-bottom: 32px;
  }

  .hero__branding::before {
    content: "";
    position: absolute;
    inset: -18px -16px;
    z-index: -1;
    background: linear-gradient(
      180deg,
      rgba(64, 21, 37, 0) 0%,
      rgba(64, 21, 37, 0.92) 24%,
      var(--wine-deep) 70%,
      rgba(64, 21, 37, 0) 100%
    );
    pointer-events: none;
  }

  .hero__logo {
    width: min(280px, 74%);
    height: auto;
    margin: 0 auto;
  }

  .hero__book {
    top: 50%;
    left: -2%;
    width: 39%;
    height: auto;
    transform: translateY(-50%);
  }

  .hero__facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 24px;
  }

  .fact {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    line-height: 1.2;
  }

  .fact svg {
    width: 16px;
    height: 16px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(18px, 2.7svh, 22px);
    line-height: 1.4;
  }

  .hero__lead {
    margin-bottom: 24px;
    font-size: clamp(13px, 1.85svh, 15px);
    line-height: 1.7;
  }

  .hero__sub {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .check-list li,
  .x-list li,
  .hero__checks li {
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.25;
    margin: 9px 0;
    text-align: left;
  }

  .hero__checks {
    width: fit-content;
    margin: 0 auto 26px;
  }

  .hero__checks li {
    min-height: 0;
    margin: 14px 0;
    padding-left: 24px;
    font-size: 13px;
    line-height: 1.6;
  }

  .hero__checks li::before {
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 4px;
  }

  .hero__checks li::after {
    top: -1px;
    left: 2px;
    font-size: 13px;
  }

  .hero .cta {
    display: none;
  }

  .hero .note {
    margin-top: 4px;
    font-size: 12px;
  }

  .hero .progress {
    margin-top: 12px;
    margin-bottom: 8px;
  }

  .hero .progress-copy {
    font-size: 12px;
  }

  .cta,
  .cta--large {
    min-height: 55px;
    padding: 15px 22px;
    font-size: 16px;
  }

  .note {
    font-size: 14px;
  }

  .progress {
    width: 92%;
    margin-top: 30px;
  }

  .gold-section {
    padding: 48px 0 62px;
    text-align: left;
  }

  .gold-section .narrow {
    text-align: left;
  }

  .gold-section h2,
  .gold-section h3 {
    text-align: center;
  }

  .gold-section h2 {
    font-size: 24px;
  }

  .gold-section h3 {
    font-size: 29px;
  }

  .gold-section p {
    font-size: 17px;
    line-height: 1.43;
  }

  .for-you {
    padding: 38px 0 60px;
  }

  .for-you h2 {
    font-size: 26px;
  }

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

  .reason-grid div {
    min-height: 80px;
    padding: 16px 26px;
    font-size: 17px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .diagnostic {
    padding-top: 30px;
  }

  .diagnostic h2 {
    font-size: 31px;
  }

  .diagnostic p {
    font-size: 17px;
  }

  .divider-col {
    padding: 28px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .pattern-box {
    width: calc(100% - 40px);
    margin-top: 70px;
    padding: 28px 24px 34px;
    border-radius: 8px;
  }

  .pattern-box h2 {
    font-size: 24px;
  }

  .pattern-box__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .pattern-box__cover {
    width: min(280px, 100%);
    margin-inline: auto;
  }

  .pattern-box li,
  .pattern-box p {
    font-size: 16px;
  }

  .schedule h2 {
    font-size: 31px;
  }

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

  .day-grid article {
    min-height: unset;
  }

  .protocol__box {
    width: calc(100% - 40px);
    padding: 34px 24px;
    border-radius: 12px;
  }

  .protocol h2 {
    font-size: 28px;
  }

  .protocol p {
    font-size: 17px;
  }

  .bio {
    min-height: 1010px;
    padding: 100vw 0 44px;
    background-color: #f6f6f6;
    background-image: url("assets/BGEXPERT-CELL.png");
    background-blend-mode: normal;
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .bio__grid {
    display: block;
  }

  .bio__text {
    max-width: none;
    text-align: left;
  }

  .bio h2 {
    font-size: 30px;
  }

  .bio h3 {
    font-size: 36px;
  }

  .bio p {
    font-size: 16px;
  }

  .proof {
    padding: 48px 0 70px;
  }

  .proof h2 {
    width: calc(100% - 40px);
    margin-bottom: 46px;
    font-size: 30px;
  }

  .testimonials-carousel {
    width: calc(100% - 40px);
  }

  .testimonials-track {
    grid-auto-columns: 100%;
    gap: 20px;
  }

  .split-card {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .split-card > div {
    padding: 32px 24px;
  }

  .split-card h2 {
    font-size: 26px;
  }

  .split-card p {
    font-size: 16px;
  }

  .pretitle {
    font-size: 22px;
  }

  .cost h2 {
    font-size: 30px;
  }

  .chips {
    gap: 5px;
    margin-bottom: 44px;
  }

  .chips span {
    font-size: 15px;
  }

  .cost h3 {
    font-size: 27px;
  }

  .cost p {
    font-size: 18px;
  }

  .offer-card {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .offer-card__left {
    padding: 34px 24px;
  }

  .offer-card h2 {
    font-size: 26px;
  }

  .price-panel {
    min-height: unset;
    margin: 0;
    padding: 34px 18px;
    border-radius: 0 0 16px 16px;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .fit article {
    padding: 30px 18px;
  }

  .faq {
    padding: 62px 0 68px;
  }

  .faq h2 {
    font-size: 31px;
  }

  .accordion {
    width: calc(100% - 40px);
  }

  .accordion summary {
    font-size: 16px;
  }

  .accordion p {
    font-size: 15px;
  }

  .final-cta h2 {
    font-size: 31px;
  }

  .final-cta p {
    font-size: 18px;
  }

  footer {
    flex-direction: column;
    padding: 28px 20px;
    text-align: center;
  }

  footer div:nth-child(2) {
    color: var(--wine);
    background: var(--beige);
    margin: 0 -20px -28px;
    padding: 18px 20px;
  }
}

@media (max-width: 380px) and (max-height: 640px) {
  .hero__facts .fact {
    grid-template-columns: 1fr;
    font-size: 11px;
  }

  .hero__facts svg {
    display: none;
  }
}
