/* Legendary visual layer */
:root {
  --neo-deep-1: #040916;
  --neo-deep-2: #081830;
  --neo-ice: rgba(145, 242, 255, 0.92);
  --neo-rose: rgba(255, 109, 171, 0.95);
  --neo-aura: rgba(0, 214, 255, 0.22);
  --neo-aura-2: rgba(255, 74, 146, 0.2);
  --neo-card: linear-gradient(155deg, rgba(9, 20, 42, 0.92), rgba(8, 28, 57, 0.72));
  --neo-card-light: linear-gradient(150deg, rgba(255, 255, 255, 0.85), rgba(236, 247, 255, 0.65));
  --neo-stroke: rgba(145, 242, 255, 0.26);
  --neo-stroke-strong: rgba(255, 109, 171, 0.45);
  --neo-shadow: 0 16px 38px rgba(1, 7, 19, 0.48);
  --neo-shadow-soft: 0 8px 20px rgba(1, 8, 26, 0.3);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
  --radius: 14px;
}

html {
  scroll-padding-top: 84px;
}

.container {
  width: min(1080px, 92vw);
}

body {
  background:
    radial-gradient(1200px 760px at 100% -10%, rgba(255, 74, 146, 0.24), transparent 62%),
    radial-gradient(980px 640px at -10% 20%, rgba(0, 214, 255, 0.21), transparent 58%),
    linear-gradient(135deg, var(--neo-deep-1) 0%, var(--neo-deep-2) 58%, #0c2d53 100%);
  background-attachment: fixed;
}

body::before {
  top: -35%;
  right: -20%;
  width: 90%;
  height: 90%;
  background:
    radial-gradient(560px 460px at 30% 40%, rgba(255, 74, 146, 0.26), transparent 66%),
    radial-gradient(660px 420px at 60% 60%, rgba(0, 214, 255, 0.22), transparent 68%);
  filter: blur(1px);
  animation: nebulaDrift 22s ease-in-out infinite alternate;
}

body::after {
  opacity: 0.14;
  mix-blend-mode: screen;
  background-size: 34px 34px, 34px 34px, 22px 22px, 28px 28px;
  animation: gridPan 26s linear infinite;
}

::selection {
  background: rgba(0, 214, 255, 0.3);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(3, 12, 26, 0.52);
}

*::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgba(3, 12, 26, 0.7);
  background: linear-gradient(180deg, rgba(0, 214, 255, 0.92), rgba(255, 74, 146, 0.85));
}

.nav {
  border-bottom: 1px solid var(--neo-stroke);
  box-shadow: 0 6px 24px rgba(2, 9, 24, 0.44);
}

.nav::after {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 214, 255, 0.9) 25%,
    rgba(255, 74, 146, 0.95) 50%,
    rgba(255, 220, 139, 0.9) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: navBeam 11s linear infinite;
}

.brand:hover .logo {
  transform: rotate(-7deg) scale(1.06);
}

.logo {
  transition: transform 260ms ease, box-shadow 260ms ease;
  box-shadow: 0 8px 20px rgba(255, 74, 146, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.nav-links a {
  position: relative;
  padding: 7px 8px;
  font-size: 13px;
  transition: color 220ms ease, transform 220ms ease, background 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 8px;
  left: 8px;
  bottom: 3px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(0, 214, 255, 0.85), rgba(255, 74, 146, 0.9));
  transform: scaleX(0.2);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.btn {
  padding: 9px 12px;
  border-radius: 12px;
  gap: 6px;
  min-height: 40px;
  font-size: 14px;
  border-color: var(--neo-stroke);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--neo-shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 18%, rgba(255, 255, 255, 0.36) 48%, transparent 82%);
  transform: translateX(140%);
  transition: transform 600ms ease;
}

.btn:hover::before {
  transform: translateX(-140%);
}

.btn.primary {
  box-shadow: 0 12px 26px rgba(255, 74, 146, 0.3);
}

.btn.gold {
  box-shadow: 0 12px 28px rgba(0, 214, 255, 0.3);
}

.panel,
.card,
.mini-card,
.price-card,
.details,
.faq-item,
.achievement-card,
.news-card,
.english-panel,
.turnstile-wrap,
.schedule-table {
  background: var(--neo-card);
  border-color: var(--neo-stroke);
  box-shadow: var(--neo-shadow);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.panel,
.card,
.mini-card,
.price-card {
  position: relative;
  overflow: hidden;
}

.panel::before,
.card::after,
.mini-card::before,
.price-card::after {
  content: "";
  position: absolute;
  width: 44%;
  height: 44%;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.2;
  filter: blur(12px);
  transform: translateZ(0);
}

.panel::before,
.mini-card::before {
  top: -16%;
  left: -10%;
  background: radial-gradient(circle, rgba(255, 74, 146, 0.8), transparent 66%);
}

.card::after,
.price-card::after {
  bottom: -18%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 214, 255, 0.8), transparent 66%);
}

