








@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --surface: #111111;
  --surface-light: #181818;
  --text: #f7f7f2;
  --muted: #a8a8a2;
  --line: #2b2b2b;
  --accent: #efff35;
  --accent-strong: #dfff00;
  --danger: #ff4d39;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: 1180px;
  --shadow-yellow: 0 0 60px rgba(239, 255, 53, 0.13);
  --font-main: "Manrope", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-display: "Manrope", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 7%, rgba(239, 255, 53, 0.08), transparent 27rem),
    radial-gradient(circle at 82% 32%, rgba(239, 255, 53, 0.055), transparent 32rem),
    var(--bg);
  font-family: var(--font-main);
  line-height: 1.55;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

[id] {
  scroll-margin-top: 96px;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: #050505;
  background: var(--accent);
}

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

.section {
  position: relative;
  padding: 108px 0;
}

.section--tight {
  padding: 76px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.display-title {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 7.4vw, 104px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.display-title .accent,
.accent-text {
  color: var(--accent);
}

.section-title {
  max-width: 920px;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.03;
  text-transform: uppercase;
}

.section-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: #050505;
  background: var(--accent);
  box-shadow: 0 10px 40px rgba(239, 255, 53, 0.2);
}

.button--primary:hover {
  background: #f5ff72;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button--ghost:hover {
  border-color: #666;
  background: rgba(255, 255, 255, 0.07);
}

.button__arrow {
  font-size: 20px;
  line-height: 1;
}

 
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, opacity 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  background: var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  transform: rotate(-7deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d4d4ce;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:not(.button):hover {
  color: var(--accent);
}

.header-cta {
  min-height: 46px;
  padding-inline: 19px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.menu-button span {
  position: relative;
}

.menu-button span::before {
  position: absolute;
  top: -6px;
}

.menu-button span::after {
  position: absolute;
  top: 6px;
}

 
.hero {
  min-height: calc(100vh - 80px);
  padding: 70px 0 84px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 22%;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(239, 255, 53, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(239, 255, 53, 0.05), var(--shadow-yellow);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 45px;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 13px;
  border: 1px solid rgba(239, 255, 53, 0.25);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(239, 255, 53, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.hero-subtitle {
  max-width: 680px;
  margin: 28px 0 0;
  color: #d7d7d0;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 600;
  line-height: 1.35;
}

.hero-subtitle__club {
  display: inline-block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: #b5b5af;
}


.hero-subtitle__club s {
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(181, 181, 175, 0.85);
}

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

.hero-note {
  margin: 18px 0 0;
  color: #74746f;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.hero-number {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: -10px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(180px, 23vw, 340px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.78;
  opacity: 0.96;
  text-shadow: 0 0 60px rgba(239, 255, 53, 0.16);
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 35px;
  width: min(390px, 88%);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  background: rgba(14, 14, 14, 0.88);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  transform: rotate(-3deg);
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-card__emoji {
  font-size: 48px;
}

.hero-card__badge {
  padding: 7px 10px;
  border: 1px solid #383838;
  border-radius: 999px;
  color: #bdbdb6;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-transform: uppercase;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
}

.hero-card__stats {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  grid-template-columns: repeat(2, 1fr);
}

.hero-card__stats div {
  padding: 14px;
  border-radius: 14px;
  background: #080808;
}

.hero-card__stats strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
}

.hero-card__stats span {
  display: block;
  margin-top: 5px;
  color: #7e7e78;
  font-size: 11px;
}

.float-emoji {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid #2b2b2b;
  border-radius: 22px;
  background: #101010;
  font-size: 31px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.float-emoji--one {
  top: 46%;
  left: 0;
  transform: rotate(-12deg);
}

.float-emoji--two {
  right: 0;
  bottom: 11%;
  transform: rotate(10deg);
}

.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-item {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.stat-item:first-child {
  border-left: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

 
.lead-grid {
  display: grid;
  align-items: start;
  gap: 60px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.big-copy {
  margin: 0;
  color: #e5e5de;
  font-size: clamp(25px, 3.2vw, 45px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.28;
}

.big-copy strong {
  color: var(--accent);
}

.text-stack {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.text-stack p {
  margin: 0;
}

.course-feature {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(239, 255, 53, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 5%, rgba(239, 255, 53, 0.18), transparent 25rem),
    #0b0b0b;
  box-shadow: var(--shadow-yellow);
}

.course-feature::after {
  position: absolute;
  right: -70px;
  bottom: -140px;
  color: rgba(239, 255, 53, 0.055);
  font-family: var(--font-display);
  font-size: 390px;
  font-weight: 800;
  line-height: 1;
  content: "500";
}

.course-feature__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: 1fr 0.8fr;
}

.course-feature h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 96px);
  letter-spacing: -0.025em;
  line-height: 1.0;
  text-transform: uppercase;
}

.course-feature h3 span {
  color: var(--accent);
}

.course-feature p {
  max-width: 650px;
  margin: 0;
  color: #c1c1bb;
  font-size: 19px;
  line-height: 1.6;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e4e4dd;
  font-size: 16px;
  line-height: 1.5;
}

.feature-list li::before {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  background: var(--accent);
  content: "✓";
  font-size: 13px;
  font-weight: 800;
}

.course-badge {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px dashed rgba(239, 255, 53, 0.55);
  border-radius: 50%;
  background: rgba(239, 255, 53, 0.03);
  text-align: center;
  transform: rotate(4deg);
}

.course-badge__emoji {
  display: block;
  font-size: 72px;
}

.course-badge strong {
  display: block;
  max-width: 230px;
  margin: 14px auto 0;
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-transform: uppercase;
}

.results-grid,
.courses-grid,
.benefits-grid {
  display: grid;
  gap: 16px;
  margin-top: 52px;
}

.results-grid {
  grid-template-columns: repeat(3, 1fr);
}

.result-statement {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: clamp(34px, 5vw, 64px);
}

.result-statement::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  content: "";
}

.result-statement p {
  max-width: 1120px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.result-statement span {
  color: var(--accent);
}

.result-card,
.course-card,
.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 200ms ease, border-color 200ms ease;
}

.result-card:hover,
.course-card:hover,
.benefit-card:hover {
  border-color: rgba(239, 255, 53, 0.48);
  transform: translateY(-5px);
}

.result-card {
  min-height: 330px;
  padding: 30px;
}

.card-index {
  color: #555;
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
}

.result-card h3,
.course-card h3,
.benefit-card h3 {
  margin: 36px 0 12px;
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.result-card p,
.course-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.result-card__emoji {
  position: absolute;
  right: 23px;
  bottom: 18px;
  font-size: 52px;
  filter: saturate(0.85);
}

.courses-grid {
  grid-template-columns: repeat(3, 1fr);
}

 
.courses-grid--five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.courses-grid--five .course-card {
  grid-column: span 2;
}

.courses-grid--five .course-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.courses-grid--five .course-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.benefits-heading {
  max-width: 820px;
  margin: 76px 0 0;
  color: var(--text);
  font-family: inherit;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.benefits-heading span {
  color: var(--accent);
}

.course-card {
  min-height: 270px;
  padding: 28px;
}

.course-card--featured {
  border-color: var(--accent);
  background: var(--accent);
}

.course-card--featured,
.course-card--featured p {
  color: #050505;
}

.course-card__tag {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid #323232;
  border-radius: 999px;
  color: #aaa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-card--featured .course-card__tag {
  border-color: rgba(0, 0, 0, 0.25);
  color: #050505;
}

.course-card__emoji {
  position: absolute;
  right: 20px;
  bottom: 12px;
  font-size: 46px;
}

.benefits-grid {
  grid-template-columns: repeat(2, 1fr);
}

.benefit-card {
  display: grid;
  min-height: 190px;
  align-items: center;
  gap: 24px;
  padding: 28px;
  grid-template-columns: 64px 1fr;
}

.benefit-card h3 {
  margin: 0 0 8px;
}

.benefit-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  background: #080808;
  font-size: 31px;
}

 
.roadmap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.roadmap-canvas {
  position: relative;
  min-height: 720px;
  margin-top: 42px;
}

.roadmap-line {
  position: absolute;
  inset: 5% 5% 4% 5%;
  width: 90%;
  height: 91%;
}

.roadmap-line path {
  fill: none;
  stroke: var(--accent);
  stroke-dasharray: 11 14;
  stroke-linecap: round;
  stroke-width: 4;
}

.roadmap-point {
  position: absolute;
  width: 260px;
}

.roadmap-point__emoji {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid #343434;
  border-radius: 23px;
  background: #111;
  font-size: 36px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5);
}

.roadmap-point h3 {
  margin: 15px 0 5px;
  font-size: 20px;
}

.roadmap-point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.roadmap-point--1 { top: 3%; left: 8%; }
.roadmap-point--2 { top: 15%; right: 3%; }
.roadmap-point--3 { top: 41%; left: 19%; }
.roadmap-point--4 { top: 52%; right: 8%; }
.roadmap-point--5 { bottom: 0; left: 8%; }
.roadmap-point--6 { right: 19%; bottom: -1%; }

.roadmap-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: start;
  margin-top: 36px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 14%, rgba(217, 246, 39, 0.12), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(217, 246, 39, 0.08), transparent 24%),
    #0a0a0a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.roadmap-copy__lead {
  position: relative;
  padding-left: 22px;
}

.roadmap-copy__lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.roadmap-copy__lead h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.96;
}

.roadmap-copy__body {
  display: grid;
  gap: 20px;
}

.roadmap-copy__body p {
  margin: 0;
  color: #d3d3cf;
  font-size: 18px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .roadmap-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .roadmap-copy__lead h2 {
    max-width: none;
  }

  .roadmap-copy__body p {
    font-size: 16px;
    line-height: 1.68;
  }
}

 
.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.video-reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
}

.video-reviews-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.video-reviews-controls {
  display: flex;
  gap: 10px;
}

.video-reviews-grid {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 18px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-reviews-grid::-webkit-scrollbar {
  display: none;
}

.video-review {
  overflow: hidden;
  flex: 0 0 min(370px, calc((100% - 54px) / 3.25));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  scroll-snap-align: start;
}

.video-review video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
}

.video-review__body {
  padding: 24px;
}

.video-review__name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.video-review__name::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.video-review h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.15;
}

.review-points {
  display: grid;
  gap: 10px;
}

.review-point {
  padding-left: 14px;
  border-left: 2px solid #373737;
  color: var(--muted);
  font-size: 14px;
}

.review-point strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.video-review__description {
  display: grid;
  gap: 8px;
}

.video-review__description p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.video-reviews-hint {
  margin: 10px 0 0;
  color: #777;
  font-size: 12px;
}

.photo-reviews-block {
  margin-top: 64px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(239, 255, 53, 0.1), transparent 32%),
    #0b0b0b;
}

.photo-reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.photo-reviews-head h3 {
  max-width: 720px;
  margin: 6px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  text-transform: uppercase;
}

.photo-reviews-head p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.photo-reviews-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.review-nav {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #353535;
  border-radius: 50%;
  background: #151515;
  color: #fff;
  font: inherit;
  font-size: 23px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.review-nav:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--accent);
  color: #050505;
}

.photo-reviews-viewport {
  margin-right: -28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.photo-reviews-viewport::-webkit-scrollbar {
  display: none;
}

.photo-reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-right: 28px;
}

.photo-review-card {
  position: relative;
  flex: 0 0 320px;
  height: 520px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #303030;
  border-radius: 24px;
  background: #111;
  color: #fff;
  cursor: zoom-in;
  scroll-snap-align: start;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease;
}

.photo-review-card--wide {
  flex-basis: 440px;
}

.photo-review-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.photo-review-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease;
}

