.page-home .shell { width: min(1180px, calc(100% - 2rem)); }
.page-home main { overflow-x: hidden; padding: 0; position: relative; }

.fx-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.fx-bleed--alt {
  background:
    linear-gradient(180deg, rgba(10, 77, 111, 0.06) 0%, transparent 40%),
    linear-gradient(0deg, rgba(10, 77, 111, 0.04) 0%, transparent 30%);
}
.fx-wrap {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.fx-label--center, .fx-heading--center, .fx-sub--center { text-align: center; }
.fx-sub--center { margin-inline: auto; }
.fx-sub--wide { max-width: 38rem; }

.fx-display {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}
.fx-heading {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1rem;
}
.fx-highlight {
  background: linear-gradient(135deg, var(--accent-bright) 0%, #5ecfff 45%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fx-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 1.75rem;
}
.fx-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-cinematic {
  position: relative;
  min-height: auto;
  padding: 1.5rem 0 2rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 143, 196, 0.08);
  z-index: 1;
}

.hero-cinematic__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-cinematic__mesh {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 50% 42% at 72% 18%, rgba(0, 166, 217, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 45% 38% at 18% 72%, rgba(10, 77, 111, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0, 143, 196, 0.05) 0%, transparent 58%);
  animation: ckMeshDrift 22s ease-in-out infinite alternate;
}

.hero-cinematic__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  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");
}

.hero-cinematic__glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 217, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 217, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 55% 35%, black 15%, transparent 72%);
  animation: ckGridDrift 32s linear infinite;
}

.hero-cinematic__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.82fr;
  gap: 1.5rem 2rem;
  align-items: center;
}

.hero-cinematic__copy {
  max-width: 34rem;
}

.hero-cinematic__title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28em;
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(0.75em);
  will-change: transform, opacity, filter;
}

.hero-word--accent {
  background: linear-gradient(135deg, var(--accent-bright) 0%, #5ecfff 45%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-line {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(28px);
  will-change: transform, opacity, filter;
}

.page-home.is-hero-ready .hero-word {
  animation: ckWordIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--i, 0) * 0.13s);
}

.page-home.is-hero-ready .hero-line {
  animation: ckLineIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.52s + var(--d, 0) * 0.11s);
}

@keyframes ckWordIn {
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes ckLineIn {
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes ckMeshDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, 2.5%) scale(1.05); }
}

@keyframes ckGridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(56px); }
}

.hero-scene {
  position: relative;
  max-width: 300px;
  min-height: 240px;
  margin-inline: auto;
  perspective: 900px;
}

.hero-scene__stage {
  position: relative;
  width: 100%;
  height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ck-shape {
  position: absolute;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ck-shape--ring {
  width: 168px;
  height: 168px;
  top: 14%;
  right: 8%;
  border-radius: 50%;
  padding: 3px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#080808, #080808) padding-box,
    conic-gradient(from 120deg, rgba(0, 166, 217, 0.45), rgba(255,255,255,0.1), rgba(0, 143, 196, 0.35), rgba(0, 166, 217, 0.45)) border-box;
  box-shadow: 0 0 28px rgba(0, 166, 217, 0.1), inset 0 0 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.ck-shape__avatar {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  overflow: hidden;
  background: #060708;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.65);
}

.ck-shape__avatar img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.ck-shape--orb {
  width: 56px;
  height: 56px;
  top: 34%;
  left: 22%;
  border-radius: 50%;
  animation: ckOrbFloat 14s ease-in-out infinite;
}

.ck-shape__orb-core {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #5ecfff 0%, var(--accent) 50%, var(--brand) 100%);
  box-shadow: 0 0 22px rgba(0, 166, 217, 0.35);
}

.ck-shape__orb-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.04) 35%, transparent 60%);
  border: 1px solid rgba(255,255,255,0.14);
}

.ck-shape--cube {
  width: 44px;
  height: 44px;
  bottom: 22%;
  right: 26%;
  border-radius: 10px;
  background: linear-gradient(145deg, #1a2230 0%, #0a0e14 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  animation: ckCubeFloat 16s ease-in-out infinite;
}

.ck-shape--disc {
  width: 52px;
  height: 52px;
  bottom: 14%;
  left: 10%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  animation: ckDiscFloat 18s ease-in-out infinite reverse;
  opacity: 0.8;
}

.ck-shape--bar {
  width: 72px;
  height: 14px;
  top: 16%;
  left: 12%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,166,217,0.35), rgba(255,255,255,0.06));
  transform: rotate(-24deg);
  opacity: 0.55;
  animation: ckBarFloat 12s ease-in-out infinite;
}

