

:root {
  --black: #1B1C22;
  --white: #ffffff;
  --cream: #ECECEC;
  --accent: #E02070;
  --accent-dark: #8010B0;
  --accent-mid: #D01050;
  --gray-600: #5B595E;
  --gray-400: #a3a3a3;

  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(0, 0, 0, 0.1);
  --surface-dark: #23242b;

  --font: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 12px;
  --radius-lg: 18px;
  --container: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--black);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
s { opacity: 0.55; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }
.center { text-align: center; }
.hide-mobile { display: inline; }

.section__title {
  font-size: clamp(1.75rem, 3.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 12px;
}
.section__title--onDark { color: var(--white); }
.section__subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--gray-600);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section__subtitle--onDark { color: var(--gray-400); }
.eyebrow {
  text-align: center;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.27, 0.9, 0.3, 1),
              transform 0.8s cubic-bezier(0.27, 0.9, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__blob, .hero-ticker__track { animation: none !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.3, 1.2, 0.4, 1),
              background 0.25s ease, border-color 0.25s ease,
              box-shadow 0.25s ease, filter 0.25s ease;
}
.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(0.98); }

.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 130%);
  color: var(--white);
}
.btn--accent:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 30px rgba(224, 32, 112, 0.35);
}
.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.25);
}
.btn--outline-dark:hover { border-color: var(--black); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--border-dark);
}
.btn--outline-light:hover { border-color: rgba(255, 255, 255, 0.4); }
.btn--whatsapp { background: #2a9f69; color: #fff; }
.btn--whatsapp:hover { filter: brightness(1.08); }

.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 15px 34px; font-size: 16px; }
.btn--block { width: 100%; white-space: normal; }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  background: rgba(27, 28, 34, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-dark);
}
.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.navbar__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(224, 32, 112, 0.4);
}

.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__matrix {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}
.hero__blob--1 {
  width: 640px; height: 640px;
  left: -180px; top: -220px;
  background: radial-gradient(circle, rgba(224, 32, 112, 0.55), transparent 65%);
  animation: blob-drift-1 14s ease-in-out infinite alternate;
}
.hero__blob--2 {
  width: 560px; height: 560px;
  right: -160px; top: -140px;
  background: radial-gradient(circle, rgba(128, 16, 176, 0.6), transparent 65%);
  animation: blob-drift-2 17s ease-in-out infinite alternate;
}
.hero__blob--3 {
  width: 700px; height: 500px;
  left: 50%; top: 40px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(224, 32, 112, 0.22), transparent 60%);
  animation: blob-drift-3 20s ease-in-out infinite alternate;
}
@keyframes blob-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(120px, 80px) scale(1.15); }
}
@keyframes blob-drift-2 {
  from { transform: translate(0, 0) scale(1.1); }
  to   { transform: translate(-140px, 60px) scale(0.95); }
}
@keyframes blob-drift-3 {
  from { transform: translateX(-50%) translateY(0) scale(1); }
  to   { transform: translateX(-42%) translateY(50px) scale(1.12); }
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='40' height='40' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 40px;
  background-repeat: repeat;
}
.hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(27, 28, 34, 0.6));
}

.hero__content { position: relative; z-index: 1; }

.announce {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(224, 32, 112, 0.45);
  border-radius: 9999px;
  background: rgba(224, 32, 112, 0.1);
  margin-bottom: 28px;
}
.announce__tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #C77AE8;
}
.announce s {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}
.announce__now {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 9999px;
  padding: 6px 16px;
  box-shadow: 0 0 24px rgba(224, 32, 112, 0.5);
}

.hero__title {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__subtitle {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.vsl {
  position: relative;
  max-width: 800px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-dark);
}
.vsl video, .vsl iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  border-radius: var(--radius);
  object-fit: cover;
  background: #000;
}
.vsl iframe { pointer-events: none; }