.photo-review-card:hover img {
  transform: scale(1.025);
}

.photo-review-card__overlay {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.photo-review-card__overlay strong {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.photo-review-card__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
  flex: 0 0 auto;
  min-width: 0;
}

.photo-review-card__number {
  display: block;
}

.photo-review-card__overlay small {
  color: #d7d7d7;
  font-size: 12px;
  text-align: right;
  line-height: 1.2;
  margin-left: auto;
  flex: 0 1 auto;
}

.photo-reviews-hint {
  margin: 18px 0 0;
  color: #696969;
  font-size: 13px;
}

 
.review-lightbox[hidden] {
  display: none;
}

.review-lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.review-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
}

.review-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  width: min(1120px, 100%);
  max-height: calc(100vh - 44px);
}

.review-lightbox figure {
  display: grid;
  min-width: 0;
  max-height: calc(100vh - 44px);
  margin: 0;
  place-items: center;
}

.review-lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 92px);
  border: 1px solid #3b3b3b;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  object-fit: contain;
}

.review-lightbox figcaption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  padding: 7px 11px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.76);
  color: #ddd;
  font-size: 12px;
}

.review-lightbox__close,
.review-lightbox__arrow {
  border: 1px solid #414141;
  background: rgba(20, 20, 20, 0.88);
  color: #fff;
  cursor: pointer;
}

