:root {
  color-scheme: dark;
  --black: #050505;
  --bg: #0b0b0b;
  --bg-soft: #101010;
  --card: #151515;
  --card-2: #1b1b1b;
  --text: #ffffff;
  --soft: #dadada;
  --muted: #b8b8b8;
  --muted-2: #7a7a7a;
  --orange: #ff6b00;
  --orange-2: #ff7a00;
  --orange-soft: #ff9a3d;
  --glow: rgba(255, 107, 0, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  --radius: 16px;
  --max: 1360px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.12), transparent 34rem),
    radial-gradient(circle at 48% 70%, rgba(255, 107, 0, 0.06), transparent 34rem),
    linear-gradient(125deg, #06080b 0%, #050505 48%, #0a0604 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffb061);
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.9);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.93);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.nav {
  width: min(var(--max), calc(100% - 80px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(255, 107, 0, 0.2);
}

.brand span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand strong {
  font-size: 1.55rem;
  font-weight: 820;
}

.brand small {
  color: var(--orange-soft);
  font-size: 0.62rem;
  font-weight: 760;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  font-weight: 520;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

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

.nav-materials {
  position: relative;
}

.nav-materials-trigger {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: inherit;
  transition: color 180ms ease;
}

.nav-materials-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.nav-materials-trigger > span {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 200ms ease;
}

.nav-materials:hover .nav-materials-trigger,
.nav-materials:focus-within .nav-materials-trigger,
.nav-materials.is-open .nav-materials-trigger,
.nav-materials.is-current .nav-materials-trigger {
  color: #fff;
}

.nav-materials:hover .nav-materials-trigger::after,
.nav-materials:focus-within .nav-materials-trigger::after,
.nav-materials.is-open .nav-materials-trigger::after,
.nav-materials.is-current .nav-materials-trigger::after {
  transform: scaleX(1);
}

.nav-materials.is-open .nav-materials-trigger > span {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 22px);
  right: -22px;
  width: 330px;
  padding: 9px;
  display: grid;
  gap: 3px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: rgba(15, 14, 13, 0.98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58), 0 0 42px rgba(255, 107, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 24px;
}

.nav-materials:hover .nav-dropdown,
.nav-materials:focus-within .nav-dropdown,
.nav-materials.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-dropdown a {
  min-height: 66px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 9px 11px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover {
  background: rgba(255, 107, 0, 0.09);
}

.nav-dropdown a > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.08);
  color: var(--orange-soft);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 820;
}

.nav-dropdown a > span {
  display: grid;
  gap: 4px;
}

.nav-dropdown strong {
  color: #fff;
  font-size: 0.93rem;
}

.nav-dropdown small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
  font-weight: 520;
}

.language-switcher {
  display: inline-flex;
  min-width: 92px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.language-switcher span {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  padding: 0 7px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switcher button:hover {
  color: #fff;
}

.language-switcher button.is-active {
  background: linear-gradient(135deg, #ff7e22, var(--orange));
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 106, 0, 0.25);
}

.language-switcher button:focus-visible {
  outline: 2px solid #ffb061;
  outline-offset: 2px;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.header-cta {
  min-width: 180px;
  margin-left: 14px;
  padding: 0 24px;
  background: linear-gradient(135deg, #ff5d00 0%, var(--orange-2) 58%, #ff4d00 100%);
  box-shadow: 0 20px 52px rgba(255, 106, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button {
  padding: 0 22px;
}

.button i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--orange);
  font-style: normal;
  font-size: 1.1rem;
}

.button-primary {
  min-width: 228px;
  background: linear-gradient(135deg, #ff5d00 0%, var(--orange-2) 58%, #ff4d00 100%);
  box-shadow: 0 24px 58px rgba(255, 106, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-ghost {
  min-width: 270px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.button-ghost i {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fff;
  font-size: 0.72rem;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-3px);
}

.button-primary:hover,
.header-cta:hover {
  box-shadow: 0 28px 72px rgba(255, 106, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 920px;
  margin-top: -80px;
  padding: 116px 40px 38px;
  background:
    radial-gradient(circle at 76% 34%, rgba(255, 106, 0, 0.18), transparent 31%),
    radial-gradient(circle at 45% 78%, rgba(255, 106, 0, 0.09), transparent 35%),
    linear-gradient(125deg, #06080b 0%, #050505 46%, #0a0604 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 86%, transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -22%;
  z-index: -2;
  height: 38%;
  background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.14), transparent 68%);
  opacity: 0.75;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 62%, rgba(255, 122, 0, 0.9) 0 1px, transparent 1px);
  background-size: 118px 118px, 166px 166px;
}

.hero-shell {
  position: relative;
  display: grid;
  width: min(1720px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(560px, 0.96fr) minmax(500px, 1.04fr);
  grid-template-areas:
    "copy visual"
    "benefits visual"
    "marquee marquee";
  column-gap: clamp(18px, 2.6vw, 52px);
  row-gap: 24px;
  align-items: center;
}

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

.hero-badge,
.section-heading span,
.access-card > span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid rgba(255, 106, 0, 0.42);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.075);
  color: #ff8a32;
  font-size: 0.98rem;
  font-weight: 540;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 46px rgba(255, 106, 0, 0.1);
}

.hero-badge {
  margin-bottom: 20px;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.6rem, 3.25vw, 4.2rem);
  font-weight: 760;
  line-height: 1.07;
  letter-spacing: 0;
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

h1 span,
.city-strip h2 span,
.section-heading h2 em {
  color: var(--orange);
  background: linear-gradient(135deg, #ff8a2a 0%, #ff5f00 52%, #ffb061 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.3rem, 3.1vw, 4rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 720;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.12vw, 1.25rem);
  font-weight: 410;
  line-height: 1.48;
}

.hero-proof {
  display: flex;
  max-width: 660px;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.proof-dots {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.proof-dots span {
  width: 40px;
  height: 40px;
  margin-left: -10px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff, transparent 20%),
    linear-gradient(135deg, #2a2a2a, #0c0c0c);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.proof-dots span:first-child {
  margin-left: 0;
}

.hero-proof b {
  color: #ffc553;
  font-size: 1.2rem;
  line-height: 1;
}

.hero-proof p {
  margin: 0;
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  z-index: 3;
  grid-area: visual;
  min-height: 660px;
}

.hero-glow {
  position: absolute;
  inset: 7% 3% 5% 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 62%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 50%);
  filter: blur(8px);
  transform: translate(6%, 2%);
}

.hero-orbits {
  position: absolute;
  top: 4%;
  right: -1%;
  width: min(680px, 94%);
  height: auto;
  opacity: 0.48;
  animation: orbit-drift 14s ease-in-out infinite alternate;
}

.hero-orbits circle,
.hero-orbits path {
  fill: none;
  stroke: rgba(255, 106, 0, 0.36);
  stroke-width: 1;
  stroke-dasharray: 4 16;
}

.particle-orb {
  position: absolute;
  top: 51%;
  right: -4%;
  width: 584px;
  height: 584px;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center;
  animation: orb-spin 24s linear infinite;
}

.particle-orb::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15), transparent 64%);
  filter: blur(16px);
  animation: orb-glow 18s ease-in-out infinite alternate;
}

.particle-orb span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.92);
  box-shadow: 0 0 14px rgba(255, 122, 0, 0.8);
  translate: var(--orb-x, 0) var(--orb-y, 0);
  scale: var(--orb-scale, 1);
  opacity: var(--orb-alpha, 0.18);
}

.flow-lines {
  position: absolute;
  top: 6%;
  right: 0;
  width: min(680px, 96%);
  height: auto;
  opacity: 0.62;
}

.flow-path {
  fill: none;
  stroke: rgba(255, 106, 0, 0.34);
  stroke-width: 1.4;
  stroke-dasharray: 10 18;
  animation: flow-dash 18s linear infinite;
}

.path-2,
.path-4 {
  animation-duration: 22s;
  animation-direction: reverse;
}

.flow-dot {
  fill: rgba(255, 106, 0, 0.84);
  filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.72));
}

.flow-dot-soft {
  fill: rgba(255, 255, 255, 0.5);
}

.hero-particle {
  position: absolute;
  z-index: 4;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.82);
  animation: particle-float 7s ease-in-out infinite;
}

