@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("assets/fonts/unbounded-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("assets/fonts/unbounded-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #050711;
  --panel: rgba(9, 15, 29, .76);
  --panel-solid: #0a1020;
  --line: rgba(186, 213, 255, .16);
  --line-bright: rgba(215, 183, 109, .62);
  --gold: #d7b76d;
  --gold-light: #f7e7b0;
  --cyan: #6ce7ff;
  --telegram: #2aabee;
  --violet: #8c6dff;
  --green: #4ee6a8;
  --text: #f5f6fb;
  --muted: #929bb0;
  --display: "Unbounded", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --topbar-height: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 93, 166, .14), transparent 34rem),
    var(--bg);
  font-family: var(--body);
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { color: #07101a; background: var(--cyan); }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  color: #06111b;
  background: var(--cyan);
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-aura {
  position: fixed;
  z-index: 4;
  width: 460px;
  height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(85, 203, 255, .08), transparent 65%);
  transform: translate3d(var(--cursor-x, -500px), var(--cursor-y, -500px), 0);
  transition: opacity .3s ease;
}

.topbar {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(2, 4, 11, .9), rgba(2, 4, 11, .32));
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
}

.brand img { filter: drop-shadow(0 0 16px rgba(108, 231, 255, .24)); }

.brand-copy { display: grid; gap: 2px; }
.brand-copy b {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .13em;
}
.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.server-status {
  position: absolute;
  left: clamp(210px, 18vw, 330px);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8f98aa;
  font-size: 9px;
  letter-spacing: .18em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(78, 230, 168, .1), 0 0 13px rgba(78, 230, 168, .8);
  animation: statusPulse 2s ease-in-out infinite;
}