.review-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  font-size: 28px;
}

.review-lightbox__arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  font-size: 22px;
}

.review-lightbox__close:hover,
.review-lightbox__arrow:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #050505;
}

body.lightbox-open {
  overflow: hidden;
}

 
.about-grid {
  display: grid;
  align-items: stretch;
  gap: 24px;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
}

.about-photo {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #111;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 48%);
  content: "";
}

.about-photo__caption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.about-photo__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 35px;
  line-height: 1;
  text-transform: uppercase;
}

.about-photo__caption span {
  display: block;
  margin-top: 8px;
  color: #c3c3bd;
  font-size: 13px;
}

.about-content {
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.about-content .section-title {
  font-size: clamp(48px, 6.5vw, 88px);
}

.about-copy {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-copy p {
  margin: 0;
}

.about-facts {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  grid-template-columns: repeat(2, 1fr);
}

.about-fact {
  padding: 19px;
  border-radius: 17px;
  background: #090909;
}

.about-fact strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 35px;
  line-height: 1;
}

.about-fact span {
  display: block;
  margin-top: 7px;
  color: #8d8d87;
  font-size: 12px;
}

 
.pricing-grid {
  display: grid;
  align-items: stretch;
  gap: 16px;
  margin-top: 52px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 2px solid #313131;
  border-radius: 28px;
  background: #080808;
}

.price-card--popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-yellow);
}

.price-card--mentorship {
  border-color: #eee;
}