@keyframes ckRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes ckOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -16px); }
}

@keyframes ckCubeFloat {
  0%, 100% { transform: translateY(0) rotateX(8deg) rotateY(-12deg); }
  50% { transform: translateY(-14px) rotateX(12deg) rotateY(8deg); }
}

@keyframes ckDiscFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10px, 12px) rotate(8deg); }
}

@keyframes ckBarFloat {
  0%, 100% { transform: rotate(-24deg) translateX(0); }
  50% { transform: rotate(-20deg) translateX(16px); }
}

.ck-glass {
  position: absolute;
  padding: 0.5rem 0.7rem;
  border-radius: 12px;
  background: rgba(15, 18, 19, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.page-home.is-hero-ready .ck-glass {
  animation: ckCardIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-home.is-hero-ready .ck-glass--players { animation-delay: 0.75s; }
.page-home.is-hero-ready .ck-glass--status { animation-delay: 0.92s; }
.page-home.is-hero-ready .ck-glass--badge { animation-delay: 1.08s; }

@keyframes ckCardIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ck-glass--players {
  top: 4%;
  left: 0;
  min-width: 118px;
}

.ck-glass--status {
  bottom: 32%;
  right: -2%;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
}

.ck-glass--badge {
  bottom: 8%;
  left: 24%;
  text-align: center;
  min-width: 88px;
  padding: 0.4rem 0.55rem;
}

.ck-glass__label {
  display: block;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.ck-glass__num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-bright);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.ck-glass__hint {
  font-size: 0.62rem;
  color: var(--muted);
}

.ck-glass__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
  flex-shrink: 0;
}

.ck-glass strong {
  display: block;
  font-size: 0.75rem;
}

.ck-glass small {
  color: var(--muted);
  font-size: 0.62rem;
}

.ck-glass--badge span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
}

.btn--magnetic {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
}

.btn--magnetic span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn--magnetic::after {
  content: "←";
  position: absolute;
  left: 1rem;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s, transform 0.25s;
  font-size: 0.85em;
}

.btn--magnetic:hover span {
  transform: translateX(-4px);
}

.hero-fx__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}

.hero-welcome__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hero-welcome__logo {
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-home.is-hero-ready .hero-welcome__logo {
  animation: logoPulse 4s ease-in-out infinite 1.2s;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(0, 166, 217, 0.4)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 28px rgba(0, 166, 217, 0.65)); transform: scale(1.04); }
}

.hero-welcome__titles { min-width: 0; }
.hero-cinematic .fx-sub--wide {
  max-width: 32rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-cinematic .fx-cta {
  gap: 0.55rem;
}

.hero-cinematic .fx-cta .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
}

@media (max-width: 960px) {
  .hero-cinematic__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-scene {
    max-width: 280px;
    min-height: 220px;
    order: -1;
  }

  .hero-scene__stage {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .hero-cinematic {
    padding-top: 1rem;
  }

  .hero-cinematic__title {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-scene {
    display: none;
  }
}

.hero-fx {
  display: none;
}

.page-home { position: relative; }
.page-home .shell { position: relative; z-index: 1; }

.fx-display--shimmer {
  position: relative;
}

.status-strip {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.status-section {
  padding: 1.25rem 0 2rem;
  background: var(--bg);
}
.status-section__wrap {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.status-strip {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(0, 143, 196, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.status-strip.is-live {
  border-color: rgba(0, 166, 217, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 166, 217, 0.08);
}
.status-strip.is-offline { border-color: rgba(248, 113, 113, 0.3); }

.status-strip__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding-inline-end: 1rem;
  margin-inline-end: 1rem;
  border-inline-end: 1px solid rgba(0, 143, 196, 0.22);
}
.status-strip__brand img {
  width: 26px;
  height: 26px;
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}
.status-strip__brand strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1.2;
}
.status-strip__live {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
}
.status-strip__stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem 1rem;
  align-items: center;
  min-width: 0;
}
.status-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  text-align: center;
}
.status-strip__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}
.status-strip__value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-bright);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.status-strip__item--accent .status-strip__value { color: var(--accent-bright); }
.status-strip__value--ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