.particle-1 { top: 15%; left: 25%; animation-delay: -0.5s; }
.particle-2 { top: 28%; right: 8%; width: 4px; height: 4px; animation-delay: -2.2s; }
.particle-3 { bottom: 18%; left: 12%; width: 5px; height: 5px; animation-delay: -4s; }
.particle-4 { bottom: 30%; right: 22%; width: 6px; height: 6px; animation-delay: -1.4s; }

.hero-device {
  position: absolute;
  top: 15%;
  right: -2%;
  z-index: 2;
  width: min(780px, 106%);
  height: auto;
  aspect-ratio: 1376 / 768;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  opacity: 0.96;
  box-shadow:
    0 44px 80px rgba(0, 0, 0, 0.56),
    0 0 90px rgba(255, 106, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  filter: saturate(1.06) contrast(1.04);
  transform: rotate(4.5deg) translateY(-8px);
}

.hero-float-card {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  width: 286px;
  min-height: 112px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.052));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  animation: card-float 6.8s ease-in-out infinite;
}

.float-icon {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 25%, #ffb061, var(--orange));
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 16px 38px rgba(255, 106, 0, 0.3);
}

.hero-float-card strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.18;
}

.hero-float-card small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.25;
}

.float-push {
  top: 17%;
  left: 2%;
  transform: rotate(5deg);
}

.float-access {
  top: 29%;
  right: -1%;
  transform: rotate(4deg);
  animation-delay: -2.1s;
}

.float-battle {
  bottom: 22%;
  left: -3%;
  transform: rotate(7deg);
  animation-delay: -3.6s;
}

.float-logs {
  right: 2%;
  bottom: 14%;
  transform: rotate(5deg);
  animation-delay: -4.9s;
}

.hero-benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-benefits div {
  min-height: 76px;
  padding: 15px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 570;
  line-height: 1.25;
}

.hero-benefits div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-benefits span {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--orange-soft);
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.12);
  font-weight: 860;
}

.hero-marquee {
  grid-area: marquee;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  min-height: 90px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-marquee b {
  padding-left: 24px;
  color: #fff;
  font-size: 1.08rem;
}

.marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(22, 22, 22, 0.96), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(22, 22, 22, 0.96), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 26px;
  align-items: center;
  will-change: transform;
  animation: logo-marquee 36s linear infinite;
}

.marquee:hover .marquee-track,
.pill-marquee:hover .pill-track {
  animation-play-state: paused;
}

.marquee-track span {
  min-width: 156px;
  min-height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(224, 224, 224, 0.88));
  color: #4f5960;
  font-size: 1rem;
  font-weight: 780;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.city-strip {
  overflow: hidden;
  padding: 92px 0 34px;
  background: linear-gradient(180deg, #050505 0%, #080808 100%);
}

.city-strip h2 {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto 34px;
  text-align: center;
  font-size: clamp(2rem, 2.3vw, 3rem);
}

.pill-marquee {
  overflow: hidden;
  width: 100%;
}

.pill-track {
  display: flex;
  width: max-content;
  gap: 10px;
  will-change: transform;
  animation: pill-marquee 40s linear infinite;
}

.pill-track span {
  min-height: 46px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 106, 0, 0.16);
  background: rgba(255, 106, 0, 0.09);
  color: rgba(255, 149, 65, 0.9);
  font-weight: 540;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.section {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
}

.features,
.automation,
.install,
.support {
  padding: 86px 0;
}

.automation {
  padding-top: 48px;
}

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

.feature-story {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-story-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.7fr);
  align-items: stretch;
}

.feature-story-reverse {
  grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.5fr);
}

.feature-story-reverse .feature-story-media {
  order: 2;
}

.feature-story-media {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  background: #050505;
}

.feature-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.34);
}

.feature-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.feature-story:hover .feature-story-media img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.feature-story-copy {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 3vw, 46px);
  background: radial-gradient(circle at 0 0, rgba(255, 106, 0, 0.13), transparent 54%);
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-story-copy p,
.feature-points {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.55;
}

.feature-story-copy p {
  margin-bottom: 0;
}

.feature-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  position: relative;
  padding-left: 25px;
}

.feature-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.section-heading {
  max-width: 950px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading span {
  margin-bottom: 22px;
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
  line-height: 1.5;
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 20px;
}

.bento-card,
.step-card,
.support-form,
.faq,
.access-card,
.integration-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, var(--card), var(--bg-soft));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bento-card::before,
.step-card::before,
.support-form::before,
.faq::before,
.access-card::before,
.integration-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 30% 0%, rgba(255, 106, 0, 0.16), transparent 44%);
  opacity: 0.7;
}

.bento-card {
  padding: 24px;
}

.bento-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.45;
}

.card-users,
.card-product,
.card-vk,
.card-integrations {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-main {
  grid-row: span 2;
}

.card-main img {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -18px;
  width: 86%;
  border-radius: 22px;
  opacity: 0.92;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.44));
}