.card:hover,
.mini-card:hover,
.price-card:hover,
.panel:hover {
  transform: translateY(-4px);
  border-color: var(--neo-stroke-strong);
  box-shadow: 0 20px 46px rgba(0, 10, 30, 0.5);
}

.hero {
  min-height: 78vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 220px at 50% 100%, rgba(255, 220, 139, 0.14), transparent 72%);
  pointer-events: none;
}

#heroTitle {
  font-size: clamp(29px, 4.1vw, 42px);
  margin: 8px 0 10px;
  letter-spacing: 0.2px;
  text-shadow: 0 16px 34px rgba(2, 10, 22, 0.55), 0 0 28px rgba(0, 214, 255, 0.12);
}

#heroTitle span {
  text-shadow: 0 0 20px rgba(255, 220, 139, 0.4);
}

.sub {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  max-width: 58ch;
  color: rgba(242, 248, 255, 0.86);
}

.spotlight {
  margin-top: 10px;
  padding: 10px;
  gap: 8px;
  border-radius: 14px;
  background: linear-gradient(128deg, rgba(255, 74, 146, 0.2), rgba(0, 214, 255, 0.18));
  border-color: rgba(126, 237, 255, 0.55);
}

.spotlight-kicker,
.spotlight-point,
.badge,
.calc-chip,
.medal,
.news-chip {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.stats {
  margin-top: 12px;
  gap: 14px;
}

.stat {
  padding: 11px 10px;
  border-radius: 14px;
  position: relative;
  background: linear-gradient(145deg, rgba(8, 18, 37, 0.8), rgba(13, 32, 63, 0.66));
  border-color: rgba(170, 236, 255, 0.18);
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  inset: auto -30% -64% -30%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(0, 214, 255, 0.28), transparent 68%);
  pointer-events: none;
}

.stat .num {
  font-size: 22px;
  text-shadow: 0 0 24px rgba(0, 214, 255, 0.25);
}

.sec-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 24px;
}

.sec-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64%;
  max-width: 160px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255, 74, 146, 0.88), rgba(0, 214, 255, 0.88));
  box-shadow: 0 0 18px rgba(0, 214, 255, 0.32);
}

#why-us .card:nth-child(3n + 1),
#programs .card:nth-child(3n + 1),
#about .card:nth-child(3n + 1) {
  border-color: rgba(255, 107, 173, 0.42);
}

#why-us .card:nth-child(3n + 2),
#programs .card:nth-child(3n + 2),
#about .card:nth-child(3n + 2) {
  border-color: rgba(99, 226, 255, 0.44);
}

#why-us .card:nth-child(3n),
#programs .card:nth-child(3n),
#about .card:nth-child(3n) {
  border-color: rgba(145, 255, 207, 0.4);
}

/* Why Us emoji icons */
#why-us .why-icon {
  display: grid;
  place-items: center;
}

#why-us .why-icon::before {
  font-size: 32px;
  line-height: 1;
}

