/* Small style adjustments for smoothness */
/* --- Smooth scrolling (native) --- */
html {
  scroll-behavior: smooth;
  /* Let anchors stop below the sticky header (JS sets this value exactly) */
  scroll-padding-top: var(--scroll-pad, 80px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-title {
  @apply text-4xl md:text-5xl font-extrabold text-brand-dark;
}
.section-subtitle {
  @apply text-lg text-brand-gray mt-4 max-w-2xl mx-auto;
}

/* === Background Scrolling Logos — CSS === */
:root {
  --tile-size: 120px;
  --tile-gap: 48px;
  --tile-radius: 12px;
  --row-blur: 0.5px;
  --row-opacity: 0.2;
  --edge-fade-width: 10%;
  --row-safe: 12px;
  --neon-cyan: #a0e9ff;
  --neon-white: #ffffff;
  --neon-gold: #ffd1a0;
  --border-spin: 4s;
}
.bg-scroller {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: block;
  background-color: #f4f6f9;
  mask-image: linear-gradient(
    to right,
    transparent,
    black var(--edge-fade-width),
    black calc(100% - var(--edge-fade-width)),
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black var(--edge-fade-width),
    black calc(100% - var(--edge-fade-width)),
    transparent
  );
}
.bg-scroller__field {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bg-scroller__row {
  width: 100%;
  overflow: visible;
}
.bg-scroller__track {
  display: flex;
  width: max-content;
  filter: blur(var(--row-blur));
  opacity: var(--row-opacity);
  will-change: transform;
  padding-block: var(--row-safe);
  animation: scroll-left var(--scroll-duration) linear infinite;
  animation-play-state: paused;
}
.bg-scroller__row[data-direction="right"] .bg-scroller__track {
  animation-name: scroll-right;
}
.bg-scroller__tile {
  position: relative;
  padding: 1px;
  border-radius: var(--tile-radius);
  overflow: hidden;
  background: #e0e0e0;
  width: var(--tile-size);
  height: var(--tile-size);
  margin: 0 calc(var(--tile-gap) / 2);
  flex-shrink: 0;
}
.bg-scroller__tile::before {
  content: "";
  position: absolute;
  inset: -200%;
  z-index: 0;
  background: conic-gradient(
    from var(--angle, 0deg),
    var(--neon-cyan),
    var(--neon-white),
    var(--neon-gold),
    var(--neon-white),
    var(--neon-cyan)
  );
  animation: bg-ring-spin var(--border-spin) linear infinite;
}
.bg-scroller__row[data-direction="right"] .bg-scroller__tile::before {
  animation-direction: reverse;
}
.bg-scroller__tile-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--tile-radius) - 1px);
  background: rgba(255, 255, 255, 0.08);
}
.bg-scroller__tile-inner img {
  display: block;
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
}
.bg-scroller--dark {
  background-color: #0d1128;
}
.bg-scroller--dark .bg-scroller__track {
  opacity: 0.1;
}
.bg-scroller--dark .bg-scroller__tile {
  background: #1a203c;
}
.bg-scroller--dark .bg-scroller__tile-inner {
  background: rgba(0, 0, 0, 0.1);
}
.bg-scroller--dark .bg-scroller__tile-inner img {
  opacity: 0.7;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-distance));
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(var(--scroll-distance));
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bg-ring-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  :root {
    --tile-size: 96px;
    --tile-gap: 32px;
  }
}
@media (max-width: 640px) {
  :root {
    --tile-size: 76px;
    --tile-gap: 26px;
    --row-blur: 0.25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bg-scroller__tile::before {
    animation: none;
  }
}

/* Simple fade utilities already in your page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}
.animate-fadeIn {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-800 {
  animation-delay: 0.8s;
}

.hero-spotlight {
  background-image: radial-gradient(
    circle at 50% 0%,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0) 60%
  );
}

.countdown-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  width: 7rem;
  text-align: center;
}
.countdown-number {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: #0d1128;
}
.countdown-label {
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .countdown-card {
    padding: 1.5rem;
    width: 9rem;
  }
  .countdown-number {
    font-size: 4.5rem;
    line-height: 1;
  }
  .countdown-label {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.text-animated-gradient {
  background-image: linear-gradient(90deg, #f9a825, #29b6f6, #8bc34a, #f9a825);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  will-change: background-position;
}
@keyframes shine {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -150% 0;
  }
}

.sbo-card-cover {
  background-image: linear-gradient(145deg, #0d1128, #1a203c);
  border-bottom: 2px solid #f9a825;
}
.sbo-card-title {
  min-height: 8rem;
}
.btn-premium-sbo {
  will-change: color;
}
.btn-premium-sbo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d1128;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.btn-premium-sbo:hover {
  color: #f9a825;
  box-shadow: 0 4px 15px rgba(249, 168, 37, 0.3);
}
.btn-premium-sbo:hover::before {
  transform: scaleX(1);
}
.btn-premium-sbo:hover svg {
  transform: translateX(4px);
}

:root {
  --ink-1: #0d1128;
  --ink-2: #1a224d;
  --paper: #f8fbff;
  --muted: #6b7280;
  --brand-1: #6ea8ff;
  --brand-2: #7cf29c;
  --brand-3: #7e5bff;
  --gold-1: #f3c86a;
  --gold-2: #ffe8b0;
  --glass: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius: 22px;
}

/* CTA block (map-cta) */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(
      1200px 600px at 10% -10%,
      rgba(126, 91, 255, 0.12),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 110% 10%,
      rgba(124, 242, 156, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, #0a0c16 0%, #0b1022 60%, #0a0c16 100%);
  padding: clamp(64px, 8vw, 120px) 16px;
  color: #fff;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta__bg::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
      1600px 700px at 120% -30%,
      rgba(110, 168, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      1200px 600px at -20% 120%,
      rgba(124, 242, 156, 0.15),
      transparent 55%
    ),
    linear-gradient(
      120deg,
      rgba(110, 168, 255, 0.12),
      rgba(126, 91, 255, 0.1) 40%,
      rgba(124, 242, 156, 0.1) 80%
    );
  filter: blur(2px);
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(5, 7, 12, 0.25)),
    radial-gradient(
      1000px 500px at 50% 120%,
      rgba(10, 12, 22, 0.85),
      transparent 60%
    ),
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  mask: radial-gradient(1200px 600px at 50% 60%, #000 50%, transparent 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta__sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.cta__panel {
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: clamp(28px, 5vw, 48px) clamp(24px, 6vw, 64px);
  text-align: center;
}
.cta__title {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 56px);
  background: linear-gradient(180deg, #fff, #dfe8ff 55%, #b9c7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 20px rgba(110, 168, 255, 0.2));
  position: relative;
  display: inline-block;
}
.cta__title-underline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  height: 6px;
  width: clamp(120px, 30vw, 280px);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-1),
    var(--gold-2),
    var(--gold-1),
    transparent
  );
  box-shadow: 0 6px 22px rgba(243, 200, 106, 0.35);
  opacity: 0.95;
}
.cta__subtitle {
  max-width: 720px;
  margin: clamp(16px, 2.5vw, 22px) auto 0;
  color: #e5ecff;
  opacity: 0.85;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}