.avatar-grid {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 58px);
  gap: 10px;
}

.avatar-grid span,
.integration-bubbles li,
.node {
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, #2c2c2c, #101010);
  color: #fff;
  font-weight: 820;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.avatar-grid span {
  width: 58px;
  height: 58px;
  font-size: 0.72rem;
}

.avatar-grid span:last-child {
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  font-size: 1.4rem;
}

.mini-dashboard {
  position: relative;
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-dashboard span,
.mini-dashboard b {
  display: block;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-dashboard span:nth-child(1) {
  grid-column: span 2;
  height: 36px;
}

.mini-dashboard span:nth-child(2),
.mini-dashboard span:nth-child(3) {
  height: 72px;
}

.mini-dashboard b {
  position: absolute;
  height: 6px;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255, 106, 0, 0.5);
}

.mini-dashboard b:nth-of-type(1) { width: 44%; left: 20px; top: 15px; }
.mini-dashboard b:nth-of-type(2) { width: 32%; left: 20px; bottom: 32px; }
.mini-dashboard b:nth-of-type(3) { width: 28%; right: 20px; bottom: 32px; }

.toggle-stack {
  display: grid;
  gap: 14px;
}

.toggle-stack span {
  position: relative;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-stack span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 7px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  transition: transform 260ms var(--ease), background 260ms ease;
}

.toggle-stack .is-on {
  background: rgba(255, 106, 0, 0.26);
}

.toggle-stack .is-on::before {
  background: var(--orange);
  transform: translateX(102px);
}

.integration-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integration-bubbles li {
  width: 58px;
  height: 58px;
  font-size: 0.76rem;
}

.integration-bubbles li:nth-child(2n) {
  color: #111;
  background: #fff;
}

.install {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  min-height: 250px;
  padding: 28px;
}

.step-card b {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 56px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  color: #fff;
  box-shadow: 0 18px 44px rgba(255, 106, 0, 0.24);
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.download-panel {
  width: min(880px, 100%);
  min-height: 72px;
  margin: 24px auto 0;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.download-panel code {
  padding-left: 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-panel button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #ff5d00, var(--orange-2));
  color: #fff;
  cursor: pointer;
  font-weight: 760;
}

.integrations-section {
  padding: 88px 40px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.04), transparent 28%),
    #080808;
}

.integration-map {
  width: min(var(--max), calc(100% - 80px));
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.integration-map svg {
  position: absolute;
  inset: 48px 6% auto;
  width: 88%;
  height: 300px;
  fill: none;
  stroke: rgba(255, 106, 0, 0.38);
  stroke-width: 1.3;
  stroke-dasharray: 7 10;
  animation: flow-dash 20s linear infinite;
}

.map-center {
  position: relative;
  z-index: 2;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 106, 0, 0.44), transparent 62%),
    rgba(255, 106, 0, 0.14);
  box-shadow: 0 0 0 18px rgba(255, 106, 0, 0.06), 0 0 0 36px rgba(255, 106, 0, 0.035);
}

.map-center img {
  width: 70px;
  height: 70px;
}

.node {
  position: absolute;
  z-index: 3;
  width: 68px;
  height: 68px;
  color: var(--orange);
}

.node-1 { left: 13%; top: 26%; }
.node-2 { left: 22%; bottom: 19%; }
.node-3 { left: 38%; top: 19%; }
.node-4 { right: 35%; top: 24%; }
.node-5 { right: 20%; bottom: 17%; }
.node-6 { right: 12%; top: 33%; }

.integration-map p {
  position: absolute;
  bottom: 42px;
  left: 50%;
  width: min(440px, calc(100% - 60px));
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  line-height: 1.5;
  transform: translateX(-50%);
}

.access {
  padding: 88px 0;
}

.access-card {
  min-height: 350px;
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.access-card > span {
  grid-column: 1 / -1;
  width: max-content;
}

.access-card h2 {
  margin: 0;
  max-width: 680px;
}

.access-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  line-height: 1.55;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 20px;
}

.support-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.support-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 650;
}

.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.support-form input {
  height: 52px;
  padding: 0 16px;
}

.support-form textarea {
  min-height: 126px;
  padding: 14px 16px;
  resize: vertical;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: rgba(255, 106, 0, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.14);
}

.form-status {
  position: relative;
  z-index: 1;
  min-height: 22px;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.4;
}

.faq {
  padding: 10px;
}

.faq details {
  position: relative;
  z-index: 1;
  border-radius: 14px;
}

.faq details + details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq details[open] {
  background: rgba(255, 255, 255, 0.045);
}

.faq summary {
  min-height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 720;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(225deg);
}

.faq p {
  margin: -4px 20px 20px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.footer {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 42px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 26px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 540;
}

.footer nav a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(110px);
  filter: blur(8px);
  transition:
    opacity 1.35s var(--ease),
    transform 1.35s var(--ease),
    filter 1.35s var(--ease);
}

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

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pill-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes orbit-drift {
  from { transform: rotate(-3deg) scale(0.98); }
  to { transform: rotate(4deg) scale(1.03); }
}

@keyframes orb-spin {
  to { rotate: 360deg; }
}

@keyframes orb-glow {
  from { opacity: 0.36; scale: 0.94; }
  to { opacity: 0.82; scale: 1.05; }
}

@keyframes flow-dash {
  to { stroke-dashoffset: -220; }
}

@keyframes card-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

@keyframes particle-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.38; }
  50% { transform: translate3d(12px, -18px, 0); opacity: 0.95; }
}