.vsl__toggle {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--white);
}
.vsl__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 12px 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: hint-pulse 2s ease-in-out infinite;
  transition: transform 0.25s ease, background 0.25s ease;
}
.vsl__hint[hidden] { display: none; }
@keyframes hint-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 32, 112, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(224, 32, 112, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .vsl__hint { animation: none; }
}
.vsl__toggle:hover .vsl__hint { transform: scale(1.05); background: rgba(224, 32, 112, 0.85); }
.vsl__toggle:hover .vsl__icon { transform: scale(1.08); background: rgba(224, 32, 112, 0.85); }
.vsl__icon {
  transition: transform 0.25s ease, background 0.25s ease;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.vsl__icon svg { margin-left: 4px; }
.vsl__icon[hidden] { display: none; }

.hero-ticker {
  max-width: 640px;
  margin: 0 auto 36px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12.5%, rgba(0,0,0,1) 87.5%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12.5%, rgba(0,0,0,1) 87.5%, rgba(0,0,0,0) 100%);
  padding: 10px;
}
.hero-ticker__track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  list-style: none;
  animation: ticker 22s linear infinite;
}
.hero-ticker__track li {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero__cta { margin-bottom: 48px; }

.stats {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  text-align: left;
}
.stats__item + .stats__item { border-left: 1px solid var(--border-dark); }
.stats__item svg {
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: var(--accent);
}
.stats__item p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--white);
}
.stats__item strong { font-weight: 600; }

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--light { background: var(--white); color: var(--black); }
.section--cream { background: var(--cream); color: var(--black); }
.section--dark  { background: var(--black); color: var(--white); }

.mentors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.mentors--single {
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.mentors--single .mentor-card {
  display: grid;
  grid-template-columns: 400px 1fr;
}
.mentors--single .mentor-card__photo { aspect-ratio: auto; height: 100%; }
.mentor-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.27, 0.9, 0.3, 1), box-shadow 0.35s ease;
}
.mentor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.mentor-card__photo {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 20%, rgba(224, 32, 112, 0.35), transparent 60%),
    radial-gradient(circle at 80% 90%, rgba(128, 16, 176, 0.4), transparent 60%),
    linear-gradient(135deg, #241028, var(--black));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.mentor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.mentor-card__info { padding: 40px 44px; }
.mentor-card__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.mentor-card__info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.mentor-card__info p {
  color: var(--gray-600);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.mentor-card__info p strong { color: var(--black); font-weight: 600; }
.mentor-card__creds {
  list-style: none;
  margin: 16px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mentor-card__creds li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--gray-600);
}
.mentor-card__creds li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.mentor-card__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}
.mentor-card__socials a {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.mentor-card__socials a:hover { opacity: 0.6; }

.section--urgency { padding-top: 20px; }
.urgency__title {
  font-size: clamp(1.75rem, 3.6vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 36px;
}

.nav-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-countdown__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C77AE8;
}
.nav-countdown__units {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-countdown__unit {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 5px 9px;
  background: rgba(224, 32, 112, 0.12);
  border: 1px solid rgba(224, 32, 112, 0.4);
  border-radius: 8px;
}
.nav-countdown__unit b {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--white);
  text-shadow: 0 0 12px rgba(224, 32, 112, 0.6);
}
.nav-countdown__unit i {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
}

.calendar {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}
.day-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: transform 0.3s cubic-bezier(0.27, 0.9, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.day-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 32, 112, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.day-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.day-card__num {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  padding: 6px 16px;
  width: fit-content;
}
.day-card__date {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}
.day-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.day-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.day-card__chips span {
  font-family: 'Courier New', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent-dark);
  background: rgba(224, 32, 112, 0.06);
  border: 1px solid rgba(224, 32, 112, 0.25);
  border-radius: 6px;
  padding: 5px 10px;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.topic-wall {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.topic-wall span {
  display: inline-block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.65);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.topic-wall span:hover {
  color: var(--accent);
  border-color: rgba(224, 32, 112, 0.4);
  transform: translateY(-3px);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 48px 0;
}
.feature {
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature:hover {
  border-color: rgba(224, 32, 112, 0.5);
  transform: translateY(-4px);
}
.feature__title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #C77AE8;
  margin-bottom: 10px;
}
.feature p { color: var(--gray-400); font-size: 15px; letter-spacing: -0.01em; }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 30px;
  margin: 56px 0 48px;
}
.benefit h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.4;
  color: var(--white);
  padding-top: 16px;
  border-top: 2px solid var(--accent);
  margin-bottom: 10px;
}
.benefit p { color: var(--gray-400); font-size: 14.5px; letter-spacing: -0.01em; }

.price-card {
  background: var(--surface-dark);
  border: 1px solid rgba(224, 32, 112, 0.4);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 52px);
  box-shadow: 0 0 90px rgba(224, 32, 112, 0.1);
}
.price-card__limit {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C77AE8;
  margin-bottom: 8px;
}
.price-card__name {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.price-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 16px 20px;
  background: rgba(224, 32, 112, 0.1);
  border: 1px solid rgba(224, 32, 112, 0.3);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.price-card__row s { font-size: 20px; }
.price-card__reserve {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  background: var(--accent);
  border-radius: 999px;
  padding: 6px 16px;
}
.price-card__cohort {
  color: var(--gray-400);
  font-size: 14.5px;
  margin-bottom: 24px;
}
.price-card__total {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  text-align: center;
  margin-top: 6px;
}
.price-card__amount {
  font-size: clamp(5rem, 16vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  background: linear-gradient(135deg, #C77AE8 0%, var(--accent-mid) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(224, 32, 112, 0.55));
  animation: price-pulse 2.6s ease-in-out infinite;
}
@keyframes price-pulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(224, 32, 112, 0.5)); }
  50% { filter: drop-shadow(0 0 60px rgba(224, 32, 112, 0.85)); }
}
@media (prefers-reduced-motion: reduce) {
  .price-card__amount { animation: none; }
}
.price-card__currency { font-size: 22px; font-weight: 600; color: var(--gray-400); }
.price-card__note-top {
  text-align: center;
  color: #C77AE8;
  font-weight: 600;
  font-size: 15px;
  margin: 14px 0 24px;
}
.price-card__divider {
  height: 1px;
  background: var(--border-dark);
  margin-bottom: 24px;
}
.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-card__features li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.85);
}
.price-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-card .btn--block + .btn--block { margin-top: 12px; }