.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.nav a {
  position: relative;
  padding: 10px 0;
  color: #aab1bf;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { right: 0; }

.top-join {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px 10px 18px;
  border: 1px solid rgba(108, 231, 255, .32);
  color: #dffaff;
  background: rgba(37, 145, 199, .1);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .25s ease;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}
.top-join svg { width: 16px; fill: var(--cyan); }
.top-join:hover { border-color: var(--cyan); background: rgba(42, 171, 238, .22); transform: translateY(-2px); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(2, 4, 10, .06) 0%, rgba(5, 7, 17, .08) 40%, #050711 100%),
    radial-gradient(ellipse at 10% 31%, rgba(255, 162, 61, .2), transparent 35%),
    radial-gradient(ellipse at 90% 31%, rgba(71, 130, 255, .23), transparent 37%),
    radial-gradient(ellipse at 50% 45%, rgba(77, 137, 202, .13), transparent 33%),
    #050711;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 12, .08), rgba(3, 5, 12, .78) 32%, rgba(3, 5, 12, .78) 68%, rgba(3, 5, 12, .08)),
    linear-gradient(180deg, rgba(3, 4, 10, .05), rgba(3, 4, 10, .25));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(transparent, #050711 82%);
}

.hero-art {
  position: absolute;
  z-index: -3;
  top: 0;
  bottom: 0;
  width: 54%;
  overflow: hidden;
  opacity: .82;
  transform: translate3d(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 7px), 0) scale(1.035);
  transition: opacity .6s ease;
  will-change: transform;
}

.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art--left { left: 0; mask-image: linear-gradient(90deg, #000 55%, transparent 100%); }
.hero-art--left img { object-position: 72% center; filter: saturate(.96) brightness(.7) contrast(1.08); transform: scaleX(-1) scale(1.025); }
.hero-art--right { right: 0; mask-image: linear-gradient(270deg, #000 55%, transparent 100%); }
.hero-art--right img { object-position: 45% center; filter: saturate(.94) brightness(.68) contrast(1.08); transform: translateX(21%) rotate(-22deg) scaleX(-1) scale(.8); }

.arena-lines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(108, 231, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 231, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(transparent 12%, #000 50%, transparent 93%);
  transform: perspective(600px) rotateX(58deg) scale(1.8) translateY(23%);
  transform-origin: center 70%;
}

.arena-lines::after {
  content: "";
  position: absolute;
  inset: 30% 15%;
  border: 1px solid rgba(215, 183, 109, .28);
  box-shadow: 0 0 80px rgba(108, 231, 255, .08);
}

.particles { position: absolute; z-index: 1; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--particle-color, var(--cyan));
  box-shadow: 0 0 10px var(--particle-color, var(--cyan));
  opacity: 0;
  animation: particleFloat var(--duration, 8s) var(--delay, 0s) linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 8;
  width: min(1180px, calc(100% - 42px));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--topbar-height) + 34px) 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
  color: #b4bdcb;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
}
.eyebrow-line { width: 36px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow-line:last-child { transform: scaleX(-1); }

.hero-copy { text-align: center; }
.kicker, .section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5.1vw, 76px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-shadow: 0 10px 42px rgba(0, 0, 0, .65);
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(92deg, #f8e7ad 0%, #c99d45 44%, #7feaff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 8px 25px rgba(103, 195, 255, .12));
}

.hero-lead {
  margin: 18px 0 25px;
  color: #b2bac9;
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.7;
}

.lobby-shell {
  position: relative;
  width: min(100%, 1020px);
  padding: 18px 20px 20px;
  border: 1px solid rgba(200, 218, 255, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .045), transparent 22%),
    linear-gradient(180deg, rgba(12, 20, 38, .88), rgba(5, 10, 21, .91));
  box-shadow:
    0 32px 80px rgba(0, 0, 0, .55),
    inset 0 1px rgba(255, 255, 255, .05),
    0 0 90px rgba(78, 157, 221, .06);
  backdrop-filter: blur(20px) saturate(1.2);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  transform: perspective(1100px) rotateX(calc(var(--tilt-y, 0) * 1deg)) rotateY(calc(var(--tilt-x, 0) * 1deg));
  transition: transform .15s ease-out;
}

.lobby-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 16px var(--gold);
}

.corner { position: absolute; z-index: 3; width: 22px; height: 22px; border-color: var(--gold); opacity: .75; }
.corner--tl { top: 7px; left: 7px; border-top: 1px solid; border-left: 1px solid; }
.corner--tr { top: 7px; right: 7px; border-top: 1px solid; border-right: 1px solid; }
.corner--bl { bottom: 7px; left: 7px; border-bottom: 1px solid; border-left: 1px solid; }
.corner--br { right: 7px; bottom: 7px; border-right: 1px solid; border-bottom: 1px solid; }

.lobby-head { display: flex; justify-content: space-between; align-items: flex-end; margin: 0 2px 14px; }
.lobby-index { color: var(--gold); font-size: 7px; font-weight: 800; letter-spacing: .25em; }
.lobby-head h2 { margin: 4px 0 0; font-family: var(--display); font-size: 15px; letter-spacing: -.02em; text-transform: uppercase; }
.lobby-signal { display: flex; align-items: flex-end; gap: 3px; color: #717b8f; font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.lobby-signal i { width: 3px; background: var(--green); box-shadow: 0 0 7px rgba(78, 230, 168, .6); }
.lobby-signal i:nth-child(1) { height: 5px; opacity: .55; }
.lobby-signal i:nth-child(2) { height: 8px; opacity: .75; }
.lobby-signal i:nth-child(3) { height: 11px; margin-right: 4px; }

.role-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.role-card {
  position: relative;
  min-width: 0;
  height: 172px;
  padding: 11px 11px 10px;
  overflow: hidden;
  border: 1px solid rgba(179, 205, 240, .13);
  color: #c9cfdb;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .035), transparent 40%),
    rgba(9, 15, 28, .72);
  text-align: left;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(108, 231, 255, .14), transparent 45%, rgba(215, 183, 109, .09));
  transition: opacity .25s ease;
}
.role-card::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -70%;
  width: 40%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  transform: rotate(18deg);
  transition: left .45s ease;
}
.role-card:hover { transform: translateY(-5px); border-color: rgba(108, 231, 255, .4); background-color: rgba(15, 28, 48, .86); }
.role-card:hover::before { opacity: 1; }
.role-card:hover::after { left: 145%; }
.role-card--featured { border-color: rgba(215, 183, 109, .26); }
.role-card.is-selected {
  z-index: 2;
  color: #fff;
  border-color: var(--gold-light);
  background-color: rgba(30, 38, 54, .94);
  box-shadow: 0 0 0 1px rgba(215, 183, 109, .22), 0 0 35px rgba(215, 183, 109, .13), inset 0 0 30px rgba(108, 231, 255, .05);
  transform: translateY(-7px) scale(1.02);
}
.role-card.is-selected::before { opacity: 1; }
.role-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; }
.role-top b { color: #59647a; font-size: 8px; letter-spacing: .08em; }
.role-top em { color: #59647a; font-size: 6px; font-style: normal; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.role-card.is-selected .role-top em { color: var(--green); }
.role-card.is-selected .role-top em::before { content: "● "; }

.role-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  margin: 12px auto 8px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01) 62%);
  transition: .3s ease;
}
.role-icon::before { content: ""; position: absolute; inset: 5px; border: 1px dashed rgba(255, 255, 255, .11); border-radius: 50%; animation: rotate 16s linear infinite; }
.role-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.role-icon--exp { color: #e68370; }
.role-icon--jungle { color: #65d99d; }
.role-icon--mid { color: #b18aff; }
.role-icon--gold { color: #f0c86b; }
.role-icon--roam { color: #6bdcf0; }
.role-card:hover .role-icon, .role-card.is-selected .role-icon { transform: scale(1.08); border-color: currentColor; box-shadow: 0 0 25px color-mix(in srgb, currentColor 22%, transparent); }

.role-name, .role-detail, .role-lock { position: relative; z-index: 1; display: block; text-align: center; }
.role-name { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.role-detail { margin-top: 3px; color: #687388; font-size: 7px; letter-spacing: .08em; }
.role-lock { margin-top: 7px; color: transparent; font-size: 6px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; transition: color .2s ease; }
.role-card:hover .role-lock { color: var(--cyan); }
.role-card.is-selected .role-lock { color: var(--gold-light); }
.role-card.is-selected .role-lock { font-size: 0; }
.role-card.is-selected .role-lock::before { content: "Выбран"; font-size: 6px; }

.queue-bar {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 10px;
}
.queue-selection {
  display: flex;
  min-width: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 10px 15px;
  border-left: 2px solid rgba(215, 183, 109, .55);
  background: rgba(255, 255, 255, .025);
}
.selection-label { color: #687388; font-size: 7px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.queue-selection strong { margin-top: 3px; color: #d8dde7; font-size: 11px; }

.match-button {
  position: relative;
  display: flex;
  min-height: 48px;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(215, 183, 109, .72);
  color: #0d1015;
  background: linear-gradient(100deg, #b28b42, #f0d895 48%, #b18b45);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.match-button::before { content: ""; position: absolute; inset: 2px; border: 1px solid rgba(5, 7, 17, .2); clip-path: inherit; }
.match-button::after { content: ""; position: absolute; top: -60%; left: -35%; width: 20%; height: 220%; background: rgba(255, 255, 255, .55); transform: rotate(20deg); transition: left .5s ease; }
.match-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.match-button:hover:not(:disabled) { filter: brightness(1.12); box-shadow: 0 0 38px rgba(215, 183, 109, .24); transform: translateY(-2px); }
.match-button:hover:not(:disabled)::after { left: 125%; }
.match-button:disabled { color: #566070; border-color: rgba(141, 153, 173, .16); background: #111827; cursor: not-allowed; }
.match-button__search { display: none; }
.match-button.is-searching .match-button__idle { display: none; }
.match-button.is-searching .match-button__search { display: inline; }

.murka-hud {
  position: absolute;
  right: max(0px, calc((100vw - 1180px) / 2 - 26px));
  bottom: 40px;
  z-index: 12;
  display: flex;
  width: 295px;
  align-items: center;
  gap: 11px;
  padding: 10px 11px;
  border: 1px solid rgba(167, 139, 250, .23);
  color: var(--text);
  background: rgba(10, 11, 27, .72);
  text-align: left;
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: .25s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.murka-hud:hover { transform: translateY(-3px); border-color: rgba(167, 139, 250, .55); background: rgba(17, 18, 42, .88); }
.murka-avatar { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border: 1px solid rgba(140, 109, 255, .45); border-radius: 50%; background: radial-gradient(circle, rgba(140, 109, 255, .24), rgba(12, 12, 31, .7)); box-shadow: 0 0 20px rgba(140, 109, 255, .15); }
.murka-avatar svg { width: 27px; fill: none; stroke: #bfaeff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.murka-copy { display: grid; min-width: 0; flex: 1; gap: 4px; }
.murka-copy small { color: #8e7eda; font-size: 6px; font-weight: 800; letter-spacing: .16em; }
.murka-copy small i { display: inline-block; width: 5px; height: 5px; margin-right: 2px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.murka-copy b { min-height: 28px; color: #c8cce0; font-size: 9px; font-weight: 600; line-height: 1.5; }
.murka-next { color: #6d638f; font-size: 15px; transition: transform .25s ease; }
.murka-hud:hover .murka-next { transform: rotate(120deg); }

.scroll-cue {
  position: absolute;
  bottom: 42px;
  left: 50%;
  z-index: 12;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #6c7484;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i { position: relative; width: 1px; height: 26px; overflow: hidden; background: rgba(255, 255, 255, .12); }
.scroll-cue i::after { content: ""; position: absolute; top: -100%; left: 0; width: 1px; height: 70%; background: var(--gold); animation: scrollCue 2.2s ease-in-out infinite; }

.section { position: relative; overflow: hidden; }
.section-inner { position: relative; z-index: 2; width: min(1180px, calc(100% - 42px)); margin: 0 auto; }
.community { padding: 135px 0 145px; background: linear-gradient(180deg, #050711, #070a15 55%, #050711); }
.section-glow { position: absolute; width: 800px; height: 800px; border-radius: 50%; pointer-events: none; filter: blur(20px); }
.section-glow--blue { top: 5%; right: -400px; background: radial-gradient(circle, rgba(42, 171, 238, .1), transparent 68%); }
.section-glow--violet { top: 0; left: -420px; background: radial-gradient(circle, rgba(140, 109, 255, .13), transparent 68%); }

.section-heading { width: min(690px, 100%); margin-bottom: 58px; }
.section-heading h2, .murka-text h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(35px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.section-heading h2 span, .murka-text h2 span { color: transparent; background: linear-gradient(90deg, var(--gold-light), var(--gold)); background-clip: text; -webkit-background-clip: text; }
.section-heading > p:last-child { max-width: 610px; margin: 20px 0 0; color: #929bad; font-size: 15px; line-height: 1.8; }

.community-stage { display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(280px, .58fr); gap: 18px; align-items: stretch; }
.comms-window {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(129, 174, 219, .2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .035), transparent 24%),
    #090f1c;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .04);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.comms-top { display: flex; height: 68px; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid rgba(255, 255, 255, .07); background: rgba(15, 23, 41, .8); }
.comms-title { display: flex; align-items: center; gap: 12px; }
.telegram-mark { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: linear-gradient(150deg, #45c5f6, #248bd6); box-shadow: 0 0 25px rgba(42, 171, 238, .2); }
.telegram-mark svg { width: 20px; fill: white; }
.comms-title > span:last-child { display: grid; gap: 2px; }
.comms-title b { font-family: var(--display); font-size: 11px; letter-spacing: .03em; }
.comms-title small { color: #69758b; font-size: 7px; letter-spacing: .13em; text-transform: uppercase; }
.window-actions { display: flex; gap: 7px; }
.window-actions i { width: 7px; height: 7px; border-radius: 50%; background: #303b4e; }
.window-actions i:nth-child(1) { background: #78603b; }
.window-actions i:nth-child(2) { background: #345c69; }

.chat-stream { position: relative; min-height: 500px; padding: 26px clamp(18px, 4vw, 42px) 32px; overflow: hidden; background: radial-gradient(circle at 72% 25%, rgba(43, 107, 158, .09), transparent 38%); }
.chat-stream::before { content: ""; position: absolute; inset: 0; opacity: .06; background-image: linear-gradient(30deg, #70d7ff 12%, transparent 12.5%, transparent 87%, #70d7ff 87.5%), linear-gradient(150deg, #70d7ff 12%, transparent 12.5%, transparent 87%, #70d7ff 87.5%); background-size: 90px 52px; }
.chat-day { position: relative; width: fit-content; margin: 0 auto 22px; padding: 5px 11px; border: 1px solid rgba(110, 151, 187, .15); border-radius: 12px; color: #718096; background: rgba(7, 13, 26, .7); font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }
.chat-message { position: relative; display: flex; max-width: 78%; align-items: flex-end; gap: 9px; margin: 11px 0; }
.chat-message > div { position: relative; min-width: 145px; padding: 10px 43px 10px 12px; border: 1px solid rgba(255, 255, 255, .06); background: #111a2a; box-shadow: 0 12px 25px rgba(0, 0, 0, .14); }
.chat-message--left > div { border-radius: 4px 15px 15px 15px; }
.chat-message--right { margin-left: auto; justify-content: flex-end; }
.chat-message--right > div { border-radius: 15px 4px 15px 15px; background: linear-gradient(140deg, #173348, #14283b); }
.chat-avatar { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border-radius: 50%; font-family: var(--display); font-size: 9px; }
.avatar-blue { color: #a4eaff; background: #183f58; }
.avatar-gold { color: #f6dda0; background: #4a3c23; }
.avatar-violet { color: #d4c8ff; background: #382d61; }
.chat-message small { display: block; margin-bottom: 4px; color: #6ecff1; font-size: 8px; font-weight: 800; }
.chat-message small em { margin-left: 4px; padding: 2px 4px; border-radius: 4px; color: #08111b; background: var(--gold); font-size: 5px; font-style: normal; letter-spacing: .06em; text-transform: uppercase; }
.chat-message p { margin: 0; color: #d1d6df; font-size: 11px; line-height: 1.55; }
.chat-message time { position: absolute; right: 10px; bottom: 8px; color: #566176; font-size: 6px; }
.message-3 > div { border-color: rgba(215, 183, 109, .15); background: linear-gradient(140deg, #1b1b29, #151728); }
.typing-row { display: flex; width: fit-content; align-items: center; gap: 3px; margin: 17px 0 0 41px; color: #556176; }
.typing-row span { width: 4px; height: 4px; border-radius: 50%; background: #657188; animation: typing 1.3s ease-in-out infinite; }
.typing-row span:nth-child(2) { animation-delay: .15s; }
.typing-row span:nth-child(3) { animation-delay: .3s; }
.typing-row b { margin-left: 5px; font-size: 7px; font-weight: 500; }

.feature-stack { display: grid; grid-template-rows: repeat(3, 1fr); gap: 10px; }
.feature-card { position: relative; min-height: 180px; padding: 24px 22px 20px; overflow: hidden; border: 1px solid rgba(176, 202, 235, .13); background: linear-gradient(140deg, rgba(255, 255, 255, .035), transparent 45%), #0a101d; transition: .3s ease; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }
.feature-card::after { content: ""; position: absolute; right: -45px; bottom: -70px; width: 170px; height: 170px; border: 1px solid rgba(108, 231, 255, .08); border-radius: 50%; box-shadow: 0 0 0 18px rgba(108, 231, 255, .02), 0 0 0 38px rgba(108, 231, 255, .015); transition: transform .4s ease; }
.feature-card:hover { transform: translateX(-6px); border-color: rgba(108, 231, 255, .35); background-color: #0d1626; }
.feature-card:hover::after { transform: scale(1.13); }
.feature-num { position: absolute; top: 14px; right: 16px; color: #39465b; font-family: var(--display); font-size: 8px; }
.feature-icon { display: grid; width: 36px; height: 36px; margin-bottom: 14px; place-items: center; border: 1px solid rgba(108, 231, 255, .18); color: var(--cyan); background: rgba(108, 231, 255, .04); }
.feature-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin: 0 0 7px; font-family: var(--display); font-size: 13px; letter-spacing: -.02em; text-transform: uppercase; }
.feature-card p { position: relative; z-index: 2; margin: 0; color: #7f899c; font-size: 10px; line-height: 1.65; }
.feature-card--talk .feature-icon { color: var(--gold); border-color: rgba(215, 183, 109, .2); background: rgba(215, 183, 109, .04); }
.feature-card--fun .feature-icon { color: #ab8cff; border-color: rgba(171, 140, 255, .2); background: rgba(171, 140, 255, .04); }

.murka-section { padding: 135px 0 160px; background: #050711; }
.murka-section::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(108, 231, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 231, 255, .045) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at 25% 50%, #000, transparent 65%); }
.murka-orbit { position: absolute; top: 50%; left: 25%; width: 560px; height: 560px; transform: translate(-50%, -50%); opacity: .25; }
.murka-orbit i { position: absolute; inset: 0; border: 1px solid rgba(137, 116, 255, .25); border-radius: 50%; }
.murka-orbit i:nth-child(2) { inset: 14%; border-style: dashed; animation: rotate 38s linear infinite reverse; }
.murka-orbit i:nth-child(3) { inset: 30%; border-color: rgba(108, 231, 255, .24); }
.murka-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 9vw, 130px); align-items: center; }

.murka-console { position: relative; min-height: 510px; padding: 18px; border: 1px solid rgba(151, 131, 255, .25); background: radial-gradient(circle at center, rgba(83, 56, 170, .15), transparent 42%), rgba(7, 9, 22, .78); box-shadow: inset 0 0 70px rgba(77, 54, 164, .06), 0 35px 80px rgba(0, 0, 0, .32); clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px); }
.murka-console::before, .murka-console::after { content: ""; position: absolute; width: 32px; height: 32px; border-color: var(--violet); }
.murka-console::before { top: 8px; left: 8px; border-top: 1px solid; border-left: 1px solid; }
.murka-console::after { right: 8px; bottom: 8px; border-right: 1px solid; border-bottom: 1px solid; }
.console-line { display: flex; justify-content: space-between; color: #665c8b; font-size: 7px; font-weight: 800; letter-spacing: .15em; }
.console-line b { color: var(--green); font-size: 7px; }
.murka-core { position: absolute; top: 50%; left: 50%; display: grid; width: 300px; height: 300px; place-items: center; transform: translate(-50%, -52%); }
.core-ring { position: absolute; border-radius: 50%; }
.core-ring--outer { inset: 0; border: 1px solid rgba(174, 151, 255, .25); border-top-color: var(--violet); border-bottom-color: var(--cyan); box-shadow: 0 0 55px rgba(115, 82, 222, .1); animation: rotate 18s linear infinite; }
.core-ring--outer::before, .core-ring--outer::after { content: ""; position: absolute; top: 50%; width: 10px; height: 10px; border: 1px solid var(--cyan); transform: translateY(-50%) rotate(45deg); }
.core-ring--outer::before { left: -5px; }
.core-ring--outer::after { right: -5px; }
.core-ring--inner { inset: 35px; border: 1px dashed rgba(108, 231, 255, .2); animation: rotate 25s linear infinite reverse; }
.core-cat { display: grid; width: 146px; height: 146px; place-items: center; border: 1px solid rgba(165, 137, 255, .36); border-radius: 50%; background: radial-gradient(circle, rgba(121, 84, 240, .22), rgba(11, 13, 31, .85) 68%); box-shadow: 0 0 50px rgba(140, 109, 255, .14), inset 0 0 32px rgba(108, 231, 255, .05); animation: coreFloat 4s ease-in-out infinite; }
.core-cat svg { width: 90px; fill: none; stroke: url(#none); stroke: #d2c4ff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px rgba(167, 139, 250, .4)); }
.console-stats { position: absolute; right: 18px; bottom: 18px; left: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.console-stats span { padding: 9px 7px; border: 1px solid rgba(151, 131, 255, .1); color: #665f7e; background: rgba(255, 255, 255, .018); font-size: 6px; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.console-stats i { display: inline-block; width: 4px; height: 4px; margin-right: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }

.murka-text .section-kicker { color: #a78bfa; }
.murka-text h2 { font-size: clamp(35px, 4.3vw, 60px); }
.murka-text h2 span { background: linear-gradient(90deg, #cfc2ff, #8c6dff); background-clip: text; -webkit-background-clip: text; }
.murka-text h2 span { display: block; white-space: nowrap; }
.murka-text > p:not(.section-kicker) { margin: 22px 0 29px; color: #919bad; font-size: 14px; line-height: 1.85; }
.murka-points { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .08); }
.murka-points li { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); color: #c1c6d2; font-size: 11px; }
.murka-points span { color: #665a8d; font-family: var(--display); font-size: 7px; }

.final-cta { min-height: 720px; display: grid; place-items: center; padding: 130px 20px; background: #050711; }
.final-bg { position: absolute; inset: 0; background: linear-gradient(180deg, #050711 0%, transparent 22%, rgba(5, 7, 17, .68) 72%, #050711 100%), linear-gradient(90deg, rgba(5, 7, 17, .96), rgba(5, 7, 17, .36) 48%, rgba(5, 7, 17, .96)), url("assets/chou-iori-yagami-kof.webp") center / cover no-repeat; filter: saturate(.72) brightness(.46); transform: scale(1.05); }
.final-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(108, 231, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 231, 255, .1) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(transparent, #000 40%, transparent); }
.final-content { position: relative; z-index: 2; display: grid; justify-items: center; text-align: center; }
.final-content > img { margin-bottom: 18px; filter: drop-shadow(0 0 25px rgba(108, 231, 255, .28)); }
.final-content h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 7.2vw, 92px); line-height: .95; letter-spacing: -.06em; text-transform: uppercase; text-shadow: 0 18px 50px rgba(0, 0, 0, .6); }
.final-content > p:not(.section-kicker) { margin: 22px 0 28px; color: #a9b1bf; font-size: 14px; line-height: 1.75; }
.accept-button { position: relative; display: inline-flex; min-width: 295px; min-height: 58px; align-items: center; justify-content: center; gap: 11px; overflow: hidden; border: 1px solid #8ceaff; color: #04121a; background: linear-gradient(100deg, #4fc5ee, #9decff 50%, #2ea5dc); box-shadow: 0 0 45px rgba(42, 171, 238, .25), inset 0 1px rgba(255, 255, 255, .6); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: .3s ease; clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px); }
.accept-button svg { width: 21px; fill: currentColor; }
.accept-button:hover { transform: translateY(-4px) scale(1.015); filter: brightness(1.08); box-shadow: 0 0 65px rgba(42, 171, 238, .38); }
.accept-flare { position: absolute; top: -80%; left: -35%; width: 22%; height: 260%; background: rgba(255, 255, 255, .65); transform: rotate(23deg); transition: left .55s ease; }
.accept-button:hover .accept-flare { left: 125%; }
.final-content > small { margin-top: 12px; color: #566176; font-size: 8px; letter-spacing: .08em; }

.footer { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 20px; padding: 20px clamp(20px, 4vw, 70px); border-top: 1px solid rgba(255, 255, 255, .07); color: #626c7d; background: #04060d; font-size: 9px; }
.footer-brand { display: flex; align-items: center; gap: 8px; color: #c5cad4; font-family: var(--display); font-size: 9px; letter-spacing: .1em; }
.footer p { margin: 0; }
.footer > a:last-child { color: #8792a5; transition: color .2s ease; }
.footer > a:last-child:hover { color: var(--cyan); }

.match-overlay { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 18px; visibility: hidden; opacity: 0; transition: visibility .35s, opacity .35s ease; }
.match-overlay.is-open { visibility: visible; opacity: 1; }
.match-backdrop { position: absolute; inset: 0; background: rgba(2, 3, 9, .82); backdrop-filter: blur(12px); }
.match-dialog { position: relative; width: min(480px, 100%); min-height: 455px; padding: 48px 44px 38px; border: 1px solid rgba(215, 183, 109, .48); background: radial-gradient(circle at 50% 35%, rgba(67, 106, 158, .12), transparent 42%), linear-gradient(180deg, #0c1424, #070b15); box-shadow: 0 50px 120px rgba(0, 0, 0, .75), 0 0 80px rgba(108, 231, 255, .08); text-align: center; transform: translateY(20px) scale(.96); transition: transform .35s cubic-bezier(.2,.8,.2,1); clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px); }
.match-dialog::before { content: ""; position: absolute; top: 0; left: 20%; width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); box-shadow: 0 0 18px var(--gold); }
.match-overlay.is-open .match-dialog { transform: none; }
.dialog-close { position: absolute; z-index: 3; top: 15px; right: 18px; border: 0; color: #647086; background: transparent; font-size: 25px; line-height: 1; cursor: pointer; transition: color .2s ease; }
.dialog-close:hover { color: #fff; }
.search-emblem { position: relative; display: grid; width: 138px; height: 138px; margin: 0 auto 23px; place-items: center; }
.search-emblem img { width: 60px; filter: drop-shadow(0 0 18px rgba(108, 231, 255, .35)); animation: coreFloat 3s ease-in-out infinite; }
.search-emblem i { position: absolute; inset: 0; border: 1px solid rgba(108, 231, 255, .24); border-top-color: var(--cyan); border-radius: 50%; animation: rotate 2.5s linear infinite; }
.search-emblem i:last-child { inset: 15px; border-color: rgba(215, 183, 109, .22); border-bottom-color: var(--gold); animation-duration: 3.5s; animation-direction: reverse; }
.match-searching > p, .match-found > p { margin: 0 0 8px; color: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: .24em; }
.match-searching h2, .match-found h2 { margin: 0; font-family: var(--display); font-size: 24px; letter-spacing: -.04em; text-transform: uppercase; }
.search-progress { height: 3px; margin: 32px 0 16px; overflow: hidden; background: rgba(255, 255, 255, .08); }
.search-progress span { display: block; width: 35%; height: 100%; background: linear-gradient(90deg, transparent, var(--cyan), var(--gold)); box-shadow: 0 0 12px var(--cyan); animation: searchProgress 1.15s ease-in-out infinite; }
.match-searching small { color: #6f7a8e; font-size: 9px; line-height: 1.5; }

.match-found { animation: foundIn .45s cubic-bezier(.2,.8,.2,1) both; }
.found-check { display: grid; width: 88px; height: 88px; margin: 0 auto 20px; place-items: center; border: 1px solid rgba(78, 230, 168, .5); border-radius: 50%; color: var(--green); background: rgba(78, 230, 168, .08); box-shadow: 0 0 35px rgba(78, 230, 168, .13); }
.found-check svg { width: 48px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.found-card { display: flex; align-items: center; gap: 12px; margin: 23px 0 17px; padding: 13px 14px; border: 1px solid rgba(215, 183, 109, .18); background: rgba(255, 255, 255, .025); text-align: left; }
.found-card img { width: 40px; }
.found-card div { display: grid; min-width: 0; flex: 1; gap: 2px; }
.found-card b { font-family: var(--display); font-size: 10px; letter-spacing: .06em; }
.found-card span { color: #707b8e; font-size: 8px; }
.found-card em { display: flex; align-items: center; gap: 5px; color: #708276; font-size: 7px; font-style: normal; }
.found-card em i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px var(--green); }
.accept-button--dialog { width: 100%; min-width: 0; }
.fear-button { margin-top: 12px; border: 0; color: #596477; background: transparent; font-size: 8px; cursor: pointer; transition: color .2s ease, transform .18s ease; }
.fear-button:hover { color: #a1aabb; }

.reveal { opacity: 0; transform: translateY(14px); animation: revealIn .7s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-copy.reveal { animation-delay: .12s; }
.lobby-shell.reveal { animation-delay: .26s; }
.murka-hud.reveal { animation-delay: .5s; }
.reveal-on-scroll { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

@keyframes revealIn { to { opacity: 1; transform: none; } }
@keyframes statusPulse { 50% { opacity: .5; box-shadow: 0 0 0 7px rgba(78, 230, 168, 0), 0 0 8px rgba(78, 230, 168, .55); } }
@keyframes particleFloat { 0% { opacity: 0; transform: translate3d(0, 30px, 0); } 15% { opacity: .8; } 75% { opacity: .45; } 100% { opacity: 0; transform: translate3d(var(--drift, 40px), -230px, 0); } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes scrollCue { 0% { top: -80%; } 60%, 100% { top: 120%; } }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-3px); opacity: 1; } }
@keyframes coreFloat { 50% { transform: translateY(-7px); filter: brightness(1.12); } }
@keyframes searchProgress { from { transform: translateX(-110%); } to { transform: translateX(380%); } }
@keyframes foundIn { from { opacity: 0; transform: scale(.94) translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .server-status { display: none; }
  .hero-inner { width: min(930px, calc(100% - 32px)); }
  .lobby-shell { max-width: 900px; }
  .role-card { height: 160px; }
  .murka-hud { right: 20px; bottom: 30px; width: 260px; }
  .scroll-cue { left: 16%; }
}

@media (max-width: 820px) {
  :root { --topbar-height: 68px; }
  .topbar { grid-template-columns: 1fr auto; padding: 0 18px; }
  .nav { display: none; }
  .brand img { width: 36px; height: 36px; }
  .brand-copy b { font-size: 12px; }
  .top-join { grid-column: 2; }
  .hero { min-height: 980px; }
  .hero-inner { min-height: 980px; padding-top: calc(var(--topbar-height) + 28px); }
  .hero-art { width: 62%; opacity: .6; }
  .hero-art--left { mask-image: linear-gradient(90deg, #000 52%, transparent 100%); }
  .hero-art--right { mask-image: linear-gradient(270deg, #000 52%, transparent 100%); }
  .hero-art--left img { object-position: 67% center; }
  .hero-art--right img { object-position: 45% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3, 5, 12, .14), rgba(3, 5, 12, .8) 30%, rgba(3, 5, 12, .8) 70%, rgba(3, 5, 12, .14)); }
  .hero h1 { font-size: clamp(38px, 8vw, 58px); }
  .lobby-shell { padding: 16px; }
  .role-grid { grid-template-columns: repeat(5, minmax(120px, 1fr)); margin-right: -16px; padding: 7px 16px 10px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .role-grid::-webkit-scrollbar { display: none; }
  .role-card { height: 160px; scroll-snap-align: center; }
  .murka-hud { position: relative; right: auto; bottom: auto; width: min(100%, 360px); margin-top: 18px; align-self: flex-start; }
  .scroll-cue { display: none; }
  .community { padding: 105px 0; }
  .community-stage { grid-template-columns: 1fr; }
  .feature-stack { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
  .feature-card { min-height: 210px; }
  .murka-inner { grid-template-columns: 1fr; }
  .murka-console { width: min(520px, 100%); min-height: 470px; margin: 0 auto; }
  .murka-orbit { top: 30%; left: 50%; }
}

@media (max-width: 600px) {
  .brand-copy small { display: none; }
  .top-join { padding: 9px 11px; }
  .top-join span { display: none; }
  .top-join svg { width: 19px; }
  .hero { min-height: 930px; }
  .hero-inner { width: min(100% - 22px, 540px); min-height: 930px; padding-top: calc(var(--topbar-height) + 24px); }
  .eyebrow { font-size: 6px; gap: 8px; }
  .eyebrow-line { width: 20px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(34px, 10vw, 50px); line-height: 1.02; }
  .hero-lead { margin: 15px 0 19px; font-size: 12px; line-height: 1.6; }
  .desktop-only { display: none; }
  .hero-art { top: 0; bottom: auto; width: 72%; height: 530px; opacity: .52; }
  .hero-art--left img { object-position: 70% center; }
  .hero-art--right img { object-position: 45% center; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 5, 12, .06), rgba(3, 5, 12, .64) 33%, rgba(3, 5, 12, .64) 67%, rgba(3, 5, 12, .06)),
      linear-gradient(180deg, rgba(3, 5, 12, .12), rgba(3, 5, 12, .58) 38%, rgba(3, 5, 12, .94) 68%);
  }
  .lobby-shell { padding: 14px 12px 13px; clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px); }
  .lobby-head { align-items: center; }
  .lobby-head h2 { font-size: 12px; }
  .lobby-signal span { display: none; }
  .role-grid { grid-template-columns: repeat(5, 118px); margin-right: -12px; padding-right: 12px; }
  .queue-bar { display: grid; }
  .queue-selection { min-width: 0; min-height: 42px; padding: 7px 12px; }
  .match-button { min-height: 51px; }
  .murka-hud { align-self: center; }
  .section-inner { width: min(100% - 28px, 540px); }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .murka-text h2 { font-size: clamp(31px, 9vw, 45px); }
  .section-heading > p:last-child { font-size: 12px; line-height: 1.75; }
  .community { padding: 90px 0; }
  .comms-window { min-height: 540px; }
  .comms-top { height: 60px; padding: 0 15px; }
  .chat-stream { min-height: 478px; padding: 22px 13px; }
  .chat-message { max-width: 91%; }
  .chat-message > div { padding-right: 38px; }
  .chat-message p { font-size: 10px; }
  .feature-stack { grid-template-columns: 1fr; }
  .feature-card { min-height: 165px; }
  .murka-section { padding: 90px 0 110px; }
  .murka-console { min-height: 400px; padding: 13px; }
  .murka-core { width: 245px; height: 245px; }
  .core-cat { width: 122px; height: 122px; }
  .core-cat svg { width: 74px; }
  .console-stats { right: 12px; bottom: 12px; left: 12px; }
  .console-stats span { padding: 8px 3px; font-size: 5px; }
  .murka-text > p:not(.section-kicker) { font-size: 12px; }
  .final-cta { min-height: 650px; padding: 100px 16px; }
  .final-bg { background-position: 30% center; }
  .final-content h2 { font-size: clamp(44px, 14vw, 68px); }
  .accept-button { width: 100%; min-width: 0; padding: 0 18px; }
  .footer { flex-direction: column; justify-content: center; text-align: center; }
  .match-dialog { min-height: 430px; padding: 44px 22px 30px; }
}

@media (hover: none) {
  .cursor-aura { display: none; }
  .role-card:hover { transform: none; }
  .role-card.is-selected { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cursor-aura, .particles { display: none; }
  .hero-art, .lobby-shell { transform: none !important; }
}