@media (max-width: 1180px) {
  .nav {
    width: min(var(--max), calc(100% - 40px));
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .language-switcher {
    margin-left: 0;
  }

  .nav-links.is-open {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    background: rgba(14, 14, 14, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 0 14px;
  }

  .nav-links.is-open a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "benefits"
      "marquee";
  }

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

  .hero-subtitle,
  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-device {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(3deg);
  }

  .float-push { left: 5%; }
  .float-battle { left: 7%; }
  .float-access { right: 4%; }
  .float-logs { right: 6%; }

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

  .hero-benefits div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero-benefits div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .bento,
  .feature-showcase,
  .steps,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .card-main {
    min-height: 520px;
  }

  .feature-story-wide,
  .feature-story-reverse {
    grid-template-columns: 1fr;
  }

  .feature-story-reverse .feature-story-media {
    order: 0;
  }

  .access-card {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1181px) and (max-width: 1480px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.is-open {
    position: fixed;
    top: 78px;
    right: 32px;
    display: grid;
    width: min(420px, calc(100% - 64px));
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    background: rgba(14, 14, 14, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 0 14px;
  }

  .nav-links.is-open a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links a::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(var(--max), calc(100% - 28px));
    min-height: 74px;
    gap: 12px;
  }

  .language-switcher {
    order: 1;
    min-width: 82px;
    min-height: 38px;
    margin-left: auto;
  }

  .language-switcher button {
    min-width: 29px;
    padding: 0 5px;
  }

  .menu-toggle {
    order: 2;
    margin-left: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    max-width: 148px;
    overflow: hidden;
    font-size: 1.16rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    margin-top: -74px;
    padding: 116px 14px 26px;
  }

  .hero-badge,
  .section-heading span,
  .access-card > span {
    min-height: 36px;
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2rem, 8.55vw, 2.24rem);
    line-height: 1.08;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-subtitle,
  .section-heading p,
  .access-card p {
    font-size: 0.96rem;
  }

  .hero-proof {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  .button {
    min-width: 0;
    width: 100%;
    min-height: 56px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: -6px;
  }

  .hero-orbits,
  .flow-lines,
  .particle-orb,
  .hero-particle {
    display: none;
  }

  .hero-device {
    top: 12%;
    width: 560px;
    max-width: 142%;
    height: auto;
    object-position: center;
    border-radius: 24px;
  }

  .hero-float-card {
    width: 214px;
    min-height: 86px;
    padding: 13px;
    grid-template-columns: 42px minmax(0, 1fr);
    border-radius: 18px;
  }

  .float-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 1.15rem;
  }

  .hero-float-card strong {
    font-size: 0.9rem;
  }

  .hero-float-card small {
    font-size: 0.76rem;
  }

  .float-push {
    top: 6%;
    left: 0;
  }

  .float-access {
    top: 21%;
    right: -10px;
  }

  .float-battle {
    left: -6px;
    bottom: 24%;
  }

  .float-logs {
    right: -10px;
    bottom: 8%;
  }

  .hero-benefits,
  .hero-marquee {
    grid-template-columns: 1fr;
  }

  .hero-benefits div {
    min-height: 66px;
  }

  .hero-benefits div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero-marquee {
    padding: 16px 0;
  }

  .hero-marquee b {
    padding: 0 18px 14px;
  }

  .city-strip h2,
  .section,
  .integration-map,
  .footer {
    width: min(var(--max), calc(100% - 28px));
  }

  .features,
  .install,
  .support,
  .access,
  .integrations-section,
  .city-strip {
    padding-top: 64px;
    padding-bottom: 54px;
  }

  .bento {
    grid-auto-rows: auto;
  }

  .bento-card {
    min-height: 260px;
  }

  .card-main {
    min-height: 460px;
  }

  .card-main img {
    width: 106%;
    left: -3%;
  }

  .avatar-grid {
    grid-template-columns: repeat(3, 52px);
  }

  .avatar-grid span,
  .integration-bubbles li {
    width: 52px;
    height: 52px;
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

  .download-panel code {
    padding: 0 4px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .integrations-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .integration-map {
    min-height: 520px;
  }

  .integration-map svg {
    display: none;
  }

  .node {
    width: 58px;
    height: 58px;
  }

  .node-1 { left: 8%; top: 20%; }
  .node-2 { left: 13%; bottom: 20%; }
  .node-3 { left: 36%; top: 14%; }
  .node-4 { right: 34%; top: 18%; }
  .node-5 { right: 15%; bottom: 22%; }
  .node-6 { right: 8%; top: 30%; }

  .access-card {
    padding: 28px;
  }

  .footer {
    display: grid;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.08rem;
  }

  .hero-device {
    max-width: 148%;
  }

  .hero-float-card {
    width: 205px;
  }
}

/* Product-first sections: Tournament of Elements, Asgard and Simulator guide */
.product-section,
.simulator-guide {
  padding: 96px 0;
}

.tournament-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.battle-flow,
.capability-card,
.screenshot-card,
.roadmap-card,
.guide-summary,
.instruction-step,
.guide-note,
.media-request {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    #0d0d0d;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.battle-flow::before,
.capability-card::before,
.roadmap-card::before,
.guide-summary::before,
.instruction-step::before,
.guide-note::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0 0, rgba(255, 106, 0, 0.15), transparent 45%);
}

.battle-flow {
  padding: clamp(26px, 3.2vw, 48px);
}

.battle-flow-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.54);
}

.battle-flow-head span {
  color: var(--orange-soft);
  font-weight: 760;
}

.battle-flow-head strong {
  font-weight: 520;
}

.battle-flow ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.battle-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-height: 94px;
}

.battle-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 47px;
  bottom: 0;
  left: 28px;
  width: 1px;
  background: linear-gradient(var(--orange), rgba(255, 106, 0, 0.12));
}

.battle-flow li > b {
  z-index: 1;
  display: grid;
  width: 58px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.38);
  border-radius: 14px;
  background: #17100c;
  color: var(--orange-soft);
  font-family: "DIN Alternate", "Avenir Next", sans-serif;
  font-size: 0.9rem;
}

.battle-flow li div {
  display: grid;
  align-content: start;
  gap: 5px;
  padding-top: 2px;
}

.battle-flow li strong {
  font-size: 1.18rem;
}

.battle-flow li small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.45;
}

.capability-stack {
  display: grid;
  gap: 14px;
}

.capability-card {
  min-height: 170px;
  padding: 26px 28px 24px 86px;
}

.capability-card > span {
  position: absolute;
  top: 25px;
  left: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 820;
  box-shadow: 0 14px 36px rgba(255, 106, 0, 0.24);
}

.capability-card h3 {
  font-size: 1.24rem;
}

.capability-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

.tournament-showcases {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.toe-showcase {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0, rgba(255, 106, 0, 0.12), transparent 28rem),
    #090909;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.toe-showcase-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  padding: 28px 30px 24px;
}

.toe-showcase-head div {
  display: grid;
  gap: 7px;
}

.toe-showcase-head span {
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toe-showcase-head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.toe-showcase-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.toe-showcase-media {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 0 14px 14px;
}

.toe-showcase-media-totems {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.toe-showcase-media-search {
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
}

.toe-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 106, 0, 0.08), transparent 55%),
    #050505;
}

.toe-shot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
  transition: transform 650ms var(--ease), filter 250ms ease;
}

.toe-shot:hover img {
  transform: scale(1.012);
  filter: saturate(1.04) contrast(1.03);
}

.toe-shot figcaption {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(13, 13, 13, 0.96);
}

.toe-shot figcaption > b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  color: #fff;
  font-size: 0.78rem;
}

.toe-shot figcaption div {
  display: grid;
  gap: 3px;
}

