:root {
  --bg: #f6f7fb;
  --bg-2: #ffffff;
  --card: #ffffff;
  --ink: #0b1220;
  --line: #e4e7ef;
  --blue: #0a5cff;
  --blue-2: #2f7bff;
  --blue-soft: #e8f0ff;
  --urgent: #ff2d2d;
  --muted: #667085;
  --soft: #3d4656;
  --radius: 22px;
  --shadow: none;
  --sans: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 40;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.orb {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: orb-drift 16s ease-in-out infinite;
}
.orb--a {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -80px;
  background: rgba(10, 92, 255, 0.18);
}
.orb--b {
  width: 360px;
  height: 360px;
  bottom: 12%;
  left: -120px;
  background: rgba(47, 123, 255, 0.12);
  animation-delay: -7s;
}
.orb--c {
  width: 300px;
  height: 300px;
  top: 42%;
  right: 8%;
  background: rgba(10, 92, 255, 0.1);
  animation: orb-drift-alt 22s ease-in-out infinite;
  animation-delay: -4s;
}
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      680px 420px at 18% 12%,
      rgba(10, 92, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      720px 480px at 82% 28%,
      rgba(47, 123, 255, 0.12),
      transparent 62%
    ),
    radial-gradient(
      640px 460px at 50% 88%,
      rgba(10, 92, 255, 0.08),
      transparent 65%
    );
  background-size: 140% 140%;
  animation: bg-shift 18s ease-in-out infinite;
}

.ix {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -3px;
}
.ix--md {
  width: 22px;
  height: 22px;
}
.ix--lg {
  width: 28px;
  height: 28px;
}

.announce {
  position: relative;
  z-index: 20;
  background: var(--urgent);
  text-align: center;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.announce p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.announce .ix {
  color: #fff;
}
.announce__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.2s ease-in-out infinite;
}
.announce__chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.announce__short {
  display: none;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
}
.brand__logo {
  display: block;
  height: 56px;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: #006aff;
  border: 8px solid #c0dfff;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  text-decoration: none;
  box-sizing: border-box;
}
.btn--lg {
  font-size: 16px;
}
.btn--full {
  width: 100%;
}

/* Uiverse.io by vinodjangid07 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: #006aff;
  border: 8px solid #c0dfff;
  color: #fff;
  gap: 8px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  text-decoration: none;
  box-sizing: border-box;
}
.button .text {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.button .svg {
  display: inline-flex;
  align-items: center;
  padding-top: 2px;
  height: 100%;
  width: fit-content;
}
.button .svg svg {
  width: 50px;
  height: 30px;
  display: block;
}
.button--full {
  width: 100%;
}
.button--sm {
  padding: 8px 16px;
  border-width: 5px;
  gap: 6px;
  white-space: nowrap;
}
.button--sm .text {
  font-size: 13px;
  letter-spacing: 0.01em;
}
.button--sm .svg svg {
  width: 34px;
  height: 18px;
}
.button:hover,
.btn:hover {
  border-color: #b1d8ff;
  background-color: #1b7aff;
}
.button:active,
.btn:active {
  border-width: 5px;
}
.button--sm:active {
  border-width: 3px;
}

.eyebrow {
  position: relative;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px 8px 12px;
  border: 1px solid #c7dbff;
  border-radius: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 240, 255, 0.9) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 92, 255, 0.14);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.eyebrow--center {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow--center,
.center,
.lede--center {
  text-align: center;
}

h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.08;
  margin: 0 0 22px;
}
h1 em {
  font-style: normal;
  color: var(--blue);
}
h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  margin: 0 0 18px;
}
h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.lede {
  color: var(--soft);
  font-size: 18px;
  max-width: 36ch;
}
.lede--center {
  margin: 0 auto;
  max-width: 52ch;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 40px 0 72px;
}
.hero > *:not(.grid-wrapper) {
  position: relative;
  z-index: 1;
}

/* From Uiverse.io by Gautammsharma — behind the hero only */
.grid-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.grid-background {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, #e2e8f0 1px, transparent 1px),
    linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);
  background-size: 20px 30px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    #000 60%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    #000 60%,
    transparent 100%
  );
}
.hero__stack {
  text-align: center;
}
.hero__stack h1 {
  margin-left: auto;
  margin-right: auto;
}
.hero__3d {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin: 0 4px -8px;
  vertical-align: middle;
  background: url("../img/hero-3d-play.png") center / contain no-repeat;
  transform: rotate(-16deg);
  filter: drop-shadow(0 8px 12px rgba(10, 92, 255, 0.2));
  animation: hero-3d 4.2s ease-in-out infinite;
}
.hero__logo {
  display: block;
  height: 72px;
  width: auto;
  margin: 0 auto 22px;
}
.hero__cta {
  margin-top: 8px;
}