.section--speed { padding-top: 30px; }
.section--speed .section__subtitle { margin-bottom: 32px; }

.footer {
  background: #15161b;
  color: var(--white);
  border-top: 1px solid var(--border-dark);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand p {
  color: var(--gray-400);
  font-size: 14px;
  margin-top: 16px;
  max-width: 260px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: #C77AE8; }
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  font-size: 13px;
  color: var(--gray-400);
}

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(27, 28, 34, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-dark);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.27, 0.9, 0.3, 1);
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }

@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(3) { border-left: none; }
  .stats__item:nth-child(n+3) { border-top: 1px solid var(--border-dark); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .mentors--single .mentor-card { grid-template-columns: 1fr; }
  .mentors--single .mentor-card__photo { aspect-ratio: 16 / 9; height: auto; }
}

@media (max-width: 720px) {
  .nav-countdown__tag { display: none; }
  .navbar__inner .btn--sm { display: none; }
  .navbar__inner { justify-content: space-between; }
  .nav-countdown__unit { padding: 4px 7px; }
  .nav-countdown__unit b { font-size: 15px; }
  .hide-mobile { display: none; }
  .hero { padding-top: 100px; }
  .mentors, .features, .benefits { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stats__item + .stats__item { border-left: none; border-top: 1px solid var(--border-dark); }
  .day-card { grid-template-columns: 1fr; gap: 16px; }
  .day-card__head { flex-direction: row; align-items: center; gap: 12px; }
  .cta-row .btn { width: 100%; }
  .sticky-cta { display: block; }
}

@media (max-width: 400px) {
  .navbar__logo { font-size: 0; gap: 0; }
  .navbar__logo-img { width: 32px; height: 32px; }
  .nav-countdown__units { gap: 4px; }
}

.reto-hero { min-height: 100vh; min-height: 100dvh; padding-bottom: 80px; }
.hero__content.reto { text-align: center; }

.reto-image {
  margin: 8px auto 28px;
  max-width: 560px;
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.reto-image img {
  width: auto;
  max-width: 100%;
  max-height: 560px;
  margin: 0 auto;
  border-radius: var(--radius);
  display: block;
}
.reto-image figcaption { margin-top: 14px; }
.reto-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid rgba(224, 32, 112, 0.5);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.reto-download:hover { opacity: 0.7; }

.reto-hints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-bottom: 26px;
  font-size: 14px;
  color: var(--gray-400);
}
.reto-hints code {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  color: var(--accent);
  background: rgba(224, 32, 112, 0.12);
  border: 1px solid rgba(224, 32, 112, 0.3);
  border-radius: 6px;
  padding: 1px 7px;
}

.reto-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.reto-input {
  flex: 1;
  min-width: 220px;
  font-family: ui-monospace, monospace;
  font-size: 16px;
  color: var(--white);
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 15px 24px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.reto-input::placeholder { color: var(--gray-600); }
.reto-input:focus {
  border-color: rgba(224, 32, 112, 0.6);
  box-shadow: 0 0 0 4px rgba(224, 32, 112, 0.15);
}
.reto-input.is-shake { animation: shake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97); }
@keyframes shake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-8px); }
  40%, 60% { transform: translateX(8px); }
}

