:root {
  --bg: #040a16;
  --bg2: #04101e;
  --surface: #071423;
  --purple: #163fb0;
  --purple2: #1d4ed8;
  --cyan: #00e5ff;
  --cyan2: #00b8d8;
  --magenta: #00e5ff;
  --orange: #1d4ed8;
  --gold: #8fb4f5;
  --text: #eeeeff;
  --muted: #7777aa;
  --white: #ffffff;
  --glow-cyan: 0 0 12px rgba(0, 229, 255, 0.35), 0 0 30px rgba(0, 229, 255, 0.1);
  --glow-orange: 0 0 12px rgba(29, 78, 216, 0.4), 0 0 30px rgba(29, 78, 216, 0.12);
  --glow-cyan-t: 0 0 6px rgba(0, 229, 255, 0.5);
  --glow-purple-t: 0 0 6px rgba(29, 78, 216, 0.45);
  --glow-orange-t: 0 0 6px rgba(29, 78, 216, 0.55);
  --glow-gold-t: 0 0 6px rgba(255, 208, 96, 0.5);
  --border-c: 1px solid rgba(0, 229, 255, 0.28);
  --border-p: 1px solid rgba(22, 63, 176, 0.38);
  --border-o: 1px solid rgba(29, 78, 216, 0.35);
  --green: #25d366;
  --green2: #1ebe5a;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text
}

@media print {
  body * {
    display: none !important
  }

  body::after {
    content: 'Content unavailable. Resource was not cached';
    display: block;
    text-align: center;
    padding-top: 40vh;
    font-family: monospace;
    color: #666;
    font-size: 14px
  }
}

.global-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.global-bg::before {
  display: none;
}

.global-bg::after {
  content: '';
  position: absolute;
  top: -15%;
  left: -25%;
  width: 90vw;
  height: 90vh;
  background: radial-gradient(ellipse, rgba(22, 63, 176, 0.14) 0%, transparent 65%);
  animation: dA 14s ease-in-out infinite alternate;
}

#plexus {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}

.dark-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.78);
  pointer-events: none;
}

.glow-r {
  position: absolute;
  top: 5%;
  right: -20%;
  width: 75vw;
  height: 75vh;
  background: radial-gradient(ellipse, rgba(0, 180, 255, 0.09) 0%, transparent 60%);
  animation: dB 11s ease-in-out infinite alternate;
}

.glow-b {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 110vw;
  height: 50vh;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
}

@keyframes dA {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(7vw, 5vh)
  }
}

@keyframes dB {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(-6vw, 7vh)
  }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 4px);
  pointer-events: none;
}

section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container>* {
  max-width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.07);
  border: var(--border-c);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-shadow: var(--glow-cyan-t);
}

h1,
h2,
h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.0;
}

.nc {
  display: inline;
  background: linear-gradient(90deg, #00e5ff, #00b8d8, #00b8d8, #33eaff, #00e5ff);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loopCyan 5s linear infinite;
}

@keyframes loopCyan {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

.np {
  display: inline;
  background: linear-gradient(90deg, #1d4ed8, #163fb0, #d580ff, #9940ff, #1d4ed8);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loopPurple 5s linear infinite;
}

@keyframes loopPurple {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

.no {
  display: inline;
  background: linear-gradient(90deg, #1d4ed8, #8fb4f5, #8fb4f5, #4f7fe6, #1d4ed8);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loopOrange 5s linear infinite;
}

@keyframes loopOrange {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

.ng {
  display: inline;
  background: linear-gradient(90deg, #8fb4f5, #ffb300, #ffe680, #ffc000, #8fb4f5);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loopGold 5s linear infinite;
}

@keyframes loopGold {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #1d4ed8, #4f7fe6, #8fb4f5, #8fb4f5, #4f7fe6, #1d4ed8);
  background-size: 300% auto;
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  padding: 20px 48px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--glow-orange), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: btnShimmer 3s linear infinite;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

@keyframes btnShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1.5px rgba(255, 200, 120, 0.35);
  animation: btnPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: inset 0 0 0 1.5px rgba(255, 200, 120, 0.35), 0 0 14px rgba(29, 78, 216, 0.3);
  }

  50% {
    box-shadow: inset 0 0 0 1.5px rgba(255, 200, 120, 0.7), 0 0 28px rgba(29, 78, 216, 0.5);
  }
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 28px rgba(29, 78, 216, 0.4), 0 0 55px rgba(29, 78, 216, 0.14);
}

.cta-btn:active {
  transform: scale(0.98);
}

.cta-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  width: 100%;
}

.cta-micro span::before {
  content: '✔ ';
  color: var(--cyan);
}

.hero-micro {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 12px;
  color: #d0d0ee;
  width: 100%;
  justify-content: flex-start;
  white-space: nowrap;
  overflow: hidden;
  font-size: 13px;
  animation: fadeUp 0.7s 0.42s ease both;
}

@media(max-width: 480px) {
  .hero-micro {
    gap: 12px;
    font-size: 11px;
  }
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.18) 50%, transparent);
}

.section-block {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg2);
}

.section-block .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-block h2 {
  font-size: clamp(34px, 6vw, 60px);
  margin-bottom: 16px;
  color: var(--white);
  width: 100%;
}

.section-block p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.section-block p strong {
  color: var(--text);
  font-weight: 600;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 70px;
  overflow: hidden;
}

.hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: var(--glow-cyan-t);
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease both;
}

#hero h1 {
  font-size: clamp(52px, 10vw, 96px);
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeUp 0.7s 0.1s ease both;
  width: 100%;
  word-break: break-word;
}

#hero h1 .l1 {
  display: block;
  color: #ffffff;
  font-size: 0.32em;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 2px;
}

#hero h1 .l2 {
  display: block;
  position: relative;
  line-height: 1.0;
}

/* Ghost layers desactivadas: limpio, sin texto duplicado ni rayas */
#hero h1 .l2::before,
#hero h1 .l2::after {
  content: none;
}

#hero h1 .l2 span.l2-inner {
  display: block;
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, #00e5ff 0%, #9beaff 45%, #00cfee 80%, #00e5ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.6)) drop-shadow(0 0 28px rgba(0, 184, 216, 0.3));
  line-height: 1;
}

@keyframes strokePulse {

  0%,
  100% {
    -webkit-text-stroke: 1.5px rgba(0, 229, 255, 0.3);
    filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.2));
  }

  50% {
    -webkit-text-stroke: 1.5px rgba(0, 229, 255, 0.8);
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.6));
  }
}

@keyframes strokeSweep {
  0% {
    background-position: 130% center;
  }

  100% {
    background-position: -30% center;
  }
}

@keyframes lcdFlicker {

  0%,
  88%,
  92%,
  96%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.7)) drop-shadow(0 0 22px rgba(0, 158, 192, 0.35));
  }

  89%,
  93% {
    opacity: 0.5;
    filter: drop-shadow(0 0 2px rgba(0, 229, 255, 0.2));
  }

  90% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.7));
  }

  97% {
    opacity: 0.7;
    filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.4));
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

#hero h1 .l3 {
  display: block;
  font-size: 1em;
  letter-spacing: -0.02em;
  line-height: 0.95;
  position: relative;
}

.l3-dollar {
  -webkit-text-fill-color: #8fb4f5;
  font-style: normal;
  filter: drop-shadow(0 0 8px rgba(59, 130, 255, 0.75));
  animation: dollarPulse 2.5s ease-in-out infinite;
  margin-right: 4px;
}

.l3-inner {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #8fb4f5 0%, #1d4ed8 50%, #163fb0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(59, 130, 255, 0.5));
}

@keyframes neonPulse {

  0%,
  100% {
    -webkit-text-stroke: 0.6px rgba(29, 78, 216, 0.85);
    filter: drop-shadow(0 0 5px rgba(29, 78, 216, 0.6)) drop-shadow(0 0 14px rgba(22, 63, 176, 0.3));
  }

  50% {
    -webkit-text-stroke: 0.6px rgba(143, 180, 245, 1);
    filter: drop-shadow(0 0 10px rgba(143, 180, 245, 0.9)) drop-shadow(0 0 24px rgba(22, 63, 176, 0.45));
  }
}

@keyframes dollarPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(59, 130, 255, 0.6));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 12px rgba(255, 208, 96, 0.95));
    transform: scale(1.1);
  }
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.18s ease both;
}

.hero-sub em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.software-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -20px 0 32px;
  animation: fadeUp 0.7s 0.22s ease both;
}

.sw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sw-badge:hover {
  transform: translateY(-2px);
}

.sw-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sw-icon-capcut {
  width: 22px;
  height: 22px;
}

.sw-capcut span:last-child {
  display: inline-flex;
  align-items: center;
  transform: translateY(0.5px);
}

.capcut-hint {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.social-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 10px 0 4px;
}

.ss-item {
  font-size: 12px;
  color: var(--muted);
}

.ss-item strong {
  color: var(--white);
  font-size: 13px;
}

.cred-ig {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.4);
  color: #e1306c;
}

.cred-tt {
  background: rgba(0, 242, 234, 0.10);
  border-color: rgba(0, 242, 234, 0.4);
  color: #00f2ea;
}

.cred-yt {
  background: rgba(255, 0, 0, 0.10);
  border-color: rgba(255, 0, 0, 0.4);
  color: #ff4444;
}

.sw-capcut {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 10px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  gap: 8px;
  padding: 7px 14px 7px 10px;
}

.sw-capcut:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 18px rgba(255, 255, 255, 0.08);
}

.sw-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sw-icon-capcut {
  width: 20px;
  height: 20px;
}

.capcut-logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 4px;
  filter: brightness(1.05) contrast(1.05) drop-shadow(0 0 2px rgba(255, 255, 255, 0.15));
}

.sw-label {
  display: inline-flex;
  align-items: center;
  transform: translateY(0.5px);
}

.capcut-hint {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.03em;
}

.sw-premiere {
  background: rgba(0, 0, 91, 0.5);
  border: 1px solid rgba(153, 153, 255, 0.4);
  color: #9999ff;
}

.sw-premiere:hover {
  box-shadow: 0 0 10px rgba(153, 153, 255, 0.3);
}

.sw-ae {
  background: rgba(0, 0, 91, 0.5);
  border: 1px solid rgba(153, 153, 255, 0.4);
  color: #9eb2ff;
}

.sw-ae:hover {
  box-shadow: 0 0 10px rgba(158, 178, 255, 0.3);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.26s ease both;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.check-list li .ck {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(0, 229, 255, 0.85);
  border: 1.5px solid rgba(0, 229, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002a33;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6), 0 0 24px rgba(0, 229, 255, 0.25);
}

#hero .cta-btn {
  animation: fadeUp 0.7s 0.34s ease both;
}

#hero .cta-micro {
  animation: fadeUp 0.7s 0.42s ease both;
}

.reality-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.reality-list li {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
}

.reality-list li .ri {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(22, 63, 176, 0.1);
  border: 1px solid rgba(22, 63, 176, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.remate {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  border-left: 3px solid var(--cyan);
  padding-left: 16px;
  margin-top: 24px;
}

.dates-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 32px 0;
}

.dates-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--purple2), var(--magenta));
  box-shadow: 0 0 10px var(--cyan);
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.dates-timeline.line-drawn::before {
  transform: scaleY(1);
}

.date-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.date-item.item-visible {
  opacity: 1;
  transform: translateX(0);
}

.date-item:nth-child(1) {
  transition-delay: 0.1s;
}

.date-item:nth-child(2) {
  transition-delay: 0.35s;
}

.date-item:nth-child(3) {
  transition-delay: 0.6s;
}

.date-item:nth-child(4) {
  transition-delay: 0.85s;
}

.date-dot {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--cyan);
  text-shadow: var(--glow-cyan-t);
}

.date-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.date-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.logros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

@media(max-width:560px) {
  .logros-grid {
    grid-template-columns: 1fr
  }
}

.logro-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(10, 20, 36, 0.88);
  border: var(--border-p);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
}

.logro-item:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.logro-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(0, 229, 255, 0.08);
  border: var(--border-c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-top: 1px;
}

.logro-text {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.logro-text b {
  color: var(--cyan);
}

.bonos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

@media(max-width:560px) {
  .bonos-grid {
    grid-template-columns: 1fr
  }
}

.bono-card {
  padding: 20px;
  background: rgba(10, 20, 36, 0.88);
  border: var(--border-p);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.bono-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
}

.bono-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255, 208, 96, 0.2);
}

.bono-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.bono-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.bono-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

.bono-tag {
  display: inline-block;
  background: rgba(255, 208, 96, 0.1);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-top: 8px;
  border: 1px solid rgba(255, 208, 96, 0.3);
  text-shadow: var(--glow-gold-t);
}

.wins-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.win-card {
  background: rgba(10, 20, 36, 0.88);
  border: var(--border-p);
  border-radius: 8px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.win-card::before {
  content: '"';
  position: absolute;
  top: -14px;
  right: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  color: rgba(22, 63, 176, 0.1);
  line-height: 1;
  pointer-events: none;
}

.win-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.win-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.win-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  box-shadow: 0 0 14px rgba(22, 63, 176, 0.5);
}

.win-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.win-role {
  font-size: 12px;
  color: var(--muted);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0;
}

.acc-item {
  background: rgba(10, 20, 36, 0.88);
  border: var(--border-p);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
  backdrop-filter: blur(4px);
}

.acc-item.open {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.12);
}

.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}

.acc-header:hover {
  color: var(--cyan);
}

.acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  flex-shrink: 0;
  background: rgba(0, 229, 255, 0.08);
  border: var(--border-c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--cyan);
  font-weight: 700;
  transition: transform 0.3s, background 0.2s;
}

.acc-item.open .acc-icon {
  transform: rotate(45deg);
  background: rgba(0, 229, 255, 0.2);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 22px;
}

.acc-body.open {
  max-height: 300px;
  padding: 0 22px 18px;
}

.acc-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.no-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.no-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.no-list li .x {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  flex-shrink: 0;
  background: rgba(255, 50, 80, 0.1);
  border: 1px solid rgba(255, 50, 80, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ff5060;
  text-shadow: 0 0 8px rgba(255, 50, 80, 0.8);
}

.urgencia-box {
  display: inline-block;
  margin: 28px auto;
  width: min(360px, 92vw);
  border-radius: 16px;
  position: relative;
  background: transparent;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  transition: box-shadow 0.3s;
  cursor: default;
  overflow: visible;
}

.urgencia-sweep {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.urgencia-sweep::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -30%;
  width: 38px;
  height: 300%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(180, 230, 255, 0.0) 15%,
      rgba(210, 245, 255, 0.55) 50%,
      rgba(180, 230, 255, 0.0) 85%,
      transparent 100%);
  transform: rotate(35deg) translateX(-200px);
  animation: sweepTL 7s ease-in-out infinite;
}

.urgencia-sweep::after {
  content: '';
  position: absolute;
  bottom: -100%;
  right: -30%;
  width: 24px;
  height: 300%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(100, 220, 255, 0.0) 15%,
      rgba(120, 230, 255, 0.38) 50%,
      rgba(100, 220, 255, 0.0) 85%,
      transparent 100%);
  transform: rotate(35deg) translateX(200px);
  animation: sweepBR 7s ease-in-out infinite;
}