.cta__button {
  --btn-bg: linear-gradient(180deg, #101737, #0d132f);
  --btn-stroke: rgba(255, 255, 255, 0.2);
  --btn-ring: rgba(110, 168, 255, 0.45);
  margin-top: clamp(24px, 4vw, 40px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 9999px;
  background: var(--btn-bg);
  border: 1px solid var(--btn-stroke);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 28px rgba(16, 23, 55, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
}
.cta__button:focus-visible {
  box-shadow: 0 0 0 4px var(--btn-ring), 0 10px 28px rgba(16, 23, 55, 0.45);
  transform: translateY(-1px);
}
.cta__button-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
      200px 80px at 30% 10%,
      rgba(126, 91, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      220px 90px at 70% 120%,
      rgba(124, 242, 156, 0.16),
      transparent 60%
    );
  filter: blur(6px);
  opacity: 0.9;
}
.cta__button-text {
  position: relative;
  z-index: 1;
}
.cta__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 46%,
    rgba(255, 255, 255, 0.12) 52%,
    transparent 62%
  );
  width: 140%;
  transform: skewX(-18deg) translateX(-120%);
  filter: blur(0.2px);
  animation: sweep 2s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes sweep {
  0% {
    transform: skewX(-18deg) translateX(-120%);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  50% {
    transform: skewX(-18deg) translateX(0%);
    opacity: 0.9;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: skewX(-18deg) translateX(120%);
    opacity: 0;
  }
}
.cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(16, 23, 55, 0.55);
}
.cta__button:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(16, 23, 55, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  .cta__button {
    transition: none;
  }
  .cta__button::before {
    animation: none;
    opacity: 0;
  }
  .cta__sparkles {
    display: none;
  }
}
@media (max-width: 520px) {
  .cta__subtitle {
    font-size: 15px;
  }
  .cta__button {
    width: 100%;
  }
}

/* Light halls system */
.halls--light {
  --ink: #0d1128;
  --muted: #4b5563;
  --gold: #c99a2e;
  --gold-soft: #ffe8b0;
  --paper: #ffffff;
  --tile: #ffffff;
  --tile-border: rgba(13, 17, 40, 0.08);
  --ring: rgba(49, 135, 230, 0.35);
  --shadow-sm: 0 6px 18px rgba(13, 17, 40, 0.08);
  --shadow-lg: 0 22px 60px rgba(13, 17, 40, 0.12);
  background: radial-gradient(
      900px 420px at 10% -10%,
      rgba(110, 168, 255, 0.12),
      transparent 55%
    ),
    radial-gradient(
      900px 420px at 110% 0%,
      rgba(124, 242, 156, 0.1),
      transparent 55%
    ),
    linear-gradient(#f8fbff, #f5f8ff 35%, #f7faff 100%);
  padding: clamp(56px, 7vw, 110px) 16px;
  color: var(--ink);
}
.halls__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.halls__header {
  text-align: left;
  margin: 0 0 clamp(24px, 4.5vw, 44px) 0;
  display: inline-block;
}
.halls__title {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 52px);
  background: linear-gradient(180deg, #0d1128, #38406a 55%, #2a3560);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.halls__subtitle {
  margin: 0.6rem 0 0;
  max-width: 760px;
  color: var(--muted);
  opacity: 0.95;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}
.halls__underline {
  display: block;
  height: 5px;
  width: min(36vw, 320px);
  border-radius: 999px;
  margin: 14px 0 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-soft),
    var(--gold),
    transparent
  );
  box-shadow: 0 6px 18px rgba(201, 154, 46, 0.35);
}
.halls__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .halls__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .halls__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.hall {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 340px;
  background: var(--tile);
  border: 1px solid var(--tile-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hall:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 17, 40, 0.14);
}
.hall__media {
  position: absolute;
  inset: -2%;
  z-index: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 0.6s ease;
  filter: saturate(1.02) contrast(1.02);
}
.hall:hover .hall__media {
  transform: scale(1.12);
}
.hall__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.15) 35%,
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(
      100% 70% at 50% 100%,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.55) 40%,
      rgba(255, 255, 255, 0) 70%
    );
  mix-blend-mode: lighten;
}
.hall__content {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 16px 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(13, 17, 40, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(13, 17, 40, 0.1);
}
.hall__eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  margin: 0 0 8px 0;
  color: #384060;
  background: rgba(13, 17, 40, 0.06);
  border: 1px solid rgba(13, 17, 40, 0.1);
}
.hall__name {
  margin: 0 0 12px 0;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
}
.hall__btn {
  --bg: linear-gradient(180deg, #101737, #0e142f);
  --stroke: rgba(13, 17, 40, 0.12);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 14px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 22px rgba(16, 23, 55, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.hall__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring), 0 10px 26px rgba(16, 23, 55, 0.35);
  transform: translateY(-1px);
}
.hall__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(16, 23, 55, 0.35);
}
.hall__btn:active {
  transform: translateY(0);
}
.hall__btn-gloss,
.hall__btn-gloss::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}
.hall__btn-gloss {
  background: radial-gradient(
      140px 60px at 20% 0%,
      rgba(126, 91, 255, 0.18),
      transparent 70%
    ),
    radial-gradient(
      160px 70px at 80% 120%,
      rgba(124, 242, 156, 0.16),
      transparent 70%
    );
  filter: blur(6px);
  opacity: 0.9;
  z-index: 0;
}
.hall__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 46%,
    rgba(255, 255, 255, 0.18) 52%,
    transparent 62%
  );
  width: 140%;
  transform: skewX(-18deg) translateX(-120%);
  animation: btnsweep 2s ease-in-out infinite;
  mix-blend-mode: screen;
}
.hall__btn-text {
  position: relative;
  z-index: 2;
}
@keyframes btnsweep {
  0% {
    transform: skewX(-18deg) translateX(-120%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: skewX(-18deg) translateX(0%);
    opacity: 0.95;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: skewX(-18deg) translateX(120%);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hall__media,
  .hall,
  .hall__btn {
    transition: none;
  }
  .hall__btn::before {
    animation: none;
    opacity: 0;
  }
}
/* ---------- SBO Light Section ---------- */
.sbo--light {
  --ink: #0d1128;
  --muted: #4b5563;
  --paper: #ffffff;
  --tile: #ffffff;
  --tile-stroke: rgba(13, 17, 40, 0.09);
  --ring: rgba(49, 135, 230, 0.35);
  --shadow-sm: 0 8px 22px rgba(13, 17, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 17, 40, 0.14);

  background: radial-gradient(
      900px 420px at 10% -10%,
      rgba(110, 168, 255, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 420px at 110% 0%,
      rgba(124, 242, 156, 0.1),
      transparent 55%
    ),
    linear-gradient(#f8fbff, #f5f8ff 35%, #f7faff 100%);
  color: var(--ink);
}

.sbo__header {
  text-align: left;
  margin: 0 0 clamp(24px, 4.5vw, 44px) 0;
  display: inline-block;
}
.sbo__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(28px, 4vw, 52px);
  background: linear-gradient(180deg, #0d1128, #38406a 55%, #2a3560);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sbo__subtitle {
  margin: 0.6rem 0 0;
  max-width: 760px;
  color: var(--muted);
  opacity: 0.95;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}
.sbo__underline {
  display: block;
  height: 5px;
  width: min(36vw, 320px);
  border-radius: 999px;
  margin: 14px 0 0;
  background: linear-gradient(
    90deg,
    transparent,
    #c99a2e,
    #ffe8b0,
    #c99a2e,
    transparent
  );
  box-shadow: 0 6px 18px rgba(201, 154, 46, 0.35);
}

/* grid */
.sbo__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .sbo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .sbo__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* card */
.sbo-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--tile);
  border: 1px solid var(--tile-stroke);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.sbo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 17, 40, 0.14);
}

/* cover */
.sbo-card__cover {
  position: relative;
  padding: 28px 28px 24px;
  background: radial-gradient(
      140% 120% at -30% -50%,
      rgba(110, 168, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      140% 120% at 130% 0%,
      rgba(124, 242, 156, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #101737, #0d132f);
  color: #fff;
  border-bottom: 2px solid #f9a825;
}
.sbo-card__eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #e6efff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.sbo-card__title {
  margin: 10px 0 0;
  font-weight: 900;
  font-size: clamp(20px, 2vw, 26px);
}

.sbo-card__body {
  padding: 24px 28px 28px;
}
.sbo-card__text {
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 18px;
}

/* premium light button (2s reflection) */
.sbo-btn {
  --bg: linear-gradient(180deg, #101737, #0e142f);
  --stroke: rgba(13, 17, 40, 0.12);

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--bg);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 26px rgba(16, 23, 55, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
  isolation: isolate;
}
.sbo-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring), 0 14px 30px rgba(16, 23, 55, 0.36);
  transform: translateY(-1px);
}
.sbo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(16, 23, 55, 0.36);
}
.sbo-btn__icon {
  width: 20px;
  height: 20px;
  transition: transform 0.22s ease;
}
.sbo-btn:hover .sbo-btn__icon {
  transform: translateX(4px);
}

/* inner glow + reflection sweep */
.sbo-btn__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
      160px 70px at 20% 0%,
      rgba(126, 91, 255, 0.18),
      transparent 70%
    ),
    radial-gradient(
      180px 80px at 80% 120%,
      rgba(124, 242, 156, 0.16),
      transparent 70%
    );
  filter: blur(6px);
  opacity: 0.9;
}
.sbo-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 46%,
    rgba(255, 255, 255, 0.18) 52%,
    transparent 62%
  );
  width: 140%;
  transform: skewX(-18deg) translateX(-120%);
  mix-blend-mode: screen;
  animation: sboSweep 2s ease-in-out infinite;
}
.sbo-btn__text {
  position: relative;
  z-index: 2;
}

