html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

body.index-page {
  min-height: 100vh;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

/* HEADER FIJO */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 20;
}

/* ESTRUCTURA GENERAL */
.index-main {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section,
.section-panel {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

body.index-page .site-footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-container {
  width: min(1100px, 90%);
  padding: 40px;
  border-radius: 40px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 60px rgba(105, 63, 170, 0.14);
  border: 1px solid rgba(255,255,255,0.7);
}

/* PUNTOS LATERALES */
.section-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.section-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(110, 86, 156, 0.25);
  box-shadow: 0 4px 12px rgba(90, 54, 148, 0.18);
  cursor: pointer;
}

.section-dot.is-active {
  background: linear-gradient(135deg, var(--purple-700), var(--pink-500));
  transform: scale(1.18);
  width: 14px;
  height: 14px;
}

/* HERO */
.hero-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: 56px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(255, 189, 226, 0.24), rgba(200, 228, 255, 0.18));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 28px 60px rgba(123, 73, 179, 0.14);
  backdrop-filter: blur(14px);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-card::before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(245, 175, 220, 0.9) 0%, rgba(245, 175, 220, 0) 68%);
}

.hero-card::after {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(188, 224, 255, 0.85) 0%, rgba(188, 224, 255, 0) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--purple-900);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(123, 73, 179, 0.08);
}

.hero-tag-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-700), var(--pink-500));
}

.hero-title {
  margin: 22px 0 16px;
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-text {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-height: 680px;
}

.visual-shape {
  position: absolute;
  inset: 60px 20px 40px 20px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 22px 60px rgba(123, 73, 179, 0.12);
  backdrop-filter: blur(10px);
}

.visual-wave,
.visual-wave-soft,
.visual-wave-top {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 40% 60% 48% 52% / 40% 36% 64% 60%;
}

.visual-wave-top {
  top: 30px;
  height: 170px;
  background: linear-gradient(135deg, rgba(195, 167, 255, 0.45), rgba(249, 214, 238, 0.22));
  transform: rotate(-7deg);
}

.visual-wave-soft {
  bottom: 185px;
  height: 220px;
  background: linear-gradient(135deg, rgba(238, 204, 255, 0.6), rgba(255, 255, 255, 0.18));
  transform: rotate(7deg);
}

.visual-wave {
  bottom: 34px;
  height: 400px;
  background: linear-gradient(135deg, #8a35df 4%, #d94ab0 58%, #ff7db5 100%);
  box-shadow: 0 28px 60px rgba(166, 57, 168, 0.25);
}

.planet,
.small-planet,
.mini-orb,
.star-burst {
  position: absolute;
  border-radius: 999px;
}

.planet {
  width: 124px;
  height: 124px;
  left: 40px;
  bottom: 315px;
  background: radial-gradient(circle at 32% 30%, #ff9ad4 0%, #ff77bb 45%, #db3faf 100%);
  box-shadow: 0 0 0 16px rgba(255, 194, 232, 0.18);
}

.small-planet {
  width: 80px;
  height: 80px;
  right: 60px;
  bottom: 86px;
  background: radial-gradient(circle at 35% 35%, #cb79f0 0%, #9a42dd 55%, #6c20bb 100%);
}

.mini-orb.orb-1 {
  width: 46px;
  height: 46px;
  right: 130px;
  bottom: 170px;
  background: radial-gradient(circle at 30% 30%, #ffb1d8 0%, #ff86be 55%, #f267a9 100%);
}

.mini-orb.orb-2 {
  width: 24px;
  height: 24px;
  left: 104px;
  bottom: 188px;
  background: rgba(255,255,255,0.78);
}

.star-burst {
  width: 16px;
  height: 16px;
  right: 210px;
  bottom: 255px;
  background: rgba(255,255,255,0.95);
  transform: rotate(45deg);
  border-radius: 4px;
}

.comet {
  position: absolute;
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255, 211, 233, 0.95));
  border-radius: 999px;
  transform: rotate(38deg);
}

.comet-1 {
  left: 52px;
  bottom: 180px;
}

.comet-2 {
  left: 148px;
  bottom: 238px;
  width: 110px;
}

.hero-rocket {
  position: absolute;
  width: 310px;
  right: 56px;
  top: 82px;
  transform: rotate(24deg);
  filter: drop-shadow(0 24px 26px rgba(82, 32, 120, 0.22));
}

.hero-rocket-body {
  position: relative;
  width: 138px;
  height: 320px;
  margin-left: auto;
  border-radius: 80px 80px 36px 36px;
  background: linear-gradient(180deg, #d98ce9 0%, #a35af0 48%, #7a31d4 100%);
  border: 4px solid rgba(255, 255, 255, 0.55);
}

.hero-rocket-body::before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, #ffd7f2 100%);
  border: 4px solid rgba(255,255,255,0.7);
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-rocket-body::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 69px solid transparent;
  border-right: 69px solid transparent;
  border-bottom: 110px solid rgba(136, 67, 223, 0.95);
  top: -72px;
  left: 0;
}

/* TÍTULOS DE SECCIÓN */
.section-heading {
  margin-bottom: 28px;
}

.centered-heading {
  text-align: center;
}

.narrow-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--purple-900);
  font-size: 16px;
  font-weight: 800;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
}

.section-text {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-soft);
}