@keyframes sweepTL {
  0% {
    transform: rotate(35deg) translateX(-220px);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: rotate(35deg) translateX(520px);
    opacity: 0;
  }
}

@keyframes sweepBR {
  0% {
    transform: rotate(35deg) translateX(220px);
    opacity: 0;
  }

  8% {
    opacity: 0.75;
  }

  92% {
    opacity: 0.75;
  }

  100% {
    transform: rotate(35deg) translateX(-520px);
    opacity: 0;
  }
}

.urgencia-box-inner {
  position: relative;
  z-index: 2;
  background: #060618;
  border-radius: 14px;
  margin: 2px;
  overflow: visible;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.18), 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.3s;
}

.cal-header,
.cal-weekdays,
.cal-body,
.cal-footer {
  overflow: hidden;
}

.cal-header {
  border-radius: 12px 12px 0 0;
}

.cal-footer {
  border-radius: 0 0 12px 12px;
}

.urgencia-box:hover .urgencia-box-inner {
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.4), 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 229, 255, 0.1);
}

.urgencia-box-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 160, 220, 0.035) 2px,
      rgba(0, 160, 220, 0.035) 3px);
  pointer-events: none;
  z-index: 10;
  border-radius: 14px;
}

.urgencia-box-inner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(0, 229, 255, 0.05) 40%,
      rgba(0, 229, 255, 0.09) 50%,
      rgba(0, 229, 255, 0.05) 60%,
      transparent 100%);
  animation: scanBeam 5s linear infinite;
  pointer-events: none;
  z-index: 9;
}

@keyframes scanBeam {
  0% {
    top: -44px;
  }

  100% {
    top: 110%;
  }
}

.cal-day.active {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.18), rgba(0, 158, 192, 0.1));
  border: 1px solid rgba(0, 229, 255, 0.55);
  color: var(--cyan);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3), inset 0 0 8px rgba(0, 229, 255, 0.08);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
  animation: dayglow 2s ease-in-out infinite;
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.cal-day.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  transition: opacity 0.2s;
}

@keyframes dayglow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.25), inset 0 0 6px rgba(0, 229, 255, 0.06);
  }

  50% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5), inset 0 0 10px rgba(0, 229, 255, 0.12);
  }
}

.urgencia-box:hover .cal-day.active {
  animation: none;
  transform: scale(1.4);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.25), rgba(255, 180, 60, 0.15));
  border-color: var(--orange);
  color: var(--orange);
  text-shadow: 0 0 12px rgba(29, 78, 216, 1), 0 0 30px rgba(29, 78, 216, 0.6);
  box-shadow: 0 0 20px rgba(29, 78, 216, 0.5), inset 0 0 12px rgba(29, 78, 216, 0.1);
  font-size: 17px;
}

.urgencia-box:hover .cal-day.active::after {
  opacity: 0;
}

.cal-bubble {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(6px) scale(0.88);
  white-space: nowrap;
  background: linear-gradient(135deg, #1d4ed8 0%, #8fb4f5 60%, #8fb4f5 100%);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 24px rgba(29, 78, 216, 0.5), 0 0 0 1px rgba(255, 180, 80, 0.4);
  z-index: 20;
}

@media(max-width:480px) {
  .cal-bubble {
    font-size: 12px;
    padding: 6px 12px;
    letter-spacing: 0.07em;
  }
}

.cal-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: calc(50% + var(--arrow-shift, 0px));
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #8fb4f5;
}

.cal-day.active:hover~* .cal-bubble,
.urgencia-box:has(.cal-day.active:hover) .cal-bubble {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.cal-header {
  background: linear-gradient(135deg, #cc0022, #ff1133);
  padding: 12px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.cal-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px,
      rgba(0, 0, 0, 0.08) 2px, rgba(0, 0, 0, 0.08) 3px);
}

.cal-dots {
  display: flex;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cal-dot:nth-child(1) {
  background: #ff5f56;
}

.cal-dot:nth-child(2) {
  background: #febc2e;
}

.cal-dot:nth-child(3) {
  background: #28c840;
}

.cal-month-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 16px 6px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.cal-wd {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0, 229, 255, 0.45);
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

.cal-body {
  padding: 10px 16px 20px;
  background: rgba(0, 0, 0, 0.15);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(100, 120, 160, 0.6);
  padding: 5px 2px;
  border-radius: 6px;
  line-height: 1;
}

.cal-day.other {
  color: rgba(80, 90, 120, 0.35);
}

.cal-day.active {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.18), rgba(0, 158, 192, 0.1));
  border: 1px solid rgba(0, 229, 255, 0.55);
  color: var(--cyan);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3), inset 0 0 8px rgba(0, 229, 255, 0.08);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
  animation: dayglow 2s ease-in-out infinite;
  position: relative;
}

.cal-day.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

@keyframes dayglow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.25), inset 0 0 6px rgba(0, 229, 255, 0.06);
  }

  50% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5), inset 0 0 10px rgba(0, 229, 255, 0.12);
  }
}

.cal-footer {
  padding: 12px 20px 16px;
  text-align: center;
  border-top: 1px solid rgba(0, 229, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.cal-footer p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}

.badge-urgencia {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 50, 80, 0.1);
  border: 1px solid rgba(255, 50, 80, 0.35);
  color: #ff7080;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.55
  }
}

@media(max-width:480px) {
  .urgencia-box {
    width: 92vw;
  }
}

#cta-final {
  text-align: center;
  padding: 90px 0;
  background: radial-gradient(ellipse at center, rgba(22, 63, 176, 0.12) 0%, transparent 65%);
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(4, 4, 14, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 229, 255, 0.18);
  box-shadow: 0 -4px 30px rgba(0, 229, 255, 0.07);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 100;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-bar.show {
  transform: translateY(0);
}

.sticky-bar p {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}

.sticky-bar p strong {
  color: var(--cyan);
  text-shadow: var(--glow-cyan-t);
}

.sticky-cta {
  background: linear-gradient(135deg, var(--orange), #4f7fe6);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 11px 28px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(29, 78, 216, 0.5);
  transition: transform 0.18s;
}

.sticky-cta:hover {
  transform: scale(1.04);
}

@media(max-width:500px) {
  .sticky-bar p {
    display: none
  }

  .sticky-cta {
    width: 100%;
    text-align: center
  }
}

footer {
  text-align: center;
  padding: 28px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(0, 229, 255, 0.07);
}

.cta-final-heading {
  font-size: clamp(36px, 6.5vw, 68px);
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.1;
}

.cobrar-anim {
  display: inline;
  background: linear-gradient(90deg, #1d4ed8, #8fb4f5, #8fb4f5, #4f7fe6, #1d4ed8);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loopOrange 3s linear infinite;
  filter: drop-shadow(0 0 5px rgba(255, 140, 40, 0.35));
}

@keyframes pixelBounce {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(7px);
  }
}

@media (max-width: 768px) {
  .section-block {
    padding: 56px 0;
  }

  #cta-final {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  #hero {
    padding: 80px 0 56px;
    min-height: 100svh;
  }

  #hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #hero h1 {
    font-size: clamp(44px, 12vw, 72px);
    width: 100%;
  }

  #hero h1 .l1 {
    font-size: 0.30em;
    letter-spacing: 0.03em;
  }

  #hero h1 .l3 {
    letter-spacing: -0.015em;
  }

  .hero-label {
    align-self: flex-start;
  }

  .tag {
    align-self: flex-start;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 28px;
    width: 100%;
  }

  .check-list {
    width: 100%;
  }

  .cta-btn {
    font-size: 18px;
    padding: 18px 24px;
    width: 100%;
    justify-content: center;
  }

  .cta-micro {
    gap: 12px;
    width: 100%;
  }

  .logros-grid,
  .bonos-grid {
    grid-template-columns: 1fr;
  }

  .ticket-wrap {
    width: 100%;
  }

  .golden-ticket {
    width: 100%;
    height: auto;
    min-height: 84px;
    animation: none;
    transform: none !important;
  }

  .ticket-content {
    padding: 18px 20px;
    gap: 12px;
  }

  .ticket-text {
    font-size: clamp(16px, 4.5vw, 22px);
  }

  .ticket-edge {
    display: none;
  }

  .ticket-perf-l {
    left: -8px;
  }

  .ticket-perf-r {
    right: -8px;
  }

  .section-block h2 {
    font-size: clamp(28px, 7vw, 48px);
  }

  .cta-final-heading {
    font-size: clamp(28px, 7vw, 52px);
  }

  .acc-header {
    padding: 15px 18px;
    font-size: 14px;
  }

  .acc-body.open {
    padding: 0 18px 16px;
  }

  .date-label {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 18px;
  }

  #hero {
    padding: 70px 0 48px;
  }

  #hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #hero h1 {
    font-size: clamp(32px, 11vw, 52px);
    margin-bottom: 12px;
    width: 100%;
  }

  #hero h1 .l1 {
    font-size: 0.28em;
  }

  #hero h1 .l3 {
    letter-spacing: -0.01em;
  }

  .hero-label {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-sub {
    font-size: 15px;
    width: 100%;
  }

  .check-list {
    width: 100%;
  }

  .check-list li {
    font-size: 15px;
  }

  #hero .cta-btn {
    width: 100%;
    font-size: 15px;
    padding: 16px 16px;
    letter-spacing: 0.03em;
  }

  #hero .cta-micro {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .section-block {
    padding: 44px 0;
  }

  .section-block h2 {
    font-size: clamp(26px, 8vw, 42px);
  }

  .cta-final-heading {
    font-size: clamp(24px, 8vw, 40px);
    margin-bottom: 20px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 16px 20px;
    letter-spacing: 0.04em;
  }

  .tag {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 5px 12px;
  }

  .logro-item,
  .bono-card,
  .win-card {
    padding: 14px 16px;
  }

  .logro-icon {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .bono-icon {
    font-size: 22px;
  }

  .dates-timeline::before {
    left: 18px;
  }

  .date-dot {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .date-label {
    font-size: 17px;
  }

  .date-sub {
    font-size: 13px;
  }

  .ticket-content {
    padding: 14px 14px;
    gap: 10px;
  }

  .ticket-text {
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  .ticket-sub {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .ticket-icon {
    font-size: 20px;
  }

  .reality-list li {
    font-size: 16px;
  }

  .remate {
    font-size: 16px;
  }

  .urgencia-box {
    width: 92vw;
  }

  .acc-header {
    padding: 13px 16px;
    font-size: 13px;
  }

  .sticky-bar {
    padding: 10px 16px;
  }

  .sticky-cta {
    font-size: 14px;
    padding: 10px 20px;
  }

  #plexus {
    opacity: 1;
  }

  .cta-micro {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  #cta-final svg {
    width: 40px;
    height: 36px;
  }

  .no-list li {
    font-size: 15px;
  }
}

.slider-outer {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 24px 0 8px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.slider-outer:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  transition: transform 0.0s linear;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.slider-track.is-dragging {
  transition: none !important;
}

.slider-track.is-dragging .slide-item {
  transition: none !important;
}

.slide-item {
  flex-shrink: 0;
  width: 420px;
  border-radius: 14px;
  overflow: visible;
  border: 1px solid rgba(22, 63, 176, 0.3);
  background: #0a1424;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s, box-shadow 0.3s, opacity 0.4s ease, filter 0.5s ease;
  cursor: pointer;
  will-change: transform, opacity;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style;
}

.slide-item:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.15), 0 4px 24px rgba(0, 0, 0, 0.5);
}

.slide-item img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: top;
  display: block;
  pointer-events: none;
  background: #0a1424;
  padding: 5px 5px 0 5px;
  border-radius: 14px 14px 13px 13px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 20, 36, 0.92);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(8px);
}

.slider-btn:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-fade-l,
.slider-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 5;
}

.slider-fade-l {
  left: 0;
  background: linear-gradient(90deg, var(--bg2), transparent);
}

.slider-fade-r {
  right: 0;
  background: linear-gradient(270deg, var(--bg2), transparent);
}

.slider-dots {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  width: 100%;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.25);
  border: 1px solid rgba(0, 229, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s;
}

.slider-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
  width: 20px;
  border-radius: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 10, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(700px, 92vw);
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.12);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(2, 2, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 50, 80, 0.3);
}

@media(max-width:768px) {
  .slide-item {
    width: 340px;
  }

  .slide-item img {
    height: 270px;
  }

  .slider-dots {
    justify-content: center;
  }

  #social .container:last-child {
    align-items: center;
    text-align: center;
  }

  .slide-badge {
    font-size: 9px;
    padding: 6px 12px;
    letter-spacing: 0.04em;
    white-space: normal;
    text-align: center;
    max-width: 92%;
    line-height: 1.3;
    top: -16px;
    overflow: visible;
  }
}

@media(max-width:480px) {
  .slide-item {
    width: 280px;
  }

  .slide-item img {
    height: 220px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .slider-fade-l,
  .slider-fade-r {
    width: 40px;
  }

  .slide-badge {
    font-size: 8px;
    padding: 5px 10px;
    letter-spacing: 0.03em;
    max-width: 94%;
    top: -14px;
  }
}

.ticket-wrap {
  display: inline-block;
  perspective: 900px;
  margin: 8px 0 32px;
}

.golden-ticket {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: min(620px, 90vw);
  height: 96px;
  border-radius: 12px;
  transform-style: preserve-3d;
  animation: ticketFloat 8s ease-in-out infinite;
  cursor: pointer;
}

@keyframes ticketFloat {

  0%,
  100% {
    transform: rotateX(4deg) rotateY(-2deg) translateY(0px);
  }

  25% {
    transform: rotateX(5deg) rotateY(2deg) translateY(-5px);
  }

  50% {
    transform: rotateX(-5deg) rotateY(10deg) translateY(-8px);
  }

  75% {
    transform: rotateX(3deg) rotateY(-10deg) translateY(-3px);
  }
}

.ticket-face {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #2a1a00 0%,
      #4a2d00 15%,
      #7a4f00 30%,
      #c8900a 45%,
      #f0c030 55%,
      #ffd700 60%,
      #e8b800 68%,
      #c89010 78%,
      #8a5a00 88%,
      #4a2d00 100%);
  background-size: 400% 400%;
  animation: goldShimmer 4s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(255, 220, 80, 0.6),
    0 2px 0 1px rgba(180, 120, 0, 0.8),
    0 4px 20px rgba(200, 140, 0, 0.4),
    0 12px 40px rgba(180, 110, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 200, 0.5),
    inset 0 -1px 0 rgba(100, 60, 0, 0.6);
}

@keyframes goldShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.ticket-face::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 20%,
      rgba(255, 255, 200, 0.0) 35%,
      rgba(255, 255, 220, 0.55) 48%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 220, 0.55) 52%,
      rgba(255, 255, 200, 0.0) 65%,
      transparent 80%);
  background-size: 300% 100%;
  animation: waveSwipe 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes waveSwipe {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.ticket-face::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.04) 3px,
      rgba(0, 0, 0, 0.04) 4px);
  pointer-events: none;
}

.ticket-perf-l,
.ticket-perf-r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  z-index: 10;
  box-shadow: inset 0 0 0 1px rgba(180, 120, 0, 0.5);
}

.ticket-perf-l {
  left: -11px;
}

.ticket-perf-r {
  right: -11px;
}

.ticket-sep {
  position: absolute;
  top: 50%;
  left: 11px;
  right: 11px;
  height: 1px;
  border-top: 1.5px dashed rgba(180, 120, 0, 0.35);
  transform: translateY(-50%);
  display: none;
}