@keyframes sboSweep {
  0% {
    transform: skewX(-18deg) translateX(-120%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: skewX(-18deg) translateX(0%);
    opacity: 0.95;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: skewX(-18deg) translateX(120%);
    opacity: 0;
  }
}

/* motion preference */
@media (prefers-reduced-motion: reduce) {
  .sbo-card,
  .sbo-btn {
    transition: none;
  }
  .sbo-btn::before {
    animation: none;
    opacity: 0;
  }
}

/* ===== Premium Notification Bar (always visible, light) ===== */
:root {
  --header-h: 64px; /* will be updated by JS to your real header height */
  --ticker-speed: 28s;
}

.notify {
  position: sticky;
  top: var(--header-h); /* sits below your sticky header */
  z-index: 40;
  background: radial-gradient(
      900px 420px at 10% -10%,
      rgba(110, 168, 255, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 420px at 110% 0%,
      rgba(124, 242, 156, 0.1),
      transparent 55%
    ),
    linear-gradient(#ffffff, #fbfdff);
  border-bottom: 1px solid rgba(13, 17, 40, 0.06);
  box-shadow: 0 10px 24px rgba(13, 17, 40, 0.06);
}

/* animated top line */
.notify::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background-image: linear-gradient(90deg, #f9a825, #29b6f6, #8bc34a, #f9a825);
  background-size: 300% 100%;
  animation: notifyLine 6s linear infinite;
}
@keyframes notifyLine {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -150% 0;
  }
}

.notify__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 10px 16px;
}
@media (min-width: 768px) {
  .notify__inner {
    padding: 12px 24px;
    gap: 16px;
  }
}

/* icon */
.notify__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #101737, #0e142f);
  border: 1px solid rgba(13, 17, 40, 0.12);
  box-shadow: 0 8px 22px rgba(16, 23, 55, 0.22);
  color: #fff;
}
.notify__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ticker shell */
.notify__ticker {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

/* track scrolls left infinitely */
.notify__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  will-change: transform;
  animation: tickerScroll var(--ticker-speed) linear infinite;
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* because we duplicate the items once */
}