.toe-shot figcaption small {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.35;
}

.toe-shot-result {
  align-self: center;
}

.media-request {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 26px;
  border-style: dashed;
  border-color: rgba(255, 174, 104, 0.32);
  background: rgba(255, 106, 0, 0.045);
  box-shadow: none;
}

.media-request div {
  display: grid;
  gap: 5px;
}

.media-request span {
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-request strong {
  line-height: 1.35;
}

.media-request p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

.asgard-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 15% 45%, rgba(255, 106, 0, 0.11), transparent 30rem),
    linear-gradient(180deg, #080808, #0b0806 54%, #080808);
}

.asgard-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  grid-template-rows: minmax(270px, 0.9fr) minmax(230px, 0.7fr);
  gap: 20px;
}

.screenshot-card {
  margin: 0;
  background: #070707;
}

.screenshot-card-wide {
  grid-row: 1 / span 2;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.screenshot-card:hover img {
  transform: scale(1.018);
  filter: saturate(1.05) contrast(1.04);
}

.screenshot-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(9, 9, 9, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.screenshot-card figcaption > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  font-weight: 820;
}

.screenshot-card figcaption div {
  display: grid;
  gap: 3px;
}

.screenshot-card figcaption small {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.35;
}

.roadmap-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roadmap-card > span {
  width: max-content;
  margin-bottom: 22px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

.roadmap-status {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.roadmap-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.8);
  animation: roadmap-pulse 1.8s ease-in-out infinite;
}

.asgard-training {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: 20px;
  padding: clamp(20px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 106, 0, 0.14), transparent 25rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    #090909;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.asgard-training-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 142, 54, 0.3);
  border-radius: 18px;
  background: #050505;
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.45);
}

.asgard-training-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.asgard-training-shot figcaption {
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  text-align: center;
}

.asgard-training-copy > span {
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asgard-training-copy h3 {
  margin: 10px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.asgard-training-copy > p {
  max-width: 720px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.asgard-training-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asgard-training-copy li {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 14px 18px 14px 46px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.asgard-training-copy li::before {
  content: "✓";
  position: absolute;
  top: 15px;
  left: 17px;
  color: var(--orange-soft);
  font-weight: 900;
}

.asgard-training-copy li small {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.asgard-video {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background: #080808;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.asgard-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #030303;
}

.asgard-video-frame video,
.asgard-video-cover,
.asgard-video-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.asgard-video-frame video {
  border: 0;
  pointer-events: none;
  object-fit: contain;
  background: #000;
}

.asgard-video-cover {
  z-index: 1;
  background: #050505;
  transition: opacity 500ms var(--ease), visibility 500ms;
}

.asgard-video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.12) 55%, rgba(0, 0, 0, 0.32)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 48%);
}

.asgard-video-cover img {
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.01);
}

.asgard-video.is-started .asgard-video-cover {
  opacity: 0;
  visibility: hidden;
}

.asgard-video-control {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  grid-template-columns: 58px auto;
  grid-template-rows: auto auto;
  column-gap: 15px;
  min-width: 230px;
  min-height: 86px;
  padding: 14px 22px 14px 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(12, 12, 12, 0.84);
  color: #fff;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 260ms var(--ease), background 240ms ease, border-color 240ms ease, inset 300ms var(--ease);
}

.asgard-video-control:hover {
  border-color: rgba(255, 132, 44, 0.64);
  background: rgba(18, 13, 10, 0.94);
  transform: translate(-50%, -50%) scale(1.025);
}

.asgard-video-control > span {
  grid-row: 1 / span 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  color: #fff;
  font-size: 1.22rem;
  box-shadow: 0 16px 38px rgba(255, 106, 0, 0.28);
}

.asgard-video-control strong,
.asgard-video-control small {
  text-align: left;
}

.asgard-video-control strong {
  align-self: end;
  font-size: 1.04rem;
}

.asgard-video-control small {
  align-self: start;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.asgard-video.is-started .asgard-video-control {
  top: auto;
  right: 20px;
  bottom: 20px;
  left: auto;
  min-width: 150px;
  min-height: 58px;
  grid-template-columns: 38px auto;
  padding: 9px 15px 9px 9px;
  border-radius: 16px;
  transform: none;
}

.asgard-video.is-started .asgard-video-control:hover {
  transform: translateY(-2px);
}

.asgard-video.is-started .asgard-video-control > span {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 0.86rem;
}

.asgard-video-caption {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 28px;
  align-items: center;
  padding: 24px 28px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 0 0, rgba(255, 106, 0, 0.13), transparent 48%);
}

.asgard-video-caption div {
  display: grid;
  gap: 7px;
}

.asgard-video-caption span {
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asgard-video-caption h3,
.asgard-video-caption p {
  margin: 0;
}

.asgard-video-caption p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

@keyframes roadmap-pulse {
  50% { opacity: 0.38; transform: scale(0.72); }
}

.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 20px;
  margin-bottom: 20px;
}

.guide-intro .screenshot-card {
  min-height: 410px;
}

.guide-summary {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-lead {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 650;
  line-height: 1.45;
}

.simulator-download {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  margin: 10px 0 6px;
  padding: 13px 18px 13px 13px;
  align-items: center;
  border: 1px solid rgba(255, 137, 52, 0.48);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0.07));
  box-shadow: 0 20px 48px rgba(255, 106, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 240ms var(--ease), border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.simulator-download:hover {
  border-color: rgba(255, 160, 90, 0.8);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.32), rgba(255, 106, 0, 0.1));
  box-shadow: 0 24px 58px rgba(255, 106, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.simulator-download > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff9138, var(--orange));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 820;
  box-shadow: 0 16px 36px rgba(255, 106, 0, 0.26);
}

.simulator-download div {
  display: grid;
  gap: 4px;
}

.simulator-download strong {
  font-size: 1.05rem;
}

.simulator-download small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.guide-summary .feature-points {
  position: relative;
  z-index: 1;
}

.instruction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.instruction-step {
  min-height: 176px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
}

.instruction-step > b {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  font-family: "DIN Alternate", "Avenir Next", sans-serif;
  box-shadow: 0 18px 44px rgba(255, 106, 0, 0.2);
}

.instruction-step div {
  position: relative;
  z-index: 1;
}

.instruction-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.5;
}

.instruction-step code,
.media-request code {
  color: #ffc28f;
}

.guide-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 26px;
  border-color: rgba(255, 106, 0, 0.3);
  background: rgba(255, 106, 0, 0.065);
}