.trust {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust .ix {
  color: var(--blue);
}

.hero-player {
  position: relative;
  width: min(860px, 100%);
  margin: 36px auto 28px;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(70% 80% at 50% 35%, #1e3a8a 0%, #0b1220 62%);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: none;
}
.hero-player__media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-player__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hero-player__orb {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  animation: pulse-ring 2s ease-out infinite;
}
.hero-player__orb .ix {
  margin-left: 3px;
}
.hero-player.is-playing .hero-player__play {
  display: none;
}

.faces {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.faces p { margin: 0; }
.faces__stack {
  display: flex;
  flex-shrink: 0;
}
.faces__stack span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #dbe7ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.faces__stack span:first-child { margin-left: 0; background: #c7d8ff; }
.faces__stack span:nth-child(2) { background: #b8d4ff; }
.faces__stack span:nth-child(3) { background: #e8f0ff; }
.faces__stack span:nth-child(4) { background: #cfe0ff; }
.faces__stack span:nth-child(5) { background: #adc8ff; }

.niches {
  overflow: hidden;
  margin-top: 56px;
  padding: 22px 0 28px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.niches__band {
  padding: 10px 0;
  background: var(--blue);
}
.niches__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: niches-scroll 28s linear infinite;
}
.niches__track span {
  white-space: nowrap;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
.niches__track span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1.4px #fff;
}

.band {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.myths__grid,
.program__grid,
.offer__grid,
.fit__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.ticket__price s {
  color: var(--muted);
  font-size: 18px;
}
.ticket__price strong {
  font-family: var(--sans);
  font-size: clamp(32px, 2vw, 40px);
  font-weight: 700;
  color: var(--ink);
}

.micro {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.proof,
.bonus,
.reels,
.faq {
  padding: 28px 0;
}
.myths,
.shift,
.method,
.program,
.offer,
.fit {
  padding: 92px 0;
}

.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.bonus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.bonus-card,
.ticket,
.fit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.ad-card,
.bonus-card,
.shift-cards li,
.ticket,
.fit-card {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.ad-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px 16px 20px;
  box-shadow: none;
}
.ad-card:hover,
.bonus-card:hover,
.shift-cards li:hover,
.ticket:hover {
  transform: translateY(-4px);
  border-color: #c7dbff;
  box-shadow: none;
}
.ad-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 5px 11px 5px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: none;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ad-card__flow {
  display: block;
  width: 28px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(10, 92, 255, 0.25));
}
.ad-card__stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ad-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  background: #0b1220;
}
.ad-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ad-card__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 18, 32, 0.28) 100%);
  cursor: pointer;
}
.ad-card__play-orb {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  box-shadow: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.ad-card__play-orb .ix {
  margin-left: 2px;
}
.ad-card__play:hover .ad-card__play-orb {
  transform: scale(1.06);
  background: #fff;
}
.ad-card__time {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(11, 18, 32, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}
.ad-card.is-playing .ad-card__play,
.ad-card.is-playing .ad-card__time,
.ad-card.is-playing .ad-card__badge {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ad-card.is-playing .ad-card__play {
  display: none;
}
.ad-card h3 {
  margin: 16px 4px 12px;
  font-size: 22px;
  line-height: 1.25;
}
.ad-card__stats,
.ad-card__link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.ad-card__go,
.ad-card__link {
  color: var(--blue);
  margin-left: auto;
}
.ad-card__link .ix {
  margin-left: 4px;
}

.myth-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.myth-list li {
  padding: 22px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #fff 0%, #f8faff 100%);
  box-shadow: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.myth-list li:hover {
  transform: translateY(-3px);
  border-color: #c7dbff;
}
.myth-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.myth-list__ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--blue-soft);
  border: 1px solid #c7dbff;
  color: var(--blue);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
.myth-list__tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.myth-list h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}
.myth-list p {
  margin: 0;
  color: var(--soft);
  line-height: 1.6;
}

.highlight-line {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 22px;
  font-style: normal;
  line-height: 1.45;
}
.highlight-line--center {
  text-align: center;
}
.highlight-line .mark {
  font-style: normal;
}

.mark {
  display: inline;
  padding: 0.08em 0.18em;
  background: linear-gradient(transparent 62%, #cfe0ff 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: inset 0 -2px 0 var(--blue);
  font-weight: 700;
  color: var(--ink);
}

.shift__intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.shift-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.shift-cards li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 28px 24px 26px;
  border-radius: 22px;
  box-shadow: none;
  overflow: hidden;
}
.shift-cards__item--a {
  background: #e8f0ff;
  border: 1px solid #c7dbff;
}
.shift-cards__item--b {
  background: #fff;
  border: 1px solid #c7dbff;
}
.shift-cards__item--c {
  background: #0a5cff;
  border: 1px solid #0a5cff;
}
.shift-cards__item--a .shift-cards__ico,
.shift-cards__item--b .shift-cards__ico {
  background: rgba(255, 255, 255, 0.85);
  border-color: #c7dbff;
}
.shift-cards__item--c .shift-cards__ico {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.shift-cards__item--c .shift-cards__num {
  color: rgba(255, 255, 255, 0.28);
}
.shift-cards__num {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(10, 92, 255, 0.22);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.shift-cards__ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--blue-soft);
  border: 1px solid #c7dbff;
  color: var(--blue);
}
.shift-cards h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.shift-cards p {
  margin: 0;
  color: var(--soft);
  line-height: 1.55;
}
.shift-cards li.shift-cards__item--c,
.shift-cards li.shift-cards__item--c h3,
.shift-cards li.shift-cards__item--c p {
  color: #fff;
}

.method__intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.shot-sheet {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}
.shot-sheet li {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 28px 24px 30px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #f8faff 0%, #fff 42%);
}
.shot-sheet li:last-child {
  border-right: 0;
}
.shot-sheet__letter {
  display: block;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--blue);
}
.shot-sheet__copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.shot-sheet__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.accordion details {
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--card);
  transition: background 0.25s ease;
}
.accordion details:first-child {
  border-radius: 18px 18px 0 0;
}
.accordion details:last-child {
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
}
.accordion details[open] {
  background: #f8faff;
}
.accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  font-weight: 600;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  color: var(--blue);
  font-family: var(--sans);
  min-width: 28px;
}
.accordion__chevron {
  margin-left: auto;
  color: var(--blue);
  transition: transform 0.25s ease;
}
.accordion details[open] .accordion__chevron {
  transform: rotate(180deg);
}
.accordion p {
  margin: 0;
  padding: 0 20px 20px 62px;
  color: var(--soft);
}
.accordion--faq p {
  padding-left: 20px;
}

.bonus-card {
  overflow: hidden;
  padding: 0;
}
.bonus-card__visual {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 18px 18px 0;
}
.bonus-card__visual img {
  width: min(230px, 86%);
  height: auto;
  display: block;
  animation: float 5s ease-in-out infinite;
}
.bonus-card:nth-child(2) .bonus-card__visual img {
  animation-delay: -1.2s;
}
.bonus-card:nth-child(3) .bonus-card__visual img {
  animation-delay: -2.4s;
}
.bonus-card:nth-child(4) .bonus-card__visual img {
  animation-delay: -0.6s;
}
.bonus-card:nth-child(5) .bonus-card__visual img {
  animation-delay: -1.8s;
}
.bonus-card:nth-child(6) .bonus-card__visual img {
  animation-delay: -3s;
}
.bonus-card__body {
  padding: 8px 22px 24px;
}
.bonus-card__body span {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.bonus-card__body p {
  margin: 0;
  color: var(--soft);
}

.voices { padding: 88px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
  align-items: start;
}
@media (min-width: 700px) and (max-width: 980px) {
  .voices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 981px) {
  .voices__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .voices__grid .voice--shot:nth-child(1) { grid-column: 1 / 3; }
  .voices__grid .voice--shot:nth-child(2) { grid-column: 3 / 5; }
  .voices__grid .voice--shot:nth-child(3) { grid-column: 5 / 7; }
  .voices__grid .voice--shot:nth-child(4) { grid-column: 2 / 4; }
  .voices__grid .voice--shot:nth-child(5) { grid-column: 4 / 6; }
}
.voice {
  margin: 0;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}
.voice--shot {
  padding: 0;
  overflow: hidden;
  background: #efeae2;
}
.voice--shot img {
  display: block;
  width: 100%;
  height: auto;
}
.voices__note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.voice blockquote {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}
.voice figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.voice strong { color: var(--ink); }
.voice__ava {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.voice__ava--2 { background: #dce8ff; }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.reel-card { display: block; }
.reel-card h3 {
  margin: 14px 4px 0;
  font-size: 20px;
}
.reel-card__frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 10;
  background: #0b1220;
}
.reel-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.reel-card:hover .reel-card__frame img { transform: scale(1.05); }
.reel-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
}
.reel-card__play .ix {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: var(--blue);
}
.reel-card__time {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 3px 8px;
  border-radius: 8px;
  background: rgba(11, 18, 32, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.fit-card {
  padding: 32px 30px;
  min-height: 100%;
}
.fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--soft);
  display: grid;
  gap: 14px;
}
.fit-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fit-card--yes {
  border-color: #c7dbff;
  background: linear-gradient(180deg, #f8faff 0%, #fff 55%);
}
.fit-card--no {
  border-color: #f0d0d0;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 55%);
}

.dot-check,
.dot-cross {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-check {
  background: #9dff3a;
}
.dot-check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border-right: 2.5px solid #0b1220;
  border-bottom: 2.5px solid #0b1220;
  transform: rotate(45deg);
}
.dot-cross {
  background: #ff3b4a;
}
.dot-cross::before,
.dot-cross::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 2.5px;
  height: 12px;
  border-radius: 2px;
  background: #fff;
}
.dot-cross::before {
  transform: rotate(45deg);
}
.dot-cross::after {
  transform: rotate(-45deg);
}

.guarantee {
  padding: 28px 0 72px;
}
.guarantee__panel {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid #e8d9a8;
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdf5 0%, #fff 55%, #f7f1de 100%);
}
.guarantee__seal {
  width: min(160px, 34vw);
  height: auto;
  flex-shrink: 0;
  display: block;
}
.guarantee__copy .eyebrow {
  margin-bottom: 10px;
}
.guarantee__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
}
.guarantee__copy p {
  margin: 0;
  color: var(--soft);
  max-width: 48ch;
}
.guarantee__copy strong {
  color: var(--ink);
}

.offer {
  background: linear-gradient(180deg, transparent, rgba(10, 92, 255, 0.05));
}
.offer__box {
  display: block;
  width: min(340px, 80%);
  margin-top: 28px;
  filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.12));
  animation: float 6s ease-in-out infinite;
}
.ticket {
  position: relative;
  padding: 28px 28px 28px;
  overflow: visible;
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 118px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line);
}
.ticket::before { left: -11px; }
.ticket::after { right: -11px; }
.offer-timer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  margin: 0 0 18px;
}
.offer-timer__label {
  color: var(--urgent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer-timer__digits {
  display: flex;
  gap: 8px;
}
.offer-timer__digits span {
  display: grid;
  justify-items: center;
  min-width: 52px;
  padding: 8px 6px 6px;
  border-radius: 12px;
  background: #0b1220;
  color: #fff;
}
.offer-timer__digits b {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.offer-timer__digits small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticket__label {
  margin: 0 0 10px;
  color: var(--blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.ticket__price {
  margin-bottom: 18px;
}
.ticket ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.ticket li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticket .ix {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: inherit;
}
.ticket .dot-check {
  width: 20px;
  height: 20px;
}
.ticket .dot-check::after {
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
}

.faq__inner {
  max-width: 820px;
}
.faq__close {
  margin-top: 48px;
  text-align: center;
}
.faq__close p {
  font-family: var(--sans);
  font-size: 28px;
  margin: 0 0 18px;
}

main,
.footer {
  position: relative;
  z-index: 1;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
  color: var(--soft);
  font-size: 14px;
}
.footer__brand {
  flex: 1;
  min-width: 0;
}
.footer__tag {
  max-width: 42ch;
  margin: 10px 0 0;
  line-height: 1.55;
  color: var(--soft);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 4px 0 0;
  flex-shrink: 0;
}
.footer__nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer__nav a:hover {
  color: var(--blue);
}
.footer__bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.footer__bottom p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.enter,
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.enter {
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.enter-d1 {
  animation-delay: 0.08s;
}
.enter-d2 {
  animation-delay: 0.16s;
}
.enter-d3 {
  animation-delay: 0.24s;
}
.enter-d4 {
  animation-delay: 0.32s;
}
.enter-d5 {
  animation-delay: 0.4s;
}
.reveal.is-in {
  animation: rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reveal-d1.is-in {
  animation-delay: 0.08s;
}
.reveal-d2.is-in {
  animation-delay: 0.16s;
}
.reveal-d3.is-in {
  animation-delay: 0.24s;
}
.reveal-d4.is-in {
  animation-delay: 0.32s;
}
.reveal-d5.is-in {
  animation-delay: 0.4s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 92, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(10, 92, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 92, 255, 0);
  }
}
@keyframes player-glow {
  0%,
  100% {
    box-shadow: none;
  }
  50% {
    box-shadow: none;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes hero-3d {
  0%,
  100% {
    transform: rotate(-16deg) translateY(0);
  }
  50% {
    transform: rotate(-9deg) translateY(-5px);
  }
}
@keyframes orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 24px) scale(1.08);
  }
}
@keyframes orb-drift-alt {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -28px) scale(1.12);
  }
}
@keyframes niches-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes bg-shift {
  0%,
  100% {
    background-position:
      0% 40%,
      100% 20%,
      50% 100%;
    opacity: 0.9;
  }
  33% {
    background-position:
      30% 10%,
      70% 50%,
      40% 80%;
    opacity: 1;
  }
  66% {
    background-position:
      10% 70%,
      90% 30%,
      60% 40%;
    opacity: 0.85;
  }
}

@media (max-width: 980px) {
  .announce {
    padding: 7px 12px;
    font-size: 11px;
    line-height: 1.25;
  }
  .announce p {
    gap: 6px;
  }
  .announce__full,
  .announce__chip {
    display: none;
  }
  .announce__short {
    display: inline;
  }
  .announce .ix {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .hero {
    padding-bottom: 36px;
  }
  .niches {
    margin-top: 36px;
    padding: 16px 0 20px;
  }
  .niches__track {
    gap: 32px;
  }
  .niches__track span {
    -webkit-text-stroke-width: 1.1px;
  }
  .hero-player {
    margin: 28px auto 22px;
    border-radius: 16px;
  }
  .hero-player__orb {
    width: 64px;
    height: 64px;
  }
  .myths__grid,
  .program__grid,
  .offer__grid,
  .fit__grid,
  .bonus__grid,
  .ad-grid,
  .reel-grid,
  .voices__grid,
  .shift-cards {
    grid-template-columns: 1fr;
  }
  .shot-sheet {
    grid-template-columns: 1fr;
  }
  .shot-sheet li {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .shot-sheet li:last-child {
    border-bottom: 0;
  }
  .shot-sheet__letter {
    font-size: 42px;
    text-align: center;
  }
  .faces { max-width: none; }
  h1 {
    font-size: 30px;
  }
  .hero__3d {
    width: 36px;
    height: 36px;
    margin-bottom: -6px;
  }
  .lede {
    max-width: none;
  }
  .trust {
    gap: 12px;
  }
  .offer__box {
    margin-left: auto;
    margin-right: auto;
  }
  .accordion p {
    padding-left: 20px;
  }
  .guarantee__panel {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 24px;
  }
  .guarantee__seal {
    width: 132px;
  }
  .guarantee__copy p {
    max-width: none;
  }
  .offer-timer {
    align-items: stretch;
  }
  .offer-timer__digits {
    justify-content: space-between;
  }
  .offer-timer__digits span {
    flex: 1;
  }
  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer__tag {
    max-width: none;
  }
  .footer__nav {
    margin: 0;
    gap: 10px 16px;
  }
  .footer__bottom {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .enter,
  .reveal,
  .reveal.is-in,
  .orb,
  .bg-mesh,
  .hero-player,
  .hero-player__orb,
  .bonus-card__visual img,
  .offer__box,
  .hero__3d,
  .announce__dot,
  .niches__track {
    animation: none !important;
  }
  .hero__3d {
    transform: rotate(-14deg);
  }
  .enter,
  .reveal {
    opacity: 1;
    transform: none;
  }
  .ad-card:hover,
  .bonus-card:hover,
  .shift-cards li:hover,
  .ticket:hover,
  .myth-list li:hover {
    transform: none;
  }
}