.price-card__emoji {
  margin-bottom: 24px;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card__emoji img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.price-card__eyebrow {
  color: #85857f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card h3 {
  min-height: 93px;
  margin: 12px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(39px, 4.5vw, 58px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.price-card:last-child h3 {
  font-size: clamp(32px, 3.2vw, 44px);
}

.price-card__period {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card__description-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 18px;
  align-items: start;
  margin-top: 14px;
}

.price-card__description {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.price-card__excluded {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-22px);
}

.price-card__excluded-visual {
  position: relative;
  width: 200px;
  height: 154px;
}

.price-card__excluded-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #0b0b0b;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.price-card__excluded-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-card__excluded-shot--back {
  top: 0;
  left: 50px;
  z-index: 1;
  width: 100px;
  height: 118px;
  transform: rotate(-4deg);
}

.price-card__excluded-shot--left {
  bottom: 6px;
  left: 0;
  z-index: 2;
  width: 96px;
  height: 106px;
  transform: rotate(-8deg);
}

.price-card__excluded-shot--right {
  right: 0;
  bottom: 10px;
  z-index: 3;
  width: 96px;
  height: 106px;
  transform: rotate(8deg);
}

.price-card__excluded-x {
  position: absolute;
  top: 10px;
  left: 18px;
  z-index: 4;
  color: #ff3b30;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.price-card__excluded-text {
  max-width: 185px;
  color: #d7d7cf;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}


.price-card__included {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-22px);
}

.price-card__included-visual {
  position: relative;
  width: 200px;
  height: 154px;
}

.price-card__included-check {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 5;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 3px solid rgba(73, 255, 87, 0.95);
  border-radius: 999px;
  background: rgba(73, 255, 87, 0.18);
  color: #49ff57;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35), 0 0 18px rgba(73, 255, 87, 0.2);
}

.price-card__included-text {
  max-width: 185px;
  color: #d7d7cf;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}


.price-card__features {
  position: relative;
}

.price-card__features.is-collapsed {
  max-height: 238px;
  overflow: hidden;
}

.price-card__features.is-collapsed::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 74px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.96) 70%, #080808 100%);
  content: "";
  pointer-events: none;
}

.price-card__toggle {
  align-self: flex-start;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price-card__toggle:hover {
  opacity: 0.86;
}

.price-card__toggle:focus-visible {
  outline: 2px solid rgba(227, 255, 62, 0.55);
  outline-offset: 4px;
}

.price-card__bonus-note {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 18px;
  padding: 8px 0 2px;
}

.price-card__features.is-collapsed .price-card__bonus-note {
  display: none;
}

.price-card__bonus-mascot {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
}

.price-card__bonus-bubble {
  position: relative;
  max-width: 320px;
  padding: 12px 16px;
  border: 1px solid rgba(227, 255, 62, 0.34);
  border-radius: 18px 18px 18px 6px;
  background: linear-gradient(180deg, rgba(34, 34, 18, 0.95) 0%, rgba(14, 14, 10, 0.98) 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(227, 255, 62, 0.05) inset;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.price-card__bonus-bubble::before {
  content: "";
  position: absolute;
  left: -9px;
  bottom: 18px;
  width: 16px;
  height: 16px;
  border-left: 1px solid rgba(227, 255, 62, 0.34);
  border-bottom: 1px solid rgba(227, 255, 62, 0.34);
  background: rgba(21, 21, 13, 0.98);
  transform: rotate(45deg);
}

.price-card__note {
  margin-top: 18px;
  color: #d6d6cf;
  font-size: 14px;
  line-height: 1.55;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: #c7c7c0;
  font-size: 15px;
  line-height: 1.45;
}

.price-card li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}


.price-card__inline-cross {
  display: inline-flex;
  width: 1.05em;
  height: 1.05em;
  align-items: center;
  justify-content: center;
  margin-right: 0.28em;
  color: #ff3b30;
  font-family: Arial, sans-serif;
  font-size: 1.08em;
  font-weight: 900;
  line-height: 1;
  vertical-align: -0.04em;
  text-shadow: 0 2px 8px rgba(255, 59, 48, 0.22);
}

.price-card__footer {
  margin-top: auto;
  padding-top: 28px;
}

.old-price {
  min-height: 20px;
  color: #555;
  font-size: 14px;
  text-decoration: line-through;
}

.price {
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
}

.price-card .button {
  width: 100%;
  margin-top: 19px;
}


.price-card[data-ideal]::before {
  position: absolute;
  top: 24px;
  right: -74px;
  width: 260px;
  padding: 8px 0;
  color: #050505;
  background: var(--accent);
  content: "ИДЕАЛЬНЫЙ ФОРМАТ";
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(37deg);
}
.price-card[data-best]::before {
  position: absolute;
  top: 19px;
  right: -40px;
  width: 160px;
  padding: 7px 0;
  color: #050505;
  background: var(--accent);
  content: "ВЫГОДНО";
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(38deg);
}

 
.faq-list {
  max-width: 900px;
  margin-top: 48px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  text-align: left;
}

.faq-item button::after {
  flex: 0 0 auto;
  color: var(--accent);
  content: "+";
  font-size: 28px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item.is-open button::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 25px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 88px);
  border-radius: var(--radius-lg);
  color: #050505;
  background: var(--accent);
}

.final-cta::after {
  position: absolute;
  right: -50px;
  bottom: -150px;
  color: rgba(0, 0, 0, 0.09);
  font-family: var(--font-display);
  font-size: 390px;
  font-weight: 800;
  line-height: 1;
  content: "500";
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 94px);
  letter-spacing: -0.025em;
  line-height: 1.0;
  text-transform: uppercase;
}

.final-cta p {
  max-width: 620px;
  margin: 25px 0 0;
  font-size: 19px;
  font-weight: 600;
}

.final-cta .button {
  margin-top: 30px;
  color: #fff;
  background: #050505;
}

.site-footer {
  padding: 45px 0;
  color: #73736e;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.footer-socials {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.footer-socials > strong {
  color: #d5d5cf;
  font-size: 13px;
}

.footer-socials__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-button {
  display: inline-flex;
  min-width: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(239, 255, 53, 0.26);
  border-radius: 999px;
  color: #f2f2ec;
  background: rgba(239, 255, 53, 0.05);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-social-button:hover {
  border-color: var(--accent);
  color: #050505;
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-social-button span {
  font-size: 15px;
}

.footer-copyright {
  color: #555;
  font-size: 11px;
}

.footer-note {
  max-width: 540px;
  margin-top: 18px;
  color: #555;
  font-size: 11px;
}

.footer-details {
  display: grid;
  gap: 5px;
  max-width: 540px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #777772;
  font-size: 12px;
  line-height: 1.5;
}

.footer-details strong {
  color: #d5d5cf;
  font-size: 13px;
}

.footer-details a {
  width: fit-content;
  color: #a8a89f;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-details a:hover {
  color: var(--accent);
}


 
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-toast {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  max-width: 390px;
  padding: 16px 18px;
  border: 1px solid rgba(239, 255, 53, 0.35);
  border-radius: 16px;
  color: #fff;
  background: #151515;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  font-size: 13px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

 
@media (max-width: 1060px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a:not(.button) {
    display: none;
  }

  .hero-grid,
  .course-feature__inner,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 510px;
  }

  .hero-number {
    right: 8%;
    font-size: 290px;
  }

  .hero-card {
    right: 16%;
  }

  .course-badge {
    width: min(360px, 100%);
    justify-self: center;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-reviews-grid,
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .courses-grid--five .course-card,
  .courses-grid--five .course-card:nth-child(4),
  .courses-grid--five .course-card:nth-child(5) {
    grid-column: auto;
  }

  .courses-grid--five .course-card:last-child {
    grid-column: 1 / -1;
  }
}

 
@media (max-width: 760px) {
  .footer-grid {
    gap: 30px;
  }

  .footer-details {
    margin-top: 18px;
    padding-top: 16px;
    font-size: 11px;
  }

  .footer-details strong {
    font-size: 12px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-button {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    max-height: calc(100vh - 68px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: #070707;
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.button) {
    display: block;
    padding: 16px 10px;
    border-bottom: 1px solid #1b1b1b;
  }

  .header-cta {
    margin-top: 12px;
  }

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

  .hero-grid {
    gap: 15px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-number {
    top: 45px;
    right: 6%;
    font-size: 215px;
  }

  .hero-card {
    right: 2%;
    bottom: 14px;
    width: 92%;
  }

  .hero-card h2 {
    font-size: 36px;
  }

  .float-emoji {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    font-size: 25px;
  }

  .float-emoji--one {
    top: 40%;
  }

  .stats-grid,
  .results-grid,
  .benefits-grid,
  .video-reviews-grid,
  .courses-grid,
  .pricing-grid,
  .about-facts,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid--five .course-card:last-child {
    grid-column: auto;
  }

  .benefits-heading {
    margin-top: 56px;
    font-size: 34px;
  }

  .stat-item,
  .stat-item:first-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .result-card {
    min-height: 280px;
  }

  .course-feature {
    border-radius: 28px;
  }

  .roadmap-canvas {
    display: grid;
    min-height: auto;
    gap: 18px;
  }

  .roadmap-line {
    display: none;
  }

  .roadmap-point,
  .roadmap-point--1,
  .roadmap-point--2,
  .roadmap-point--3,
  .roadmap-point--4,
  .roadmap-point--5,
  .roadmap-point--6 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #0c0c0c;
  }

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

  .about-photo {
    min-height: 570px;
  }

  .price-card {
    min-height: auto;
  }

  .price-card h3,
  .price-card__description-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 18px;
  align-items: start;
  margin-top: 14px;
}

.price-card__description {
    min-height: auto;
  }

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

  .photo-reviews-block {
    margin-top: 46px;
    padding: 18px;
    border-radius: 26px;
  }

  .photo-reviews-head {
    align-items: start;
    flex-direction: column;
  }

  .photo-reviews-controls {
    align-self: flex-end;
  }

  .photo-reviews-viewport {
    margin-right: -18px;
  }

  .photo-reviews-track {
    gap: 12px;
    padding-right: 18px;
  }

  .photo-review-card,
  .photo-review-card--wide {
    flex-basis: min(82vw, 310px);
    height: 480px;
    border-radius: 20px;
  }

  .photo-review-card__overlay {
    right: 9px;
    bottom: 9px;
    left: 9px;
  }

  .review-lightbox {
    padding: 10px;
  }

  .review-lightbox__panel {
    display: block;
    max-height: calc(100vh - 20px);
  }

  .review-lightbox img {
    max-height: calc(100vh - 54px);
    border-radius: 12px;
  }

  .review-lightbox__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }

  .review-lightbox__arrow--prev { left: 6px; }
  .review-lightbox__arrow--next { right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}







body, button, input, textarea, select {
  font-family: var(--font-main);
}

h1, h2, h3, h4, h5, h6, p, li, a, span {
  font-kerning: normal;
}

p, li {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 760px) {
  .display-title {
    font-size: clamp(44px, 14vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .section-title {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.018em;
  }

  .course-feature h3,
  .final-cta h2 {
    line-height: 1.05;
    letter-spacing: -0.018em;
  }

  .hero-card h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .price-card h3 {
    min-height: 0;
    font-size: clamp(36px, 12vw, 50px);
    line-height: 1.08;
  }

  .price-card:last-child h3 {
    font-size: clamp(31px, 9vw, 42px);
  }
}


.ai-avatars-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  gap: 44px;
  margin-top: 24px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(239, 255, 53, 0.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 18%, rgba(239, 255, 53, 0.18), transparent 18rem),
    radial-gradient(circle at 78% 82%, rgba(255, 118, 25, 0.1), transparent 16rem),
    linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(8, 8, 8, 0.98));
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  box-shadow: 0 0 0 1px rgba(239, 255, 53, 0.08), 0 24px 80px rgba(0, 0, 0, 0.56), 0 0 54px rgba(239, 255, 53, 0.08), 0 0 130px rgba(239, 255, 53, 0.08);
}

.ai-avatars-showcase:hover {
  box-shadow: 0 0 0 1px rgba(239, 255, 53, 0.12), 0 28px 92px rgba(0, 0, 0, 0.62), 0 0 90px rgba(239, 255, 53, 0.14), 0 0 150px rgba(255, 126, 23, 0.08);
}


.ai-avatars-showcase::before {
  position: absolute;
  right: -56px;
  bottom: -132px;
  color: rgba(239, 255, 53, 0.05);
  font-family: var(--font-display);
  font-size: 300px;
  font-weight: 800;
  line-height: 1;
  content: "AI";
  pointer-events: none;
}

.ai-avatars-showcase::after {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg at 50% 50%, rgba(239, 255, 53, 0.18), rgba(239, 255, 53, 0.04), rgba(255, 133, 41, 0.16), rgba(239, 255, 53, 0.16));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0.82;
  filter: drop-shadow(0 0 18px rgba(239, 255, 53, 0.12));
  pointer-events: none;
  animation: aiPulseFrame 5s ease-in-out infinite;
}


@keyframes aiPulseFrame {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.006); }
}

@keyframes aiGlowFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-8px,0) scale(1.05); }
}