.ticket-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 0 32px;
}

.ticket-icon {
  font-size: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.ticket-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 4vw, 28px);
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: #1a0d00;
  text-shadow:
    0 1px 0 rgba(255, 240, 150, 0.8),
    0 -1px 0 rgba(80, 40, 0, 0.6),
    1px 0 0 rgba(255, 240, 150, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 1px rgba(255, 220, 100, 0.4));
}

.ticket-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(60, 30, 0, 0.75);
  display: block;
  margin-top: 2px;
  text-shadow: 0 1px 0 rgba(255, 220, 100, 0.5);
}

.ticket-edge {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  transform: translateZ(-6px) translateY(6px);
  background: linear-gradient(135deg, #7a4800, #3a2000, #5a3500);
  pointer-events: none;
}

.ticket-wrap:hover .golden-ticket {
  animation: ticketHover 0.6s ease-in-out infinite alternate;
}

@keyframes ticketHover {
  0% {
    transform: rotateX(6deg) rotateY(-10deg) translateY(-10px) scale(1.02);
  }

  100% {
    transform: rotateX(4deg) rotateY(10deg) translateY(-14px) scale(1.02);
  }
}

.ticket-wrap:active .golden-ticket {
  transform: rotateX(5deg) rotateY(0deg) translateY(-2px) scale(0.99) !important;
  animation: none;
}

.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 32px;
  flex-wrap: wrap;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(10, 20, 36, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 10px;
  padding: 14px 20px;
  min-width: 72px;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.countdown-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 229, 255, 0.03) 2px, rgba(0, 229, 255, 0.03) 3px);
  pointer-events: none;
}

.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.7), 0 0 40px rgba(0, 229, 255, 0.3);
  letter-spacing: 0.05em;
  transition: transform 0.15s ease;
}

.cd-num.flip {
  transform: scaleY(0.6);
  opacity: 0.5;
}

.cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  font-family: 'Rajdhani', sans-serif;
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--cyan);
  opacity: 0.5;
  animation: blink 1s step-end infinite;
  margin-bottom: 16px;
}

@media(max-width:480px) {
  .countdown-block {
    min-width: 58px;
    padding: 10px 14px;
  }

  .cd-sep {
    font-size: 28px;
  }
}

.speech-bubbles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: min(560px, 90vw);
  width: 100%;
  margin: -90px auto 28px;
  perspective: 900px;
  overflow: visible;
  padding: 14px 20px 24px;
}

.bubble {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 18px;
  position: relative;
  max-width: 90%;
  opacity: 0;
}

.bubble-red {
  opacity: 0;
  align-self: flex-start;
  background: #1a0408;
  border: 1.5px solid rgba(220, 40, 60, 0.5);
  box-shadow: 0 0 22px rgba(200, 20, 40, 0.2);
  border-bottom-left-radius: 4px;
}

.bubble-green {
  opacity: 0;
  align-self: flex-end;
  background: #020e05;
  border: 1.5px solid rgba(30, 210, 90, 0.45);
  box-shadow: 0 0 22px rgba(20, 200, 80, 0.15);
  border-bottom-right-radius: 4px;
}

@keyframes bubbleFloatRed {
  0% {
    opacity: 0;
    transform: translateX(-30px) translateY(0px) rotateX(0deg) rotateY(8deg);
  }

  18% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotateX(0deg) rotateY(8deg);
  }

  59% {
    opacity: 1;
    transform: translateX(0px) translateY(-8px) rotateX(5deg) rotateY(-8deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotateX(0deg) rotateY(8deg);
  }
}

@keyframes bubbleFloatGreen {
  0% {
    opacity: 0;
    transform: translateX(30px) translateY(0px) rotateX(0deg) rotateY(-8deg);
  }

  18% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotateX(0deg) rotateY(-8deg);
  }

  59% {
    opacity: 1;
    transform: translateX(0px) translateY(-8px) rotateX(-5deg) rotateY(8deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotateX(0deg) rotateY(-8deg);
  }
}

.bubble-red.floating {
  animation: bubbleFloatRed 5.5s ease-in-out 1 forwards;
}

.bubble-green.floating {
  animation: bubbleFloatGreen 5.5s ease-in-out 1 forwards;
  animation-delay: 0.3s;
}

.bubble-red.floating.looping {
  opacity: 1;
  animation: bubbleLoopRed 5.5s ease-in-out infinite;
}

.bubble-green.floating.looping {
  opacity: 1;
  animation: bubbleLoopGreen 5.5s ease-in-out infinite;
}

@keyframes bubbleLoopRed {

  0%,
  100% {
    transform: translateY(0px) rotateX(0deg) rotateY(8deg);
  }

  50% {
    transform: translateY(-8px) rotateX(5deg) rotateY(-8deg);
  }
}

@keyframes bubbleLoopGreen {

  0%,
  100% {
    transform: translateY(0px) rotateX(0deg) rotateY(-8deg);
  }

  50% {
    transform: translateY(-8px) rotateX(-5deg) rotateY(8deg);
  }
}

.bubble::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: linear-gradient(115deg,
      transparent 0%, transparent 22%,
      rgba(255, 255, 255, 0) 25%,
      rgba(255, 255, 255, 0.7) 30%,
      rgba(255, 255, 255, 1) 32%,
      rgba(255, 255, 255, 0.7) 34%,
      rgba(255, 255, 255, 0) 39%,
      transparent 42%, transparent 52%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.45) 59%,
      rgba(255, 255, 255, 0.65) 61%,
      rgba(255, 255, 255, 0.45) 63%,
      rgba(255, 255, 255, 0) 67%,
      transparent 100%);
  background-size: 300% 300%;
  animation: shineSlide 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.bubble-green::before {
  animation-delay: -4.5s;
}

@keyframes shineSlide {
  0% {
    background-position: 130% 130%;
  }

  100% {
    background-position: -30% -30%;
  }
}

.bubble-mask {
  position: absolute;
  inset: 1.5px;
  border-radius: inherit;
  z-index: 1;
}

.bubble-red .bubble-mask {
  background: #1a0408;
}

.bubble-green .bubble-mask {
  background: #020e05;
}

.bubble-tail {
  position: absolute;
  bottom: -12px;
  width: 0;
  height: 0;
  z-index: 4;
  pointer-events: none;
}

.bubble-red .bubble-tail {
  left: 0;
  border-top: 12px solid rgba(220, 40, 60, 0.5);
  border-right: 12px solid transparent;
}

.bubble-green .bubble-tail {
  right: 0;
  border-top: 12px solid rgba(30, 210, 90, 0.45);
  border-left: 12px solid transparent;
}

.bubble-icon,
.bubble-text {
  position: relative;
  z-index: 2;
}

.bubble-red .bubble-icon {
  color: #ff3355;
  font-size: 18px;
  font-weight: 900;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 50, 80, 0.15);
  border: 1.5px solid rgba(255, 50, 80, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 10px rgba(255, 50, 80, 0.8);
}

.bubble-green .bubble-icon {
  color: #20e060;
  font-size: 18px;
  font-weight: 900;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(30, 210, 90, 0.12);
  border: 1.5px solid rgba(30, 210, 90, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 10px rgba(30, 210, 90, 0.8);
}

.bubble-red .bubble-text,
.bubble-green .bubble-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(13px, 2.4vw, 20px);
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1.25;
  white-space: normal;
}

.bubble-red .bubble-text {
  text-shadow: 0 0 16px rgba(255, 50, 80, 0.25);
}

.bubble-green .bubble-text {
  text-shadow: 0 0 16px rgba(20, 200, 80, 0.25);
}

.bubble-gold {
  background: linear-gradient(90deg,
      #b8860b 0%, #ffd700 25%, #fff4a0 45%, #ffd700 65%, #ffb300 85%, #b8860b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 210, 0, 0.7)) drop-shadow(0 0 14px rgba(255, 160, 0, 0.35));
  font-weight: 900;
}

@keyframes goldPulse {

  0%,
  100% {
    background-position: 0% center;
    filter: drop-shadow(0 0 6px rgba(255, 210, 0, 0.7)) drop-shadow(0 0 14px rgba(255, 160, 0, 0.35));
  }

  50% {
    background-position: 100% center;
    filter: drop-shadow(0 0 10px rgba(255, 220, 0, 1)) drop-shadow(0 0 22px rgba(255, 180, 0, 0.6));
  }
}

@media(max-width:480px) {
  .bubble {
    padding: 12px 16px;
    gap: 10px;
  }

  .bubble-text {
    white-space: normal !important;
    font-size: 14px !important;
  }

  .bubble-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 14px !important;
  }
}

.hero-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(10, 20, 36, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  width: fit-content;
}

.counter-avatars {
  display: flex;
}

.ca {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  border: 2px solid var(--bg);
  margin-left: -8px;
  flex-shrink: 0;
}

.ca:first-child {
  margin-left: 0;
}

.ca1 {
  background: linear-gradient(135deg, var(--cyan), #00b8d8);
}

.ca2 {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
}

.ca3 {
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.ca4 {
  background: rgba(255, 255, 255, 0.15);
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.hero-counter p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

.hero-counter p strong {
  color: var(--text);
}

.counter-live {
  color: #ff4444;
  font-size: 11px;
  font-weight: 700;
  animation: blink 1.5s ease-in-out infinite;
}

.instructor-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  background: rgba(10, 20, 36, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: visible;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
  cursor: default;
}

.instructor-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.instructor-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 2px;
}

.instructor-wrap:hover .instructor-glow {
  opacity: 1;
}

.instructor-glow::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 229, 255, 0.7) 0%, rgba(22, 63, 176, 0.35) 40%, transparent 70%);
  transition: left 0.15s ease, top 0.15s ease;
}

.instructor-shine {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.65;
}

.instructor-shine::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 35%, rgba(0, 229, 255, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 65%, rgba(22, 63, 176, 0.07) 0%, transparent 50%);
  animation: glassShine 14s ease-in-out infinite;
  filter: blur(30px);
}

.instructor-shine::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 65% 30%, rgba(0, 180, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 45% 55% at 35% 70%, rgba(22, 63, 176, 0.05) 0%, transparent 45%);
  animation: glassShine2 18s ease-in-out infinite;
  filter: blur(35px);
}

@keyframes glassShine {
  0% {
    transform: translate(0%, 0%);
  }

  33% {
    transform: translate(10%, 5%);
  }

  66% {
    transform: translate(-6%, 8%);
  }

  100% {
    transform: translate(0%, 0%);
  }
}

@keyframes glassShine2 {
  0% {
    transform: translate(4%, 2%);
  }

  33% {
    transform: translate(-8%, -4%);
  }

  66% {
    transform: translate(5%, -6%);
  }

  100% {
    transform: translate(4%, 2%);
  }
}

.instructor-wrap:hover {
  box-shadow:
    0 0 30px rgba(0, 229, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.instructor-border-light {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 2px;
}

.instructor-border-light::before {
  content: '';
  position: absolute;
  inset: -80%;
  background: conic-gradient(from var(--border-angle, 0deg),
      transparent 0%,
      transparent 25%,
      rgba(0, 229, 255, 0.55) 30%,
      rgba(22, 63, 176, 0.45) 35%,
      transparent 40%,
      transparent 70%,
      rgba(0, 229, 255, 0.35) 75%,
      rgba(29, 78, 216, 0.25) 80%,
      transparent 85%,
      transparent 100%);
  animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
  0% {
    --border-angle: 0deg;
  }

  100% {
    --border-angle: 360deg;
  }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.skool-cutout {
  position: absolute;
  right: 20px;
  top: -40px;
  width: 320px;
  z-index: 1;
  opacity: 0;
  transform: translateY(120px) scale(0.92);
  will-change: transform, opacity;
  pointer-events: none;
}

.skool-cutout img {
  width: 100%;
  display: block;
  -webkit-mask-image:
    linear-gradient(to bottom, black 0%, black 15%, rgba(0, 0, 0, 0.4) 55%, transparent 72%),
    linear-gradient(to right, transparent 0%, black 15%, black 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, black 0%, black 15%, rgba(0, 0, 0, 0.4) 55%, transparent 72%),
    linear-gradient(to right, transparent 0%, black 15%, black 80%, transparent 100%);
  mask-composite: intersect;
}

.instructor-info {
  position: relative;
  z-index: 2;
  max-width: 62%;
}

.instructor-section-wrap {
  position: relative;
}

@media(max-width:700px) {
  .skool-cutout {
    width: 180px;
    top: -15px;
    right: 10px;
  }

  .instructor-info {
    max-width: 100%;
  }

  .cred-badges {
    flex-wrap: wrap;
  }
}

@media(max-width:480px) {
  .skool-cutout {
    width: 140px;
    top: -10px;
    right: 5px;
  }

  .instructor-info {
    max-width: 100%;
  }

  .instructor-wrap {
    padding: 20px;
  }

  .cred-badges {
    flex-wrap: wrap;
  }
}

.instructor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  border: 2px solid rgba(0, 229, 255, 0.4);
}

.material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  font-size: 18px;
  vertical-align: middle;
}

.instructor-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 2px;
}

.instructor-role {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 0;
}

.instructor-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.instructor-facts li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.instructor-facts li .material-symbols-rounded {
  flex-shrink: 0;
  margin-top: 1px;
}

@media(max-width:560px) {
  .instructor-avatar {
    width: 56px;
    height: 56px;
  }

  .instructor-name {
    font-size: 22px;
  }
}

.slide-item {
  position: relative;
}

.slide-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: #0a1424;
  border-radius: 0 0 13px 13px;
  z-index: 3;
}

.slide-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(8, 8, 24, 0.95), rgba(16, 12, 36, 0.95));
  border: 1px solid rgba(0, 229, 255, 0.45);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 0 12px rgba(0, 229, 255, 0.2);
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
}

.slide-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.03), rgba(22, 63, 176, 0.03), rgba(0, 229, 255, 0.03));
  background-size: 200% 100%;
  animation: badgeGlow 6s ease-in-out infinite;
}

@keyframes badgeGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.slide-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.12) 30%, rgba(0, 229, 255, 0.35) 50%, rgba(0, 229, 255, 0.12) 70%, transparent 100%);
  animation: badgeSweep 20s ease-in-out infinite;
  animation-delay: calc(var(--si, 0) * 0.8s);
}

@keyframes badgeSweep {
  0% {
    left: -120%;
    opacity: 0;
  }

  2% {
    opacity: 1;
  }

  8% {
    left: 140%;
    opacity: 1;
  }

  10% {
    opacity: 0;
  }

  100% {
    left: 140%;
    opacity: 0;
  }
}

.live-reg-widget {
  position: fixed;
  bottom: 90px;
  left: 12px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: 260px;
  width: calc(100vw - 24px);
}

@media(min-width:400px) {
  .live-reg-widget {
    max-width: 280px;
    width: auto;
  }
}

.live-reg-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 8, 20, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(12px);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: none;
}

.live-reg-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.live-reg-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #000;
}

.live-reg-info {
  flex: 1;
  min-width: 0;
}