@media (max-width: 960px) {
  .status-strip { flex-direction: column; align-items: stretch; gap: 0.85rem; }
  .status-strip__brand {
    border-inline-end: none;
    margin-inline-end: 0;
    padding-inline-end: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
  }
  .status-strip__stats { grid-template-columns: repeat(2, 1fr); }
  .status-strip__item { text-align: start; }
}


.btn--glow {
  box-shadow: 0 0 28px rgba(0, 166, 217, 0.35), 0 4px 20px rgba(0, 0, 0, 0.3);
}
.btn--glow:hover {
  box-shadow: 0 0 40px rgba(0, 166, 217, 0.5), 0 6px 24px rgba(0, 0, 0, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.22,.61,.36,1), transform 0.75s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }

.fx-hero {
  position: relative;
  padding: 1rem 0 0;
  min-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--1 {
  width: 420px; height: 420px;
  top: -8%; right: 10%;
  background: rgba(0, 143, 196, 0.14);
}
.hero-orb--2 {
  width: 320px; height: 320px;
  bottom: 10%; left: -5%;
  background: rgba(10, 77, 111, 0.2);
  animation-delay: -4s;
}
.hero-orb--3 {
  width: 200px; height: 200px;
  top: 40%; left: 35%;
  background: rgba(0, 166, 217, 0.08);
  animation-delay: -7s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -24px) scale(1.06); }
}

.fx-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: rgba(15, 18, 19, 0.7);
  color: var(--muted);
}
.hero-chip--live {
  border-color: rgba(0, 166, 217, 0.35);
  color: var(--accent-bright);
}
.hero-chip .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-bright);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hero-metric strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1;
}
.hero-metric span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.fx-visual {
  position: relative;
  min-height: 400px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(0, 143, 196, 0.2);
  background:
    linear-gradient(145deg, rgba(15, 18, 19, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 143, 196, 0.08);
}
.fx-visual__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 143, 196, 0.22), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(10, 77, 111, 0.15), transparent 45%);
}
.fx-visual__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 166, 217, 0.015) 2px,
    rgba(0, 166, 217, 0.015) 4px
  );
  animation: scanMove 8s linear infinite;
  pointer-events: none;
}
@keyframes scanMove {
  from { transform: translateY(0); }
  to { transform: translateY(20px); }
}

