:root {
  --bg: #020711;
  --bg-soft: #071321;
  --panel: rgba(8, 24, 39, 0.78);
  --panel-strong: rgba(10, 35, 55, 0.92);
  --line: rgba(93, 220, 255, 0.26);
  --line-strong: rgba(93, 220, 255, 0.55);
  --text: #e8f7ff;
  --muted: #95b6c9;
  --cyan: #55dcff;
  --green: #4dffb5;
  --gold: #f5c451;
  --danger: #ff5d73;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --font-display: 'Rajdhani', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at top, #0b253c 0%, var(--bg) 42%, #010308 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.site-shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  opacity: 0.8;
}

.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(rgba(255,255,255,0.02) 50%, rgba(0,0,0,0.02) 50%);
  background-size: 100% 4px;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.18;
  z-index: -3;
}
.orb-one { background: var(--cyan); top: 8%; left: -140px; }
.orb-two { background: var(--green); bottom: 5%; right: -160px; }

.section-pad {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(3, 11, 20, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: block;
  width: clamp(156px, 18vw, 220px);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(85, 220, 255, 0.24));
}

.hero-logo {
  display: block;
  width: min(360px, 78vw);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 0 24px rgba(85, 220, 255, 0.28));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  background: rgba(85,220,255,0.12);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(85,220,255,0.08);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.05;
}
h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7.2vw, 6.25rem);
  font-weight: 600;
  letter-spacing: -0.018em;
}
h2 {
  font-size: clamp(2.15rem, 4.6vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.hero-text,
.section-heading p,
.mission-card p,
.game-content p,
.update-feed p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-text { max-width: 620px; margin: 24px 0 0; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #041019;
  background: linear-gradient(135deg, var(--gold), #ffe292);
  box-shadow: 0 0 34px rgba(245,196,81,0.22);
}
.btn-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(85,220,255,0.08);
}

.hero-console,
.mission-card,
.game-card,
.update-feed article,
.content-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), rgba(3, 12, 21, 0.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-console {
  border-radius: 28px;
  overflow: hidden;
  transform: perspective(1100px) rotateY(-7deg) rotateX(3deg);
}
.console-topbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.24);
}
.console-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}
.console-topbar span:nth-child(2) { background: var(--gold); box-shadow: 0 0 16px var(--gold); }
.console-topbar span:nth-child(3) { background: var(--green); box-shadow: 0 0 16px var(--green); }
.console-screen { padding: 24px; }
.status-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.status-row strong { color: var(--green); }
.studio-pipeline {
  display: grid;
  gap: 10px;
  padding: 24px 0;
}

.pipeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(85,220,255,0.2);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(85,220,255,0.11), rgba(77,255,181,0.035)),
    rgba(3, 12, 21, 0.42);
  overflow: hidden;
}

.pipeline-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(85,220,255,0.11), transparent);
  transform: translateX(-120%);
  animation: pipelineSweep 4.8s ease-in-out infinite;
}

.pipeline-row:nth-child(2)::before { animation-delay: 0.6s; }
.pipeline-row:nth-child(3)::before { animation-delay: 1.2s; }
.pipeline-row:nth-child(4)::before { animation-delay: 1.8s; }

.pipeline-game,
.pipeline-status {
  position: relative;
  z-index: 1;
}

.pipeline-game {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pipeline-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: rgba(0,0,0,0.18);
  white-space: nowrap;
}

.status-gold { color: var(--gold); box-shadow: 0 0 18px rgba(245,196,81,0.12); }
.status-green { color: var(--green); box-shadow: 0 0 18px rgba(77,255,181,0.12); }
.status-cyan { color: var(--cyan); box-shadow: 0 0 18px rgba(85,220,255,0.12); }
.status-muted { color: var(--muted); }