.live-reg-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-reg-action {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

.live-reg-action span {
  color: var(--cyan);
  font-weight: 600;
}

.live-reg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20e060;
  flex-shrink: 0;
  box-shadow: 0 0 6px #20e060;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

@media(max-width:480px) {
  .live-reg-widget {
    bottom: 80px;
    left: 10px;
  }

  .live-reg-name {
    font-size: 12px;
  }

  .live-reg-action {
    font-size: 10px;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #0a1424;
  border: 1px solid rgba(29, 78, 216, 0.4);
  border-radius: 16px;
  padding: 36px 32px;
  width: min(480px, 100%);
  position: relative;
  box-shadow: 0 0 60px rgba(29, 78, 216, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 80, 80, 0.25);
  color: #fff;
}

.modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(29, 78, 216, 0.12);
  border: 1px solid rgba(29, 78, 216, 0.35);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 5vw, 34px);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.modal-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.modal-input::placeholder {
  color: var(--muted);
}

.modal-submit {
  background: linear-gradient(90deg, #1d4ed8, #4f7fe6, #8fb4f5, #4f7fe6, #1d4ed8);
  background-size: 300% auto;
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  padding: 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  animation: btnShimmer 3s linear infinite;
  transition: transform 0.18s;
  margin-top: 4px;
}

.modal-submit:hover {
  transform: scale(1.02);
}

.modal-legal {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.spots-counter {
  width: min(480px, 100%);
  margin: 20px auto 0;
  background: rgba(10, 20, 36, 0.9);
  border: 1px solid rgba(255, 50, 50, 0.3);
  border-radius: 12px;
  padding: 20px 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 24px rgba(255, 50, 50, 0.08);
}

.spots-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.spots-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.spots-nums {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.05em;
}

.spots-bar-wrap {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}

.spots-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff3355, #1d4ed8, #8fb4f5);
  border-radius: 5px;
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.spots-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  animation: barShine 2s ease-in-out infinite;
}

@keyframes barShine {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.spots-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spots-free {
  font-size: 14px;
  color: #ffaaaa;
  font-weight: 600;
}

.spots-free strong {
  color: #ff5070;
  font-size: 16px;
}

.spots-pct {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.top-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 2, 2, 0.92);
  border-bottom: 1px solid rgba(255, 50, 50, 0.3);
  backdrop-filter: blur(10px);
  height: 34px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: tickerMove 29s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 190, 190, 0.9);
  padding: 0 36px;
  flex-shrink: 0;
}

.ti-dot {
  color: #ff5070;
}

.ti-hot {
  color: var(--orange);
}

.ti-cyan {
  color: var(--cyan);
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

body {
  padding-top: 34px;
}

#hero {
  padding-top: 114px !important;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--cyan);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursorBlink 0.75s step-end infinite;
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.timezone-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0 8px;
  width: 100%;
}

.tz-card {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10, 20, 36, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  transition: border-color 0.2s;
  white-space: nowrap;
}

.tz-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
}

.tz-flag {
  font-size: 16px;
  line-height: 1;
}

.tz-country {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.tz-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--cyan);
  letter-spacing: 0.04em;
}

.tz-note {
  display: none;
}

.es-time-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  background: rgba(26, 8, 0, 0.45);
  border: 1.5px solid rgba(29, 78, 216, 0.5);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(29, 78, 216, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.es-time-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: linear-gradient(115deg,
      transparent 20%,
      rgba(255, 255, 255, 0) 28%,
      rgba(255, 200, 80, 0.7) 33%,
      rgba(255, 255, 180, 1) 35%,
      rgba(255, 200, 80, 0.7) 37%,
      rgba(255, 255, 255, 0) 44%,
      transparent 52%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 200, 80, 0.45) 64%,
      rgba(255, 240, 120, 0.65) 66%,
      rgba(255, 200, 80, 0.45) 68%,
      rgba(255, 255, 255, 0) 74%,
      transparent 100%);
  background-size: 300% 300%;
  animation: esCardShine 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.es-time-card::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: inherit;
  background:
    repeating-linear-gradient(0deg,
      rgba(0, 0, 0, 0.28) 0px, rgba(0, 0, 0, 0.28) 1px,
      transparent 1px, transparent 4px),
    rgba(26, 8, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.es-time-card>* {
  position: relative;
  z-index: 2;
}

@keyframes esCardShine {
  0% {
    background-position: 130% 130%;
  }

  100% {
    background-position: -30% -30%;
  }
}

.es-time-label {
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.es-time-hour {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 10vw, 52px);
  letter-spacing: 0.06em;
  line-height: 1;
  position: relative;
  display: inline-block;
  background:
    repeating-linear-gradient(0deg,
      rgba(0, 0, 0, 0.38) 0px, rgba(0, 0, 0, 0.38) 2px,
      rgba(255, 130, 40, 0.06) 2px, rgba(255, 130, 40, 0.06) 4px),
    linear-gradient(135deg,
      #1d4ed8 0%, #8fb4f5 30%, #8fb4f5 50%, #8fb4f5 70%, #1d4ed8 100%);
  background-size: auto, 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: esHourShimmer 4s ease-in-out infinite, esLcdFlicker 5s step-end infinite;
  filter: drop-shadow(0 0 10px rgba(29, 78, 216, 0.6)) drop-shadow(0 0 24px rgba(29, 78, 216, 0.25));
}

@keyframes esHourShimmer {

  0%,
  100% {
    background-position: auto, 0% center;
  }

  50% {
    background-position: auto, 100% center;
  }
}

@keyframes esLcdFlicker {

  0%,
  88%,
  92%,
  96%,
  100% {
    opacity: 1;
  }

  89%,
  93% {
    opacity: 0.55;
  }

  90% {
    opacity: 1;
  }

  97% {
    opacity: 0.75;
  }
}

.before-after-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.ba-card {
  border-radius: 12px;
  padding: 16px 14px;
  position: relative;
}

.ba-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background-size: 300% 300%;
  pointer-events: none;
  z-index: 0;
}

.ba-card::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 11px;
  pointer-events: none;
  z-index: 1;
}

.ba-card>* {
  position: relative;
  z-index: 2;
}

@keyframes baCardSweep {
  0% {
    background-position: 130% 130%;
  }

  50% {
    background-position: -30% -30%;
  }

  100% {
    background-position: 130% 130%;
  }
}

.ba-card.ba-before {
  background: #1e0404;
  border: 1px solid rgba(255, 50, 50, 0.35);
}

.ba-card.ba-before::before {
  background: linear-gradient(115deg,
      transparent 20%,
      rgba(255, 255, 255, 0) 28%,
      rgba(255, 100, 100, 0.35) 34%,
      rgba(255, 160, 160, 0.55) 36%,
      rgba(255, 100, 100, 0.35) 38%,
      rgba(255, 255, 255, 0) 44%,
      transparent 52%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 100, 100, 0.22) 64%,
      rgba(255, 140, 140, 0.40) 66%,
      rgba(255, 100, 100, 0.22) 68%,
      rgba(255, 255, 255, 0) 74%,
      transparent 100%);
  background-size: 300% 300%;
  animation: baCardSweep 12s ease-in-out infinite;
}

.ba-card.ba-before::after {
  background: #1e0404;
}

.ba-card.ba-after {
  background: #001a08;
  border: 1px solid rgba(0, 200, 80, 0.35);
}

.ba-card.ba-after::before {
  background: linear-gradient(115deg,
      transparent 20%,
      rgba(255, 255, 255, 0) 28%,
      rgba(0, 200, 80, 0.35) 34%,
      rgba(100, 255, 160, 0.55) 36%,
      rgba(0, 200, 80, 0.35) 38%,
      rgba(255, 255, 255, 0) 44%,
      transparent 52%,
      rgba(255, 255, 255, 0) 60%,
      rgba(0, 200, 80, 0.22) 64%,
      rgba(80, 255, 140, 0.40) 66%,
      rgba(0, 200, 80, 0.22) 68%,
      rgba(255, 255, 255, 0) 74%,
      transparent 100%);
  background-size: 300% 300%;
  animation: baCardSweep 12s ease-in-out infinite 6s;
}

.ba-card.ba-after::after {
  background: #001a08;
}

.ba-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
}

.ba-before .ba-label {
  background: rgba(255, 50, 50, 0.15);
  color: #ff7070;
}

.ba-after .ba-label {
  background: rgba(0, 200, 80, 0.12);
  color: #20e060;
}

.ba-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 5vw, 32px);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.ba-before .ba-price {
  color: #ff5060;
  text-decoration: line-through;
  opacity: 0.65;
}

.ba-after .ba-price {
  color: #20e060;
  text-shadow: 0 0 12px rgba(0, 200, 80, 0.4);
}

.ba-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}

.ba-items li {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.3;
}

.ba-before .ba-items li::before {
  content: '✕';
  color: #ff5060;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 11px;
}

.ba-after .ba-items li::before {
  content: '✓';
  color: #20e060;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 11px;
}

.cred-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 12px 0 4px;
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(10, 20, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  line-height: 1;
  transition: color 0.2s, border-color 0.3s;
  position: relative;
  overflow: visible;
  z-index: 1;
  opacity: 0;
  transform: translateX(-16px);
  filter: blur(4px);
}

.cred-badge.revealed {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.68, 0.31, 1), filter 0.6s ease;
}

.cred-badge:nth-child(1).revealed {
  transition-delay: 0s;
}

.cred-badge:nth-child(2).revealed {
  transition-delay: 0.12s;
}

.cred-badge:nth-child(3).revealed {
  transition-delay: 0.24s;
}

.cred-badge:nth-child(4).revealed {
  transition-delay: 0.36s;
}

.cred-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(calc(var(--badge-angle, 0deg) + 90deg),
      rgba(0, 229, 255, 0.06) 0%,
      rgba(22, 63, 176, 0.05) 50%,
      rgba(0, 180, 255, 0.04) 100%);
  animation: badgeFillMove 5s ease-in-out infinite;
  animation-delay: calc(var(--bi, 0) * -1.2s);
  z-index: -1;
}

@keyframes badgeFillMove {
  0% {
    --badge-angle: 0deg;
  }

  100% {
    --badge-angle: 360deg;
  }
}

@property --badge-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.cred-badge::before {
  content: '';
  position: absolute;
  inset: -1px -1px -3px -1px;
  border-radius: 21px;
  background: conic-gradient(from var(--badge-angle, 0deg),
      rgba(0, 229, 255, 0.18) 0%,
      transparent 20%,
      transparent 42%,
      rgba(22, 63, 176, 0.15) 50%,
      transparent 58%,
      transparent 80%,
      rgba(0, 229, 255, 0.18) 100%);
  animation: badgeFillMove 10s linear infinite;
  animation-delay: calc(var(--bi, 0) * -2.5s);
  z-index: -1;
  filter: blur(2px);
  opacity: 0.6;
}

.cred-badge:nth-child(1) {
  --bi: 0;
}

.cred-badge:nth-child(2) {
  --bi: 1;
}

.cred-badge:nth-child(3) {
  --bi: 2;
}

.cred-badge:nth-child(4) {
  --bi: 3;
}

.cred-badge:hover {
  color: var(--text);
}

.cred-badge .cb-icon {
  font-size: 15px;
}