.compact-text {
  max-width: 680px;
}

/* QUÉ OFRECE */
.offer-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offer-block {
  min-height: 260px;
  padding: 26px;
  border-radius: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(105, 63, 170, 0.14);
  border: 1px solid rgba(255,255,255,0.78);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(105, 63, 170, 0.2);
}

.offer-blue {
  background: linear-gradient(145deg, #d8efff, #ffffff);
}

.offer-pink {
  background: linear-gradient(145deg, #ffd7eb, #ffffff);
}

.offer-purple {
  background: linear-gradient(145deg, #eadcff, #ffffff);
}

.offer-block h3 {
  margin: 28px 0 14px;
  font-size: 2rem;
  line-height: 1.1;
}

.offer-block p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.offer-symbol {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background: rgba(255,255,255,0.74);
  position: relative;
  box-shadow: 0 16px 34px rgba(105, 63, 170, 0.12);
}

.symbol-search::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border: 7px solid #5b7cfa;
  border-radius: 999px;
  top: 18px;
  left: 18px;
}

.symbol-search::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 8px;
  border-radius: 999px;
  background: #5b7cfa;
  transform: rotate(45deg);
  right: 14px;
  bottom: 20px;
}

.symbol-star::before {
  content: "";
  position: absolute;
  inset: 19px;
  background: #ec5cab;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.symbol-heart::before,
.symbol-heart::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 54px;
  background: #8d55e8;
  border-radius: 34px 34px 0 0;
  top: 18px;
}

.symbol-heart::before {
  left: 24px;
  transform: rotate(-45deg);
}

.symbol-heart::after {
  right: 24px;
  transform: rotate(45deg);
}

/* MENTORAS */
.mentors-panel .section-container {
  width: min(1300px, 95%);
  margin-top: 180px;
}

.mentors-panel {
  align-items: flex-start;
}

.netflix-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.mentor-window {
  overflow: hidden;
  border-radius: 34px;
  touch-action: pan-x;
}

.mentor-track {
  display: flex;
  transition: transform 0.75s ease;
}

.mentor-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

.mentor-blue {
  background: linear-gradient(135deg, #d8efff, #ffffff);
}

.mentor-pink {
  background: linear-gradient(135deg, #ffd6e9, #ffffff);
}

.mentor-purple {
  background: linear-gradient(135deg, #eadcff, #ffffff);
}

.mentor-photo {
  height: 100%;
  min-height: 420px;
  background: rgba(255,255,255,0.4);
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-copy {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mentor-label {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  color: var(--purple-900);
  font-size: 0.95rem;
  font-weight: 800;
}

.mentor-copy h3 {
  margin: 24px 0 18px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.mentor-copy p {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.mentor-arrow {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--purple-900);
  box-shadow: 0 16px 34px rgba(105, 63, 170, 0.16);
  font-size: 2.4rem;
  line-height: 1;
}

.mentor-arrow:hover {
  transform: scale(1.06);
}

.mentor-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}

.mentor-dot {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(154, 4, 229, 0.45);
  opacity: 0.75;
}

.mentor-dot.soft {
  flex-basis: 5px;
  width: 5px;
  height: 5px;
  min-width: 5px;
  min-height: 5px;
  background: rgba(205, 88, 223, 0.42);
  opacity: 0.45;
}

.mentor-dot.active {
  flex-basis: 10px;
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  background: rgba(205, 88, 223, 0.9);
  opacity: 1;
}

.mentor-dot.normal {
  opacity: 0.75;
}

.mentor-dot:hover {
  transform: scale(1.18);
}

/* COLABORADORES */
.collaboration-panel .section-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  width: min(1300px, 95%);
  margin-top: 180px;
}

.collaboration-panel {
  align-items: flex-start;
}

.collaboration-copy {
  max-width: 620px;
}

.collaboration-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 154px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 18px 40px rgba(105, 63, 170, 0.10);
}

.logo-main {
  grid-column: 1 / -1;
  min-height: 170px;
}

.logo-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* Color propio por sección, sin romper el estilo común */

.offer-panel .section-container {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 196, 229, 0.42), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(201, 228, 255, 0.42), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.46), rgba(246, 236, 255, 0.56));
}

.mentors-panel .section-container {
  background:
    radial-gradient(circle at 12% 14%, rgba(210, 190, 255, 0.48), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(255, 190, 225, 0.38), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.42), rgba(241, 231, 255, 0.58));
}