@keyframes aiBeamPulse {
  0%, 100% { opacity: 0.55; filter: blur(0px); }
  50% { opacity: 1; filter: blur(1px); }
}

@keyframes aiSparkPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.28); opacity: 1; }
}

.ai-avatars-showcase__content,
.ai-avatars-collage {
  position: relative;
  z-index: 1;
}

.ai-avatars-showcase__tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #bdbdb7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ai-avatars-showcase h3 {
  margin: 28px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.3vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.ai-avatars-showcase p {
  max-width: 580px;
  margin: 0;
  color: #c6c6bf;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.6;
}

.ai-avatars-showcase__note {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  padding: 11px 16px;
  border-radius: 18px;
  background: rgba(239, 255, 53, 0.08);
  color: #eef5bf;
  font-size: 14px;
  line-height: 1.45;
}


.ai-avatars-showcase__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ai-avatars-showcase__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(239, 255, 53, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(239, 255, 53, 0.12), rgba(239, 255, 53, 0.04));
  color: #f4f7db;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.ai-avatars-showcase__badge--hot {
  background: linear-gradient(135deg, rgba(255, 126, 23, 0.24), rgba(239, 255, 53, 0.16));
  border-color: rgba(255, 171, 74, 0.34);
  color: #fff5df;
}

.ai-avatars-showcase__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 18px;
  border: 1px solid rgba(239, 255, 53, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(239, 255, 53, 0.12), rgba(239, 255, 53, 0.05));
  color: #f3f7d0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.ai-avatars-showcase__note span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 126, 23, 0.18);
  flex: 0 0 auto;
}

.ai-avatars-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  pointer-events: none;
}

.ai-avatars-glow--one {
  top: 80px;
  left: 128px;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(239, 255, 53, 0.22), rgba(239, 255, 53, 0));
}

.ai-avatars-glow--two {
  right: 36px;
  bottom: 36px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(255, 126, 23, 0.18), rgba(255, 126, 23, 0));
}

.ai-avatars-glow--three {
  top: 180px;
  right: 150px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.ai-avatars-sticker {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 12px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 255, 53, 0.94), rgba(255, 218, 64, 0.96));
  color: #101010;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.ai-avatars-sticker--one {
  top: 54px;
  left: 62px;
  gap: 9px;
  justify-content: flex-start;
  padding-left: 14px;
  transform: rotate(-11deg);
}

.ai-avatars-sticker__fire {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  font-size: 31px;
  line-height: 1;
  transform: scaleY(1.12);
  transform-origin: center;
}

.ai-avatars-sticker__copy {
  display: block;
  text-align: left;
}

.ai-avatars-sticker--two {
  right: 18px;
  top: 92px;
  background: linear-gradient(135deg, rgba(255, 120, 32, 0.96), rgba(255, 206, 70, 0.96));
  color: #fffdf6;
  transform: rotate(8deg);
}


.ai-avatars-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(239, 255, 53, 0.26);
  box-shadow: 0 0 36px rgba(239, 255, 53, 0.08);
  pointer-events: none;
}

.ai-avatars-orbit--one {
  top: 38px;
  left: 92px;
  width: 370px;
  height: 370px;
  transform: rotate(-8deg);
}

.ai-avatars-orbit--two {
  right: 16px;
  bottom: 28px;
  width: 240px;
  height: 240px;
  border-color: rgba(255, 133, 41, 0.28);
  transform: rotate(12deg);
}

.ai-avatars-spark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.ai-avatars-spark::before,
.ai-avatars-spark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239, 255, 53, 0.95), rgba(239, 255, 53, 0.35) 45%, rgba(239, 255, 53, 0) 70%);
  box-shadow: 0 0 20px rgba(239, 255, 53, 0.45);
}

.ai-avatars-spark::after {
  inset: 50% auto auto 50%;
  width: 3px;
  height: 26px;
  transform: translate(-50%, -50%);
  border-radius: 99px;
  background: linear-gradient(180deg, rgba(239, 255, 53, 0), rgba(239, 255, 53, 1), rgba(239, 255, 53, 0));
  box-shadow: 0 0 14px rgba(239, 255, 53, 0.5);
}

.ai-avatars-spark--one {
  top: 116px;
  right: 46px;
  width: 12px;
  height: 12px;
}

.ai-avatars-spark--two {
  bottom: 116px;
  left: 54px;
  width: 10px;
  height: 10px;
}


.ai-avatars-beam {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: aiBeamPulse 3.8s ease-in-out infinite;
}

.ai-avatars-beam--one {
  left: 60px;
  top: 84px;
  width: 410px;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 255, 53, 0), rgba(239, 255, 53, 0.85), rgba(239, 255, 53, 0));
  box-shadow: 0 0 16px rgba(239, 255, 53, 0.4);
  transform: rotate(-12deg);
}