.terminal-lines {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #c4efff;
}
.terminal-lines p { margin: 10px 0; }
.terminal-lines span { color: var(--gold); }

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.game-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.game-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.game-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(85, 220, 255, 0.38), rgba(255,255,255,0.04), rgba(77,255,181,0.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}
.game-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.4);
}
.game-card.featured {
  border-color: rgba(245,196,81,0.45);
}
.game-art {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(85,220,255,0.18), rgba(1,5,12,0.2) 65%);
  border-bottom: 1px solid var(--line);
}
.image-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 500ms ease;
}
.game-card:hover .image-art img {
  transform: scale(1.055);
}
.game-art-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,7,17,0.85), rgba(2,7,17,0.1) 45%),
    radial-gradient(circle at 20% 20%, rgba(85,220,255,0.16), transparent 40%),
    radial-gradient(circle at 80% 16%, rgba(77,255,181,0.08), transparent 30%);
}
.game-art-scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(85,220,255,0.18), transparent),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 4px, 38px 38px;
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: artScanSweep 6.5s linear infinite;
}
.game-art-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(85,220,255,0.3);
  border-radius: 999px;
  background: rgba(2, 10, 18, 0.72);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.status-light {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
  box-shadow: 0 0 14px currentColor;
  animation: ping 1.8s ease-in-out infinite;
}
.status-light.live { color: var(--gold); background: var(--gold); }
.status-light.proto { color: var(--green); background: var(--green); }
.game-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.game-content p { margin: 14px 0 20px; }
.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.tag {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.tag.gold { color: var(--gold); border-color: rgba(245,196,81,0.6); }
.text-link {
  color: var(--green);
  font-weight: 800;
}
.text-link:hover { color: var(--gold); }
.game-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(85,220,255,0.12);
}
.card-signal {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.beam-pulse,
.combat-streak {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.beam-pulse::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 62%;
  left: 28%;
  top: 20%;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(85,220,255,0.85), rgba(85,220,255,0.04));
  filter: blur(1px);
  box-shadow: 0 0 24px rgba(85,220,255,0.8);
  opacity: 0;
  transform: rotate(28deg) scaleY(0.8);
  transform-origin: top center;
  animation: minerPulse 4.8s ease-in-out infinite;
}
.combat-streak::before {
  content: "";
  position: absolute;
  width: 38%;
  height: 4px;
  right: 18%;
  top: 34%;
  background: linear-gradient(90deg, rgba(85,220,255,0), rgba(85,220,255,1), rgba(255,255,255,0.2));
  box-shadow: 0 0 18px rgba(85,220,255,0.9);
  transform: rotate(-13deg) scaleX(0.72);
  transform-origin: right center;
  animation: defenseShot 3.8s ease-in-out infinite;
}
.combat-streak::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  right: 16%;
  top: 26%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,93,115,0.58), rgba(255,93,115,0.16), transparent 72%);
  opacity: 0;
  animation: impactPulse 3.8s ease-in-out infinite;
}
.ghost-art {
  background:
    radial-gradient(circle at 50% 30%, rgba(85,220,255,0.2), transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(77,255,181,0.1), transparent 45%),
    linear-gradient(180deg, rgba(6,16,28,0.95), rgba(2,7,17,1));
}
.hex-core {
  position: absolute;
  inset: 66px 0 0;
  margin: auto;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, rgba(85,220,255,0.3), rgba(77,255,181,0.12));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  border: 1px solid var(--line);
  animation: rotateSlow 9s linear infinite;
}
.signal-rings {
  position: absolute;
  inset: 0;
}
.signal-rings::before,
.signal-rings::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  border: 1px solid rgba(85,220,255,0.22);
  transform: translate(-50%, -50%) scale(0.65);
  animation: ringPulse 3.2s ease-out infinite;
}
.signal-rings::after {
  animation-delay: 1.2s;
}
.mission-card {
  border-radius: 30px;
  padding: clamp(28px, 6vw, 64px);
  border-color: rgba(245,196,81,0.35);
}
.mission-card p { max-width: 850px; }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.principles div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(85,220,255,0.06);
}
.principles strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-display);
}
.principles span { color: var(--muted); line-height: 1.5; }

.update-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.update-feed article {
  border-radius: 22px;
  padding: 24px;
}
.update-date {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.update-feed h3 { margin-top: 12px; }

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 5px;
}
.site-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer a:hover { color: var(--gold); }