#why-us .card:nth-child(1) .why-icon::before { content: "🏅"; }
#why-us .card:nth-child(2) .why-icon::before { content: "💪"; }
#why-us .card:nth-child(3) .why-icon::before { content: "📈"; }
#why-us .card:nth-child(4) .why-icon::before { content: "🚌"; }
#why-us .card:nth-child(5) .why-icon::before { content: "🥇"; }
#why-us .card:nth-child(6) .why-icon::before { content: "👥"; }

.price-number {
  font-size: 28px;
  text-shadow: 0 0 22px rgba(255, 220, 139, 0.24);
}

#book .grid {
  align-items: start;
}

#book .card:first-child {
  border-color: rgba(0, 214, 255, 0.4);
}

#book .card:last-child {
  border-color: rgba(255, 74, 146, 0.42);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid rgba(145, 242, 255, 0.26);
  background: linear-gradient(152deg, rgba(7, 19, 39, 0.9), rgba(11, 34, 68, 0.78));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 111, 172, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 111, 172, 0.17), 0 10px 20px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}

.payment-option {
  border-radius: 12px;
  padding: 8px;
  gap: 6px;
  border: 1px dashed rgba(145, 242, 255, 0.34);
  background: linear-gradient(140deg, rgba(8, 22, 45, 0.82), rgba(9, 30, 58, 0.56));
}

.schedule-table th {
  padding: 11px 12px;
  font-size: 14px;
  background: linear-gradient(132deg, rgba(255, 74, 146, 0.24), rgba(0, 214, 255, 0.2));
}

.schedule-table td {
  padding: 11px 12px;
  font-size: 14px;
}

.schedule-table tbody tr:nth-child(odd) {
  background: rgba(7, 21, 44, 0.6);
}

.schedule-table tbody tr:nth-child(even) {
  background: rgba(7, 21, 44, 0.42);
}

.fab {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(2, 9, 21, 0.36);
}

.fab.whatsapp {
  background: linear-gradient(135deg, rgba(18, 214, 125, 0.98), rgba(5, 164, 105, 0.96));
}

.fab.up {
  background: linear-gradient(135deg, rgba(255, 74, 146, 0.96), rgba(0, 214, 255, 0.92));
}

footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(145, 242, 255, 0.22);
  background: linear-gradient(180deg, rgba(4, 10, 22, 0.3), rgba(3, 8, 18, 0.65));
}

.foot {
  gap: 12px;
  padding: 14px 0 18px;
}

/* Compact professional layout */
.nav-inner {
  padding: 10px 0;
  gap: 10px;
}

.nav-links {
  gap: 6px;
}

.nav-cta {
  gap: 8px;
}

.theme-toggle {
  min-width: 42px;
  font-size: 16px;
}

.lang-toggle {
  min-width: 48px;
}

header.hero {
  padding: 18px 0 14px;
}

.hero-grid {
  gap: 12px;
  padding: 16px 0;
}

.hero-left {
  padding: 16px;
}

.hero-right {
  padding: 12px;
}

.mini-card {
  margin-bottom: 10px;
}

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

.spotlight-kicker {
  padding: 5px 9px;
  font-size: 11px;
}

.spotlight-text {
  font-size: 13px;
  line-height: 1.65;
}

.spotlight-point {
  padding: 5px 9px;
  font-size: 11px;
}

.pills {
  margin-top: 12px;
  gap: 8px;
}

.pill {
  padding: 8px 11px;
  font-size: 12px;
  gap: 6px;
}

.stats {
  gap: 10px;
}

.stat .lbl {
  margin-top: 4px;
  font-size: 12px;
}

section {
  padding: 34px 0;
}

.sec-head {
  gap: 10px;
  margin-bottom: 18px;
}

.sec-desc {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.75;
  max-width: 64ch;
}

.grid {
  gap: 12px;
}