.ai-avatars-beam--two {
  right: 26px;
  bottom: 82px;
  width: 280px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 126, 23, 0), rgba(255, 126, 23, 0.8), rgba(255, 126, 23, 0));
  box-shadow: 0 0 16px rgba(255, 126, 23, 0.45);
  transform: rotate(18deg);
  animation-delay: -1.8s;
}

.ai-avatars-collage {
  min-height: 510px;
}

.ai-avatars-collage::before {
  content: "";
  position: absolute;
  inset: 34px 20px 38px 24px;
  border-radius: 44px;
  background: radial-gradient(circle at 50% 50%, rgba(239, 255, 53, 0.08), rgba(239, 255, 53, 0) 55%);
  filter: blur(10px);
  pointer-events: none;
}

.ai-avatars-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(239, 255, 53, 0.2);
  border-radius: 30px;
  background: #090909;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform-origin: center center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ai-avatars-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-avatars-shot--main {
  z-index: 1;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.58), 0 0 54px rgba(239, 255, 53, 0.18);
  top: 12px;
  left: 120px;
  width: 320px;
  height: 420px;
  transform: rotate(-3deg);
}

.ai-avatars-shot--side-left {
  z-index: 2;
  left: 8px;
  bottom: 2px;
  width: 232px;
  height: 300px;
  transform: rotate(-9deg);
}

.ai-avatars-shot--side-right {
  z-index: 3;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52), 0 0 40px rgba(255, 133, 41, 0.18);
  right: 4px;
  top: 136px;
  width: 236px;
  height: 308px;
  transform: rotate(8deg);
}