.guide-note span {
  position: relative;
  z-index: 1;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-note p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* The real Asgard capture is portrait-oriented; crop it like a product window. */
.hero-device {
  top: 9%;
  right: 1%;
  width: min(690px, 98%);
  height: 560px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  transform: rotate(2.4deg) translateY(-8px);
}

@media (max-width: 1180px) {
  .tournament-layout,
  .guide-intro {
    grid-template-columns: 1fr;
  }

  .capability-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-card {
    padding: 82px 24px 24px;
  }

  .asgard-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .screenshot-card-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

  .guide-intro .screenshot-card {
    min-height: 520px;
  }

  .hero-device {
    left: 50%;
    right: auto;
    width: min(680px, 94%);
    height: 560px;
    transform: translateX(-50%) rotate(1.5deg);
  }
}

@media (max-width: 760px) {
  .product-section,
  .simulator-guide {
    padding: 64px 0 54px;
  }

  .battle-flow {
    padding: 24px 20px;
  }

  .battle-flow-head,
  .media-request,
  .guide-note {
    grid-template-columns: 1fr;
  }

  .battle-flow-head {
    display: grid;
    gap: 6px;
  }

  .capability-stack,
  .asgard-gallery,
  .instruction-grid,
  .toe-showcase-media,
  .asgard-training {
    grid-template-columns: 1fr;
  }

  .asgard-training {
    gap: 26px;
    padding: 14px;
  }

  .asgard-training-copy {
    padding: 4px 8px 12px;
  }

  .toe-showcase-head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px 20px;
  }

  .toe-showcase-media {
    padding: 0 8px 8px;
  }

  .toe-shot img {
    max-height: none;
  }

  .capability-card {
    min-height: 0;
    padding: 24px 22px 24px 78px;
  }

  .media-request {
    gap: 12px;
    padding: 20px;
  }

  .screenshot-card-wide {
    grid-column: auto;
    min-height: 440px;
  }

  .screenshot-card img {
    min-height: 390px;
  }

  .screenshot-card figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 12px;
  }

  .screenshot-card figcaption > span {
    width: 40px;
    height: 40px;
  }

  .guide-intro .screenshot-card {
    min-height: 390px;
  }

  .guide-summary,
  .roadmap-card {
    padding: 26px 22px;
  }

  .asgard-video {
    border-radius: 18px;
  }

  .asgard-video-frame {
    aspect-ratio: 4 / 3;
  }

  .asgard-video-control {
    min-width: 212px;
    min-height: 78px;
    grid-template-columns: 50px auto;
    padding: 12px 18px 12px 12px;
  }

  .asgard-video-control > span {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .asgard-video.is-started .asgard-video-control {
    right: 10px;
    bottom: 10px;
  }

  .asgard-video-caption {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .instruction-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 22px 18px;
  }

  .instruction-step > b {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-device {
    top: 8%;
    width: 132%;
    max-width: 132%;
    height: 405px;
    object-position: center top;
  }
}

/* Editorial materials */
.latest-materials {
  position: relative;
  overflow: hidden;
}

.latest-materials::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -280px;
  top: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.11), transparent 66%);
  pointer-events: none;
}

.materials-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.materials-heading .section-heading {
  margin: 0;
}

.materials-all-link {
  min-height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 720;
  transition: border-color 180ms ease, background 180ms ease, transform 220ms var(--ease);
}

.materials-all-link:hover {
  border-color: rgba(255, 107, 0, 0.44);
  background: rgba(255, 107, 0, 0.08);
  transform: translateY(-3px);
}

.latest-materials-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 20px;
}

.latest-material-card {
  min-width: 0;
  min-height: 330px;
  display: grid;
  grid-template-rows: 168px 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(28, 27, 26, 0.96), rgba(15, 15, 15, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: transform 300ms var(--ease), border-color 220ms ease, box-shadow 300ms ease;
}

.latest-material-card:hover {
  z-index: 2;
  border-color: rgba(255, 107, 0, 0.32);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 44px rgba(255, 107, 0, 0.07);
  transform: translateY(-7px);
}

.latest-material-featured {
  grid-row: span 2;
  grid-template-rows: 345px 1fr;
}

.material-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
}

.material-card-media::after,
.material-library-media::after,
.material-feature-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(transparent, rgba(8, 8, 8, 0.74));
  pointer-events: none;
}

.material-card-media img,
.material-library-media img,
.material-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 350ms ease;
}

.latest-material-card:hover .material-card-media img,
.material-library-card:hover .material-library-media img,
.material-feature:hover .material-feature-image img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.material-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.material-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 620;
}

.material-type {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.material-type-news {
  background: var(--orange);
  color: #fff;
}

.material-type-game {
  background: rgba(255, 181, 71, 0.13);
  color: #ffc263;
}

.material-type-script {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
}

.material-card-body > strong {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(1.2rem, 1.6vw, 1.62rem);
  line-height: 1.12;
}

.latest-material-featured .material-card-body > strong {
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
}

.material-card-body > small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.5;
}

.material-card-body > em,
.material-feature-copy > em {
  margin-top: auto;
  padding-top: 22px;
  color: var(--orange-soft);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 760;
}

.material-card-body > em i,
.material-feature-copy > em i {
  display: inline-block;
  margin-left: 5px;
  font-style: normal;
  transition: transform 180ms ease;
}

.latest-material-card:hover em i,
.material-feature:hover em i {
  transform: translateX(4px);
}

.materials-page::before {
  background:
    radial-gradient(circle at 74% 14%, rgba(255, 107, 0, 0.16), transparent 31rem),
    radial-gradient(circle at 10% 62%, rgba(255, 137, 44, 0.055), transparent 30rem),
    linear-gradient(125deg, #06080b 0%, #050505 48%, #0a0604 100%);
}

.materials-hero {
  position: relative;
  width: min(var(--max), calc(100% - 80px));
  min-height: 530px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.materials-hero::before {
  content: "EDITORIAL / 01";
  position: absolute;
  left: 0;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.16);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.materials-hero-glow {
  position: absolute;
  right: 2%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.18), rgba(255, 107, 0, 0.035) 44%, transparent 68%);
  filter: blur(8px);
}

.materials-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.materials-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-soft);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.materials-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.9);
}

.materials-hero h1 {
  max-width: 820px;
  margin: 22px 0 20px;
  color: #fff;
  font-size: clamp(3.2rem, 5.5vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.materials-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.materials-hero-copy > p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.materials-orbit {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 107, 0, 0.12), transparent 23%),
    repeating-radial-gradient(circle at center, transparent 0 22%, rgba(255, 255, 255, 0.045) 22.2% 22.5%, transparent 22.7% 39%);
  box-shadow: inset 0 0 90px rgba(255, 107, 0, 0.035);
}