/* individual items */
.notify__item {
  color: #0d1128;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(14px, 1.1vw, 16px);
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.notify__item:hover {
  color: #00529b;
  transform: translateY(-1px);
}

/* pause on hover/focus for usability */
.notify__ticker:hover .notify__track,
.notify__ticker:focus-within .notify__track {
  animation-play-state: paused;
}

/* motion preferences */
@media (prefers-reduced-motion: reduce) {
  .notify::before {
    animation: none;
  }
  .notify__track {
    animation: none;
  }
}

/* ===== Premium News Popup ===== */
:root {
  --np-ink: #0d1128;
  --np-muted: #6b7280;
  --np-paper: #ffffff;
  --np-dark: #0d1128;
  --np-orange: #f9a825;
  --np-blue: #29b6f6;
  --np-green: #8bc34a;
  --np-shadow: 0 30px 80px rgba(13, 17, 40, 0.22);
  --np-radius: 22px;
}

/* shell (hidden by default) */
.np {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

/* backdrop */
.np__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 40, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* panel */
.np__panel {
  position: relative;
  width: min(92vw, 720px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.86)
  );
  border: 1px solid rgba(13, 17, 40, 0.08);
  border-radius: var(--np-radius);
  box-shadow: var(--np-shadow);
  transform: translateY(10px) scale(0.985);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  opacity: 0;
  overflow: hidden;
  isolation: isolate;
}

/* animated gradient ring border */
.np__ring {
  pointer-events: none;
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    var(--np-orange),
    var(--np-blue),
    var(--np-green),
    var(--np-orange)
  );
  filter: blur(10px);
  opacity: 0.16;
  animation: npRing 6s linear infinite;
  z-index: 0;
}
@keyframes npRing {
  to {
    transform: rotate(360deg);
  }
}