.card {
  padding: 14px;
  border-radius: 14px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.card p {
  font-size: 14px;
  line-height: 1.75;
}

.pricing,
.news-list,
.achievement-list,
.tracker-layout,
.journey,
.calculator-grid,
.booking {
  gap: 12px;
}

.price-card {
  padding: 14px;
  gap: 10px;
  border-radius: 14px;
}

.price-title {
  font-size: 17px;
}

.price-note {
  font-size: 14px;
  line-height: 1.65;
}

.details {
  padding: 14px;
  border-radius: 14px;
  min-height: 240px;
}

.details-title {
  font-size: 17px;
}

.details-body {
  font-size: 14px;
  line-height: 1.75;
}

.belt-list {
  gap: 8px;
}

.belt {
  padding: 11px 12px;
  border-radius: 12px;
}

.faq-list {
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
}

.faq-question {
  padding: 13px 14px;
  font-size: 15px;
}

.faq-answer {
  padding: 0 14px 13px;
  font-size: 14px;
  line-height: 1.75;
}

.level {
  padding: 5px 8px;
  font-size: 12px;
}

form,
.row {
  gap: 10px;
}

label {
  margin-bottom: 5px;
  font-size: 13px;
}

textarea {
  min-height: 90px;
}

#submitBookingBtn {
  padding: 12px 14px !important;
  font-size: 15px !important;
}

.payment-details {
  margin-top: 8px;
  padding: 10px;
  gap: 8px;
  border-radius: 12px;
}

.payment-line {
  font-size: 12px;
}

.payment-copy-status {
  padding: 8px 9px;
  font-size: 11px;
}

.turnstile-wrap {
  padding: 10px;
  border-radius: 12px;
  gap: 6px;
}

.achievement-card,
.news-card,
.english-panel {
  border-radius: 14px;
  padding: 14px;
}

.achievement-card,
.news-card {
  gap: 8px;
}

.achievement-date,
.news-meta {
  font-size: 12px;
}

.english-panel h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.english-list {
  margin-top: 8px;
}

.tracker-empty,
.tracker-goals {
  font-size: 14px;
  line-height: 1.7;
}

.tracker-goals {
  margin-top: 8px;
  padding-inline: 16px;
}

.float {
  left: 12px;
  bottom: 12px;
  gap: 8px;
}

html[data-theme="light"] body {
  background:
    radial-gradient(1000px 650px at 95% -5%, rgba(255, 103, 162, 0.24), transparent 60%),
    radial-gradient(820px 560px at -5% 15%, rgba(0, 172, 216, 0.18), transparent 56%),
    linear-gradient(130deg, #f0f8ff 0%, #ebf4ff 54%, #d8e8ff 100%);
}

html[data-theme="light"] body::after {
  opacity: 0.16;
  mix-blend-mode: multiply;
}

html[data-theme="light"] .panel,
html[data-theme="light"] .card,
html[data-theme="light"] .mini-card,
html[data-theme="light"] .price-card,
html[data-theme="light"] .details,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .achievement-card,
html[data-theme="light"] .news-card,
html[data-theme="light"] .english-panel,
html[data-theme="light"] .turnstile-wrap,
html[data-theme="light"] .schedule-table {
  background: var(--neo-card-light);
  border-color: rgba(28, 126, 174, 0.2);
  box-shadow: 0 22px 48px rgba(24, 55, 92, 0.14);
}

html[data-theme="light"] .nav {
  box-shadow: 0 10px 28px rgba(25, 54, 95, 0.16);
}

html[data-theme="light"] .btn {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.82), rgba(236, 246, 255, 0.62));
  border-color: rgba(28, 126, 174, 0.24);
  box-shadow: 0 10px 24px rgba(21, 58, 105, 0.14);
}