.collaboration-panel .section-container {
  background:
    radial-gradient(circle at 10% 18%, rgba(180, 171, 255, 0.292), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(127, 252, 227, 0.318), transparent 30%),
    linear-gradient(145deg, rgba(249, 234, 249, 0.568), rgba(230, 246, 249, 0.53));
}

.offer-blue {
  background: linear-gradient(145deg, rgba(216, 239, 255, 0.95), rgba(255,255,255,0.70));
}

.offer-pink {
  background: linear-gradient(145deg, rgba(255, 215, 235, 0.95), rgba(255,255,255,0.70));
}

.offer-purple {
  background: linear-gradient(145deg, rgba(234, 220, 255, 0.95), rgba(255,255,255,0.70));
}

.logo-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(248, 239, 255, 0.58));
}



/* ANIMACIONES */

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: white;
  box-shadow:
    80px 90px 0 rgba(255,255,255,0.85),
    190px 40px 0 rgba(255,255,255,0.7),
    260px 180px 0 rgba(255,255,255,0.8),
    120px 290px 0 rgba(255,255,255,0.65),
    330px 330px 0 rgba(255,255,255,0.75);
  animation: twinkle 3.2s ease-in-out infinite alternate;
}

.hero-visual::before {
  width: 5px;
  height: 5px;
  left: 45px;
  top: 110px;
}

.hero-visual::after {
  width: 4px;
  height: 4px;
  right: 90px;
  top: 160px;
  animation-delay: 1.2s;
}

.planet {
  animation: float-soft 4.8s ease-in-out infinite;
}

.small-planet {
  animation: float-soft 5.4s ease-in-out infinite reverse;
}

.hero-rocket {
  animation: rocket-float 4.6s ease-in-out infinite;
}