.materials-orbit::before,
.materials-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.07);
  transform: translate(-50%, -50%);
}

.materials-orbit::before { width: 100%; height: 1px; }
.materials-orbit::after { width: 1px; height: 100%; }

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 136, 48, 0.34);
  border-radius: 30px;
  background: rgba(10, 10, 10, 0.78);
  box-shadow: 0 0 80px rgba(255, 107, 0, 0.24);
  transform: translate(-50%, -50%) rotate(-7deg);
}

.orbit-core img { width: 72px; height: 72px; }

.orbit-label {
  position: absolute;
  z-index: 3;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(21, 21, 21, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 760;
}

.orbit-news { top: 14%; right: 4%; transform: rotate(4deg); }
.orbit-game { left: 1%; top: 50%; transform: rotate(-5deg); }
.orbit-script { right: 6%; bottom: 12%; transform: rotate(-3deg); }

.materials-library {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 70px 0 110px;
}

.materials-library-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.materials-library-head > div:first-child > span,
.materials-cta > div > span {
  color: var(--orange-soft);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.materials-library-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.045em;
}

.materials-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.materials-filters button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.materials-filters button b {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.67rem;
}

.materials-filters button:hover,
.materials-filters button.is-active {
  border-color: rgba(255, 107, 0, 0.34);
  background: rgba(255, 107, 0, 0.1);
  color: #fff;
}

.materials-filters button.is-active b {
  background: var(--orange);
}

.material-feature {
  min-height: 440px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(27, 26, 25, 0.97), rgba(12, 12, 12, 0.98));
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, transform 300ms var(--ease);
}

.material-feature:hover {
  border-color: rgba(255, 107, 0, 0.38);
  transform: translateY(-5px);
}

.material-feature[hidden],
.material-library-card[hidden] {
  display: none;
}

.material-feature-image,
.material-library-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #111;
}

.material-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 4vw, 62px);
}

.material-feature-copy > strong {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.material-feature-copy > small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 1rem;
  line-height: 1.6;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.material-library-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(19, 19, 19, 0.82);
  transition: transform 280ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.material-library-card:hover {
  border-color: rgba(255, 107, 0, 0.28);
  background: rgba(23, 22, 21, 0.94);
  transform: translateY(-6px);
}

.material-library-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px;
}

.material-library-copy h3 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 1.24rem;
  line-height: 1.22;
}

.material-library-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.92rem;
  line-height: 1.55;
}

.material-read-link,
.material-coming {
  margin-top: auto;
  padding-top: 24px;
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 760;
}

.material-read-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.material-read-link:hover span { transform: translateX(4px); }
.material-coming { color: rgba(255, 255, 255, 0.32); }

.materials-empty {
  margin: 28px 0 0;
  padding: 34px;
  border: 1px dashed var(--border-strong);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
}

.materials-cta {
  width: min(var(--max), calc(100% - 80px));
  min-height: 230px;
  margin: 0 auto 100px;
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 83% 50%, rgba(255, 107, 0, 0.17), transparent 24rem),
    linear-gradient(135deg, rgba(28, 26, 24, 0.98), rgba(12, 12, 12, 0.98));
}

.materials-cta h2 {
  margin: 9px 0 8px;
  font-size: clamp(1.9rem, 3.2vw, 3.3rem);
  letter-spacing: -0.04em;
}

.materials-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

/* Article page */
.article-shell {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 42px 0 110px;
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.8rem;
  font-weight: 650;
}

.article-breadcrumbs a:hover { color: var(--orange-soft); }

.article-hero {
  max-width: 980px;
  margin-top: 68px;
}

.article-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.article-hero > p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

.article-hero figure {
  height: min(54vw, 560px);
  margin: 50px 0 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background: #111;
  box-shadow: var(--shadow);
}

.article-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 720px);
  justify-content: space-between;
  gap: 70px;
  margin-top: 68px;
}

.article-layout > * {
  min-width: 0;
}

.article-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 13px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 107, 0, 0.32);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.82rem;
}

.article-toc strong {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.85);
}

.article-toc a:hover { color: var(--orange-soft); }

.article-content section { scroll-margin-top: 110px; }
.article-content section + section { margin-top: 58px; }

.article-content h2 {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.article-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-note {
  margin: 38px 0;
  padding: 24px 26px;
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 17px;
  background: rgba(255, 107, 0, 0.075);
}

.article-note strong {
  color: var(--orange-soft);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-note p { margin: 9px 0 0; }

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 54px;
}

/* 2026 distortion-titan event news */
[data-lang-copy="en"] { display: none !important; }
html[lang="en"] [data-lang-copy="ru"] { display: none !important; }
html[lang="en"] [data-lang-copy="en"] { display: revert !important; }
html[lang="en"] .article-toc[data-lang-copy="en"] { display: grid !important; }
html[lang="en"] .event-preview-label[data-lang-copy="en"] { display: inline-flex !important; }

.event-article-media {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto !important;
  background:
    radial-gradient(circle at 30% 45%, rgba(115, 63, 255, 0.24), transparent 42%),
    #09070d !important;
}

.event-article-media video,
.event-article-media .event-hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-article-media .event-hero-poster { display: none; }

.event-preview-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(181, 119, 255, 0.28);
  border-radius: 999px;
  background: rgba(115, 63, 255, 0.09);
  color: #d8c1ff;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-preview-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a976ff;
  box-shadow: 0 0 18px rgba(169, 118, 255, 0.95);
}

.event-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 34px;
}

.event-fact {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(118, 67, 194, 0.13), rgba(255, 107, 0, 0.045)),
    rgba(255, 255, 255, 0.025);
}

.event-fact strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.38rem;
  line-height: 1.08;
}

.event-fact span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  line-height: 1.45;
}

.event-fact strong > span {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.event-data-table {
  width: 100%;
  margin: 25px 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-spacing: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.event-data-table th,
.event-data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.event-data-table tr:last-child td { border-bottom: 0; }

.event-data-table th {
  background: rgba(255, 107, 0, 0.09);
  color: var(--orange-soft);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-data-table td {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.event-data-table td strong { color: #fff; }

.event-skill-card {
  position: relative;
  margin: 24px 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(168, 118, 255, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(72, 210, 255, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(74, 32, 112, 0.2), rgba(17, 12, 21, 0.92));
}

.event-skill-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.09);
  filter: blur(26px);
}

.event-skill-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #f1e6ff;
  font-size: 1.35rem;
}

.event-skill-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.event-skill-heading img {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), 0 0 22px rgba(140, 92, 255, 0.16);
}

.event-skill-heading h3 { margin: 0; }

.event-skill-card p,
.event-skill-card ul {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.7;
}

.event-skill-card ul { padding-left: 20px; }
.event-skill-card li + li { margin-top: 7px; }

.event-native-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 38px;
}

.event-native-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #100a0a;
}