.page-main { padding-top: 40px; }
.content-panel {
  width: min(900px, calc(100% - 40px));
  margin: 64px auto 100px;
  padding: clamp(26px, 5vw, 52px);
  border-radius: 28px;
}
.content-panel h1 { font-size: clamp(2.4rem, 7vw, 4.8rem); }
.content-panel h2 { font-size: 1.4rem; margin-top: 34px; }
.content-panel p, .content-panel li { color: var(--muted); line-height: 1.75; }
.content-panel a { color: var(--green); font-weight: 800; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pipelineSweep {
  0%, 20% { transform: translateX(-120%); opacity: 0; }
  35% { opacity: 1; }
  70%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}
@keyframes beamSweep {
  0%, 100% { transform: translateX(-50%) rotate(-18deg); opacity: 0.55; }
  50% { transform: translateX(-50%) rotate(22deg); opacity: 1; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(10deg); }
}
@keyframes shoot {
  0% { transform: translateX(0) rotate(45deg); opacity: 0; }
  12% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(230px) rotate(45deg); opacity: 0; }
}
@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(7deg); }
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}
@keyframes artScanSweep {
  0% { background-position: -120% 0, 0 0, 0 0; }
  100% { background-position: 120% 0, 0 0, 38px 38px; }
}
@keyframes ping {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes minerPulse {
  0%, 15%, 100% { opacity: 0; }
  20%, 58% { opacity: 0.95; }
  70% { opacity: 0.15; }
}
@keyframes defenseShot {
  0%, 18%, 100% { opacity: 0; transform: rotate(-13deg) scaleX(0.3); }
  25% { opacity: 1; }
  45% { opacity: 1; transform: rotate(-13deg) scaleX(1); }
  60% { opacity: 0; transform: rotate(-13deg) scaleX(0.9); }
}
@keyframes impactPulse {
  0%, 30%, 100% { opacity: 0; transform: scale(0.5); }
  44% { opacity: 1; transform: scale(1); }
  58% { opacity: 0.2; transform: scale(1.35); }
}
@keyframes ringPulse {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.58); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-console { transform: none; }
  .game-grid { grid-template-columns: 1fr; }
  .principles, .update-feed { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section-pad { width: min(100% - 28px, 1180px); padding: 72px 0; }
  .site-header { width: calc(100% - 20px); }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(3, 11, 20, 0.94);
    backdrop-filter: blur(18px);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; }
  .brand-logo { width: 152px; }
  .game-card { min-height: 0; }
  .game-art { min-height: 240px; }
  .image-art img { min-height: 240px; }
  .game-card-footer { align-items: flex-start; flex-direction: column; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .signal-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Current Transmission Carousel */
.transmission-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--text);
  background: rgba(85, 220, 255, 0.08);
  box-shadow: 0 0 26px rgba(85, 220, 255, 0.08);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(245, 196, 81, 0.12);
  outline: none;
}

.transmission-carousel {
  position: relative;
}

.carousel-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(8, 24, 39, 0.78), rgba(3, 12, 21, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.update-feed.carousel-track {
  display: flex;
  grid-template-columns: none;
  gap: 0;
  transition: transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1);
  will-change: transform;
}

.update-feed.carousel-track article {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.transmission-card {
  position: relative;
  flex: 0 0 100%;
  min-height: 230px;
  padding: clamp(26px, 5vw, 44px) !important;
  overflow: hidden;
}

.transmission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(85, 220, 255, 0.08), transparent),
    radial-gradient(circle at 84% 22%, rgba(77, 255, 181, 0.14), transparent 28%),
    linear-gradient(rgba(85, 220, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 220, 255, 0.055) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 34px 34px, 34px 34px;
  opacity: 0.72;
  animation: transmissionSweep 5.5s linear infinite;
}

.transmission-card > * {
  position: relative;
  z-index: 1;
}

.transmission-card h3 {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.transmission-card p {
  max-width: 820px;
  margin-bottom: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
}

.carousel-dot {
  width: 30px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(149, 182, 201, 0.35);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.carousel-dot.is-active {
  width: 48px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(245, 196, 81, 0.45);
}

@keyframes transmissionSweep {
  0% { background-position: -120% 0, 0 0, 0 0, 0 0; }
  100% { background-position: 120% 0, 0 0, 34px 34px, 34px 34px; }
}

@media (max-width: 720px) {
  .transmission-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-controls {
    width: 100%;
  }

  .carousel-btn {
    flex: 1;
  }
}