html[data-theme="light"] .btn.primary {
  background: linear-gradient(135deg, #ff4b95, #ff8bb7);
}

html[data-theme="light"] .btn.gold {
  background: linear-gradient(135deg, #12c7f2, #7ce8ff);
}

html[data-theme="light"] .sub {
  color: rgba(27, 58, 91, 0.88);
}

html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(241, 248, 255, 0.72));
  border-color: rgba(39, 120, 170, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 8px 16px rgba(37, 79, 122, 0.1);
}

html[data-theme="light"] input:focus,
html[data-theme="light"] select:focus,
html[data-theme="light"] textarea:focus {
  border-color: rgba(232, 84, 144, 0.74);
  box-shadow: 0 0 0 4px rgba(232, 84, 144, 0.18), 0 10px 22px rgba(36, 82, 125, 0.15);
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 70px;
  }

  .container {
    width: min(1060px, 94vw);
  }

  .hero {
    min-height: 0;
  }

  .nav-inner {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .btn {
    min-height: 38px;
    padding: 8px 11px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  section {
    padding: 28px 0;
  }

  .hero-grid,
  .grid,
  .booking,
  .calculator-grid,
  .tracker-layout,
  .journey {
    gap: 10px;
  }

  .hero-left,
  .hero-right,
  .card,
  .price-card,
  .details,
  .english-panel,
  .achievement-card,
  .news-card {
    padding: 12px;
  }

  .panel::before,
  .card::after,
  .mini-card::before,
  .price-card::after {
    opacity: 0.2;
  }
}

@media (max-width: 700px) {
  body::before,
  body::after {
    animation: none;
  }

  .container {
    width: min(100%, 95vw);
  }

  section {
    padding: 24px 0;
  }

  header.hero {
    padding: 12px 0 10px;
  }

  .hero-grid {
    padding: 10px 0;
  }

  .hero-left,
  .hero-right,
  .card,
  .price-card,
  .details,
  .english-panel,
  .achievement-card,
  .news-card {
    padding: 11px;
  }

  .faq-question {
    padding: 11px 12px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 12px 11px;
    font-size: 13px;
  }

  .stats {
    gap: 8px;
  }

  #heroTitle {
    font-size: clamp(26px, 7.4vw, 34px);
    text-shadow: 0 10px 24px rgba(3, 11, 24, 0.45);
  }

  .sec-title::after {
    width: 100%;
  }

  .panel,
  .card,
  .mini-card,
  .price-card {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
  }

  .fab {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(1, 8, 20, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .nav::after {
    animation: none !important;
  }

  .btn::before {
    transition: none;
  }
}

@keyframes nebulaDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.95;
  }

  50% {
    transform: translate3d(-3%, 3%, 0) scale(1.07);
    opacity: 0.72;
  }

  100% {
    transform: translate3d(4%, -2%, 0) scale(1.02);
    opacity: 0.9;
  }
}

@keyframes gridPan {
  from {
    background-position: 0 0, 0 0, 11px 9px, 4px 6px;
  }

  to {
    background-position: 38px 34px, -34px 38px, 40px -24px, -30px 36px;
  }
}

@keyframes navBeam {
  from {
    background-position: 200% 0;
  }

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

/* Mobile performance mode */
@media (max-width: 980px), (pointer: coarse) {
  html.lite-mobile body {
    background: linear-gradient(160deg, #071224 0%, #0d2545 100%) !important;
    background-attachment: scroll !important;
  }

  html.lite-mobile[data-theme="light"] body {
    background: linear-gradient(160deg, #f5f9ff 0%, #eaf3ff 100%) !important;
  }

  html.lite-mobile body::before,
  html.lite-mobile body::after,
  html.lite-mobile .hero-bg::before,
  html.lite-mobile .panel::before,
  html.lite-mobile .card::after,
  html.lite-mobile .mini-card::before,
  html.lite-mobile .price-card::after,
  html.lite-mobile #why-us .card::after,
  html.lite-mobile #programs .card::after,
  html.lite-mobile #achievements .achievement-card::after,
  html.lite-mobile #news .news-card::after,
  html.lite-mobile #journey .belt::after,
  html.lite-mobile #journey .details::after,
  html.lite-mobile .hero-left::before,
  html.lite-mobile .sec-title::before,
  html.lite-mobile .sec-title::after,
  html.lite-mobile .nav::after,
  html.lite-mobile .btn::before {
    display: none !important;
    content: none !important;
  }

  html.lite-mobile .nav,
  html.lite-mobile .fab,
  html.lite-mobile .btn {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }

  html.lite-mobile .panel,
  html.lite-mobile .card,
  html.lite-mobile .mini-card,
  html.lite-mobile .price-card,
  html.lite-mobile .details,
  html.lite-mobile .faq-item,
  html.lite-mobile .achievement-card,
  html.lite-mobile .news-card,
  html.lite-mobile .english-panel,
  html.lite-mobile .turnstile-wrap,
  html.lite-mobile .schedule-table,
  html.lite-mobile .schedule-table tr,
  html.lite-mobile .belt,
  html.lite-mobile .stat {
    background: rgba(9, 20, 38, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }

  html.lite-mobile[data-theme="light"] .panel,
  html.lite-mobile[data-theme="light"] .card,
  html.lite-mobile[data-theme="light"] .mini-card,
  html.lite-mobile[data-theme="light"] .price-card,
  html.lite-mobile[data-theme="light"] .details,
  html.lite-mobile[data-theme="light"] .faq-item,
  html.lite-mobile[data-theme="light"] .achievement-card,
  html.lite-mobile[data-theme="light"] .news-card,
  html.lite-mobile[data-theme="light"] .english-panel,
  html.lite-mobile[data-theme="light"] .turnstile-wrap,
  html.lite-mobile[data-theme="light"] .schedule-table,
  html.lite-mobile[data-theme="light"] .schedule-table tr,
  html.lite-mobile[data-theme="light"] .belt,
  html.lite-mobile[data-theme="light"] .stat {
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(16, 48, 74, 0.18) !important;
  }

  html.lite-mobile .btn,
  html.lite-mobile .card,
  html.lite-mobile .panel,
  html.lite-mobile .mini-card,
  html.lite-mobile .price-card,
  html.lite-mobile .details,
  html.lite-mobile .faq-item,
  html.lite-mobile .belt,
  html.lite-mobile .fab,
  html.lite-mobile .mini-card .img {
    transition: none !important;
    transform: none !important;
  }

  html.lite-mobile .btn:hover,
  html.lite-mobile .card:hover,
  html.lite-mobile .panel:hover,
  html.lite-mobile .mini-card:hover,
  html.lite-mobile .price-card:hover,
  html.lite-mobile .details:hover,
  html.lite-mobile .faq-item:hover,
  html.lite-mobile .belt:hover,
  html.lite-mobile .fab:hover,
  html.lite-mobile .mini-card:hover .img {
    transform: none !important;
    box-shadow: none !important;
  }

  html.lite-mobile .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html.lite-mobile .tilt-card {
    transform: none !important;
    transition: none !important;
  }

  html.lite-mobile .hero-slide {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  html.lite-mobile #slide2 {
    display: none !important;
  }

  html.lite-mobile .wa-sticky-cta,
  html.lite-mobile #why-us .why-icon {
    animation: none !important;
  }

  html.lite-mobile *,
  html.lite-mobile *::before,
  html.lite-mobile *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
  }
}

/* Epic polish layer */
:root {
  --epic-cyan: #54e7ff;
  --epic-pink: #ff5ca8;
  --epic-amber: #ffd27a;
}

body {
  position: relative;
}

body::after {
  opacity: 0.2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 260px at 75% 14%, rgba(255, 92, 168, 0.18), transparent 70%),
    radial-gradient(660px 230px at 18% 22%, rgba(84, 231, 255, 0.18), transparent 68%);
  mix-blend-mode: screen;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

#heroTitle {
  background: linear-gradient(95deg, #ffffff 0%, #e5f8ff 32%, #ffe7f2 64%, #ffe4a1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tag,
.badge,
.pill,
.spotlight-kicker {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 24px rgba(5, 16, 32, 0.28);
}

.btn.primary,
.btn.gold {
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn.primary {
  background: linear-gradient(128deg, rgba(255, 92, 168, 0.95), rgba(255, 121, 178, 0.9));
}

.btn.gold {
  background: linear-gradient(128deg, rgba(255, 210, 122, 0.95), rgba(84, 231, 255, 0.9));
  color: #0f1b2f;
}

.card,
.panel,
.price-card,
.mini-card,
.achievement-card,
.news-card {
  transform-origin: center bottom;
}

.card:hover,
.panel:hover,
.price-card:hover,
.mini-card:hover,
.achievement-card:hover,
.news-card:hover {
  transform: translateY(-5px) scale(1.01);
}

.sec-title {
  letter-spacing: 0.3px;
}

.sec-title::before {
  content: "";
  position: absolute;
  right: -18px;
  top: -8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--epic-cyan), var(--epic-pink));
  box-shadow: 0 0 14px rgba(84, 231, 255, 0.65);
}

.nav {
  background: linear-gradient(180deg, rgba(5, 16, 33, 0.82), rgba(5, 16, 33, 0.58));
}

.stat .num {
  color: #fff;
}

@media (max-width: 900px) {
  #heroTitle {
    background: none;
    color: #f5fbff;
  }

  .sec-title::before {
    right: -10px;
  }
}

/* Mobile fallback optimization (works even without html.lite-mobile) */
@media (max-width: 980px), (pointer: coarse) {
  body {
    background-attachment: scroll !important;
  }

  body::before,
  body::after,
  .hero-bg,
  .hero::before,
  .panel::before,
  .card::after,
  .mini-card::before,
  .price-card::after,
  .nav::after,
  .btn::before,
  .sec-title::before,
  .sec-title::after {
    display: none !important;
    animation: none !important;
    content: none !important;
  }

  .hero-slide,
  .reveal-item,
  .tilt-card,
  .wa-sticky-cta,
  #why-us .why-icon {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  #slide2 {
    display: none !important;
  }

  .nav,
  .btn,
  .fab,
  .panel,
  .card,
  .mini-card,
  .price-card,
  .details,
  .faq-item,
  .achievement-card,
  .news-card,
  .english-panel,
  .turnstile-wrap,
  .schedule-table,
  .schedule-table tr,
  .belt,
  .stat {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .card:hover,
  .panel:hover,
  .price-card:hover,
  .mini-card:hover,
  .achievement-card:hover,
  .news-card:hover,
  .btn:hover,
  .fab:hover {
    transform: none !important;
  }
}

/* Legendary punch pass: high-impact visuals */
:root {
  --impact-blue: #00d9ff;
  --impact-pink: #ff4fa2;
  --impact-gold: #ffcf6a;
}

.nav {
  background:
    linear-gradient(180deg, rgba(5, 16, 33, 0.9), rgba(5, 16, 33, 0.62)),
    linear-gradient(90deg, rgba(0, 217, 255, 0.1), rgba(255, 79, 162, 0.1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-left {
  background:
    radial-gradient(360px 180px at 12% 10%, rgba(0, 217, 255, 0.2), transparent 70%),
    radial-gradient(320px 180px at 88% 90%, rgba(255, 79, 162, 0.2), transparent 70%),
    linear-gradient(155deg, rgba(8, 23, 46, 0.92), rgba(10, 30, 56, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

#heroTitle {
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0.3px;
  text-shadow: 0 20px 36px rgba(4, 15, 30, 0.6);
}

.sub {
  font-size: 16px;
  color: rgba(240, 249, 255, 0.92);
}

.btn {
  border-radius: 14px;
  font-weight: 700;
}

.btn.primary {
  background: linear-gradient(135deg, var(--impact-pink), #ff84bf);
  box-shadow: 0 14px 30px rgba(255, 79, 162, 0.34);
}

.btn.gold {
  background: linear-gradient(135deg, var(--impact-gold), #ffe7a8);
  color: #1e2c42;
  box-shadow: 0 14px 30px rgba(255, 207, 106, 0.28);
}

.sec-title {
  font-size: clamp(26px, 3.2vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.sec-title::after {
  height: 4px;
  width: 78%;
  background: linear-gradient(90deg, var(--impact-blue), var(--impact-pink), var(--impact-gold));
}

section:nth-of-type(even) .card,
section:nth-of-type(even) .price-card,
section:nth-of-type(even) .details {
  border-color: rgba(0, 217, 255, 0.36);
}

section:nth-of-type(odd) .card,
section:nth-of-type(odd) .price-card,
section:nth-of-type(odd) .details {
  border-color: rgba(255, 79, 162, 0.34);
}

.card h3,
.price-title,
.details-title {
  color: #f5fcff;
  letter-spacing: 0.2px;
}

@media (max-width: 980px), (pointer: coarse) {
  body {
    background: linear-gradient(120deg, #071325, #0f2d4f, #1c3e63, #31275d) !important;
    background-size: 240% 240% !important;
    animation: mobileAurora 16s ease infinite !important;
  }

  #heroTitle {
    font-size: clamp(28px, 8.1vw, 36px) !important;
    text-shadow: none !important;
    color: #ffffff !important;
  }

  .hero-left,
  .hero-right,
  .panel,
  .card,
  .mini-card,
  .price-card,
  .details,
  .faq-item,
  .achievement-card,
  .news-card,
  .english-panel {
    background: linear-gradient(150deg, rgba(11, 26, 48, 0.94), rgba(19, 42, 70, 0.9)) !important;
    border: 1px solid rgba(145, 220, 255, 0.26) !important;
  }

  .sub {
    font-size: 14px !important;
    color: rgba(236, 247, 255, 0.9) !important;
  }

  .btn.primary,
  .btn.gold {
    background: linear-gradient(120deg, #00d6ff, #00b8d4, #ff5ca8, #ffc96a) !important;
    background-size: 220% 220% !important;
    animation: mobileAurora 10s ease infinite !important;
    color: #071a2c !important;
    box-shadow: none !important;
  }

  .sec-title {
    text-transform: none !important;
    letter-spacing: 0.2px !important;
    color: #f4fbff !important;
  }

  .sec-title::after {
    background: linear-gradient(90deg, #00d6ff, #ff5ca8, #ffd36f) !important;
  }
}

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

@media (max-width: 980px) and (prefers-reduced-motion: reduce), (pointer: coarse) and (prefers-reduced-motion: reduce) {
  body,
  .btn.primary,
  .btn.gold {
    animation: none !important;
  }
}

/* Training video section */
.training-video-section {
  padding-top: clamp(20px, 4vw, 44px);
}

.training-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(14px, 2.6vw, 28px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: clamp(14px, 2.5vw, 24px);
  background:
    radial-gradient(420px 220px at 18% 10%, rgba(0, 217, 255, 0.14), transparent 70%),
    radial-gradient(420px 240px at 85% 90%, rgba(255, 79, 162, 0.15), transparent 72%),
    linear-gradient(150deg, rgba(9, 24, 46, 0.92), rgba(11, 30, 57, 0.78));
  box-shadow: 0 16px 34px rgba(2, 12, 28, 0.45);
}

.training-video-copy {
  display: grid;
  gap: 10px;
}

.training-video-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, 0.4);
  background: rgba(0, 217, 255, 0.12);
  color: #d9f9ff;
  font-size: 13px;
  font-weight: 700;
}

.training-video-title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 35px);
  line-height: 1.18;
  color: #f4fbff;
  text-shadow: 0 14px 28px rgba(4, 15, 30, 0.55);
}

.training-video-desc {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: rgba(235, 247, 255, 0.9);
  max-width: 56ch;
}

.training-video-frame {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
  background: #02070f;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

.training-video-frame::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
  z-index: 1;
}

.training-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

@media (max-width: 920px) {
  .training-video-layout {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 16px;
  }

  .training-video-title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .training-video-desc {
    max-width: none;
    font-size: 14px;
  }

  .training-video-frame {
    border-radius: 14px;
  }
}