.hero-badge {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge__ring {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 166, 217, 0.25);
  animation: ringPulse 3s ease infinite;
}
.hero-badge__ring::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 143, 196, 0.15);
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}
.hero-logo {
  width: clamp(140px, 22vw, 200px);
  margin: 0 auto 1rem;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 32px rgba(0, 166, 217, 0.45));
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fx-live {
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero-stat {
  position: absolute;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.hero-stat--season { bottom: 1.25rem; left: 1.25rem; }
.hero-stat--dept { top: 1.25rem; right: 1.25rem; }
.hero-stat small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.hero-stat strong {
  font-size: 1.35rem;
  color: var(--accent-bright);
  letter-spacing: 0.06em;
}

.hero-ticker {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.6);
  overflow: hidden;
  padding: 0.85rem 0;
  display: flex;
  justify-content: center;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.hero-ticker:hover .hero-ticker__track {
  animation-duration: 40s;
}
.hero-ticker__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-ticker__track span:nth-child(even) { color: var(--accent); opacity: 0.5; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.hero-scroll {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--muted);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.hero-scroll:hover { opacity: 1; color: var(--accent-bright); }
.hero-scroll__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.market-section {
  padding: 5rem 0 3rem;
  position: relative;
}
.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.market-card {
  position: relative;
  padding: 1.75rem 1.75rem 0;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--brand) 0%, #063549 100%);
  border: 1px solid rgba(0, 166, 217, 0.25);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(10, 77, 111, 0.2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.market-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.market-card__tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.65);
}
.market-card__delta {
  font-size: 0.78rem;
  font-weight: 800;
  color: #7dffb3;
}
.market-card__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.market-chart {
  height: 80px;
  margin-top: 0.5rem;
}
.market-chart svg { width: 100%; height: 100%; display: block; }
.market-chart__line {
  fill: none;
  stroke: #00A6D9;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 2s ease;
}
.market-card.is-visible .market-chart__line { stroke-dashoffset: 0; }
.market-chart__area { fill: url(#chartGrad); opacity: 0; transition: opacity 1.5s ease 0.5s; }
.market-card.is-visible .market-chart__area { opacity: 1; }

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.stat-bar__item {
  padding: 1.25rem 1rem;
  border-inline-start: 1px solid var(--border);
  position: relative;
}
.stat-bar__item:first-child { border-inline-start: 0; }
.stat-bar__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.stat-bar__sub {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0.15rem 0 0.5rem;
}
.stat-bar__value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.stat-bar__delta {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.25rem;
  display: inline-block;
}
.stat-bar__delta--up { color: #7dffb3; }
.stat-bar__delta--down { color: #f87171; }

.pillars-section { padding: 5rem 0; }
.section-intro { margin-bottom: 2.5rem; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pillar-card:hover {
  border-color: rgba(0, 143, 196, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 143, 196, 0.08);
}
.pillar-card__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent);
  opacity: 0.7;
}
.pillar-card__icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 143, 196, 0.1);
  border: 1px solid rgba(0, 143, 196, 0.2);
  color: var(--accent-bright);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.pillar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.pillar-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.gates-section { padding: 5rem 0; }
.gates-head { margin-bottom: 2rem; }
.gate-title-box {
  display: inline-block;
  padding: 0.4rem 1.15rem;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 143, 196, 0.25);
}
.gate-title-box .fx-highlight {
  -webkit-text-fill-color: #fff;
  background: none;
  color: #fff;
}

.gate-list { display: grid; gap: 1rem; }
.gate-row {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.gate-row--open {
  border-color: rgba(0, 143, 196, 0.25);
}
.gate-row--open:hover {
  box-shadow: 0 0 32px rgba(0, 143, 196, 0.12);
}
.gate-row__glow {
  position: absolute;
  inset: auto auto 0 0;
  width: 32%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 143, 196, 0.16), transparent);
  pointer-events: none;
}
.gate-row__edge {
  position: absolute;
  top: 0; right: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent-bright), var(--brand));
  opacity: 0;
  transition: opacity 0.25s;
}
.gate-row--open .gate-row__edge { opacity: 1; }

