@charset "UTF-8";

:root {
  --ink: #03040c;
  --ink-soft: #070b1a;
  --panel: rgba(9, 14, 34, 0.76);
  --panel-solid: #0a1024;
  --panel-light: rgba(18, 27, 57, 0.72);
  --line: rgba(154, 211, 255, 0.17);
  --line-strong: rgba(154, 226, 255, 0.42);
  --white: #f4fbff;
  --text: #d7e5f4;
  --muted: #91a6bf;
  --cyan: #67e8f9;
  --cyan-bright: #aaf5ff;
  --blue: #5e7cff;
  --violet: #a86dff;
  --gold: #ffe078;
  --green: #72f59c;
  --danger: #ff657f;
  --font-display: "Jersey 10", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1260px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(25, 66, 164, 0.28), transparent 31rem),
    radial-gradient(circle at 90% 22%, rgba(117, 49, 199, 0.17), transparent 34rem),
    linear-gradient(180deg, #02030a 0%, #071024 34%, #040712 72%, #02030a 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(109, 193, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 193, 255, 0.02) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

::selection {
  color: #030c18;
  background: var(--cyan);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

svg {
  overflow: visible;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 7vw, 6.4rem);
  line-height: 0.83;
  letter-spacing: 0.018em;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.3), 0 0 38px rgba(91, 191, 255, 0.13);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.6vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.018em;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.26), 0 0 32px rgba(76, 184, 255, 0.1);
}