.ai-avatars-float {
  position: absolute;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(8, 8, 8, 0.92);
  font-size: 34px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.ai-avatars-float--one {
  top: 0;
  right: 10px;
}

.ai-avatars-float--two {
  left: 150px;
  top: 4px;
  font-size: 26px;
}

.ai-avatars-float--three {
  right: 118px;
  bottom: 28px;
  width: 72px;
  height: 72px;
  font-size: 28px;
}


@media (max-width: 1100px) {
  .ai-avatars-showcase {
    grid-template-columns: 1fr;
  }

  .ai-avatars-collage {
    min-height: 650px;
  }

  .ai-avatars-shot--main {
    left: 50%;
    top: 20px;
    transform: translateX(-50%) rotate(-3deg);
  }

  .ai-avatars-shot--side-left {
    left: 5%;
    bottom: 10px;
  }

  .ai-avatars-shot--side-right {
    right: 4%;
    top: 160px;
  }

  .ai-avatars-sticker--two {
    right: 14px;
    top: 98px;
  }
}

@media (max-width: 760px) {
  .ai-avatars-showcase {
    gap: 32px;
    padding: 28px 22px;
  }

  .ai-avatars-showcase__badges {
    gap: 10px;
  }

  .ai-avatars-showcase__badge {
    padding: 10px 13px;
    font-size: 10px;
  }

  .ai-avatars-collage {
    min-height: 560px;
  }

  .ai-avatars-orbit--one {
    top: 98px;
    left: 20px;
    width: 250px;
    height: 250px;
  }

  .ai-avatars-orbit--two {
    right: 6px;
    bottom: 42px;
    width: 170px;
    height: 170px;
  }

  .ai-avatars-glow--three {
    top: 196px;
    right: 36px;
    width: 180px;
    height: 180px;
  }

  .ai-avatars-glow--four {
    left: -8px;
    bottom: 22px;
    width: 150px;
    height: 150px;
  }

  .ai-avatars-spark--one {
    top: 130px;
    right: 18px;
  }

  .ai-avatars-spark--two {
    bottom: 142px;
    left: 20px;
  }

  .ai-avatars-beam--one {
    left: 10px;
    top: 110px;
    width: 240px;
  }

  .ai-avatars-beam--two {
    right: 0;
    bottom: 110px;
    width: 180px;
  }

  .ai-avatars-shot--main {
    top: 28px;
    width: 228px;
    height: 330px;
  }

  .ai-avatars-shot--side-left,
  .ai-avatars-shot--side-right {
    width: 156px;
    height: 210px;
  }

  .ai-avatars-shot--side-left {
    left: 4px;
    bottom: 12px;
  }

  .ai-avatars-shot--side-right {
    right: 2px;
    top: 166px;
  }

  .ai-avatars-float {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 26px;
  }

  .ai-avatars-float--two {
    left: 18px;
    top: 10px;
    font-size: 22px;
  }

  .ai-avatars-float--three {
    right: 8px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    font-size: 23px;
  }

  .ai-avatars-sticker {
    min-width: 76px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 10px;
  }

  .ai-avatars-sticker--one {
    top: 84px;
    left: 6px;
  }

  .ai-avatars-sticker--two {
    right: 8px;
    top: 108px;
  }

  .ai-avatars-showcase__note {
    margin-top: 22px;
    padding: 12px 14px;
    font-size: 13px;
  }
}


@media (max-width: 1100px) {
  .video-review {
    flex-basis: min(390px, calc((100% - 18px) / 2));
  }
}

@media (max-width: 760px) {
  .video-reviews-toolbar {
    align-items: flex-end;
    margin-top: 42px;
  }

  .video-review {
    flex-basis: 88%;
  }

  .video-reviews-grid {
    gap: 14px;
  }
}


@media (max-width: 760px) {
  .price-card__description-wrap {
    grid-template-columns: 1fr;
  }

  .price-card__excluded {
    align-items: flex-start;
  }

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


@media (max-width: 760px) {
  .price-card__description-wrap {
    grid-template-columns: 1fr;
  }

  .price-card__excluded,
  .price-card__included {
    align-items: flex-start;
  }

  .price-card__excluded-text,
  .price-card__included-text {
    max-width: none;
    text-align: left;
  }

  .price-card__features.is-collapsed {
    max-height: 228px;
  }
}


 
.ai-avatars-shot--main img,
.price-card__excluded-shot--back img {
  object-position: center 16%;
}

.ai-avatars-shot--side-left img,
.price-card__excluded-shot--left img {
  object-position: center 18%;
}

.ai-avatars-shot--side-right img,
.price-card__excluded-shot--right img {
  object-position: center 24%;
}

.ai-avatars-showcase:hover .ai-avatars-shot--main { transform: rotate(-4deg) translateY(-6px); }
.ai-avatars-showcase:hover .ai-avatars-shot--side-left { transform: rotate(-10deg) translateY(-4px); }
.ai-avatars-showcase:hover .ai-avatars-shot--side-right { transform: rotate(9deg) translateY(-6px); }

@media (max-width: 767px) {
  .price-card__emoji {
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
  }
}


 
.price-card__description-wrap {
  grid-template-columns: minmax(0, 1fr) 182px;
  column-gap: 22px;
}

.price-card__excluded,
.price-card__included {
  transform: translateX(-8px);
}

.price-card__excluded-visual,
.price-card__included-visual {
  width: 228px;
  height: 188px;
}

.price-card__excluded-shot--back {
  top: 0;
  left: 64px;
  width: 114px;
  height: 136px;
  transform: rotate(-3deg);
}

.price-card__excluded-shot--left {
  left: 0;
  bottom: 4px;
  width: 116px;
  height: 138px;
  transform: rotate(-7deg);
}

.price-card__excluded-shot--right {
  right: 2px;
  bottom: 10px;
  width: 118px;
  height: 138px;
  transform: rotate(7deg);
}

.price-card__excluded-shot--back img {
  object-position: center 18%;
}

.price-card__excluded-shot--left img {
  object-position: center 24%;
}

.price-card__excluded-shot--right img {
  object-position: center 26%;
}

@media (max-width: 1024px) {
  .price-card__description-wrap {
    grid-template-columns: minmax(0, 1fr) 166px;
  }

  .price-card__excluded-visual,
  .price-card__included-visual {
    width: 210px;
    height: 176px;
  }

  .price-card__excluded-shot--back {
    left: 58px;
    width: 104px;
    height: 126px;
  }

  .price-card__excluded-shot--left,
  .price-card__excluded-shot--right {
    width: 108px;
    height: 128px;
  }
}

@media (max-width: 760px) {
  .price-card__excluded,
  .price-card__included {
    transform: none;
  }

  .price-card__excluded-visual,
  .price-card__included-visual {
    width: 214px;
    height: 180px;
  }
}


 
.video-reviews-toolbar {
  margin-top: 0;
  margin-bottom: 2px;
}

.video-review__body {
  position: relative;
  padding: 24px;
}

.video-review__body::before {
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(239, 255, 53, 0.18));
  content: "";
}

.video-review h3 {
  margin-top: 0;
}

 
.video-review {
  position: relative;
  z-index: 0;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.video-review__body {
  min-height: 226px;
}

.video-review__description {
  position: relative;
  max-height: 138px;
  overflow: hidden;
  transition: max-height 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-review__body::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 78px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0), rgba(12, 12, 12, 0.96) 72%, #0c0c0c 100%);
  content: "";
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-review:hover,
.video-review:focus-within {
  z-index: 3;
  border-color: rgba(239, 255, 53, 0.42);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48), 0 0 34px rgba(239, 255, 53, 0.08);
  transform: translateY(-4px);
}

.video-review:hover .video-review__description,
.video-review:focus-within .video-review__description {
  max-height: 1400px;
}

.video-review:hover .video-review__body::after,
.video-review:focus-within .video-review__body::after {
  opacity: 0;
}

@media (hover: none), (pointer: coarse) {
  .video-review {
    transform: none;
  }

  .video-review__body {
    min-height: 0;
  }

  .video-review__description {
    max-height: none;
    overflow: visible;
  }

  .video-review__body::after {
    display: none;
  }
}






html {
  max-width: 100%;
  overflow-x: clip;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 760px) {
  .price-card__description-wrap {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
  }

  .price-card__description {
    width: 100%;
    min-height: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .price-card__excluded,
  .price-card__included {
    width: 100%;
    align-items: center !important;
    margin-top: 2px;
    transform: none !important;
  }

  .price-card__excluded-visual,
  .price-card__included-visual {
    width: min(228px, 100%);
    height: 184px;
    margin-inline: auto;
  }

  .price-card__excluded-text,
  .price-card__included-text {
    max-width: 220px;
    margin-inline: auto;
    text-align: center !important;
  }

  .price-card__bonus-note {
    align-items: center;
    gap: 10px;
  }

  .price-card__bonus-mascot {
    width: 64px;
  }

  .price-card__bonus-bubble {
    max-width: none;
    font-size: 14px;
    padding: 11px 14px;
  }
  .price-card__toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 4px;
    padding: 10px 0;
  }

  .price-card .button,
  .final-cta .button,
  .hero-actions .button {
    min-height: 52px;
  }

  .price-card__bonus-note {
    flex-direction: row;
    align-items: flex-end;
  }

  .price-card__bonus-mascot {
    width: 58px;
  }

  .price-card__bonus-bubble {
    font-size: 13px;
    line-height: 1.3;
    border-radius: 16px 16px 16px 5px;
  }
  .video-reviews-toolbar {
    gap: 12px;
  }

  .video-reviews-toolbar p {
    max-width: 160px;
    font-size: 13px;
    line-height: 1.35;
  }

  .photo-reviews-head h3 {
    font-size: clamp(28px, 9.5vw, 42px);
    line-height: 1.04;
  }

  .faq-item button {
    min-height: 64px;
    padding-block: 18px;
  }
}

@media (max-width: 360px) {
  .section {
    padding: 68px 0;
  }

  .price-card {
    padding: 22px;
    border-radius: 24px;
  }

  .price-card h3 {
    font-size: clamp(32px, 11vw, 40px);
  }

  .price-card:last-child h3 {
    font-size: clamp(28px, 8.8vw, 34px);
  }

  .price-card__period {
    font-size: 24px;
  }

  .price-card__excluded-visual,
  .price-card__included-visual {
    width: min(218px, 100%);
    height: 176px;
  }

  .video-review {
    flex-basis: 92%;
  }

  .review-nav {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .price-card__description-wrap {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
  }

  .price-card__description {
    min-height: 0;
  }

  .price-card__excluded,
  .price-card__included {
    width: 100%;
    align-items: center;
    transform: none;
  }

  .price-card__excluded-visual,
  .price-card__included-visual {
    width: 220px;
    height: 180px;
    margin-inline: auto;
  }

  .price-card__excluded-text,
  .price-card__included-text {
    max-width: 220px;
    margin-inline: auto;
    text-align: center;
  }
}





@media (max-width: 760px) {
  .video-reviews-grid {
    --mobile-video-card-width: min(88vw, 340px);
    gap: 14px;
    padding-left: max(2px, calc((100% - var(--mobile-video-card-width)) / 2));
    padding-right: max(2px, calc((100% - var(--mobile-video-card-width)) / 2));
    scroll-padding-inline: max(2px, calc((100% - var(--mobile-video-card-width)) / 2));
  }

  .video-review {
    flex-basis: var(--mobile-video-card-width);
    scroll-snap-align: center;
  }

  .photo-reviews-viewport {
    --mobile-photo-card-width: min(82vw, 310px);
    margin-inline: -18px;
    padding-left: max(18px, calc((100% - var(--mobile-photo-card-width)) / 2));
    padding-right: max(18px, calc((100% - var(--mobile-photo-card-width)) / 2));
    scroll-padding-inline: max(18px, calc((100% - var(--mobile-photo-card-width)) / 2));
    box-sizing: border-box;
  }

  .photo-reviews-track {
    gap: 12px;
    padding-right: 0;
  }

  .photo-review-card,
  .photo-review-card--wide {
    flex-basis: var(--mobile-photo-card-width);
    scroll-snap-align: center;
  }
}

@media (max-width: 360px) {
  .video-reviews-grid {
    --mobile-video-card-width: min(90vw, 320px);
  }

  .photo-reviews-viewport {
    --mobile-photo-card-width: min(84vw, 292px);
  }
}






@media (max-width: 760px) {
  .course-badge {
    width: min(300px, 100%);
    aspect-ratio: 1;
    box-sizing: border-box;
    padding: 26px 20px;
    justify-self: center;
    transform: rotate(1.5deg);
  }

  .course-badge__emoji {
    font-size: 52px;
    line-height: 1;
  }

  .course-badge strong {
    max-width: 225px;
    margin-top: 9px;
    font-size: clamp(24px, 7.4vw, 29px);
    line-height: 1.04;
    letter-spacing: -0.018em;
  }

  .ai-avatars-sticker {
    width: min(138px, 46%);
    min-width: 0;
    box-sizing: border-box;
    padding: 9px 10px;
    white-space: normal;
    text-align: center;
    font-size: 10px;
    line-height: 1.15;
  }

  .ai-avatars-sticker--one {
    left: 4px;
    right: auto;
    bottom: 10px;
    top: auto !important;
    transform: rotate(-4deg);
  }

  .ai-avatars-sticker--two {
    right: 6px;
    left: auto;
    top: 112px !important;
    bottom: auto !important;
    transform: rotate(4deg);
  }

  .ai-avatars-float--one {
    top: 6px;
    right: 8px;
  }
}

@media (max-width: 360px) {
  .course-badge {
    width: min(280px, 100%);
    padding: 24px 18px;
  }

  .course-badge strong {
    max-width: 210px;
    font-size: clamp(22px, 7.1vw, 26px);
  }

  .ai-avatars-sticker {
    width: min(122px, 44%);
    padding: 8px;
    font-size: 9px;
  }
}





.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translate3d(0, -110%, 0);
  opacity: 0;
  pointer-events: none;
}

body {
  padding-top: 80px;
}

@media (max-width: 760px) {
  body {
    padding-top: 68px;
  }
}


 
@media (max-width: 760px) {
  .ai-avatars-showcase .ai-avatars-collage {
    min-height: 630px !important;
  }

  .ai-avatars-showcase .ai-avatars-shot--side-left {
    top: auto !important;
    bottom: 92px !important;
  }

  .ai-avatars-showcase .ai-avatars-sticker--one {
    position: absolute !important;
    top: auto !important;
    right: 12px !important;
    bottom: 16px !important;
    left: auto !important;
    width: min(296px, calc(100% - 4px)) !important;
    max-width: calc(100% - 4px) !important;
    min-width: 0 !important;
    gap: 10px !important;
    justify-content: flex-start !important;
    padding: 10px 15px 10px 12px !important;
    transform: rotate(-2deg) !important;
    white-space: normal !important;
    text-align: left !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
    z-index: 6 !important;
  }

  .ai-avatars-showcase .ai-avatars-sticker__fire {
    width: 34px;
    min-height: 32px;
    font-size: 32px;
    transform: scaleY(1.16);
  }

  .ai-avatars-showcase .ai-avatars-sticker__copy {
    flex: 1 1 auto;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .ai-avatars-showcase .ai-avatars-collage { min-height: 610px !important; }
  .ai-avatars-showcase .ai-avatars-shot--side-left { bottom: 88px !important; }
  .ai-avatars-showcase .ai-avatars-sticker--one {
    right: 10px !important;
    width: min(278px, calc(100% - 2px)) !important;
    max-width: calc(100% - 2px) !important;
    bottom: 12px !important;
    font-size: 10px !important;
  }

  .ai-avatars-showcase .ai-avatars-sticker__fire {
    width: 31px;
    font-size: 29px;
  }
}

.price-card__course-pack {
  width: 100%;
  max-width: 228px;
  margin-top: 14px;
}

.price-card__course-stack {
  position: relative;
  width: 100%;
  height: 126px;
}

.price-card__mini-course {
  position: absolute;
  left: 50%;
  display: flex;
  width: 166px;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 11px 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #111;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.36);
  color: #f5f5ef;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  transform-origin: center;
}

.price-card__mini-course span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-card__mini-course b {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1;
}

.price-card__mini-course--tech {
  top: 0;
  z-index: 1;
  border-color: rgba(239, 255, 53, 0.5);
  background: linear-gradient(135deg, #eaff22, #cfe900);
  color: #050505;
  transform: translateX(-56%) rotate(-5deg);
}

.price-card__mini-course--free {
  top: 20px;
  z-index: 2;
  transform: translateX(-46%) rotate(4deg);
}

.price-card__mini-course--free b {
  color: #46a8ff;
  font-size: 10px;
}

.price-card__mini-course--bot {
  top: 42px;
  z-index: 3;
  transform: translateX(-54%) rotate(-3deg);
}

.price-card__mini-course--parse {
  top: 64px;
  z-index: 4;
  transform: translateX(-45%) rotate(5deg);
}

.price-card__mini-course--command {
  top: 86px;
  z-index: 5;
  transform: translateX(-52%) rotate(-2deg);
}

.price-card__course-pack-status {
  position: absolute;
  right: 1px;
  bottom: 2px;
  z-index: 8;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.price-card__course-pack-status--no {
  border: 2px solid #ff3b30;
  background: rgba(255, 59, 48, 0.16);
  color: #ff3b30;
}

.price-card__course-pack-status--yes {
  border: 2px solid #49ff57;
  background: rgba(73, 255, 87, 0.16);
  color: #49ff57;
}

.price-card__course-pack-caption {
  margin-top: 8px;
  color: #d7d7cf;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 760px) {
  .price-card__course-pack {
    max-width: 236px;
    margin-top: 16px;
  }

  .price-card__course-stack {
    height: 132px;
  }

  .price-card__mini-course {
    width: 174px;
    height: 44px;
    font-size: 11.5px;
  }

  .price-card__course-pack-caption {
    max-width: 220px;
    text-align: left;
  }
}