.gate-status {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.gate-status--open { color: #7dffb3; }
.gate-status--closed { color: var(--muted); }

.gate-row--closed { opacity: 0.75; }
.gate-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-bright);
  font-weight: 800;
  font-size: 1.05rem;
  transition: gap 0.2s;
}
.gate-row__cta:hover { gap: 0.75rem; color: #fff; }
.gate-row__arrow { font-size: 1.2rem; }
.gate-row__closed { color: var(--muted); font-weight: 700; font-size: 0.9rem; }
.gate-row__subtitle {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.gate-row__title {
  margin: 0.3rem 0;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}
.gate-row__note { margin: 0; color: var(--muted); font-size: 0.92rem; max-width: 36rem; }
.gate-row__code {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 800;
  writing-mode: horizontal-tb;
}
.gate-countdown { margin-top: 0.65rem; font-size: 0.82rem; }
.gate-countdown__time {
  display: block;
  font-weight: 800;
  color: var(--accent-bright);
  font-variant-numeric: tabular-nums;
  font-size: 1rem;
}
.gate-foot { margin-top: 1.5rem; text-align: center; }

.team-section {
  padding: 5rem 0;
  position: relative;
}
.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 143, 196, 0.35), transparent);
}
.cs-stage {
  position: relative;
  height: 380px;
  margin: 2.5rem 0 1.5rem;
  outline: none;
}
.cs-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-card {
  position: absolute;
  width: 210px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1), opacity 0.45s;
  transform: translateX(var(--cs-tx, 0)) translateY(var(--cs-ty, 0)) rotate(var(--cs-rot, 0deg)) scale(var(--cs-scale, 1));
  opacity: var(--cs-opacity, 1);
}
.cs-card__inner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.cs-card.is-active .cs-card__inner {
  border-color: rgba(0, 166, 217, 0.5);
  box-shadow: 0 0 40px rgba(0, 166, 217, 0.2), var(--shadow);
}
.cs-card__visual {
  position: relative;
  height: 230px;
  background: linear-gradient(180deg, var(--surface-3), var(--surface));
}
.cs-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.3s;
}
.cs-card.is-active .cs-card__photo { opacity: 1; }
.cs-card__active-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--accent-bright);
  font-weight: 800;
  opacity: 0;
}
.cs-card.is-active .cs-card__active-tag { opacity: 1; }
.cs-card__foot {
  padding: 0.75rem 0.85rem;
  text-align: center;
  display: grid;
  gap: 0.15rem;
}
.cs-card__foot strong {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--text-bright);
}
.cs-card__foot small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
}
.cs-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.cs-detail__body { max-width: 520px; }
.cs-detail__name {
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  margin: 0;
}
.cs-detail__role {
  color: var(--accent-bright);
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
}
.cs-detail__desc { color: var(--muted); margin: 0; transition: opacity 0.2s; }
.cs-nav {
  background: rgba(15, 18, 19, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 0.6rem 1.15rem;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.cs-nav:hover {
  border-color: rgba(0, 143, 196, 0.45);
  color: var(--accent-bright);
  box-shadow: 0 0 16px rgba(0, 143, 196, 0.15);
}

.team-apply {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 143, 196, 0.22);
  background: linear-gradient(180deg, rgba(0, 143, 196, 0.08) 0%, rgba(12, 14, 16, 0.92) 100%);
  text-align: center;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.team-apply--closed {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(12, 14, 16, 0.92) 100%);
}

.team-apply--closed .team-apply__glow {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.team-apply__subtitle--closed {
  margin-bottom: 0;
}

.team-apply__glow {
  position: absolute;
  inset-inline: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 230, 0.85), transparent);
}

.team-apply__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-bright);
}

.team-apply__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.04em;
}

.team-apply__subtitle {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.team-apply__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.team-apply__countdown {
  margin: 0;
}

.cta-strip {
  padding: 4rem 0;
  background:
    linear-gradient(135deg, rgba(10, 77, 111, 0.15) 0%, transparent 50%),
    linear-gradient(225deg, rgba(0, 143, 196, 0.08) 0%, transparent 50%);
  border-block: 1px solid var(--border);
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.news-preview { padding: 5rem 0; }
.news-preview__head { margin-bottom: 2rem; }

.news-featured {
  position: relative;
  display: block;
  padding: 2rem 2.25rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.news-featured:hover {
  border-color: rgba(0, 143, 196, 0.35);
  transform: translateY(-2px);
}
.news-featured__glow {
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(0, 143, 196, 0.12), transparent 60%);
  pointer-events: none;
}
.news-featured__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.news-featured__badge {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: rgba(0, 143, 196, 0.15);
  border: 1px solid rgba(0, 143, 196, 0.3);
  color: var(--accent-bright);
}
.news-featured__date {
  font-size: 0.78rem;
  color: var(--muted);
}
.news-featured h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  max-width: 40rem;
  margin-bottom: 0.75rem;
}
.news-featured p {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1rem;
}
.news-featured__link {
  color: var(--accent-bright);
  font-weight: 800;
  font-size: 0.9rem;
}

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.news-preview__more { margin-top: 2rem; text-align: center; }

@media (max-width: 960px) {
  .fx-hero__grid { grid-template-columns: 1fr; }
  .fx-hero { min-height: auto; }
  .hero-scroll { display: none; }
  .market-grid { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-bar__item:nth-child(3) { border-inline-start: 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .gate-row { grid-template-columns: 1fr; }
  .gate-row__code { order: -1; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .cs-stage { height: 300px; }
  .cs-card { width: 175px; }
}

@media (max-width: 520px) {
  .hero-metrics { gap: 1.25rem; }
  .stat-bar { grid-template-columns: 1fr; }
  .stat-bar__item { border-inline-start: 0 !important; border-top: 1px solid var(--border); }
  .stat-bar__item:first-child { border-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-word, .hero-line, .ck-glass {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-ticker__track, .hero-orb, .hero-badge img, .hero-badge__ring,
  .hero-scroll__line, .fx-visual__scan { animation: none; }
}