h2 span,
h1 span {
  color: transparent;
  background: linear-gradient(105deg, #ffffff 4%, #aef4ff 38%, #c6a7ff 70%, #ffe48b 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: 0.025em;
}

p {
  margin-bottom: 20px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #06101c;
  background: var(--gold);
  font-weight: 800;
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.starfield {
  position: fixed;
  inset: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cosmic-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.25;
  pointer-events: none;
  background:
    repeating-linear-gradient(116deg, transparent 0 8px, rgba(255, 255, 255, 0.025) 9px 10px),
    radial-gradient(circle at 22% 20%, rgba(43, 94, 231, 0.16), transparent 25%),
    radial-gradient(circle at 76% 36%, rgba(155, 69, 255, 0.11), transparent 24%);
  filter: blur(8px);
  animation: nebula-drift 20s ease-in-out infinite alternate;
}

.cursor-glow {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: -2;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(circle, rgba(72, 203, 255, 0.12), rgba(132, 78, 255, 0.045) 42%, transparent 70%);
  filter: blur(10px);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 300ms ease;
}

@keyframes nebula-drift {
  from { transform: rotate(-1deg) scale(1); }
  to { transform: rotate(1.5deg) scale(1.05); }
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-nav.is-scrolled {
  border-color: rgba(131, 205, 255, 0.14);
  background: rgba(3, 6, 18, 0.8);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-icon {
  position: relative;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(121, 220, 255, 0.35);
  border-radius: 13px;
  background: #071127;
  box-shadow: 0 0 28px rgba(76, 205, 255, 0.18);
}

.brand-icon::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 12px rgba(157, 229, 255, 0.14);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-type small {
  margin-top: 2px;
  color: #6f88a7;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: #a8bad0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(103, 232, 249, 0.32);
  border-radius: 10px 3px 10px 3px;
  color: var(--cyan-bright);
  background: rgba(8, 17, 40, 0.78);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
.mobile-menu-open .mobile-menu-toggle {
  border-color: var(--cyan);
  color: var(--white);
  background: rgba(103, 232, 249, 0.13);
}

.mobile-menu-icon {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1;
}

.mobile-nav { display: none; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(138, 205, 255, 0.15);
  border-radius: 12px;
  background: rgba(8, 14, 32, 0.64);
}

.language-switch button {
  display: inline-flex;
  min-width: 43px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 8px;
  border: 0;
  border-radius: 9px;
  color: #8399b3;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switch > a {
  display: inline-flex;
  min-width: 43px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 9px;
  color: #8399b3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switch > a:hover { color: var(--white); }

.language-switch img {
  width: 20px;
  height: auto;
}

.language-switch button span {
  display: none;
}

.language-switch > a span { display: none; }

.language-switch button.active {
  color: #07111e;
  background: linear-gradient(135deg, var(--cyan), #e8fbff);
  box-shadow: 0 0 20px rgba(103, 232, 249, 0.22);
}

.language-switch > a.active {
  color: #07111e;
  background: linear-gradient(135deg, var(--cyan), #e8fbff);
  box-shadow: 0 0 20px rgba(103, 232, 249, 0.22);
}

.button {
  --button-bg: rgba(10, 18, 42, 0.76);
  --button-color: var(--white);
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(144, 211, 255, 0.24);
  border-radius: 12px 4px 12px 4px;
  color: var(--button-color);
  background: var(--button-bg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 14px 38px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.045em;
  isolation: isolate;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(112deg, transparent 25%, rgba(255, 255, 255, 0.22) 48%, transparent 68%);
  transform: translateX(-125%);
  transition: transform 550ms ease;
}

.button:hover {
  border-color: rgba(103, 232, 249, 0.6);
  box-shadow: 0 18px 48px rgba(44, 183, 255, 0.14);
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(125%);
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  --button-color: #06111e;
  --button-bg: linear-gradient(135deg, #73ecfa 0%, #95b7ff 48%, #d2a9ff 100%);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 48px rgba(84, 204, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button-primary:hover {
  border-color: #fff;
  box-shadow: 0 22px 58px rgba(84, 204, 255, 0.3), 0 0 32px rgba(165, 104, 255, 0.14);
}

.button-ghost {
  --button-bg: rgba(12, 20, 43, 0.54);
  backdrop-filter: blur(10px);
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
  font-size: 1.5rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  align-items: center;
  padding: 142px 0 92px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(ellipse at 73% 44%, rgba(27, 83, 190, 0.22), transparent 35%),
    radial-gradient(ellipse at 80% 45%, rgba(153, 73, 255, 0.1), transparent 45%),
    linear-gradient(to bottom, transparent 68%, rgba(4, 8, 20, 0.88) 100%);
}

.hero::after {
  position: absolute;
  right: -8vw;
  top: 12%;
  z-index: -1;
  width: min(64vw, 900px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(103, 232, 249, 0.05);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(100, 220, 255, 0.018),
    0 0 0 230px rgba(114, 80, 255, 0.012);
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 5vw, 82px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-bright);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px 10px;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 999px;
  background: rgba(5, 12, 30, 0.6);
  box-shadow: inset 0 0 28px rgba(103, 232, 249, 0.04);
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(114, 245, 156, 0.8);
}

.live-dot::after {
  position: absolute;
  inset: -4px;
  content: "";
  border: 1px solid rgba(114, 245, 156, 0.5);
  border-radius: inherit;
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0% { opacity: 1; transform: scale(0.6); }
  80%, 100% { opacity: 0; transform: scale(1.7); }
}

.hero-logo {
  width: min(405px, 82vw);
  height: auto;
  margin: 22px 0 18px;
  filter: drop-shadow(0 0 24px rgba(91, 174, 255, 0.28)) drop-shadow(0 16px 28px rgba(0, 0, 0, 0.48));
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: #bdcde0;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-tags > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(142, 203, 255, 0.12);
  border-radius: 999px;
  color: #90a6c0;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-tags i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(103, 232, 249, 0.7);
}

.hero-visual {
  position: relative;
  z-index: 3;
  min-width: 0;
  padding: 44px 0 56px;
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.visual-aura {
  position: absolute;
  inset: -8% -4%;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.72;
  background:
    radial-gradient(circle at 50% 50%, rgba(71, 201, 255, 0.18), transparent 45%),
    conic-gradient(from 90deg, transparent, rgba(117, 81, 255, 0.16), transparent 35%, rgba(103, 232, 249, 0.13), transparent 72%);
  filter: blur(25px);
  animation: aura-turn 16s linear infinite;
}

@keyframes aura-turn {
  to { transform: rotate(360deg); }
}

.game-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 222, 255, 0.35);
  border-radius: 22px 6px 22px 6px;
  background: #050813;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.55),
    0 0 0 7px rgba(80, 190, 255, 0.025),
    0 0 70px rgba(76, 174, 255, 0.16);
}

.game-window::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.window-bar {
  display: grid;
  min-height: 42px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: #7990ad;
  background: linear-gradient(180deg, rgba(18, 30, 62, 0.98), rgba(8, 14, 31, 0.98));
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-lights {
  display: flex;
  gap: 5px;
}

.window-lights i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #293653;
}

.window-lights i:first-child { background: var(--danger); }
.window-lights i:nth-child(2) { background: var(--gold); }
.window-lights i:last-child { background: var(--green); }

.window-signal {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #87a1be;
  font-size: 0.78rem;
}

.window-signal i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(114, 245, 156, 0.75);
}

.game-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #02040b;
}

.game-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.screen-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.1) 43%, transparent 56%),
    linear-gradient(to bottom, transparent 75%, rgba(5, 8, 18, 0.15));
  mix-blend-mode: screen;
  transform: translateX(-85%);
  animation: screen-scan 8s ease-in-out infinite;
}

@keyframes screen-scan {
  0%, 58% { transform: translateX(-85%); }
  78%, 100% { transform: translateX(85%); }
}

.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 215px;
  padding: 11px 13px;
  border: 1px solid rgba(149, 220, 255, 0.22);
  border-radius: 15px 5px 15px 5px;
  background: rgba(5, 11, 27, 0.88);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.floating-card-top {
  top: 15px;
  right: -22px;
}

.floating-card-bottom {
  bottom: 14px;
  left: -24px;
}

.floating-card small,
.floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

.floating-card small {
  margin-bottom: 4px;
  color: #7189a7;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.floating-card strong {
  color: #eaf8ff;
  font-size: 1.2rem;
  letter-spacing: 0.035em;
}

.radar-icon,
.player-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 12px;
  background: rgba(25, 53, 97, 0.52);
}

.player-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.radar-icon::before,
.radar-icon::after,
.radar-icon i {
  position: absolute;
  border: 1px solid rgba(103, 232, 249, 0.7);
  border-radius: 50%;
  content: "";
}

.radar-icon::before { width: 25px; height: 25px; }
.radar-icon::after { width: 13px; height: 13px; }
.radar-icon i { width: 4px; height: 4px; background: var(--gold); border: 0; box-shadow: 0 0 8px var(--gold); }

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #607794;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 25px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.signal-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-block: 1px solid rgba(112, 210, 255, 0.16);
  background: linear-gradient(90deg, rgba(11, 45, 87, 0.55), rgba(58, 31, 105, 0.42), rgba(11, 45, 87, 0.55));
  box-shadow: 0 0 50px rgba(72, 175, 255, 0.05) inset;
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 15px 0;
  color: #b8d8ec;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.signal-group {
  display: flex;
  width: max-content;
  min-width: 100vw;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  padding-right: 28px;
}

.signal-group span { min-width: 120px; text-align: center; }
.signal-group i { color: var(--gold); font-style: normal; opacity: 0.75; }

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section-kicker {
  margin-bottom: 20px;
}

.section-kicker::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.section-lead {
  color: #d4e4f4;
  font-size: clamp(1.08rem, 1.55vw, 1.25rem);
  line-height: 1.65;
}

.story {
  background:
    radial-gradient(circle at 12% 62%, rgba(38, 94, 210, 0.13), transparent 31rem),
    linear-gradient(180deg, rgba(5, 9, 23, 0.84), rgba(6, 12, 28, 0.36));
}

.story-grid,
.identity-grid,
.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.story-media,
.identity-visual,
.community-visual {
  position: relative;
  min-width: 0;
}

.image-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(147, 220, 255, 0.25);
  border-radius: var(--radius-lg) 6px var(--radius-lg) 6px;
  background: #050814;
  box-shadow: var(--shadow), 0 0 0 6px rgba(92, 202, 255, 0.025);
}

.image-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(to top, rgba(3, 6, 15, 0.14), transparent 36%);
}