.reto-feedback {
  margin-top: 18px;
  min-height: 22px;
  font-size: 14.5px;
  font-weight: 500;
}
.reto-feedback.is-error { color: #C77AE8; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  animation: fade-in 0.25s ease;
}
.modal__box {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--surface-dark);
  border: 1px solid rgba(224, 32, 112, 0.4);
  border-radius: 24px;
  padding: 40px 32px 32px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 80px rgba(224, 32, 112, 0.15);
  animation: modal-pop 0.35s cubic-bezier(0.3, 1.3, 0.5, 1);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__x {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.modal__x:hover { color: var(--white); }
.modal__check {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(224, 32, 112, 0.5);
}
.modal__title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.modal__text { color: var(--gray-400); font-size: 15px; margin-bottom: 18px; }
.modal__text strong { color: var(--white); }
.modal__text--small { font-size: 13.5px; }
.modal__code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: ui-monospace, monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(224, 32, 112, 0.1);
  border: 1px dashed rgba(224, 32, 112, 0.5);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.modal__copy {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal__copy:hover { background: rgba(255, 255, 255, 0.2); }

.chat-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 95;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(224, 32, 112, 0.45);
  animation: fab-bounce 2.4s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab svg { width: 28px; height: 28px; }
.chat-fab__badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 20px; height: 20px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@keyframes fab-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.chat-fab.is-open { animation: none; }

.chat-panel {
  position: fixed;
  bottom: 100px; right: 24px;
  z-index: 96;
  width: min(340px, calc(100vw - 32px));
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.27, 0.9, 0.3, 1),
              transform 0.28s cubic-bezier(0.27, 0.9, 0.3, 1);
}
.chat-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}
.chat-panel__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.chat-panel__name { font-weight: 700; font-size: 15px; line-height: 1.2; }
.chat-panel__status { font-size: 12px; opacity: 0.9; display: flex; align-items: center; gap: 5px; }
.chat-panel__status::before {
  content: '';
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}
.chat-panel__close {
  margin-left: auto;
  background: none; border: none;
  color: #fff; font-size: 22px;
  cursor: pointer; line-height: 1;
  opacity: 0.85;
}
.chat-panel__close:hover { opacity: 1; }
.chat-panel__body {
  padding: 20px 18px;
  background:
    radial-gradient(circle at 20% 10%, rgba(224, 32, 112, 0.06), transparent 60%),
    var(--surface-dark);
}
.chat-bubble {
  background: var(--black);
  border: 1px solid var(--border-dark);
  border-radius: 4px 16px 16px 16px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(8px);
  animation: bubble-in 0.4s ease forwards;
}
@keyframes bubble-in { to { opacity: 1; transform: translateY(0); } }
.chat-panel__cta {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 999px;
  padding: 13px 20px;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.chat-panel__cta:hover { filter: brightness(1.1); transform: translateY(-2px); }

@media (max-width: 720px) {
  .chat-fab { bottom: 84px; right: 16px; }
  .chat-panel { bottom: 156px; right: 16px; }
}
