:root {
  --bg: #000000;
  --bg2: #04040f;
  --surface: #07071a;
  --purple: #7c2fff;
  --purple2: #b44fff;
  --cyan: #00e5ff;
  --cyan2: #00b4d8;
  --magenta: #ff2d9b;
  --orange: #ff6b1a;
  --gold: #ffd060;
  --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(255, 107, 26, 0.4), 0 0 30px rgba(255, 107, 26, 0.12);
  --glow-cyan-t: 0 0 6px rgba(0, 229, 255, 0.5);
  --glow-purple-t: 0 0 6px rgba(180, 79, 255, 0.45);
  --glow-orange-t: 0 0 6px rgba(255, 107, 26, 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(124, 47, 255, 0.38);
  --border-o: 1px solid rgba(255, 107, 26, 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(100, 20, 255, 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(255, 45, 155, 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, #0099ff, #4466ff, #00cfff, #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, #b44fff, #7c2fff, #d580ff, #9940ff, #b44fff);
  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, #ff6b1a, #ffb347, #ffd060, #ff9a3c, #ff6b1a);
  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, #ffd060, #ffb300, #ffe680, #ffc000, #ffd060);
  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, #ff6b1a, #ff9a3c, #ffb347, #ffd060, #ff9a3c, #ff6b1a);
  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(255, 107, 26, 0.3);
  }

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

.cta-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 28px rgba(255, 107, 26, 0.4), 0 0 55px rgba(255, 107, 26, 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;
}

#hero h1 .l2::before {
  content: 'Motion Graphics';
  position: absolute;
  inset: 0;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(0, 229, 255, 0.25);
  background: none;
  z-index: 1;
  animation: strokePulse 3s ease-in-out infinite;
  pointer-events: none;
}

#hero h1 .l2::after {
  content: 'Motion Graphics';
  position: absolute;
  inset: 0;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px transparent;
  background: linear-gradient(105deg,
      transparent 0%, transparent 30%,
      rgba(0, 229, 255, 0) 36%,
      rgba(0, 229, 255, 0.9) 42%,
      rgba(180, 255, 255, 1) 45%,
      rgba(0, 229, 255, 0.9) 48%,
      rgba(0, 229, 255, 0) 54%,
      transparent 60%, transparent 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: strokeSweep 3s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

#hero h1 .l2 span.l2-inner {
  display: block;
  position: relative;
  z-index: 3;
  background:
    repeating-linear-gradient(0deg,
      rgba(0, 0, 0, 0.45) 0px, rgba(0, 0, 0, 0.45) 2px,
      rgba(0, 229, 255, 0.06) 2px, rgba(0, 229, 255, 0.06) 4px),
    linear-gradient(90deg,
      #00cfff 0%, #00e5ff 15%,
      #4466ff 30%, #00b8ff 45%,
      #00e5ff 60%, #0099ff 75%,
      #00cfff 100%);
  background-size: auto, 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite, lcdFlicker 4s step-end infinite;
  filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.7)) drop-shadow(0 0 22px rgba(0, 100, 255, 0.35));
  line-height: 1;
}

#hero h1 .l2 span.l2-inner::before {
  display: none;
}

@keyframes strokePulse {

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

  50% {
    -webkit-text-stroke: 1.5px rgba(0, 229, 255, 0.8);
    filter: drop-shadow(0 0 12px rgba(0, 200, 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, 200, 255, 0.7)) drop-shadow(0 0 22px rgba(0, 100, 255, 0.35));
  }

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

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

  97% {
    opacity: 0.7;
    filter: drop-shadow(0 0 4px rgba(0, 200, 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: #b44fff;
  font-style: normal;
  filter: drop-shadow(0 0 8px rgba(180, 79, 255, 0.7));
  animation: dollarPulse 2.5s ease-in-out infinite;
  margin-right: 4px;
}

.l3-inner {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.6px rgba(200, 110, 255, 0.95);
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {

  0%,
  100% {
    -webkit-text-stroke: 0.6px rgba(180, 79, 255, 0.85);
    filter: drop-shadow(0 0 5px rgba(180, 79, 255, 0.6)) drop-shadow(0 0 14px rgba(124, 47, 255, 0.3));
  }

  50% {
    -webkit-text-stroke: 0.6px rgba(220, 140, 255, 1);
    filter: drop-shadow(0 0 10px rgba(220, 140, 255, 0.9)) drop-shadow(0 0 24px rgba(160, 60, 255, 0.45));
  }
}

@keyframes dollarPulse {

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

  50% {
    filter: drop-shadow(0 0 12px rgba(200, 100, 255, 0.9));
    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(124, 47, 255, 0.1);
  border: 1px solid rgba(124, 47, 255, 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(11, 11, 30, 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(11, 11, 30, 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(180, 79, 255, 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(11, 11, 30, 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(124, 47, 255, 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(124, 47, 255, 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(11, 11, 30, 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, 100, 255, 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(255, 107, 26, 0.25), rgba(255, 180, 60, 0.15));
  border-color: var(--orange);
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255, 107, 26, 1), 0 0 30px rgba(255, 107, 26, 0.6);
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.5), inset 0 0 12px rgba(255, 107, 26, 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, #ff6b1a 0%, #ffb347 60%, #ffd060 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(255, 107, 26, 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: #ffb347;
}

.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, 100, 255, 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(124, 47, 255, 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), #ff9a3c);
  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(255, 107, 26, 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, #ff6b1a, #ffb347, #ffd060, #ff9a3c, #ff6b1a);
  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;
    -webkit-text-stroke: 0.4px rgba(200, 110, 255, 0.95);
  }

  .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(124, 47, 255, 0.3);
  background: #0b0b1e;
  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: #0b0b1e;
  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(11, 11, 30, 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(11, 11, 30, 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, 200, 255, 0.03) 2px, rgba(0, 200, 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(11, 11, 30, 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), #0099ff);
}

.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(11, 11, 30, 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(124, 47, 255, 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(124, 47, 255, 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(160, 60, 255, 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(124, 47, 255, 0.45) 35%,
      transparent 40%,
      transparent 70%,
      rgba(0, 229, 255, 0.35) 75%,
      rgba(180, 79, 255, 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: #0b0b1e;
  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(124, 47, 255, 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: #0b0b1e;
  border: 1px solid rgba(255, 107, 26, 0.4);
  border-radius: 16px;
  padding: 36px 32px;
  width: min(480px, 100%);
  position: relative;
  box-shadow: 0 0 60px rgba(255, 107, 26, 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(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 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(255, 107, 26, 0.15);
}

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

.modal-submit {
  background: linear-gradient(90deg, #ff6b1a, #ff9a3c, #ffb347, #ff9a3c, #ff6b1a);
  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(11, 11, 30, 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, #ff6b1a, #ffd060);
  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(11, 11, 30, 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(255, 107, 26, 0.5);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(255, 107, 26, 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,
      #ff6b1a 0%, #ffb347 30%, #ffd060 50%, #ffb347 70%, #ff6b1a 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(255, 107, 26, 0.6)) drop-shadow(0 0 24px rgba(255, 107, 26, 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(11, 11, 30, 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(124, 47, 255, 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(124, 47, 255, 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(11, 11, 30, 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(11, 11, 30, 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;
}