/* content layers */
.np__header,
.np__content,
.np__footer {
  position: relative;
  z-index: 1;
}
.np__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 10px 18px;
}
@media (min-width: 640px) {
  .np__header {
    padding: 22px 22px 12px 22px;
  }
}

.np__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #101737, #0e142f);
  border: 1px solid rgba(13, 17, 40, 0.12);
  box-shadow: 0 8px 22px rgba(16, 23, 55, 0.22);
}
.np__icon svg {
  width: 20px;
  height: 20px;
}

.np__titles {
  flex: 1 1 auto;
  min-width: 0;
}
.np__title {
  margin: 0;
  color: var(--np-ink);
  font-weight: 900;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.01em;
}
.np__subtitle {
  margin: 0.25rem 0 0;
  color: var(--np-muted);
  font-size: 14px;
  line-height: 1.5;
}

.np__close {
  border: none;
  background: transparent;
  color: var(--np-muted);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.np__close:hover {
  background: rgba(13, 17, 40, 0.06);
  color: var(--np-ink);
}
.np__close:active {
  transform: scale(0.96);
}

.np__content {
  padding: 0 18px 6px 18px;
}
@media (min-width: 640px) {
  .np__content {
    padding: 0 22px 8px 22px;
  }
}

.np__list {
  list-style: none;
  margin: 0;
  padding: 6px 0 0 0;
  display: grid;
  gap: 10px;
}
.np__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 17, 40, 0.06);
}
.np__badge {
  flex: 0 0 auto;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(180deg, #f9a825, #f2b93a);
  border: 1px solid rgba(13, 17, 40, 0.12);
  box-shadow: 0 6px 16px rgba(249, 168, 37, 0.25);
}
.np__badge--info {
  background: linear-gradient(180deg, #29b6f6, #4ec6fb);
  box-shadow: 0 6px 16px rgba(41, 182, 246, 0.25);
}
.np__text {
  min-width: 0;
}
.np__link {
  display: inline-block;
  color: var(--np-ink);
  font-weight: 800;
  text-decoration: none;
}
.np__link:hover {
  color: #00529b;
  text-decoration: underline;
}
.np__time {
  display: block;
  margin-top: 2px;
  color: var(--np-muted);
  font-size: 12px;
}

.np__footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 18px 18px 18px;
}
@media (min-width: 640px) {
  .np__footer {
    padding: 12px 22px 22px 22px;
  }
}

.np__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}
.np__btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #101737, #0e142f);
  border-color: rgba(13, 17, 40, 0.12);
  box-shadow: 0 10px 26px rgba(16, 23, 55, 0.35);
}
.np__btn--primary:hover {
  transform: translateY(-1px);
}
.np__btn--ghost {
  color: var(--np-ink);
  background: #fff;
  border-color: rgba(13, 17, 40, 0.12);
}
.np__btn--ghost:hover {
  background: #f9fafb;
}