.event-native-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.event-native-gallery figcaption {
  padding: 12px 14px 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.45;
}

.event-price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin: 24px 0;
}

.event-price-grid span {
  display: grid;
  gap: 5px;
  padding: 15px 10px;
  border: 1px solid rgba(255, 184, 89, 0.2);
  border-radius: 13px;
  background: rgba(255, 147, 0, 0.065);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  text-align: center;
}

.event-price-grid strong {
  color: #ffe0a7;
  font-size: 1.05rem;
}

.event-source-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 0.82rem !important;
}

.event-source-note a {
  color: var(--orange-soft);
  text-decoration: underline;
  text-decoration-color: rgba(255, 154, 61, 0.35);
  text-underline-offset: 3px;
}

/* Elemental Spirit of Distortion report */
.distortion-totem-page::before {
  background:
    radial-gradient(circle at 82% 13%, rgba(109, 74, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 13% 64%, rgba(0, 213, 255, 0.08), transparent 31rem),
    linear-gradient(128deg, #05070b 0%, #07050d 52%, #0d0711 100%);
}

.totem-report-hero > [data-lang-copy] {
  width: 100%;
  height: 100%;
}

.article-hero figure.totem-report-hero {
  width: min(100%, 760px);
  height: auto;
  aspect-ratio: 1672 / 941;
}

.totem-report-hero > [data-lang-copy="ru"] { display: block !important; }
html[lang="en"] .totem-report-hero > [data-lang-copy="ru"] { display: none !important; }
html[lang="en"] .totem-report-hero > [data-lang-copy="en"] { display: block !important; }

.totem-report-hero img {
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.totem-report-hero:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.015);
}

.totem-report-gallery {
  display: grid;
  width: min(100%, 500px);
  gap: 22px;
  margin: 30px auto 42px;
}

.totem-report-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(164, 119, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 83% 12%, rgba(77, 216, 255, 0.1), transparent 34%),
    #0d0912;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}

.totem-report-gallery a {
  display: block;
  overflow: hidden;
}

.totem-report-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 500ms var(--ease), filter 240ms ease;
}

.totem-report-gallery figure:hover img {
  filter: saturate(1.08);
  transform: scale(1.012);
}

.totem-report-gallery figcaption {
  padding: 14px 17px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.8rem;
  line-height: 1.5;
}

.event-data-table .totem-total-row td {
  border-top: 1px solid rgba(185, 131, 255, 0.28);
  background: linear-gradient(90deg, rgba(99, 55, 160, 0.2), rgba(28, 159, 202, 0.08));
}

.totem-grand-total {
  border-color: rgba(92, 224, 255, 0.26);
  background:
    radial-gradient(circle at 90% 20%, rgba(126, 79, 255, 0.16), transparent 34%),
    rgba(54, 23, 91, 0.19);
}

.totem-grand-total strong { color: #cbb7ff; }
.totem-grand-total p b { color: #fff; }
.totem-grand-total p em { color: #71ddff; font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  .event-article-media video { display: none; }
  .event-article-media .event-hero-poster { display: block; }
}

@media (max-width: 760px) {
  .event-facts-grid { grid-template-columns: 1fr; }
  .event-native-gallery { grid-template-columns: 1fr; }
  .event-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-data-table { display: block; overflow-x: auto; }
  .event-skill-card { padding: 21px; }
  .event-skill-heading img { width: 62px; height: 62px; }
}

@media (max-width: 1480px) {
  .nav-links.is-open .nav-materials {
    display: grid;
  }

  .nav-links.is-open .nav-materials-trigger {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 12px;
  }

  .nav-links.is-open .nav-materials-trigger:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links.is-open .nav-materials-trigger::after {
    display: none;
  }

  .nav-links.is-open .nav-dropdown {
    position: static;
    width: auto;
    max-height: 0;
    margin: 0 8px;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height 300ms var(--ease), padding 200ms ease;
  }

  .nav-links.is-open .nav-materials.is-open .nav-dropdown {
    max-height: 260px;
    padding: 4px 0 8px;
    pointer-events: auto;
  }

  .nav-links.is-open .nav-dropdown a {
    min-height: 58px;
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 7px 10px;
  }

  .nav-links.is-open .nav-dropdown a > i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
}

@media (max-width: 1100px) {
  .latest-materials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .latest-material-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: none;
  }

  .materials-hero {
    min-height: 470px;
    grid-template-columns: 1fr 340px;
    gap: 30px;
  }

  .materials-orbit { width: 340px; }

  .materials-library-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .materials-filters { justify-content: flex-start; }
  .materials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .material-feature { grid-template-columns: 1fr 1fr; }
}

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

  .latest-materials-grid { grid-template-columns: 1fr; }

  .latest-material-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
  }

  .latest-material-card { min-height: 0; }

  .materials-hero,
  .materials-library,
  .materials-cta,
  .article-shell {
    width: min(100% - 28px, var(--max));
  }

  .materials-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 76px 0 52px;
  }

  .materials-hero::before { display: none; }

  .materials-hero h1 {
    margin-top: 18px;
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .materials-orbit {
    width: min(88vw, 340px);
    justify-self: center;
  }

  .orbit-core { width: 88px; height: 88px; border-radius: 24px; }
  .orbit-core img { width: 58px; height: 58px; }
  .orbit-label { min-height: 36px; padding: 0 12px; font-size: 0.72rem; }

  .materials-library { padding: 46px 0 76px; }
  .materials-library-head { margin-bottom: 26px; }
  .materials-filters { width: 100%; }
  .materials-filters button { flex: 1 1 calc(50% - 8px); justify-content: space-between; }

  .material-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .material-feature-image { min-height: 240px; }
  .material-feature-copy { padding: 27px 22px; }
  .material-feature-copy > strong { font-size: 2rem; }
  .materials-grid { grid-template-columns: 1fr; }
  .material-library-card { grid-template-rows: 210px 1fr; }

  .materials-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 70px;
    padding: 30px 24px;
  }

  .article-shell { padding-top: 28px; }
  .article-hero { margin-top: 46px; }
  .article-hero h1 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .article-hero figure { height: 62vw; margin-top: 34px; border-radius: 18px; }
  .article-layout { grid-template-columns: 1fr; gap: 34px; margin-top: 44px; }
  .article-toc { position: static; }
  .article-content p { font-size: 1rem; }
}

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