.image-frame::after {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 20px;
  height: 20px;
  content: "";
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  opacity: 0.65;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.shot-fix-label {
  display: none;
}

html.language-en .shot-fix-label {
  position: absolute;
  right: 2.2%;
  bottom: 0;
  left: 2.2%;
  z-index: 6;
  display: flex;
  min-height: 20.5%;
  align-items: center;
  justify-content: center;
  padding: 0.45em 0.8em 0.55em;
  border: 1px solid #4c4f54;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  color: #fff;
  background: #1b1b1c;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.65rem);
  line-height: 0.85;
  letter-spacing: 0.055em;
  text-align: center;
  text-shadow: 2px 2px 0 #000;
}

.image-frame:hover img {
  transform: scale(1.018);
}

.map-coordinate {
  position: absolute;
  right: -14px;
  bottom: -22px;
  z-index: 5;
  padding: 8px 13px;
  border: 1px solid rgba(255, 224, 120, 0.24);
  color: var(--gold);
  background: rgba(4, 8, 20, 0.9);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.orbit-mark {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(105, 221, 255, 0.12);
  border-radius: 50%;
}

.orbit-mark::before {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.orbit-mark-one { top: -36px; left: -42px; width: 150px; height: 150px; }
.orbit-mark-two { right: -42px; bottom: -45px; width: 110px; height: 110px; border-color: rgba(180, 107, 255, 0.13); }

.story-copy > p:not(.section-lead) {
  color: var(--muted);
}

.journey-steps {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.journey-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 0 0 24px;
}

.journey-steps article:not(:last-child)::after {
  position: absolute;
  top: 39px;
  bottom: 6px;
  left: 20px;
  width: 1px;
  content: "";
  background: linear-gradient(to bottom, rgba(103, 232, 249, 0.36), rgba(103, 232, 249, 0.05));
}

.journey-steps article > span {
  display: grid;
  width: 42px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 9px 3px 9px 3px;
  color: var(--cyan);
  background: rgba(13, 28, 57, 0.7);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.journey-steps h3 {
  margin: 0 0 3px;
  font-size: 1.55rem;
}

.journey-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.features {
  overflow: hidden;
}

.features::before {
  position: absolute;
  top: 10%;
  right: -240px;
  z-index: -1;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(103, 232, 249, 0.05);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(103, 232, 249, 0.012), 0 0 0 190px rgba(150, 86, 255, 0.01);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(34px, 6vw, 90px);
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p,
.gallery-side > p {
  margin: 0 0 8px;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 294px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px 6px 22px 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%),
    radial-gradient(circle at 12% 0%, rgba(83, 194, 255, 0.12), transparent 35%),
    rgba(7, 13, 31, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.feature-card::before {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 140px;
  height: 140px;
  content: "";
  border: 1px solid rgba(103, 232, 249, 0.09);
  transform: rotate(25deg);
}

.feature-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  content: "";
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transition: border-color 240ms ease;
}

.feature-card:hover {
  z-index: 2;
  border-color: rgba(103, 232, 249, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%),
    radial-gradient(circle at 12% 0%, rgba(83, 194, 255, 0.18), transparent 38%),
    rgba(8, 16, 36, 0.86);
  transform: translateY(-5px);
}

.feature-card:hover::after {
  border-color: rgba(103, 232, 249, 0.45);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-number {
  position: absolute;
  top: 18px;
  right: 19px;
  color: rgba(154, 206, 237, 0.25);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid rgba(117, 217, 255, 0.2);
  border-radius: 16px 5px 16px 5px;
  color: var(--cyan-bright);
  background: linear-gradient(135deg, rgba(79, 193, 255, 0.12), rgba(152, 86, 255, 0.12));
  box-shadow: 0 0 30px rgba(65, 190, 255, 0.06);
}

.feature-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.identity {
  background:
    linear-gradient(90deg, rgba(4, 8, 20, 0.86), rgba(5, 10, 25, 0.45)),
    radial-gradient(circle at 20% 50%, rgba(42, 104, 224, 0.12), transparent 34rem);
}

.identity-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
}

.identity-stamp {
  position: absolute;
  right: -24px;
  bottom: -28px;
  z-index: 5;
  min-width: 195px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 224, 120, 0.34);
  border-radius: 14px 4px 14px 4px;
  background: linear-gradient(135deg, rgba(10, 18, 39, 0.95), rgba(28, 20, 51, 0.95));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42), 0 0 30px rgba(255, 224, 120, 0.06);
}

.identity-stamp span,
.identity-stamp strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.identity-stamp span {
  margin-bottom: 4px;
  color: #8096b1;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.identity-stamp strong {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.identity-copy > p {
  color: var(--muted);
}

.fair-play {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  margin: 28px 0;
  padding: 20px;
  border: 1px solid rgba(255, 224, 120, 0.21);
  border-radius: 17px 5px 17px 5px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 224, 120, 0.11), transparent 45%),
    rgba(11, 17, 37, 0.68);
}

.fair-rune {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 224, 120, 0.28);
  border-radius: 50%;
  color: var(--gold);
  box-shadow: inset 0 0 18px rgba(255, 224, 120, 0.08), 0 0 22px rgba(255, 224, 120, 0.06);
}