/* visible state */
.np.is-open {
  opacity: 1;
  pointer-events: auto;
}
.np.is-open .np__backdrop {
  opacity: 1;
}
.np.is-open .np__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* motion preference */
@media (prefers-reduced-motion: reduce) {
  .np,
  .np__panel {
    transition: none;
  }
  .np__ring {
    animation: none;
  }
}

/* ===== Premium Moments Slider ===== */
.lx-slider {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  overflow: hidden;
  background: #0d1128; /* subtle frame behind images while loading */
  box-shadow: 0 18px 48px rgba(13, 17, 40, 0.18);
}
.lx-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      800px 300px at 10% -10%,
      rgba(41, 182, 246, 0.15),
      transparent 60%
    ),
    radial-gradient(
      800px 300px at 110% 0%,
      rgba(139, 195, 74, 0.12),
      transparent 60%
    );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
.lx-slider__track {
  position: relative;
  height: min(72vh, 640px);
}
.lx-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.lx-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 0;
}
.lx-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lx-slide__caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  color: #fff;
  padding: 22px 22px 26px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.68) 100%
  );
}
.lx-slide__title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.2px;
}
.lx-slide__text {
  margin-top: 6px;
  color: #e8eef6;
  font-size: clamp(14px, 1.3vw, 16px);
}

/* nav arrows */
.lx-slider__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background: rgba(13, 17, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s;
}
.lx-slider__nav:hover {
  background: rgba(13, 17, 40, 0.75);
  transform: translateY(-1px);
}
.lx-slider__nav--prev {
  left: 12px;
}
.lx-slider__nav--next {
  right: 12px;
}

/* dots */
.lx-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  z-index: 3;
}
.lx-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.lx-dots button.is-active {
  background: #f9a825;
  transform: scale(1.2);
}

/* responsive height tweaks */
@media (max-width: 640px) {
  .lx-slider__track {
    height: 56vh;
  }
  .lx-slider__nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}