@keyframes twinkle {
  from {
    opacity: 0.35;
    transform: scale(0.9);
  }
  to {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@keyframes float-soft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes rocket-float {
  0%, 100% {
    transform: rotate(24deg) translateY(0);
  }
  50% {
    transform: rotate(24deg) translateY(-14px);
  }
}


/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-section,
  .collaboration-panel .section-container {
    grid-template-columns: 1fr;
  }

  .offer-blocks {
    grid-template-columns: 1fr;
  }

  .mentor-slide {
    grid-template-columns: 1fr;
  }

  .mentor-photo {
    min-height: 340px;
  }

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

@media (max-width: 900px) {
  body.index-page {
    height: auto;
    overflow-y: visible;
    overscroll-behavior-y: contain;
    touch-action: pan-x;
  }

  .section-dots {
    display: none;
  }

  .index-main {
    width: min(100% - 20px, 1320px);
  }

  .hero-section,
  .section-panel {
    min-height: auto;
    padding: 120px 0 40px;
  }

  .section-container,
  .hero-card {
    width: 100%;
    padding: 24px;
  }

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

  .netflix-carousel {
    grid-template-columns: 1fr;
  }

  .mentor-arrow {
    display: none;
  }

  .mentor-copy {
    padding: 34px;
  }

  .mentor-copy h3 {
    font-size: 3rem;
  }
}

@media (min-width: 981px) {
  .index-main {
    width: min(1020px, calc(100% - 32px));
  }

  .hero-section,
  .section-panel {
    min-height: 100svh;
    padding: 82px 0 28px;
  }

  .hero-section {
    grid-template-columns: minmax(320px, 430px) minmax(320px, 430px);
    justify-content: center;
    align-items: center;
    gap: 34px;
  }

  .hero-card {
    min-height: 430px;
    padding: 34px;
    border-radius: 32px;
    display: flex;
    align-items: center;
  }

  .hero-card::before,
  .hero-card::after {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tag {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .hero-title {
    margin: 18px 0 12px;
    font-size: clamp(2.1rem, 3vw, 3.05rem);
    line-height: 1;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }

  .hero-visual {
    width: 430px;
    height: 430px;
    min-height: 0;
    aspect-ratio: 1 / 1;
    overflow: visible;
  }

  .section-container {
    width: min(880px, 86%);
    padding: 22px 26px;
    border-radius: 28px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-kicker {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  }

  .section-text {
    font-size: 0.95rem;
    line-height: 1.45;
  }

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

  .offer-block {
    min-height: 0;
    padding: 18px;
    border-radius: 24px;
  }

  .offer-symbol {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .offer-block h3 {
    margin: 14px 0 8px;
    font-size: 1.28rem;
  }

  .offer-block p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .symbol-search::before {
    width: 20px;
    height: 20px;
    border-width: 4px;
    top: 10px;
    left: 10px;
  }

  .symbol-search::after {
    width: 19px;
    height: 5px;
    right: 8px;
    bottom: 10px;
  }

  .symbol-star::before {
    inset: 10px;
  }

  .symbol-heart::before,
  .symbol-heart::after {
    width: 18px;
    height: 28px;
    top: 10px;
  }

  .symbol-heart::before {
    left: 13px;
  }

  .symbol-heart::after {
    right: 13px;
  }

  .mentors-panel,
  .collaboration-panel {
    align-items: center;
  }

  .mentors-panel .section-container,
  .collaboration-panel .section-container {
    width: min(920px, 90%);
    margin-top: 0;
  }

  .mentor-slide {
    min-height: 0;
    height: 310px;
  }

  .mentor-photo {
    min-height: 0;
    height: 310px;
  }

  .mentor-copy {
    padding: 20px 24px;
  }

  .mentor-label {
    padding: 7px 12px;
    font-size: 0.82rem;
  }

  .mentor-copy h3 {
    margin: 12px 0 8px;
    font-size: clamp(2rem, 3vw, 3rem);
  }

  .mentor-copy p {
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .mentor-arrow {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }

  .collaboration-panel .section-container {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .collaboration-copy {
    max-width: 520px;
  }

  .collaboration-logos {
    gap: 12px;
  }

  .logo-card {
    min-height: 88px;
    padding: 12px;
    border-radius: 18px;
  }

  .logo-main {
    min-height: 104px;
  }

  .logo-card img {
    max-height: 58px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-snap-type: y mandatory;
  }

  body.index-page {
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: visible;
  }

  body.index-page .page-shell {
    overflow: visible;
  }

  .index-main {
    width: 100%;
  }

  .hero-section,
  .section-panel {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    padding: 76px 0 18px;
    overflow: visible;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .section-container {
    width: calc(100% - 28px);
    padding: 18px;
    border-radius: 26px;
    overflow: visible;
  }

  .section-heading {
    margin-bottom: 12px;
  }

  .section-kicker {
    margin-bottom: 8px;
    padding: 7px 11px;
    font-size: 0.78rem;
  }

  .section-title {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
    line-height: 1.08;
  }

  .section-text {
    margin-top: 8px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .hero-section {
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 12px;
  }

  .hero-card {
    min-height: 0;
    padding: 20px;
  }

  .hero-tag {
    max-width: 100%;
    align-items: flex-start;
    padding: 7px 10px;
    font-size: 0.68rem;
    line-height: 1.15;
    white-space: normal;
  }

  .hero-title {
    margin: 14px 0 10px;
    font-size: clamp(1.9rem, 8.8vw, 2.45rem);
    line-height: 1;
  }

  .hero-text {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .hero-actions {
    flex-direction: column;
    gap: 9px;
    margin-top: 16px;
  }

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

  .hero-visual {
    width: min(240px, calc(100vw - 40px));
    height: 170px;
    min-height: 170px;
    margin: -4px auto 4px;
    overflow: visible;
  }

  .visual-shape {
    inset: 18px 18px 8px;
  }

  .visual-wave-top {
    top: 6px;
    height: 70px;
  }

  .visual-wave-soft {
    bottom: 48px;
    height: 86px;
  }

  .visual-wave {
    bottom: 0;
    height: 130px;
  }

  .planet {
    width: 48px;
    height: 48px;
    left: 36px;
    bottom: 92px;
  }

  .small-planet {
    width: 38px;
    height: 38px;
    right: 34px;
    bottom: 24px;
  }

  .hero-rocket {
    width: 132px;
    right: 42px;
    top: 22px;
  }

  .hero-rocket-body {
    width: 58px;
    height: 136px;
  }

  .hero-rocket-body::before {
    width: 24px;
    height: 24px;
    top: 34px;
  }

  .hero-rocket-body::after {
    border-left-width: 29px;
    border-right-width: 29px;
    border-bottom-width: 48px;
    top: -31px;
  }

  .comet,
  .mini-orb,
  .star-burst {
    display: none;
  }

  .offer-container,
  .mentors-container,
  .collaboration-container {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
  }

  .mentors-panel .section-container,
  .collaboration-panel .section-container {
    margin-top: 0;
  }

  .offer-blocks {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .offer-block {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .offer-symbol {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    grid-row: span 2;
  }

  .offer-block h3 {
    margin: 0 0 3px;
    font-size: 1.05rem;
    line-height: 1.1;
  }

  .offer-block p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .symbol-search::before {
    width: 17px;
    height: 17px;
    border-width: 4px;
    top: 8px;
    left: 8px;
  }

  .symbol-search::after {
    width: 17px;
    height: 5px;
    right: 7px;
    bottom: 9px;
  }

  .symbol-star::before {
    inset: 9px;
  }

  .symbol-heart::before,
  .symbol-heart::after {
    width: 16px;
    height: 25px;
    top: 8px;
  }

  .symbol-heart::before {
    left: 11px;
  }

  .symbol-heart::after {
    right: 11px;
  }

  .netflix-carousel {
    display: block;
  }

  .mentor-arrow {
    display: none;
  }

  .mentor-window {
    border-radius: 24px;
  }

  .mentor-slide {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .mentor-photo {
    height: clamp(150px, 32svh, 200px);
    min-height: 150px;
  }

  .mentor-photo img {
    object-fit: cover;
    object-position: center top;
  }

  .mentor-copy {
    padding: 14px 16px;
  }

  .mentor-label {
    padding: 6px 10px;
    font-size: 0.76rem;
  }

  .mentor-copy h3 {
    margin: 8px 0 5px;
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .mentor-copy p {
    margin-bottom: 10px;
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .mentor-copy .primary-button {
    width: fit-content;
    min-height: 34px;
    padding: 7px 14px;
    font-size: 0.78rem;
    align-self: flex-start;
  }

  .mentor-dots {
    margin-top: 10px;
  }

  .collaboration-copy {
    max-width: 100%;
  }

  .collaboration-panel {
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow: visible;
  }

  .collaboration-copy .secondary-button {
    width: fit-content;
    min-height: 34px;
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .collaboration-copy .compact-text {
    display: none;
  }

  .collaboration-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
  }

  .logo-card {
    min-height: 58px;
    padding: 8px;
    border-radius: 16px;
  }

  .logo-main {
    grid-column: 1 / -1;
    min-height: 64px;
  }

  .logo-card img {
    max-height: 36px;
  }
}

@media (max-width: 380px), (max-height: 700px) {
  .hero-section,
  .section-panel {
    padding-bottom: 16px;
  }

  .section-container,
  .hero-card {
    padding: 14px;
    border-radius: 22px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .hero-text,
  .section-text {
    font-size: 0.82rem;
  }

  .hero-visual {
    width: 210px;
    height: 140px;
    min-height: 140px;
  }

  .offer-block {
    padding: 10px 12px;
  }

  .offer-block p,
  .mentor-copy p {
    font-size: 0.74rem;
  }
}