.hero-value-block {
  background: rgba(10, 20, 36, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0 28px;
  width: 100%;
}

.hvb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.hvb-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.hvb-text strong {
  color: var(--white);
}

.capcut-line {
  font-size: 12px;
  color: var(--muted);
  margin: -12px 0 16px;
  letter-spacing: 0.04em;
  font-style: italic;
}

.pre-cta-block {
  background: rgba(255, 50, 50, 0.07);
  border-left: 3px solid rgba(255, 50, 50, 0.5);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 20px 0 24px;
  width: 100%;
}

.pre-cta-block p {
  font-size: 15px;
  color: var(--text);
  margin: 4px 0;
  line-height: 1.5;
}

.pre-cta-block strong {
  color: #ff6060;
}

.strategic-block {
  background: rgba(10, 20, 36, 0.7);
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 24px 0;
  width: 100%;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.strategic-block p {
  margin: 4px 0;
}

.strategic-block strong {
  color: var(--white);
}

.strategic-list {
  list-style: none;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.strategic-list li {
  color: var(--muted);
  font-size: 14px;
}

.error-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

@media(max-width:500px) {
  .error-vs {
    grid-template-columns: 1fr;
  }
}

.ev-col {
  border-radius: 10px;
  padding: 18px 16px;
}

.ev-bad {
  background: rgba(60, 10, 10, 0.5);
  border: 1px solid rgba(255, 50, 50, 0.3);
}

.ev-good {
  background: rgba(0, 40, 20, 0.5);
  border: 1px solid rgba(0, 200, 80, 0.3);
}

.ev-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  display: inline-block;
}

.ev-bad .ev-label {
  background: rgba(255, 50, 50, 0.15);
  color: #ff7070;
}

.ev-good .ev-label {
  background: rgba(0, 200, 80, 0.12);
  color: #20e060;
}

.ev-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ev-col ul li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.ev-bad ul li::before {
  content: '✕';
  color: #ff5060;
  font-weight: 700;
  flex-shrink: 0;
}

.ev-good ul li::before {
  content: '✓';
  color: #20e060;
  font-weight: 700;
  flex-shrink: 0;
}
/* Ocultar contador de registros, toasts en vivo y widget superior (El Salto) */
.top-ticker, .live-reg-widget, .hero-counter { display: none !important; }

/* ===== TEMA Cristal Medianoche: minimal, glass, sin plexus/grid ===== */
#plexus{display:none!important;}
.dark-overlay{display:none!important;}
.global-bg::before{display:none!important;}
body{background:radial-gradient(1100px 760px at 50% -12%,rgba(0,229,255,0.14),transparent 60%),radial-gradient(900px 680px at 112% 6%,rgba(29,78,216,0.13),transparent 58%),radial-gradient(820px 640px at -12% 102%,rgba(0,229,255,0.08),transparent 60%),#040a16 !important;}
.global-bg::after,.glow-r,.glow-b{opacity:.5;filter:blur(46px);}
.bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.tz-card,.es-time-card,.urgencia-box,.hero-value-block,.modal-box,.countdown-block,.cd-unit,.sw-badge,.badge-urgencia,.no-list li,.reality-list li{background:rgba(255,255,255,0.045)!important;border:1px solid rgba(255,255,255,0.09)!important;-webkit-backdrop-filter:blur(13px) saturate(125%);backdrop-filter:blur(13px) saturate(125%);box-shadow:0 10px 38px rgba(0,0,0,0.42)!important;}
.cta-btn{box-shadow:0 12px 44px rgba(29,78,216,0.5)!important;}
/* ============================================================
   LUXURY pass — negro puro, cristal refinado, glows gradiente
   (refs: glass + luz azul/violeta/magenta sangrando bajo cards)
   ============================================================ */
:root{--lux-blue:#00e5ff;--lux-violet:#1d4ed8;--lux-magenta:#f2c84b;}
body{background:
  radial-gradient(1200px 820px at 50% -16%,rgba(0,229,255,0.13),transparent 55%),
  radial-gradient(950px 740px at 108% 14%,rgba(29,78,216,0.13),transparent 55%),
  radial-gradient(950px 760px at -8% 112%,rgba(59,130,255,0.10),transparent 55%),
  #02060e !important;}
.global-bg::after,.glow-r,.glow-b{opacity:.42;filter:blur(60px);}
/* Tarjetas grandes: cristal + glow gradiente debajo */
.bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.urgencia-box,.hero-value-block,.modal-box{
  background:linear-gradient(180deg,rgba(255,255,255,0.055),rgba(255,255,255,0.02))!important;
  border:1px solid rgba(255,255,255,0.08)!important;border-radius:22px!important;
  -webkit-backdrop-filter:blur(20px) saturate(135%);backdrop-filter:blur(20px) saturate(135%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 70px -30px rgba(0,229,255,0.50),
    0 20px 55px -28px rgba(29,78,216,0.45),
    0 14px 46px -26px rgba(59,130,255,0.30)!important;}
/* Elementos pequeños: glass sutil (sin recargar) */
.tz-card,.es-time-card,.countdown-block,.cd-unit,.no-list li,.reality-list li,.sw-badge{
  background:rgba(255,255,255,0.04)!important;border:1px solid rgba(255,255,255,0.07)!important;
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  box-shadow:0 12px 34px -20px rgba(0,229,255,0.35)!important;}
/* CTAs: gradiente azul->violeta->magenta con glow */
.cta-btn,.modal-submit,.sticky-cta{
  background:linear-gradient(100deg,#00e5ff 0%,#1d4ed8 52%,#3b6fe0 100%)!important;color:#fff!important;
  border:1px solid rgba(255,255,255,0.12)!important;
  box-shadow:0 16px 52px -14px rgba(29,78,216,0.60),0 6px 20px -8px rgba(59,130,255,0.40)!important;}
.golden-ticket{box-shadow:0 24px 72px -22px rgba(29,78,216,0.55)!important;}
.bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.urgencia-box,.hero-value-block,.modal-box{
  position:relative;
  background:linear-gradient(180deg,rgba(255,255,255,0.06),rgba(255,255,255,0.015))!important;
  border:1px solid rgba(255,255,255,0.10)!important;border-radius:20px!important;
  -webkit-backdrop-filter:blur(26px) saturate(140%);backdrop-filter:blur(26px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 22px 48px -22px rgba(0,229,255,0.22),
    inset 0 -26px 56px -28px rgba(29,78,216,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 10px 26px rgba(0,0,0,0.28)!important;
}
.tz-card,.es-time-card,.countdown-block,.cd-unit,.sw-badge,.no-list li,.reality-list li{
  background:rgba(255,255,255,0.05)!important;border:1px solid rgba(255,255,255,0.09)!important;
  -webkit-backdrop-filter:blur(18px) saturate(135%);backdrop-filter:blur(18px) saturate(135%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 12px 28px -16px rgba(0,229,255,0.18),
    0 6px 16px rgba(0,0,0,0.25)!important;
}
#hero h1{font-size:clamp(40px,6.6vw,72px)!important;line-height:1.04!important;letter-spacing:-.02em!important;text-transform:uppercase;}
#hero h1 .l1{font-size:.40em!important;white-space:normal!important;font-weight:600!important;letter-spacing:0!important;line-height:1.12!important;opacity:.9;}
#hero h1 .l2{line-height:1.0!important;}
#hero h1 .l2 span.l2-inner{filter:drop-shadow(0 0 16px rgba(0,229,255,.38))!important;letter-spacing:-.01em;}
.l3-inner{filter:drop-shadow(0 0 14px rgba(29,78,216,.30))!important;}
.h2,h2{letter-spacing:-.02em;}
#hero h1, h2, .h2 { text-transform: none !important; }
#hero h1 .l1{color:#fff!important;-webkit-text-fill-color:#fff!important;opacity:.95;}
#hero h1 .l2 span.l2-inner{background:linear-gradient(100deg,#00e5ff,#00e5ff 52%,#1d4ed8)!important;-webkit-background-clip:text!important;background-clip:text!important;-webkit-text-fill-color:transparent!important;filter:none!important;}
#hero h1 .l3 .l3-inner{background:none!important;-webkit-text-fill-color:#fff!important;color:#fff!important;filter:none!important;}
#hero h1 .l3 .l3-dollar{-webkit-text-fill-color:#1d4ed8!important;filter:none!important;}
.cta-btn,.modal-submit,.sticky-cta{background:#fff!important;color:#05060a!important;border:1px solid rgba(255,255,255,.9)!important;box-shadow:0 10px 34px -12px rgba(255,255,255,.40)!important;}
.cta-btn:hover,.modal-submit:hover,.sticky-cta:hover{transform:translateY(-2px);box-shadow:0 16px 46px -12px rgba(255,255,255,.55)!important;}
:root{--bg:#040a16;--bg-2:#02060e;--cyan:#00e5ff;--purple:#1d4ed8;--gold:#f2c84b;--text:#ffffff;--text-dim:#8b93a7;--border:rgba(255,255,255,0.08);}
body{background:radial-gradient(circle at 50% 0%, #0a1424, #02060e) !important;}
#plexus{display:none !important;}
h1,h2,#hero h1{font-family:'Bebas Neue',sans-serif !important;text-transform:uppercase !important;letter-spacing:1px !important;line-height:.95 !important;}
#hero h1{font-size:clamp(58px,8.2vw,108px) !important;}
#hero h1 .l1{color:#fff !important;-webkit-text-fill-color:#fff !important;font-size:.42em !important;white-space:normal !important;opacity:.92;letter-spacing:1px !important;}
#hero h1 .l2 span.l2-inner,#hero h1 .l3 .l3-inner,#hero h1 .l3 .l3-dollar,.grad,.nc,.np,.ng,.gold-t{background:linear-gradient(110deg,#00e5ff,#1d4ed8 55%,#f2c84b) !important;-webkit-background-clip:text !important;background-clip:text !important;-webkit-text-fill-color:transparent !important;color:transparent !important;filter:drop-shadow(0 0 30px rgba(29,78,216,0.45)) !important;}
.tag,.eyebrow,.badge-urgencia,.imp-title,.vid-tag{font-family:'JetBrains Mono',monospace !important;text-transform:uppercase !important;letter-spacing:2px !important;font-size:12px !important;font-weight:500 !important;}
.bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.urgencia-box,.hero-value-block,.modal-box,.tz-card,.es-time-card,.quote,.no-list li,.reality-list li{background:rgba(255,255,255,0.03) !important;-webkit-backdrop-filter:blur(24px) !important;backdrop-filter:blur(24px) !important;border:1px solid rgba(255,255,255,0.08) !important;border-radius:20px !important;box-shadow:0 20px 60px rgba(0,0,0,0.45) !important;position:relative;transition:transform .25s ease, box-shadow .25s ease;}
.bono-card::after,.logro-item::after,.hero-value-block::after,.urgencia-box::after,.modal-box::after{content:'';position:absolute;bottom:-30px;left:50%;transform:translateX(-50%);width:60%;height:80px;z-index:-1;pointer-events:none;background:radial-gradient(ellipse at center, rgba(29,78,216,0.55), rgba(0,229,255,0.3), transparent 70%);filter:blur(45px);}
.logro-item::after{background:radial-gradient(ellipse at center, rgba(0,229,255,0.5), rgba(29,78,216,0.25), transparent 70%) !important;}
.quote::after,.endclass .box::after{content:'';position:absolute;bottom:-30px;left:50%;transform:translateX(-50%);width:60%;height:80px;z-index:-1;pointer-events:none;background:radial-gradient(ellipse at center, rgba(59,130,255,0.45), rgba(29,78,216,0.25), transparent 70%);filter:blur(45px);}
.bono-card:hover,.logro-item:hover,.acc-item:hover,.instructor-wrap:hover{transform:translateY(-4px);}
.bono-icon,.logro-icon{width:48px !important;height:48px !important;border-radius:50% !important;background:rgba(255,255,255,0.06) !important;border:1px solid rgba(255,255,255,0.1) !important;display:flex !important;align-items:center;justify-content:center;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);font-size:22px !important;}
.cta-btn,.modal-submit,.sticky-cta{background:linear-gradient(135deg,#00e5ff,#1d4ed8) !important;color:#fff !important;border:none !important;border-radius:999px !important;text-transform:uppercase;letter-spacing:.5px;white-space:nowrap;box-shadow:0 8px 40px rgba(29,78,216,0.45) !important;}
.cta-btn:hover,.modal-submit:hover,.sticky-cta:hover{transform:translateY(-2px);box-shadow:0 12px 56px rgba(0,229,255,0.5) !important;}
.container{max-width:1100px !important;}
#hero .container{display:block !important;text-align:left;}
.hero-grid{display:grid;grid-template-columns:1.1fr 0.9fr;gap:60px;align-items:center;width:100%;}
.hero-left{display:flex;flex-direction:column;align-items:flex-start;}
.hero-visual{position:relative;display:flex;justify-content:center;}
.hero-visual .hero-glow{position:absolute;inset:-12%;z-index:-1;background:radial-gradient(circle at 50% 45%, rgba(0,229,255,0.5), rgba(29,78,216,0.4) 45%, transparent 70%);filter:blur(100px);opacity:.5;}
.hero-card{width:100%;max-width:380px;padding:28px;border-radius:24px;background:rgba(255,255,255,0.04) !important;border:1px solid rgba(255,255,255,0.1) !important;-webkit-backdrop-filter:blur(24px);backdrop-filter:blur(24px);box-shadow:0 30px 80px rgba(0,0,0,0.5);}
.hc-top{display:flex;justify-content:space-between;align-items:center;font-family:'JetBrains Mono',monospace;font-size:10.5px;letter-spacing:2px;text-transform:uppercase;color:#8b93a7;}
.hc-live{color:#ff5c6c;}
.hc-date{display:flex;align-items:center;gap:16px;margin:20px 0 22px;}
.hc-day{font-family:'Bebas Neue',sans-serif;font-size:74px;line-height:.8;background:linear-gradient(110deg,#00e5ff,#1d4ed8 55%,#f2c84b);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;}
.hc-mon{font-family:'Bebas Neue',sans-serif;font-size:26px;letter-spacing:2px;color:#fff;line-height:1;}
.hc-time{font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:1px;color:#8b93a7;margin-top:5px;}
.hc-row{display:flex;justify-content:space-between;align-items:center;padding:12px 0;border-top:1px solid rgba(255,255,255,0.07);font-family:'Rajdhani',sans-serif;font-size:15px;color:#8b93a7;}
.hc-row b{color:#fff;font-weight:600;}
.hc-free{color:#f2c84b !important;}
.hc-foot{margin-top:16px;font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:#8b93a7;text-align:center;}
@media(max-width:860px){.hero-grid{grid-template-columns:1fr;gap:40px;}.hero-card{margin:0 auto;}}
:root{--text:#ffffff;--text-dim:#aab2c4;--muted:#aab2c4;}
body{background:radial-gradient(circle at 50% 0%, #060b16, #010207) !important;}
.glow-r,.glow-b{opacity:.20 !important;}
.global-bg::after{opacity:.18 !important;}
.hero-visual .hero-glow{opacity:.4 !important;}
h1,h2,.h2,#hero h1,#hero h1 .l1,#hero h1 .l2 span.l2-inner{background:none !important;background-image:none !important;-webkit-text-fill-color:#fff !important;color:#fff !important;text-shadow:0 0 24px rgba(255,255,255,0.22) !important;filter:none !important;}
.nc,.np,.ng,.grad,.gold-t,#hero h1 .l3 .l3-inner,#hero h1 .l3 .l3-dollar,.hc-day,.quote blockquote em{background:none !important;background-image:none !important;-webkit-text-fill-color:#3b82ff !important;color:#3b82ff !important;text-shadow:0 0 24px rgba(59,130,255,0.35) !important;filter:none !important;}
.cta-btn,.modal-submit,.sticky-cta{background:linear-gradient(180deg,#3b82ff,#1d5fe0) !important;color:#fff !important;border:1px solid rgba(120,170,255,0.5) !important;border-radius:999px !important;box-shadow:0 0 28px rgba(59,130,255,0.55), 0 8px 32px rgba(0,0,0,0.5) !important;}
.cta-btn:hover,.modal-submit:hover,.sticky-cta:hover{box-shadow:0 0 44px rgba(59,130,255,0.8), 0 10px 40px rgba(0,0,0,0.5) !important;}
.cta-btn,.modal-submit,.sticky-cta,.hero-card,.instructor-wrap,.sw-badge{position:relative;}
.cta-btn::before,.modal-submit::before,.sticky-cta::before,.hero-card::before,.instructor-wrap::before,.sw-badge::before{content:'';position:absolute;inset:-1px;border-radius:inherit;padding:1px;background:linear-gradient(130deg,#3b82ff,#1d4ed8,#3b82ff);filter:blur(14px);opacity:.6;z-index:-1;pointer-events:none;}
.reality-list li{color:#dfe4ee !important;}
.reality-list li b{color:#fff !important;}
.hero-sub,.section__sub,.date-sub,.bono-sub,.lead,.intro,.hvb-text{color:#aab2c4 !important;}
.hero-sub em,.hero-sub strong,.hvb-text strong{color:#ffffff !important;}
#hero{position:relative;overflow:visible;}
#hero .container{position:relative;z-index:1;}
.instructor-section-wrap{position:relative;}
.instructor-section-wrap .instructor-wrap{position:relative;z-index:1;}
.orb{position:absolute;border-radius:50% !important;filter:blur(130px) !important;opacity:.26 !important;z-index:0 !important;pointer-events:none;background-image:none !important;}
.orb-blue{background:#2f6bff !important;width:520px;height:520px;}
.orb-purple{background:#1d4ed8 !important;width:460px;height:460px;}
.hero-orb{top:-60px;left:-150px;}
.bio-orb{top:-30px;right:-50px;}
.hero-card{background:rgba(255,255,255,0.035) !important;background-image:none !important;-webkit-backdrop-filter:blur(30px) saturate(140%) !important;backdrop-filter:blur(30px) saturate(140%) !important;border:1px solid rgba(255,255,255,0.10) !important;border-radius:24px !important;box-shadow:0 24px 70px rgba(0,0,0,0.5) !important;position:relative !important;z-index:1 !important;overflow:visible !important;}
.hero-card::before{display:none !important;}
.instructor-wrap{overflow:visible !important;}
.instructor-wrap::before{display:none !important;}
.hero-visual{position:relative;overflow:visible;}
.hero-visual .hero-glow{background:#1d4ed8 !important;background-image:none !important;border-radius:50% !important;filter:blur(130px) !important;opacity:.34 !important;inset:auto !important;left:auto !important;bottom:auto !important;width:430px !important;height:430px !important;top:-30px !important;right:-70px !important;z-index:0 !important;}
.global-bg{overflow:visible !important;}
.global-bg .glow-r{background:#2f6bff !important;background-image:none !important;border-radius:50% !important;filter:blur(130px) !important;opacity:.20 !important;}
.global-bg .glow-b{background:#1d4ed8 !important;background-image:none !important;border-radius:50% !important;filter:blur(130px) !important;opacity:.20 !important;}
body{background:radial-gradient(circle at 50% 0%, #050a14, #02040a) !important;}
.orb-sunrise{position:absolute;z-index:0;pointer-events:none;opacity:.7;}
.orb-sunrise::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 55% at 50% 40%, rgba(59,130,255,0.55), rgba(14,42,107,0.30) 45%, transparent 72%);filter:blur(60px);}
.orb-sunrise::after{content:'';position:absolute;top:32%;left:50%;transform:translateX(-50%);width:65%;height:90px;background:radial-gradient(ellipse at 50% 0%, rgba(188,216,255,0.9), rgba(59,130,255,0.4) 35%, transparent 65%);border-radius:50%;filter:blur(10px);}
.hero-sunrise{width:1100px;height:700px;top:-130px;left:-160px;opacity:.7;}
.card-orb{width:600px;height:500px;top:50%;left:56%;transform:translate(-50%,-50%);opacity:.6;}
.dot-grid{position:absolute;inset:0;z-index:0;pointer-events:none;background-image:radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);background-size:22px 22px;-webkit-mask-image:radial-gradient(ellipse at center, #000 40%, transparent 75%);mask-image:radial-gradient(ellipse at center, #000 40%, transparent 75%);}
.hero-sunrise{display:none !important;}
body{background:radial-gradient(circle at 50% 0%, #03060d, #010206) !important;}
.orb-sunrise::before{background:radial-gradient(ellipse 60% 55% at 50% 40%, rgba(23,63,176,0.42), rgba(8,24,64,0.30) 45%, transparent 72%) !important;filter:blur(60px) !important;}
.orb-sunrise::after{background:radial-gradient(ellipse at 50% 0%, rgba(110,150,225,0.50), rgba(29,78,216,0.30) 35%, transparent 65%) !important;}
.card-orb{opacity:.45 !important;}
.global-bg .glow-r{background:#143a9e !important;opacity:.15 !important;}
.global-bg .glow-b{background:#102a70 !important;opacity:.15 !important;}
.hero-visual .hero-glow{opacity:.26 !important;}
.global-bg::before{content:'' !important;display:block !important;position:absolute;inset:0;background-image:linear-gradient(rgba(59,130,255,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(59,130,255,0.05) 1px,transparent 1px) !important;background-size:42px 42px !important;-webkit-mask-image:radial-gradient(ellipse 78% 60% at 50% 22%, #000 0%, transparent 78%);mask-image:radial-gradient(ellipse 78% 60% at 50% 22%, #000 0%, transparent 78%);opacity:.85;}
.divider{position:relative;height:1px !important;max-width:1100px;margin:46px auto !important;border:0 !important;background:linear-gradient(90deg, transparent, rgba(59,130,255,0.5) 50%, transparent) !important;overflow:visible;}
.divider::after{content:'';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:360px;height:80px;background:radial-gradient(ellipse at center, rgba(59,130,255,0.24), transparent 70%);filter:blur(28px);pointer-events:none;z-index:-1;}
#cta-final{position:relative;}
#cta-final > *{position:relative;z-index:1;}
#cta-final::before{content:'';position:absolute;inset:0;z-index:0;pointer-events:none;background-image:repeating-linear-gradient(90deg, rgba(120,170,255,0.10) 0, rgba(120,170,255,0.10) 2px, transparent 2px, transparent 24px), radial-gradient(ellipse 45% 55% at 50% 42%, rgba(59,130,255,0.32), rgba(29,78,216,0.10) 45%, transparent 72%);-webkit-mask-image:radial-gradient(ellipse 72% 88% at 50% 45%, #000 22%, transparent 80%);mask-image:radial-gradient(ellipse 72% 88% at 50% 45%, #000 22%, transparent 80%);}
#social{position:relative;}
#social > *{position:relative;z-index:1;}
#social::after{content:'';position:absolute;bottom:-70px;right:-70px;width:300px;height:300px;z-index:0;pointer-events:none;background-repeat:no-repeat;background-size:contain;transform:rotate(-16deg);filter:drop-shadow(0 0 16px rgba(59,130,255,0.45));opacity:.8;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none'%3E%3Crect x='3' y='3' width='294' height='294' rx='34' stroke='%233b82ff' stroke-opacity='0.16' stroke-width='2'/%3E%3Crect x='35' y='35' width='230' height='230' rx='30' stroke='%233b82ff' stroke-opacity='0.26' stroke-width='2'/%3E%3Crect x='67' y='67' width='166' height='166' rx='26' stroke='%233b82ff' stroke-opacity='0.42' stroke-width='2'/%3E%3Crect x='99' y='99' width='102' height='102' rx='22' stroke='%2378b0ff' stroke-opacity='0.62' stroke-width='2'/%3E%3Crect x='128' y='128' width='44' height='44' rx='16' stroke='%23bcd8ff' stroke-opacity='0.85' stroke-width='2'/%3E%3C/svg%3E");}
#social::after{content:none !important;}
#cta-final::before{content:'' !important;position:absolute;inset:-6%;z-index:0;pointer-events:none;background-image:repeating-linear-gradient(90deg, rgba(130,175,255,0.12) 0, rgba(130,175,255,0.12) 3px, transparent 3px, transparent 34px), radial-gradient(48% 58% at 50% 42%, rgba(59,130,255,0.30), rgba(29,78,216,0.10) 50%, transparent 74%) !important;-webkit-mask-image:radial-gradient(ellipse 72% 85% at 50% 46%, #000 20%, transparent 82%) !important;mask-image:radial-gradient(ellipse 72% 85% at 50% 46%, #000 20%, transparent 82%) !important;filter:blur(16px) !important;}
#cta-final::before{content:none !important;}
#cta-final,.cta-final{position:relative;overflow:visible;padding-block:160px !important;text-align:center;}
.cta-final .cta-orb{position:absolute !important;z-index:0 !important;width:900px;height:600px;top:50%;left:50%;transform:translate(-50%,-50%);opacity:.5;}
.cta-final .cta-inner{position:relative;z-index:1;max-width:760px;margin:0 auto;padding:0 24px;text-align:center;}
.cta-kicker{font-family:'JetBrains Mono',monospace;font-size:13px;letter-spacing:3px;text-transform:uppercase;color:#3b82ff;display:block;margin-bottom:28px;}
.cta-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(48px,7vw,96px);line-height:.95;color:#fff !important;-webkit-text-fill-color:#fff !important;letter-spacing:1px;margin:0 0 24px;text-shadow:0 0 30px rgba(255,255,255,0.18);text-transform:none !important;background:none !important;}
.cta-title .hl{color:#3b82ff !important;-webkit-text-fill-color:#3b82ff !important;background:none !important;text-shadow:0 0 24px rgba(59,130,255,0.35);}
.cta-final .cta-sub{font-family:'Rajdhani',sans-serif;font-size:clamp(18px,2.2vw,22px);font-weight:500;color:#aab2c4 !important;margin:0 0 48px;}
.btn-glass{display:inline-block;font-family:'Rajdhani',sans-serif;font-weight:700;font-size:clamp(16px,2vw,20px);text-transform:uppercase;letter-spacing:.5px;color:#fff;padding:22px 56px;border-radius:999px;background:rgba(59,130,255,0.12);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);border:1px solid rgba(120,170,255,0.45);box-shadow:0 0 34px rgba(59,130,255,0.40), inset 0 0 22px rgba(59,130,255,0.10);transition:transform .25s, box-shadow .25s, background .25s;}
.btn-glass:hover{transform:translateY(-3px);background:rgba(59,130,255,0.20);box-shadow:0 0 52px rgba(59,130,255,0.70), inset 0 0 26px rgba(59,130,255,0.15);}
.cta-final .cta-micro{font-family:'Rajdhani',sans-serif;font-size:15px;color:#8b93a7 !important;margin-top:32px;display:block;}
@media(max-width:760px){#cta-final,.cta-final{padding-block:100px !important;}.cta-title{font-size:clamp(40px,11vw,64px) !important;}.cta-final .cta-orb{width:560px;height:420px;}}
#hero .hero-heading{display:flex;flex-direction:column;align-items:flex-start;text-align:left;margin-bottom:4px;}
#hero .event-name{display:inline-block;font-family:'Bebas Neue',sans-serif;font-size:clamp(28px,3.4vw,44px);letter-spacing:4px;color:#3b82ff;-webkit-text-fill-color:#3b82ff;text-shadow:0 0 28px rgba(59,130,255,0.6);margin-bottom:14px;line-height:1;background:none;}
#hero .hero-setup{display:block;font-family:'Bebas Neue',sans-serif;font-size:clamp(22px,2.6vw,36px);letter-spacing:1px;line-height:1.05;color:#fff;-webkit-text-fill-color:#fff;max-width:16ch;text-wrap:balance;margin-bottom:8px;text-shadow:none;background:none;}
#hero h1.hero-title{font-family:'Bebas Neue',sans-serif !important;font-size:clamp(56px,8.5vw,132px) !important;line-height:0.9 !important;letter-spacing:1px !important;color:#fff !important;-webkit-text-fill-color:#fff !important;text-shadow:0 0 32px rgba(255,255,255,0.18) !important;margin:0 !important;text-wrap:balance;text-transform:none !important;background:none !important;}
#hero h1.hero-title .hl{color:#3b82ff !important;-webkit-text-fill-color:#3b82ff !important;background:none !important;text-shadow:0 0 24px rgba(59,130,255,0.35) !important;}
.hero-grid{align-items:start !important;}
.hero-visual .hero-card{margin-top:110px;}
@media(max-width:860px){.hero-visual .hero-card{margin-top:0 !important;}}
@media (prefers-reduced-motion: reduce){*,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important;}}
a:focus-visible,button:focus-visible,input:focus-visible,.cta-btn:focus-visible,.btn-glass:focus-visible,.modal-submit:focus-visible,.sticky-cta:focus-visible,.acc-header:focus-visible{outline:2px solid #3b82ff !important;outline-offset:3px !important;}
:root{--bg:#02040a;--surface:rgba(255,255,255,0.04);--border:rgba(255,255,255,0.10);--text:#ffffff;--text-dim:#aab2c4;--text-faint:#8b93a7;--blue-bright:#3b82ff;--blue:#1d4ed8;--blue-deep:#0e2a6b;--blue-flash:#bcd8ff;--radius:20px;--radius-sm:12px;--tdur:200ms;}
.bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.urgencia-box,.hero-value-block,.quote,.modal-box{border-radius:20px !important;background:rgba(255,255,255,0.04) !important;border:1px solid rgba(255,255,255,0.10) !important;-webkit-backdrop-filter:blur(26px) saturate(135%) !important;backdrop-filter:blur(26px) saturate(135%) !important;box-shadow:inset 0 1px 0 rgba(255,255,255,0.10), inset 0 20px 46px -22px rgba(59,130,255,0.20), 0 18px 50px -24px rgba(0,0,0,0.5) !important;}
.bono-icon,.logro-icon{width:48px !important;height:48px !important;border-radius:50% !important;display:flex !important;align-items:center;justify-content:center;background:rgba(255,255,255,0.06) !important;border:1px solid rgba(255,255,255,0.10) !important;font-size:22px !important;line-height:1 !important;flex:none;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);}
.cta-btn,.btn-glass,.modal-submit,.sticky-cta,.bono-card,.logro-item,.acc-item,.instructor-wrap,.sw-badge,.learn,.date-item{transition-duration:200ms !important;}
.cta-btn:hover,.bono-card:hover,.logro-item:hover,.acc-item:hover,.instructor-wrap:hover,.date-item:hover{transform:translateY(-4px);}
.bono-icon svg{width:24px;height:24px;stroke:#cfe0ff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
#hero .event-name{font-size:clamp(30px,3.6vw,54px) !important;letter-spacing:5px !important;}
#hero .hero-setup{font-size:clamp(20px,2.2vw,32px) !important;max-width:14ch !important;}
#hero h1.hero-title{font-size:clamp(40px,5vw,80px) !important;line-height:0.92 !important;}
#hero .event-name{font-size:clamp(34px,4.2vw,60px) !important;letter-spacing:6px !important;}
#hero .hero-setup{font-size:clamp(20px,2.2vw,30px) !important;max-width:18ch !important;}
#hero h1.hero-title{font-size:clamp(38px,4.6vw,72px) !important;line-height:0.92 !important;}
#hero .hero-event{display:block;font-family:'Bebas Neue',sans-serif;font-weight:400;font-size:clamp(26px,3vw,46px);letter-spacing:4px;text-transform:uppercase;color:#3b82ff;-webkit-text-fill-color:#3b82ff;text-shadow:0 0 26px rgba(59,130,255,0.55);margin:0 0 12px;line-height:1;background:none;}
#hero .hero-h1{font-family:'Bebas Neue',sans-serif;font-weight:400;font-size:clamp(40px,5vw,68px);line-height:0.96;letter-spacing:1px;text-transform:uppercase;color:#fff;-webkit-text-fill-color:#fff;margin:0;text-wrap:balance;background:none;text-shadow:0 0 32px rgba(255,255,255,0.14);}
#hero .hero-h1 .x10{color:#3b82ff;-webkit-text-fill-color:#3b82ff;text-shadow:0 0 30px rgba(59,130,255,0.5);background:none;}
#hero .hero-event{font-size:clamp(54px,7.5vw,112px) !important;letter-spacing:4px !important;line-height:0.95 !important;margin:0 0 16px !important;}
#hero .hero-h1{font-family:'Rajdhani',sans-serif !important;font-weight:600 !important;font-size:clamp(20px,2.4vw,34px) !important;line-height:1.3 !important;letter-spacing:0.2px !important;text-transform:none !important;color:#ffffff !important;-webkit-text-fill-color:#ffffff !important;text-shadow:none !important;max-width:28ch !important;text-wrap:balance !important;}
#hero .hero-h1 .x10{color:#3b82ff !important;-webkit-text-fill-color:#3b82ff !important;font-weight:700 !important;text-shadow:0 0 22px rgba(59,130,255,0.4) !important;}
.liquid-waves{position:absolute;inset:-12%;pointer-events:none;background:radial-gradient(70% 45% at 50% 110%, rgba(70,140,255,0.55), rgba(29,78,216,0.22) 40%, transparent 70%),radial-gradient(55% 40% at 88% 78%, rgba(59,130,255,0.30), transparent 62%),radial-gradient(45% 35% at 16% 92%, rgba(37,99,235,0.26), transparent 60%),radial-gradient(62% 52% at 96% 16%, rgba(29,78,216,0.14), transparent 66%);filter:blur(64px) saturate(125%);}
.liquid-waves::before{content:'';position:absolute;inset:-8%;background:linear-gradient(108deg, transparent 34%, rgba(120,180,255,0.16) 47%, transparent 60%),linear-gradient(72deg, transparent 42%, rgba(59,130,255,0.12) 54%, transparent 66%);filter:blur(50px);animation:lwDrift 30s ease-in-out infinite alternate;}
.liquid-waves::after{content:'';position:absolute;left:50%;bottom:-4%;transform:translateX(-50%);width:122%;height:42%;background:radial-gradient(ellipse at 50% 100%, rgba(150,200,255,0.5), rgba(59,130,255,0.20) 38%, transparent 70%);filter:blur(34px);animation:lwPulse 18s ease-in-out infinite alternate;}
@keyframes lwDrift{0%{transform:translate3d(-3%,1%,0) rotate(0deg);}100%{transform:translate3d(3%,-2%,0) rotate(2.5deg);}}
@keyframes lwPulse{0%{opacity:.6;transform:translateX(-50%) scaleY(1);}100%{opacity:1;transform:translateX(-51%) scaleY(1.1);}}
@media (prefers-reduced-motion: reduce){.liquid-waves::before,.liquid-waves::after{animation:none !important;}}
.god-rays{position:absolute;top:-15%;right:-8%;width:72%;height:118%;pointer-events:none;mix-blend-mode:screen;background:linear-gradient(-118deg, transparent 44%, rgba(190,215,255,0.10) 48%, transparent 53%),linear-gradient(-124deg, transparent 54%, rgba(150,185,255,0.07) 58%, transparent 63%),linear-gradient(-112deg, transparent 36%, rgba(210,228,255,0.06) 40%, transparent 45%);filter:blur(6px);-webkit-mask-image:radial-gradient(62% 72% at 86% 4%, #000 0%, transparent 72%);mask-image:radial-gradient(62% 72% at 86% 4%, #000 0%, transparent 72%);}
.liquid-waves{background:radial-gradient(70% 45% at 50% 110%, rgba(60,120,235,0.40), rgba(20,50,150,0.18) 40%, transparent 70%),radial-gradient(55% 40% at 88% 80%, rgba(45,100,220,0.22), transparent 62%),radial-gradient(45% 35% at 16% 94%, rgba(30,80,200,0.18), transparent 60%),radial-gradient(62% 52% at 96% 14%, rgba(29,78,216,0.10), transparent 66%) !important;filter:blur(70px) saturate(115%) !important;}
.liquid-waves::after{background:radial-gradient(ellipse at 50% 100%, rgba(130,180,255,0.38), rgba(59,130,255,0.15) 38%, transparent 70%) !important;}
.bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.urgencia-box,.hero-value-block,.quote,.modal-box{background:linear-gradient(180deg, rgba(22,30,52,0.52), rgba(8,12,24,0.55)) !important;border:1px solid rgba(255,255,255,0.08) !important;box-shadow:inset 0 1px 0 rgba(255,255,255,0.10), 0 26px 60px -30px rgba(0,0,0,0.75) !important;}
.leap-section{position:relative;padding:48px 0 30px;}
.leap-wrap{position:relative;max-width:640px;margin:0 auto;}
.leap-wrap::before{content:'';position:absolute;inset:-12% -10%;background:radial-gradient(54% 54% at 50% 52%, rgba(59,130,255,0.30), rgba(29,78,216,0.12) 45%, transparent 72%);filter:blur(64px);z-index:0;pointer-events:none;}
.leap-img{position:relative;z-index:1;display:block;width:100%;height:auto;border-radius:22px;-webkit-mask-image:radial-gradient(125% 125% at 50% 46%, #000 58%, transparent 100%);mask-image:radial-gradient(125% 125% at 50% 46%, #000 58%, transparent 100%);animation:leapFloat 7s ease-in-out infinite alternate;}
@keyframes leapFloat{0%{transform:translateY(0);}100%{transform:translateY(-10px);}}
@media (prefers-reduced-motion: reduce){.leap-img{animation:none !important;}}
@media(max-width:600px){.leap-wrap{max-width:100%;}.leap-section{padding:32px 0 20px;}}
.hero-visual{flex-direction:column !important;align-items:center !important;}
.hero-leap{position:relative;width:100%;max-width:380px;margin-top:20px;}
.hero-leap::before{content:'';position:absolute;inset:4% 6% 9%;background:radial-gradient(58% 56% at 52% 50%, rgba(59,130,255,0.26), transparent 72%);filter:blur(50px);z-index:0;pointer-events:none;}
.leap-img{position:relative;z-index:1;display:block;width:100%;height:auto;border-radius:0 !important;-webkit-mask-image:radial-gradient(73% 73% at 50% 47%, #000 26%, rgba(0,0,0,0.4) 60%, transparent 80%);mask-image:radial-gradient(73% 73% at 50% 47%, #000 26%, rgba(0,0,0,0.4) 60%, transparent 80%);animation:leapFloat 7s ease-in-out infinite alternate;}
@media(max-width:860px){.hero-leap{max-width:340px;margin:18px auto 0;}}
.hero-visual .hero-card{margin-top:0 !important;}
.hero-leap{position:relative;width:100%;max-width:420px;margin:0 auto 16px;}
.hero-leap::before{content:'';position:absolute;inset:6% 6% 12%;background:radial-gradient(56% 54% at 52% 50%, rgba(59,130,255,0.24), transparent 72%);filter:blur(54px);z-index:0;pointer-events:none;}
.leap-img{position:relative;z-index:1;display:block;width:100%;height:auto;border-radius:0 !important;-webkit-mask-image:radial-gradient(ellipse 94% 82% at 50% 49%, #000 68%, rgba(0,0,0,0.4) 88%, transparent 100%) !important;mask-image:radial-gradient(ellipse 94% 82% at 50% 49%, #000 68%, rgba(0,0,0,0.4) 88%, transparent 100%) !important;animation:leapFloat 7s ease-in-out infinite alternate;}
.hc-live{color:#ff5c6c !important;font-weight:700 !important;letter-spacing:1.5px !important;display:inline-flex !important;align-items:center;gap:6px;text-shadow:0 0 12px rgba(255,92,108,0.55);}
.live-dot{width:8px;height:8px;border-radius:50%;background:#ff3b4e;box-shadow:0 0 9px rgba(255,59,78,0.95);display:inline-block;flex:none;animation:liveBlink 3.4s steps(1,end) infinite;}
@keyframes liveBlink{0%,7%{opacity:1}9%,12%{opacity:.15}14%,45%{opacity:1}47%,51%{opacity:.2}53%,70%{opacity:1}72%,75%{opacity:.15}77%,89%{opacity:1}91%,94%{opacity:.25}96%,100%{opacity:1}}
.hc-foot{color:#aab2c4 !important;font-weight:600 !important;font-size:10.5px !important;}
.hc-foot strong{color:#ff5c6c !important;font-weight:800 !important;text-shadow:0 0 10px rgba(255,92,108,0.45);}
.hc-day{font-size:88px !important;background:linear-gradient(120deg,#7db0ff,#3b82ff 55%,#bcd8ff) !important;background-image:linear-gradient(120deg,#7db0ff,#3b82ff 55%,#bcd8ff) !important;-webkit-background-clip:text !important;background-clip:text !important;-webkit-text-fill-color:transparent !important;color:transparent !important;text-shadow:none !important;filter:drop-shadow(0 0 22px rgba(59,130,255,0.6)) !important;animation:dayPulse 2.8s ease-in-out infinite;}
@keyframes dayPulse{0%,100%{filter:drop-shadow(0 0 16px rgba(59,130,255,0.5))}50%{filter:drop-shadow(0 0 34px rgba(59,130,255,0.9))}}
.hc-mon{font-size:32px !important;font-weight:700 !important;color:#fff !important;text-shadow:0 0 16px rgba(255,255,255,0.18);}
@media (prefers-reduced-motion: reduce){.live-dot,.hc-day,.leap-img{animation:none !important;}}
body{background:radial-gradient(circle at 50% 0%, #03060d, #000103) !important;}
.liquid-waves{background:radial-gradient(72% 46% at 50% 112%, rgba(40,90,200,0.20), rgba(15,40,120,0.10) 42%, transparent 72%),radial-gradient(55% 40% at 88% 82%, rgba(35,85,190,0.12), transparent 64%),radial-gradient(48% 36% at 14% 95%, rgba(28,70,180,0.10), transparent 62%) !important;filter:blur(82px) saturate(108%) !important;}
.liquid-waves::after{background:radial-gradient(ellipse at 50% 100%, rgba(90,150,255,0.17), rgba(40,90,200,0.07) 40%, transparent 72%) !important;}
.god-rays{opacity:.5 !important;}
.global-bg .glow-r,.global-bg .glow-b{opacity:.08 !important;}
.global-bg::before{opacity:.28 !important;}
.hero-sunrise{opacity:.42 !important;}
.blue-dots{position:absolute;inset:0;z-index:1;pointer-events:none;background-repeat:no-repeat;background-image:radial-gradient(circle 5px at 12% 16%, rgba(150,190,255,0.42), transparent 70%),radial-gradient(circle 3px at 23% 39%, rgba(130,175,255,0.36), transparent 70%),radial-gradient(circle 4px at 37% 12%, rgba(150,190,255,0.40), transparent 70%),radial-gradient(circle 2px at 52% 31%, rgba(120,160,255,0.32), transparent 70%),radial-gradient(circle 5px at 66% 17%, rgba(140,185,255,0.40), transparent 70%),radial-gradient(circle 3px at 79% 43%, rgba(120,170,255,0.34), transparent 70%),radial-gradient(circle 4px at 89% 23%, rgba(150,190,255,0.40), transparent 70%),radial-gradient(circle 2px at 15% 71%, rgba(110,160,255,0.30), transparent 70%),radial-gradient(circle 4px at 44% 81%, rgba(135,178,255,0.36), transparent 70%),radial-gradient(circle 3px at 72% 73%, rgba(120,165,255,0.32), transparent 70%),radial-gradient(circle 4px at 92% 65%, rgba(140,180,255,0.36), transparent 70%),radial-gradient(circle 2px at 6% 49%, rgba(120,165,255,0.30), transparent 70%);animation:dotsTwinkle 7.5s ease-in-out infinite alternate;}
.blue-dots::before{content:'';position:absolute;inset:0;background-repeat:no-repeat;background-image:radial-gradient(circle 90px at 22% 30%, rgba(40,100,220,0.09), transparent 70%),radial-gradient(circle 120px at 78% 58%, rgba(30,80,200,0.07), transparent 70%),radial-gradient(circle 70px at 55% 86%, rgba(50,110,230,0.06), transparent 70%);filter:blur(6px);animation:dotsDrift 28s ease-in-out infinite alternate;}
@keyframes dotsTwinkle{0%{opacity:.5}50%{opacity:.85}100%{opacity:.62}}
@keyframes dotsDrift{0%{transform:translate3d(0,0,0)}100%{transform:translate3d(2%,-2%,0)}}
@media (prefers-reduced-motion: reduce){.blue-dots,.blue-dots::before{animation:none !important;}}
body{background:radial-gradient(circle at 50% -8%, #02040a, #000001) !important;}
.global-bg::before{display:none !important;}
.liquid-waves{background:radial-gradient(70% 44% at 50% 114%, rgba(34,78,180,0.13), rgba(12,34,110,0.06) 44%, transparent 75%),radial-gradient(50% 38% at 86% 86%, rgba(30,74,170,0.07), transparent 66%) !important;filter:blur(92px) saturate(105%) !important;}
.liquid-waves::after{background:radial-gradient(ellipse at 50% 100%, rgba(66,126,235,0.11), transparent 73%) !important;}
.god-rays{opacity:.3 !important;}
.global-bg .glow-r,.global-bg .glow-b{opacity:.05 !important;}
.hero-sunrise{opacity:.28 !important;}
.card-orb{opacity:.30 !important;}
.hero-leap{max-width:450px !important;}
.hero-leap::before{background:radial-gradient(54% 52% at 52% 50%, rgba(59,130,255,0.15), transparent 75%) !important;filter:blur(60px) !important;}
.leap-img{filter:blur(2px) !important;-webkit-mask-image:radial-gradient(ellipse closest-side at 50% 47%, #000 45%, rgba(0,0,0,0.4) 74%, transparent 100%) !important;mask-image:radial-gradient(ellipse closest-side at 50% 47%, #000 45%, rgba(0,0,0,0.4) 74%, transparent 100%) !important;}
.date-dot{width:46px !important;height:46px !important;border-radius:12px !important;background:linear-gradient(160deg,#4a8bff,#1d4ed8) !important;border:1px solid rgba(255,255,255,0.18) !important;box-shadow:0 10px 22px -10px rgba(59,130,255,0.65), inset 0 1px 0 rgba(255,255,255,0.35) !important;color:#ffffff !important;text-shadow:none !important;font-size:19px !important;}
.cta-btn{overflow:visible !important;animation:none !important;box-shadow:0 0 30px rgba(59,130,255,0.5), 0 12px 30px -12px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.25) !important;}
.cta-btn::after{display:none !important;}
.cta-btn:hover{transform:translateY(-2px) !important;box-shadow:0 0 46px rgba(59,130,255,0.72), 0 16px 36px -12px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.3) !important;}
.hero-leap{animation:leapFloat 7s ease-in-out infinite alternate !important;}
.hero-leap::before{z-index:0 !important;}
.hero-leap::after{content:'';position:absolute;inset:0;z-index:1;pointer-events:none;background-image:url('../img/el-salto.png');background-size:100% 100%;background-repeat:no-repeat;filter:blur(6px);-webkit-mask-image:radial-gradient(ellipse closest-side at 50% 48%, #000 60%, rgba(0,0,0,0.45) 82%, transparent 100%);mask-image:radial-gradient(ellipse closest-side at 50% 48%, #000 60%, rgba(0,0,0,0.45) 82%, transparent 100%);}
.leap-img{position:relative !important;z-index:2 !important;filter:none !important;animation:none !important;-webkit-mask-image:radial-gradient(ellipse closest-side at 50% 48%, #000 46%, rgba(0,0,0,0.5) 64%, transparent 82%) !important;mask-image:radial-gradient(ellipse closest-side at 50% 48%, #000 46%, rgba(0,0,0,0.5) 64%, transparent 82%) !important;}
body{background:radial-gradient(circle at 50% 0%, #010308, #000000) !important;}
.liquid-waves{opacity:.7 !important;}
.section-alt{background:transparent !important;}
.divider{position:relative;height:56px !important;width:min(560px,74%) !important;max-width:560px !important;margin:30px auto !important;border:1px solid rgba(120,160,255,0.16) !important;border-radius:24px !important;background:rgba(18,28,52,0.16) !important;-webkit-backdrop-filter:blur(16px) saturate(140%) !important;backdrop-filter:blur(16px) saturate(140%) !important;box-shadow:inset 0 1px 0 rgba(255,255,255,0.12), inset 0 0 36px rgba(59,130,255,0.20) !important;overflow:hidden !important;}
.divider::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 64% 130% at 50% 50%, rgba(59,130,255,0.18), transparent 70%);pointer-events:none;}
.divider::after{display:none !important;}
@media (prefers-reduced-motion: reduce){.hero-leap{animation:none !important;}}
.divider{display:none !important;}
.hero-leap{animation:none !important;will-change:transform;}
.leap-img{-webkit-mask-image:radial-gradient(ellipse 52% 48% at 47% 45%, #000 38%, transparent 76%),radial-gradient(ellipse 44% 54% at 55% 53%, #000 36%, transparent 74%) !important;mask-image:radial-gradient(ellipse 52% 48% at 47% 45%, #000 38%, transparent 76%),radial-gradient(ellipse 44% 54% at 55% 53%, #000 36%, transparent 74%) !important;}
.hero-leap::after{-webkit-mask-image:radial-gradient(ellipse 66% 60% at 44% 42%, #000 46%, transparent 84%),radial-gradient(ellipse 56% 66% at 60% 54%, #000 44%, transparent 82%),radial-gradient(ellipse 62% 52% at 50% 64%, #000 42%, transparent 86%) !important;mask-image:radial-gradient(ellipse 66% 60% at 44% 42%, #000 46%, transparent 84%),radial-gradient(ellipse 56% 66% at 60% 54%, #000 44%, transparent 82%),radial-gradient(ellipse 62% 52% at 50% 64%, #000 42%, transparent 86%) !important;}
.hero-card{box-shadow:inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 1px rgba(120,160,255,0.12), 0 30px 80px -28px rgba(0,0,0,0.8), 0 0 60px -8px rgba(59,130,255,0.28) !important;}
.hero-card::after{content:'' !important;position:absolute !important;bottom:-26px !important;left:50% !important;transform:translateX(-50%) !important;width:66% !important;height:84px !important;z-index:-1 !important;pointer-events:none !important;background:radial-gradient(ellipse at center, rgba(29,78,216,0.5), rgba(59,130,255,0.28), transparent 70%) !important;filter:blur(44px) !important;}
.hero-leap{max-width:480px !important;}
.leap-img{-webkit-mask-image:radial-gradient(ellipse 46% 42% at 48% 49%, #000 20%, transparent 78%),radial-gradient(ellipse 40% 46% at 54% 52%, #000 18%, transparent 76%) !important;mask-image:radial-gradient(ellipse 46% 42% at 48% 49%, #000 20%, transparent 78%),radial-gradient(ellipse 40% 46% at 54% 52%, #000 18%, transparent 76%) !important;}
.hero-leap::after{-webkit-mask-image:radial-gradient(ellipse 54% 46% at 47% 50%, #000 24%, transparent 86%),radial-gradient(ellipse 46% 50% at 55% 54%, #000 22%, transparent 84%),radial-gradient(ellipse 50% 42% at 50% 46%, #000 20%, transparent 88%) !important;mask-image:radial-gradient(ellipse 54% 46% at 47% 50%, #000 24%, transparent 86%),radial-gradient(ellipse 46% 50% at 55% 54%, #000 22%, transparent 84%),radial-gradient(ellipse 50% 42% at 50% 46%, #000 20%, transparent 88%) !important;}
.btn-glass{text-decoration:none !important;}
.es-time-card{background:linear-gradient(180deg, rgba(45,95,205,0.32), rgba(22,48,125,0.24)) !important;border:1.5px solid rgba(120,170,255,0.55) !important;box-shadow:0 0 44px rgba(59,130,255,0.40), inset 0 0 40px rgba(59,130,255,0.18), inset 0 1px 0 rgba(255,255,255,0.20) !important;}
.es-time-card::after{background:repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0px, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 5px) !important;}
.es-time-card::before{background:linear-gradient(115deg, transparent 32%, rgba(205,228,255,0) 42%, rgba(205,228,255,0.55) 49%, rgba(205,228,255,0) 57%, transparent 72%) !important;background-size:300% 300% !important;}
.dates-timeline::before{display:none !important;}
.dates-timeline{gap:18px !important;}
.date-item{padding:24px 28px !important;gap:20px !important;align-items:flex-start !important;}
.date-label{font-size:21px !important;margin-bottom:7px !important;line-height:1.12 !important;}
.date-sub{font-size:14.5px !important;line-height:1.55 !important;margin-top:0 !important;}
.hero-card{overflow:visible !important;box-shadow:inset 0 1px 0 rgba(255,255,255,0.14), 0 0 0 1px rgba(120,160,255,0.18), 0 30px 80px -26px rgba(0,0,0,0.8), 0 0 72px -6px rgba(59,130,255,0.42) !important;}
.hero-card::after{background:radial-gradient(ellipse at center, rgba(29,78,216,0.6), rgba(59,130,255,0.35), transparent 70%) !important;height:96px !important;width:74% !important;bottom:-30px !important;}
.hc-date{overflow:visible !important;}
.hc-day{line-height:1 !important;overflow:visible !important;}
body{background:radial-gradient(circle at 50% 0%, #010206, #000000) !important;}
.liquid-waves{opacity:.55 !important;}
.god-rays{opacity:.24 !important;}
@keyframes dotsTwinkle{0%{opacity:.62}50%{opacity:.96}100%{opacity:.74}}
.hc-live{color:#ff5d6e !important;font-weight:800 !important;letter-spacing:1.5px !important;background:rgba(255,70,90,0.13) !important;border:1px solid rgba(255,95,115,0.45) !important;padding:4px 11px !important;border-radius:7px !important;text-shadow:0 0 14px rgba(255,85,105,0.75) !important;box-shadow:0 0 18px rgba(255,70,90,0.25) !important;}
.live-dot{width:8px !important;height:8px !important;background:#ff3344 !important;box-shadow:0 0 11px rgba(255,51,68,1), 0 0 4px rgba(255,51,68,1) !important;}
.hc-foot{font-size:11px !important;}
.hc-foot strong{color:#ff5d6e !important;font-weight:800 !important;letter-spacing:1px !important;text-shadow:0 0 13px rgba(255,85,105,0.7) !important;}
.hc-foot strong{display:inline-block !important;animation:nograbaFx 5s ease-in-out infinite !important;}
@keyframes nograbaFx{0%{text-shadow:0 0 8px rgba(255,80,100,0.5);transform:translate(0,0)}45%{text-shadow:0 0 17px rgba(255,95,115,0.9);transform:translate(0,0)}87%{text-shadow:0 0 10px rgba(255,80,100,0.6);transform:translate(0,0)}89%{text-shadow:-2px 0 #00e5ff,2px 0 #ff2d44,0 0 12px rgba(255,80,100,0.7);transform:translate(1px,-1px) skewX(-4deg)}91%{text-shadow:2px 0 #00e5ff,-2px 0 #ff2d44;transform:translate(-1px,1px) skewX(3deg)}93%{text-shadow:-1px 0 #00e5ff,1px 0 #ff2d44;transform:translate(1px,0)}95%{text-shadow:0 0 12px rgba(255,80,100,0.7);transform:translate(0,0)}100%{text-shadow:0 0 8px rgba(255,80,100,0.5);transform:translate(0,0)}}
@media (prefers-reduced-motion: reduce){.hc-foot strong{animation:none !important;text-shadow:0 0 13px rgba(255,85,105,0.7) !important;}}
.hc-foot strong{display:inline-block !important;color:#ff6376 !important;animation:nograbaFx 4.5s ease-in-out infinite !important;}
@keyframes nograbaFx{0%{text-shadow:0 0 6px rgba(255,95,115,0.9),0 0 16px rgba(255,60,82,0.65),0 0 28px rgba(255,45,68,0.45);transform:translate(0,0)}50%{text-shadow:0 0 9px rgba(255,120,140,1),0 0 24px rgba(255,75,95,0.9),0 0 46px rgba(255,55,76,0.7);transform:translate(0,0)}86%{text-shadow:0 0 6px rgba(255,95,115,0.9),0 0 16px rgba(255,60,82,0.65),0 0 28px rgba(255,45,68,0.45);transform:translate(0,0)}88%{text-shadow:-2px 0 #00e5ff,2px 0 #ff2d44,0 0 16px rgba(255,70,92,0.85);transform:translate(1px,-1px) skewX(-4deg)}90%{text-shadow:2px 0 #00e5ff,-2px 0 #ff2d44,0 0 16px rgba(255,70,92,0.85);transform:translate(-1px,1px) skewX(3deg)}92%{text-shadow:-1px 0 #00e5ff,1px 0 #ff2d44,0 0 18px rgba(255,70,92,0.9);transform:translate(1px,0)}94%{text-shadow:0 0 9px rgba(255,120,140,1),0 0 24px rgba(255,75,95,0.9),0 0 46px rgba(255,55,76,0.7);transform:translate(0,0)}100%{text-shadow:0 0 6px rgba(255,95,115,0.9),0 0 16px rgba(255,60,82,0.65),0 0 28px rgba(255,45,68,0.45);transform:translate(0,0)}}
@media (prefers-reduced-motion: reduce){.hc-foot strong{animation:none !important;text-shadow:0 0 10px rgba(255,95,115,0.9),0 0 24px rgba(255,60,82,0.6) !important;}}
.reality-list{align-items:flex-start !important;}
.reality-list li{width:fit-content !important;max-width:100% !important;padding:11px 18px !important;box-sizing:border-box !important;box-shadow:inset 0 1px 0 rgba(255,255,255,0.08), 0 0 26px -10px rgba(59,130,255,0.38), 0 14px 36px -22px rgba(0,0,0,0.6) !important;}
.bono-icon-mc{background:#ffffff !important;border:1px solid rgba(255,255,255,0.6) !important;border-radius:11px !important;width:auto !important;min-width:84px !important;height:42px !important;padding:0 10px !important;}
.bono-icon-mc img{display:block;height:24px;width:auto;max-width:130px;object-fit:contain;}
.bono-card{box-shadow:inset 0 1px 0 rgba(255,255,255,0.10), 0 0 42px -12px rgba(59,130,255,0.42), 0 24px 52px -28px rgba(0,0,0,0.7) !important;}
.bono-card:hover{transform:translateY(-4px);box-shadow:inset 0 1px 0 rgba(255,255,255,0.14), 0 0 64px -10px rgba(59,130,255,0.62), 0 26px 58px -26px rgba(0,0,0,0.7) !important;}
.section-block{position:relative;}
.problema-fx{position:absolute;top:50%;right:max(16px, calc(50% - 530px));transform:translateY(-50%);width:300px;display:grid;grid-template-columns:repeat(3,1fr);gap:14px;opacity:.55;pointer-events:none;z-index:0;-webkit-mask-image:radial-gradient(circle at 62% 50%, #000 22%, transparent 82%);mask-image:radial-gradient(circle at 62% 50%, #000 22%, transparent 82%);}
.problema-fx i{aspect-ratio:16/10;border-radius:10px;background:rgba(255,255,255,0.035);border:1px solid rgba(120,160,255,0.20);box-shadow:inset 0 0 18px rgba(59,130,255,0.13);position:relative;}
.problema-fx i::after{content:'';position:absolute;top:50%;left:50%;transform:translate(-40%,-50%);border-style:solid;border-width:6px 0 6px 10px;border-color:transparent transparent transparent rgba(150,185,255,0.55);}
@media(max-width:980px){.problema-fx{display:none !important;}}
.bono-icon-mc{overflow:hidden !important;width:132px !important;min-width:132px !important;height:44px !important;padding:0 !important;display:flex !important;align-items:center !important;justify-content:center !important;background:#ffffff !important;border:1px solid rgba(255,255,255,0.6) !important;border-radius:11px !important;}
.bono-icon-mc img{width:108% !important;height:auto !important;max-width:none !important;max-height:none !important;display:block !important;object-fit:contain !important;}
.bono-icon-mc img{width:81% !important;}
.bono-icon-mc{background:rgba(255,255,255,0.06) !important;border:1px solid rgba(255,255,255,0.12) !important;border-radius:12px !important;-webkit-backdrop-filter:blur(12px) saturate(130%) !important;backdrop-filter:blur(12px) saturate(130%) !important;width:128px !important;min-width:128px !important;height:46px !important;padding:0 12px !important;overflow:hidden !important;display:flex !important;align-items:center !important;justify-content:center !important;}
.bono-icon-mc img{width:80% !important;height:auto !important;max-width:none !important;display:block !important;filter:invert(1) brightness(1.7) !important;mix-blend-mode:screen !important;}

/* ============================================================
   PERFORMANCE PASS — anti-parpadeo (2026-06-10)
   El backdrop-filter en cada tarjeta obliga al GPU a re-muestrear
   el fondo desenfocado en cada frame al hacer scroll => flashes.
   Escritorio: blur más liviano. Móvil: sin backdrop-filter.
   ============================================================ */
.bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.tz-card,.es-time-card,.urgencia-box,.hero-value-block,.modal-box,.countdown-block,.cd-unit,.sw-badge,.badge-urgencia,.no-list li,.reality-list li,.quote{
  -webkit-backdrop-filter:blur(12px) saturate(120%) !important;
  backdrop-filter:blur(12px) saturate(120%) !important;
}

/* Escritorio: congelar animaciones de fondo y reducir blurs grandes.
   Animar filter:blur(64-92px) repinta áreas enormes cada frame =>
   lag/flashes en GPUs integradas. El look queda igual (sin deriva). */
.liquid-waves::before,.liquid-waves::after,.blue-dots,.blue-dots::before{
  animation:none !important;
}
.liquid-waves{filter:blur(50px) saturate(115%) !important;}
.global-bg .glow-r,.global-bg .glow-b{filter:blur(80px) !important;}

@media (max-width:768px){
  /* Tarjetas: fondo sólido translúcido en vez de cristal con blur */
  .bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.tz-card,.es-time-card,.urgencia-box,.hero-value-block,.modal-box,.countdown-block,.cd-unit,.sw-badge,.badge-urgencia,.no-list li,.reality-list li,.quote{
    -webkit-backdrop-filter:none !important;
    backdrop-filter:none !important;
    background:rgba(20,28,48,0.55) !important;
  }
  .bono-icon-mc{-webkit-backdrop-filter:none !important;backdrop-filter:none !important;}
  /* Capas de fondo animadas: detener animación y aligerar blur en móvil */
  .liquid-waves,.liquid-waves::before,.liquid-waves::after,.god-rays,.blue-dots,.blue-dots::before,.glow-r,.glow-b,.orb-sunrise,.orb-sunrise::before,.orb-sunrise::after{
    animation:none !important;
  }
  .god-rays{display:none !important;}
  .liquid-waves{filter:blur(50px) saturate(110%) !important;}
}
@media (max-width:768px){
.bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.urgencia-box,.hero-value-block,.quote,.modal-box,.hero-card,.bono-icon,.bono-icon-mc,.es-time-card,.tz-card,.sw-badge,.divider,.btn-glass{-webkit-backdrop-filter:none !important;backdrop-filter:none !important;}
.blue-dots,.blue-dots::before,.liquid-waves,.liquid-waves::before,.liquid-waves::after,.hc-day,.hero-leap,.leap-img,.cta-btn,.orb-sunrise::after,.dates-timeline::before{animation:none !important;}
}
@media (max-width:768px){
.glow-r,.glow-b,.global-bg::after{animation:none !important;}
.blue-dots::before{display:none !important;}
}
html{background:#02040a !important;}
@media (max-width:768px){
.reveal{opacity:1 !important;transform:none !important;transition:none !important;}
.date-item{opacity:1 !important;transform:none !important;transition:none !important;}
.dates-timeline.line-drawn::before,.dates-timeline::before{transform:none !important;}
}
@media (max-width:768px){
.liquid-waves{display:none !important;}
.hero-leap::after,.hero-leap::before{display:none !important;}
.bono-card::after,.logro-item::after,.hero-value-block::after,.urgencia-box::after,.modal-box::after,.hero-card::after,.divider::before{display:none !important;}
.bono-card,.logro-item,.acc-item,.instructor-wrap,.date-item,.urgencia-box,.hero-value-block,.quote,.modal-box,.hero-card,.es-time-card,.tz-card,.bono-icon,.bono-icon-mc,.divider{box-shadow:0 6px 18px -10px rgba(0,0,0,0.55) !important;}
.cta-btn,.btn-glass,.sticky-cta,.modal-submit{box-shadow:0 6px 16px -8px rgba(0,0,0,0.5) !important;}
.hc-foot strong,.instructor-glow,.instructor-shine,.instructor-border-light,.orb-sunrise{animation:none !important;}
}
@media (max-width:768px){
#hero .hero-heading{align-items:center !important;text-align:center !important;align-self:stretch !important;width:100% !important;}
#hero .hero-event,#hero .hero-h1{text-align:center !important;}
#hero .hero-h1{max-width:100% !important;margin-left:auto !important;margin-right:auto !important;}
}