.fair-play h3 {
  margin: 0 0 6px;
  color: #fff3bd;
  font-size: 1.55rem;
}

.fair-play p {
  margin: 0;
  color: #a5b4c8;
  font-size: 0.89rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-bright);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

.gallery {
  overflow: hidden;
  padding-bottom: 140px;
}

.gallery::before {
  position: absolute;
  inset: 16% 0 auto;
  z-index: -1;
  height: 58%;
  content: "";
  background: radial-gradient(ellipse at 50% 50%, rgba(40, 105, 225, 0.12), transparent 60%);
}

.gallery-heading {
  margin-bottom: 40px;
}

.gallery-side {
  align-self: end;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.gallery-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(146, 216, 255, 0.2);
  border-radius: 12px 4px 12px 4px;
  color: #c8e9ff;
  background: rgba(10, 17, 38, 0.72);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.gallery-controls button:hover {
  border-color: rgba(103, 232, 249, 0.55);
  background: rgba(20, 39, 72, 0.82);
  transform: translateY(-2px);
}

.gallery-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-controls span {
  min-width: 62px;
  color: #617895;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.gallery-controls b {
  color: var(--white);
  font-weight: 400;
}

.gallery-shell {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 22px;
  padding: 18px max(24px, calc((100vw - var(--container)) / 2));
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  flex: 0 0 min(74vw, 910px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(145, 214, 255, 0.16);
  border-radius: 25px 7px 25px 7px;
  background: #030612;
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.42);
  opacity: 0.43;
  scroll-snap-align: center;
  transform: scale(0.96);
  transition: opacity 350ms ease, transform 350ms ease, border-color 350ms ease;
}

.gallery-slide::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.07), transparent 25%);
}

.gallery-slide.active {
  border-color: rgba(115, 220, 255, 0.38);
  opacity: 1;
  transform: scale(1);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.gallery-slide .shot-fix-label {
  font-size: clamp(1.4rem, 3.2vw, 2.7rem);
}

.gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.gallery-dots button {
  width: 24px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #293851;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.gallery-dots button.active {
  width: 42px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(103, 232, 249, 0.5);
}

.community {
  border-block: 1px solid rgba(135, 204, 255, 0.08);
  background:
    radial-gradient(circle at 86% 50%, rgba(102, 68, 219, 0.13), transparent 33rem),
    rgba(4, 8, 20, 0.52);
}

.community-grid {
  grid-template-columns: minmax(390px, 0.83fr) minmax(0, 1.17fr);
}

.community-copy > p {
  max-width: 540px;
  color: var(--muted);
}

.community-copy .button {
  margin-top: 12px;
}

.community-badge {
  position: absolute;
  right: -18px;
  bottom: -20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(114, 245, 156, 0.24);
  border-radius: 12px 4px 12px 4px;
  color: #bdf7cf;
  background: rgba(5, 14, 26, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
  font-family: var(--font-display);
  font-size: 1.16rem;
  letter-spacing: 0.04em;
}

.community-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(114, 245, 156, 0.72);
}

.download {
  padding-block: 135px;
}

.download-panel {
  position: relative;
  padding: clamp(42px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid rgba(141, 215, 255, 0.27);
  border-radius: var(--radius-xl) 8px var(--radius-xl) 8px;
  background:
    linear-gradient(90deg, rgba(4, 9, 23, 0.98) 0%, rgba(5, 11, 27, 0.92) 48%, rgba(7, 10, 25, 0.92) 100%),
    url("./src/nydur_banners_web/ptbr/7.webp") center / cover;
  box-shadow: var(--shadow), 0 0 90px rgba(65, 174, 255, 0.09);
  isolation: isolate;
}

.download-panel::before {
  position: absolute;
  inset: 15px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 25px 4px 25px 4px;
  pointer-events: none;
  content: "";
}

.download-panel::after {
  position: absolute;
  top: -210px;
  right: -140px;
  z-index: -1;
  width: 570px;
  height: 570px;
  content: "";
  border: 1px solid rgba(103, 232, 249, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(94, 124, 255, 0.025), 0 0 0 150px rgba(168, 109, 255, 0.015);
}

.download-nebula {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.7;
  background:
    radial-gradient(circle at 14% 20%, rgba(69, 201, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 28%, rgba(155, 82, 255, 0.17), transparent 34%),
    radial-gradient(circle at 66% 100%, rgba(255, 213, 94, 0.06), transparent 32%);
}

.download-heading {
  max-width: 800px;
  margin: 0 auto 45px;
  text-align: center;
}

.download-heading .section-kicker::before {
  display: none;
}

.download-heading p {
  max-width: 660px;
  margin: 0 auto;
  color: #a7bad0;
  font-size: 1.04rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}

.platform-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 8px 17px;
  padding: 23px;
  border: 1px solid rgba(143, 211, 255, 0.17);
  border-radius: 22px 6px 22px 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 45%),
    rgba(7, 14, 32, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.platform-card:hover {
  border-color: rgba(103, 232, 249, 0.4);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 45%),
    rgba(9, 19, 42, 0.92);
  transform: translateY(-4px);
}

.platform-icon {
  display: grid;
  width: 64px;
  height: 64px;
  grid-row: span 1;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.21);
  border-radius: 18px 6px 18px 6px;
  color: var(--cyan-bright);
  background: linear-gradient(135deg, rgba(72, 196, 255, 0.14), rgba(143, 82, 255, 0.11));
}

.platform-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.windows-icon svg {
  fill: currentColor;
  stroke: none;
}

.platform-copy > span {
  display: block;
  margin-bottom: 1px;
  color: #647b98;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-copy h3 {
  margin: 0;
  font-size: 2.2rem;
}

.platform-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.platform-title-row .platform-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 5px 8px 6px;
  border: 1px solid rgba(255, 224, 120, 0.34);
  border-radius: 8px 3px 8px 3px;
  color: #fff1ae;
  background: linear-gradient(135deg, rgba(255, 211, 91, 0.13), rgba(168, 109, 255, 0.13));
  box-shadow: inset 0 0 15px rgba(255, 224, 120, 0.05), 0 0 18px rgba(255, 224, 120, 0.04);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.platform-title-row .platform-status::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px rgba(255, 224, 120, 0.72);
}

.platform-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.button-platform {
  grid-column: 1 / -1;
  margin-top: 10px;
  color: #07121e;
  background: linear-gradient(135deg, #dffcff, #88eafa 44%, #a8b6ff);
  border-color: rgba(255, 255, 255, 0.52);
}

.download-community {
  position: relative;
  display: grid;
  max-width: 940px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 18px auto 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(168, 109, 255, 0.25);
  border-radius: 20px 6px 20px 6px;
  background:
    radial-gradient(circle at 8% 0%, rgba(103, 232, 249, 0.11), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(168, 109, 255, 0.13), transparent 34%),
    rgba(8, 14, 34, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.download-community::after {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 17px;
  height: 17px;
  content: "";
  border-top: 1px solid rgba(168, 109, 255, 0.55);
  border-right: 1px solid rgba(168, 109, 255, 0.55);
  pointer-events: none;
}

.download-community:hover {
  border-color: rgba(168, 109, 255, 0.48);
  background:
    radial-gradient(circle at 8% 0%, rgba(103, 232, 249, 0.15), transparent 36%),
    radial-gradient(circle at 92% 100%, rgba(168, 109, 255, 0.18), transparent 36%),
    rgba(9, 16, 38, 0.9);
  transform: translateY(-2px);
}

.download-community-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(168, 109, 255, 0.28);
  border-radius: 17px 5px 17px 5px;
  color: #d9c2ff;
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.1), rgba(168, 109, 255, 0.18));
  box-shadow: 0 0 28px rgba(168, 109, 255, 0.07);
}

.download-community-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-community-copy {
  min-width: 0;
}

.download-community-copy > span {
  display: block;
  margin-bottom: 2px;
  color: #9d82d0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.download-community-copy h3 {
  margin: 0 0 3px;
  color: #f1e9ff;
  font-size: 1.65rem;
}

.download-community-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.button-discord {
  min-width: 176px;
  color: #f7f2ff;
  border-color: rgba(190, 150, 255, 0.3);
  background: linear-gradient(135deg, rgba(80, 68, 173, 0.88), rgba(119, 80, 201, 0.9));
  box-shadow: 0 16px 38px rgba(53, 34, 117, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button-discord:hover {
  border-color: rgba(205, 175, 255, 0.65);
  box-shadow: 0 20px 48px rgba(92, 58, 178, 0.3);
}

.download-mantra {
  margin: 38px 0 0;
  color: #6f87a4;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.download-mantra i {
  margin: 0 8px;
  color: var(--gold);
  font-style: normal;
}

.site-footer {
  border-top: 1px solid rgba(137, 205, 255, 0.11);
  background: rgba(1, 3, 9, 0.58);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 43px 0 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img:first-child {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  image-rendering: pixelated;
}

.footer-brand img:last-child {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(81, 173, 255, 0.18));
}

.footer-main p {
  margin: 0;
  color: #7186a0;
  font-size: 0.83rem;
  text-align: center;
}

.footer-community {
  color: #a8bdd5;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-community:hover {
  color: var(--cyan-bright);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(134, 202, 255, 0.08);
  color: #526783;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 500;
  max-width: min(390px, calc(100vw - 32px));
  padding: 14px 17px;
  border: 1px solid rgba(255, 224, 120, 0.3);
  border-radius: 14px 5px 14px 5px;
  color: #fff2bb;
  background: rgba(6, 12, 28, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 224, 120, 0.07);
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.is-pending:nth-child(2),
.feature-card.is-pending:nth-child(5) { transition-delay: 80ms; }
.feature-card.is-pending:nth-child(3),
.feature-card.is-pending:nth-child(6) { transition-delay: 150ms; }

@media (max-width: 1120px) {
  .nav-links { display: none; }

  .mobile-menu-toggle { display: inline-flex; }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 14px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 20px;
    border-top: 1px solid rgba(134, 208, 255, 0.12);
    border-bottom: 1px solid rgba(134, 208, 255, 0.18);
    background: rgba(3, 7, 22, 0.97);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px) saturate(140%);
  }

  .mobile-nav[hidden] { display: none; }

  .mobile-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 9px 3px 9px 3px;
    color: #b9cce1;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible,
  .mobile-nav a.is-active {
    border-color: rgba(103, 232, 249, 0.28);
    color: var(--white);
    background: rgba(103, 232, 249, 0.1);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.93fr) minmax(470px, 1.07fr);
    gap: 38px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card-wide { grid-column: span 1; }

  .feature-icon { margin-bottom: 42px; }
}

@media (max-width: 900px) {
  .section { padding: 92px 0; }

  .hero {
    min-height: auto;
    padding: 132px 0 86px;
  }

  .hero-grid,
  .story-grid,
  .identity-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-logo { margin-inline: auto; }
  .hero-actions, .hero-tags { justify-content: center; }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .scroll-cue { display: none; }

  .story-grid,
  .identity-grid,
  .community-grid {
    gap: 64px;
  }

  .story-media { order: 2; }
  .story-copy { order: 1; }

  .story-copy,
  .identity-copy,
  .community-copy {
    max-width: 700px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .section-heading > p,
  .gallery-side > p {
    max-width: 680px;
  }

  .identity-visual,
  .community-visual {
    width: min(760px, 100%);
  }

  .community-copy { order: 1; }
  .community-visual { order: 2; }

  .gallery-controls { margin-top: 18px; }

  .platform-grid {
    max-width: 620px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --radius-xl: 25px;
    --radius-lg: 20px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: clamp(3.55rem, 17vw, 5rem);
    line-height: 0.84;
  }

  h2 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
    line-height: 0.9;
  }

  h3 { font-size: 1.8rem; }

  .section { padding: 76px 0; }

  .nav-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .brand-type strong { font-size: 1.32rem; }
  .brand-type small { display: none; }

  .language-switch button {
    min-width: 38px;
    min-height: 34px;
    padding: 4px 7px;
  }

  .language-switch > a {
    min-width: 38px;
    min-height: 34px;
    padding: 4px 7px;
  }

  .language-switch button img { display: none; }
  .language-switch button span { display: inline; }
  .language-switch > a img { display: none; }
  .language-switch > a span { display: inline; }

  .nav-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 1.08rem;
  }

  .hero {
    padding: 112px 0 64px;
  }

  .hero-grid { gap: 28px; }

  .eyebrow,
  .section-kicker {
    font-size: 1.05rem;
  }

  .hero-logo {
    width: min(340px, 84vw);
    margin-top: 18px;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.64;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 380px);
    margin: 26px auto 0;
  }

  .button-large {
    width: 100%;
    min-height: 54px;
    font-size: 1.35rem;
  }

  .hero-tags {
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-tags > span {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 0.64rem;
  }

  .hero-visual { padding: 28px 8px 64px; }

  .window-bar {
    min-height: 35px;
    grid-template-columns: auto 1fr;
    padding-inline: 10px;
    font-size: 0.8rem;
    text-align: right;
  }

  .window-signal { display: none; }

  .floating-card {
    min-width: 0;
    max-width: calc(100% - 30px);
    padding: 9px 11px;
  }

  .floating-card-top {
    top: 6px;
    right: 0;
  }

  .floating-card-bottom {
    bottom: 8px;
    left: 0;
  }

  .floating-card small { font-size: 0.77rem; }
  .floating-card strong { font-size: 1.05rem; }

  .radar-icon,
  .player-icon {
    width: 37px;
    height: 37px;
  }

  .signal-track {
    padding-block: 13px;
    font-size: 1.08rem;
  }

  .signal-group {
    gap: 19px;
    padding-right: 19px;
  }

  .story-grid,
  .identity-grid,
  .community-grid { gap: 48px; }

  .map-coordinate {
    right: 8px;
    bottom: -17px;
  }

  .journey-steps article {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .feature-grid { grid-template-columns: 1fr; }

  .feature-card {
    min-height: 0;
    padding: 23px;
  }

  .feature-icon {
    margin-bottom: 32px;
  }

  .identity-stamp {
    right: 8px;
    bottom: -24px;
  }

  .fair-play {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding-bottom: 95px;
  }

  .gallery-slide {
    flex-basis: calc(100vw - 48px);
    border-radius: 18px 5px 18px 5px;
  }

  .gallery-track {
    gap: 12px;
    padding-inline: 24px;
  }

  .community-badge {
    right: 8px;
    bottom: -18px;
  }

  .download {
    padding-block: 86px;
  }

  .download-panel {
    padding: 42px 20px;
  }

  .download-panel::before {
    inset: 9px;
    border-radius: 19px 3px 19px 3px;
  }

  .platform-card {
    grid-template-columns: 56px 1fr;
    padding: 19px;
  }

  .platform-icon {
    width: 54px;
    height: 54px;
  }

  .platform-icon svg {
    width: 32px;
    height: 32px;
  }

  .download-community {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 17px;
  }

  .download-community-icon {
    width: 50px;
    height: 50px;
  }

  .download-community-icon svg {
    width: 31px;
    height: 31px;
  }

  .download-community-copy h3 {
    font-size: 1.48rem;
  }

  .button-discord {
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 3px;
  }

  .download-mantra {
    font-size: 1.02rem;
    letter-spacing: 0.1em;
  }

  .download-mantra i { margin-inline: 3px; }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 440px) {
  .brand-type strong { font-size: 1.18rem; }

  .nav-actions { gap: 6px; }

  .mobile-menu-toggle {
    min-width: 38px;
    width: 38px;
    padding: 0;
  }

  .mobile-menu-toggle [data-mobile-menu-label] { display: none; }

  .nav-cta { display: none; }

  .language-switch {
    border-radius: 9px;
  }

  .language-switch button {
    min-width: 31px;
    padding-inline: 5px;
    font-size: 0.65rem;
  }

  .language-switch > a {
    min-width: 31px;
    padding-inline: 5px;
    font-size: 0.65rem;
  }

  .nav-cta {
    padding-inline: 10px;
    font-size: 1rem;
  }

  .hero-tags > span {
    flex-basis: 100%;
  }

  .floating-card-top { display: none; }

  .platform-card {
    grid-template-columns: 48px 1fr;
    gap: 6px 13px;
  }

  .platform-icon {
    width: 48px;
    height: 48px;
  }

  .platform-copy h3 { font-size: 1.9rem; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .cursor-glow { display: none; }
  .signal-track { transform: none; }
  .reveal.is-pending { opacity: 1; transform: none; }
}
