:root {
  color-scheme: dark;
  --bg: #0d0e12;
  --bg-2: #12131a;
  --panel: rgba(20, 22, 31, 0.78);
  --panel-2: rgba(28, 31, 42, 0.92);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(124, 255, 193, 0.34);
  --text: #f7f8fb;
  --muted: #9aa3b2;
  --green: #7cffc1;
  --blue: #55a7ff;
  --purple: #aa7cff;
  --radius: 20px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 167, 255, 0.15), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(124, 255, 193, 0.1), transparent 28rem),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  background-size: 120% 120%, 120% 120%, auto;
  animation: background-drift 18s ease-in-out infinite alternate;
  color: var(--text);
  line-height: 1.55;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-split {
  overflow: hidden;
}

.reveal-split > * {
  transform: translateY(110%);
  transition: transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-split.is-visible > * {
  transform: translateY(0);
}

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

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

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 22px));
  min-height: 58px;
  margin: 10px auto 0;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 19, 26, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 42px;
  max-width: 150px;
  object-fit: contain;
}

.footer-brand img {
  width: auto;
  height: 52px;
  max-width: 170px;
  object-fit: contain;
}

.main-nav,
.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav {
  justify-content: center;
}

.main-nav a,
.nav-dropdown > a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  background: rgba(124, 255, 193, 0.11);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18, 19, 26, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(124, 255, 193, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(124, 255, 193, 0.62);
  background: var(--green);
  color: #09100d;
  box-shadow: 0 0 0 4px rgba(124, 255, 193, 0.08);
}

.btn-primary:hover {
  box-shadow: 0 0 0 6px rgba(124, 255, 193, 0.12), 0 12px 34px rgba(124, 255, 193, 0.12);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.btn-large {
  min-height: 48px;
  padding-inline: 22px;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
}

.hero,
.section,
.video-section,
.payment-strip,
.support-band,
.legal-page {
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
}

.video-section {
  margin-top: 10px;
}

.video-section--content {
  width: 100%;
  margin: 30px 0;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 360px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(18, 19, 26, 0.7);
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  transform: translateY(0) scale(1);
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.video-card img,
.video-card iframe,
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-card img {
  filter: saturate(0.98) contrast(1.08) brightness(0.82);
  opacity: 0.88;
  transform: scale(1.015);
  transition: opacity 220ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms ease;
}

.video-card iframe,
.video-card video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.video-card::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 62%, rgba(124, 255, 193, 0.16), transparent 13rem),
    linear-gradient(90deg, rgba(13, 14, 18, 0.86), rgba(13, 14, 18, 0.2) 62%),
    linear-gradient(180deg, rgba(13, 14, 18, 0.04), rgba(13, 14, 18, 0.68));
  content: "";
  transition: opacity 260ms ease;
}

.video-card:hover {
  border-color: rgba(124, 255, 193, 0.34);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(124, 255, 193, 0.07);
  transform: translateY(-4px) scale(1.006);
}

.video-card:hover img {
  filter: saturate(1.08) contrast(1.12) brightness(0.94);
  transform: scale(1.055);
}

.video-card:hover::after {
  opacity: 0.92;
}

.video-card.is-previewing img {
  opacity: 0.16;
  transform: scale(1.06);
}

.video-card.is-previewing iframe,
.video-card.is-previewing video {
  opacity: 1;
}

.video-copy {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  text-align: left;
}

.video-copy h2 {
  max-width: 640px;
  font-size: clamp(2rem, 5vw, 5rem);
}

.video-play {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(124, 255, 193, 0.44);
  border-radius: 50%;
  background: rgba(124, 255, 193, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 0 rgba(124, 255, 193, 0.22);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  animation: play-breathe 2.8s ease-in-out infinite;
}

.video-play::before {
  position: absolute;
  left: 25px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--green);
  content: "";
}

.video-card:hover .video-play {
  background: rgba(124, 255, 193, 0.22);
  box-shadow: 0 0 0 12px rgba(124, 255, 193, 0.08), 0 18px 42px rgba(124, 255, 193, 0.18);
  transform: scale(1.06);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(3, 5, 8, 0.78);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #000;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  transform: scale(0.96);
  transition: transform 180ms ease;
}

.custom-player {
  position: relative;
  width: min(1180px, 100%);
}

.video-modal.is-open .custom-player .video-modal-frame {
  transform: scale(1);
}

.video-modal-frame iframe,
.video-modal-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

.video-modal-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 101;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(18, 19, 26, 0.78);
  color: var(--text);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.custom-player-controls {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18, 19, 26, 0.78);
  backdrop-filter: blur(18px);
}

.custom-player-controls button {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
}

.player-timeline {
  position: relative;
  align-self: center;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  overflow: visible;
}

.player-buffer,
.player-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  border-radius: inherit;
}

.player-buffer {
  width: var(--buffer, 0%);
  background: rgba(255, 255, 255, 0.12);
}

.player-progress {
  background: linear-gradient(90deg, var(--green), var(--blue));
  box-shadow: 0 0 18px rgba(124, 255, 193, 0.28);
}

.player-progress::after {
  position: absolute;
  top: 50%;
  right: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(124, 255, 193, 0.62);
  content: "";
  transform: translateY(-50%) scale(0.75);
  transition: transform 180ms ease;
}

.player-timeline:hover .player-progress::after {
  transform: translateY(-50%) scale(1);
}

.player-thumb-preview {
  position: absolute;
  left: var(--hover-x, 0%);
  bottom: 24px;
  width: 150px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13, 14, 18, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.player-timeline:hover .player-thumb-preview {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.player-thumb-preview img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.player-thumb-preview span {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
}

.player-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.player-icon-button {
  display: grid;
  place-items: center;
  min-width: 42px;
}

.player-time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.player-volume {
  width: 120px;
  accent-color: var(--green);
}

.player-panel {
  position: absolute;
  right: 12px;
  bottom: 58px;
  z-index: 3;
  display: grid;
  gap: 7px;
  min-width: 220px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13, 14, 18, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  animation: panel-pop 160ms ease both;
}

.player-panel[hidden] {
  display: none;
}

.player-panel strong {
  color: var(--green);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-panel span,
.player-panel button {
  color: var(--text);
  font-size: 0.84rem;
}

.player-panel button {
  justify-content: flex-start;
  border-radius: 12px;
  text-align: left;
}

.custom-player-controls button:hover,
.custom-player-controls button.is-active {
  border-color: var(--line-strong);
  background: rgba(124, 255, 193, 0.12);
}

.quality-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.player-quality {
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 64px 0 30px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 7vw, 6.1rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.35rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 500px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.node-visual {
  position: relative;
  isolation: isolate;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 26% 30%, rgba(85, 167, 255, 0.14), transparent 16rem),
    radial-gradient(circle at 72% 68%, rgba(124, 255, 193, 0.12), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(18, 19, 26, 0.66);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 70px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  animation: visual-in 700ms ease both;
}

.node-visual::before {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(124, 255, 193, 0.16), transparent 24rem);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.node-visual::after {
  position: absolute;
  inset: 9%;
  z-index: -1;
  border: 1px solid rgba(124, 255, 193, 0.12);
  border-radius: 38% 62% 52% 48%;
  content: "";
  animation: orbit-spin 18s linear infinite;
}

.node-visual:hover::before {
  opacity: 1;
}

.node-visual svg {
  position: absolute;
  inset: 7%;
  width: 86%;
  height: 86%;
}

.node-visual path {
  fill: none;
  stroke: rgba(124, 255, 193, 0.18);
  stroke-width: 1.2;
  stroke-dasharray: 4 12;
  animation: dash-flow 5.8s linear infinite;
}

.signal-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 320px;
  height: 210px;
  border: 1px solid rgba(124, 255, 193, 0.16);
  border-radius: 46% 54% 58% 42%;
  transform: translate(-50%, -50%);
  animation: mesh-ring 13s linear infinite;
  pointer-events: none;
}

.signal-ring--two {
  width: 410px;
  height: 275px;
  border-color: rgba(85, 167, 255, 0.14);
  border-radius: 58% 42% 47% 53%;
  animation-duration: 19s;
  animation-direction: reverse;
}

.node-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  border: 1px solid rgba(124, 255, 193, 0.3);
  border-radius: 50%;
  background: rgba(13, 14, 18, 0.76);
  transform: translate(-50%, -50%);
  animation: core-float 5s ease-in-out infinite;
}

.node-core span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(124, 255, 193, 0.8);
  animation: pulse 1.8s ease-in-out infinite;
}

.node-core strong,
.node-core small {
  display: block;
}

.node-core strong {
  margin-top: 10px;
  font-size: 1.02rem;
}

.node-core small {
  color: var(--muted);
  font-size: 0.76rem;
}

.node {
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  border: 4px solid rgba(13, 14, 18, 0.9);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 24px rgba(85, 167, 255, 0.55);
  animation: node-float 4.6s ease-in-out infinite, signal-pop 2.8s ease-in-out infinite;
}

.node-a { top: 23%; left: 19%; }
.node-b { top: 24%; right: 17%; background: var(--purple); animation-delay: -1.1s; }
.node-c { right: 20%; bottom: 20%; background: var(--green); animation-delay: -2.2s; }
.node-d { bottom: 18%; left: 21%; animation-delay: -3.3s; }

.node-visual:hover .node-core {
  border-color: rgba(124, 255, 193, 0.6);
}

.location-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 218px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 58%),
    rgba(13, 14, 18, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  animation: badge-float 5.6s ease-in-out infinite;
}

.location-badge::after {
  position: absolute;
  inset: auto 14px 9px 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 255, 193, 0.38), transparent);
  content: "";
  opacity: 0.75;
  animation: badge-scan 2.8s ease-in-out infinite;
}

.location-badge .location-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(124, 255, 193, 0.24);
  border-radius: 14px;
  background: rgba(124, 255, 193, 0.12);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.location-badge small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-badge strong {
  color: var(--text);
  font-size: 0.88rem;
}

.location-badge--stuttgart {
  left: 28px;
  top: 28px;
}

.location-badge--salzgitter {
  right: 28px;
  bottom: 28px;
  animation-delay: -2.6s;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(18, 19, 26, 0.66);
  backdrop-filter: blur(14px);
}

.payment-strip div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  animation: rise-in 560ms ease both;
}

.payment-strip img {
  width: auto;
  max-width: 76px;
  height: 22px;
  object-fit: contain;
}

.payment-icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 22px;
  border: 1.8px solid rgba(255, 255, 255, 0.82);
  border-radius: 6px;
}

.payment-icon--card::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 3px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
}

.payment-icon--bank {
  border: 0;
}

.payment-icon--bank::before {
  position: absolute;
  inset: 3px 2px auto;
  height: 16px;
  border-top: 8px solid rgba(255, 255, 255, 0.82);
  border-bottom: 3px solid rgba(255, 255, 255, 0.82);
  clip-path: polygon(50% 0, 100% 42%, 100% 100%, 0 100%, 0 42%);
  content: "";
}

.payment-icon--invoice::before,
.payment-icon--invoice::after {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
  content: "";
}

.payment-icon--invoice::before {
  top: 7px;
}

.payment-icon--invoice::after {
  top: 13px;
}

.payment-strip div:nth-child(2) { animation-delay: 50ms; }
.payment-strip div:nth-child(3) { animation-delay: 100ms; }
.payment-strip div:nth-child(4) { animation-delay: 150ms; }
.payment-strip div:nth-child(5) { animation-delay: 200ms; }
.payment-strip div:nth-child(6) { animation-delay: 250ms; }
.payment-strip div:nth-child(7) { animation-delay: 300ms; }
.payment-strip div:nth-child(8) { animation-delay: 350ms; }
.payment-strip div:nth-child(9) { animation-delay: 400ms; }

.payment-strip strong {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
}

.section {
  padding: 58px 0 0;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.text-link {
  color: var(--green);
  font-weight: 900;
}

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

.bento-card,
.feature-card,
.support-band,
.site-footer,
.legal-notice {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  animation: rise-in 620ms ease both;
}

.bento-card:nth-child(2) { animation-delay: 80ms; }
.bento-card:nth-child(3) { animation-delay: 140ms; }
.bento-card:nth-child(4) { animation-delay: 200ms; }
.bento-card:nth-child(5) { animation-delay: 260ms; }

.bento-card:hover {
  border-color: var(--line-strong);
  background: var(--panel-2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bento-top span,
.feature-card span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(124, 255, 193, 0.2);
  border-radius: 13px;
  color: var(--green);
  background: rgba(124, 255, 193, 0.07);
}

.bento-top em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.bento-card h3 {
  margin-top: auto;
  font-size: clamp(1.35rem, 2.35vw, 2.3rem);
  letter-spacing: -0.04em;
}

.bento-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.badge-row small {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 850;
}

.bento-card > a {
  width: fit-content;
  margin-top: 14px;
  color: var(--green);
  font-weight: 950;
}

.infra-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: stretch;
  min-height: 430px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(13, 14, 18, 0.78), rgba(13, 14, 18, 0.54) 52%, rgba(13, 14, 18, 0.82)),
    url("/assets/images/evf-datacenter.jpg") center / cover no-repeat;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  animation: visual-in 700ms ease both;
}

.infra-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(124, 255, 193, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 34%);
  content: "";
  pointer-events: none;
  animation: infra-light 8s ease-in-out infinite alternate;
}

.infra-section > * {
  position: relative;
  z-index: 1;
}

.infra-lead {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.infra-lead p:not(.eyebrow) {
  max-width: 440px;
  color: #c8d0dc;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
}

.feature-card {
  min-height: 158px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(13, 14, 18, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: rise-in 620ms ease both;
}

.feature-card:first-child {
  grid-row: span 2;
}

.feature-card h3 {
  margin-top: 16px;
}

.feature-card p {
  color: #b8c1cf;
}

.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 58px;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: var(--radius);
}

.legal-page {
  max-width: 960px;
  padding: 76px 0 96px;
}

.rz-facts {
  display: flex;
  justify-content: center;
  margin: 32px 0 38px;
}

.rz-fact-panel,
.rz-panel,
.product-card,
.infra-card,
.benefit-item,
.certificate-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 20px;
  animation: rise-in 620ms ease both;
}

.rz-fact-panel {
  max-width: 560px;
  width: 100%;
  border-color: var(--line-strong);
  background: linear-gradient(120deg, rgba(124, 255, 193, 0.12), rgba(85, 167, 255, 0.08));
}

.rz-fact-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rz-fact-panel h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.rz-fact-panel ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
}

.rz-row {
  display: flex;
  align-items: stretch;
  gap: 28px;
  margin-bottom: 32px;
}

.rz-row--reverse {
  flex-direction: row-reverse;
}

.rz-image,
.rz-panel {
  flex: 1 1 0;
  min-width: 0;
}

.rz-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.content-page {
  max-width: 1180px;
}

.content-grid,
.product-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.product-card > span,
.infra-card > span,
.benefit-item > span,
.certificate-card > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--green);
  background: rgba(124, 255, 193, 0.07);
}

.product-card p,
.infra-card p,
.certificate-card p,
.legal-page p,
.legal-list {
  color: var(--muted);
}

.product-card .text-link {
  display: inline-flex;
  margin-top: 12px;
}

.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 30%, rgba(124, 255, 193, 0.12), transparent 18rem),
    rgba(18, 19, 26, 0.78);
}

.product-cta h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.product-cta p {
  margin: 0;
}

.root-configurator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 16px;
  margin-top: 32px;
}

.root-config-main,
.root-summary {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(18, 19, 26, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.root-config-main {
  padding: 18px;
}

.root-config-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.root-config-head h2,
.os-select h2,
.root-summary h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.root-config-head p,
.os-select p {
  margin: 0;
  color: var(--muted);
}

.root-config-head > strong {
  padding: 10px 13px;
  border: 1px solid rgba(124, 255, 193, 0.24);
  border-radius: 999px;
  background: rgba(124, 255, 193, 0.09);
  color: var(--green);
  white-space: nowrap;
}

.config-slider {
  position: relative;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.config-slider label {
  display: block;
  color: var(--text);
  font-weight: 900;
}

.config-slider output {
  position: absolute;
  top: 13px;
  right: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(85, 167, 255, 0.16);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.config-slider input[type="range"] {
  width: 100%;
  margin-top: 24px;
  accent-color: var(--green);
}

.slider-scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.os-select {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

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

.os-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.os-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.os-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.os-card:has(input:checked) {
  border-color: rgba(124, 255, 193, 0.44);
  background: rgba(124, 255, 193, 0.09);
}

.os-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.os-card img {
  width: 24px;
  height: 24px;
}

.root-summary {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 18px;
}

.root-summary dl {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.root-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.root-summary dt {
  color: var(--muted);
}

.root-summary dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  text-align: right;
}

.summary-price {
  display: grid;
  gap: 3px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(124, 255, 193, 0.26);
  border-radius: 16px;
  background: rgba(124, 255, 193, 0.08);
}

.summary-price span,
.summary-price small {
  color: var(--muted);
}

.summary-price strong {
  color: var(--green);
  font-size: 1.35rem;
}

.root-summary .btn {
  width: 100%;
}

.product-order-page > p {
  max-width: 680px;
}

.game-order-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.32fr);
  gap: 16px;
  margin-top: 32px;
}

.game-order-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

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

.game-cover-card,
.package-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.game-cover-card {
  display: grid;
  min-height: 230px;
  padding: 16px;
  border-radius: 24px;
  align-content: end;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.18), transparent 10rem),
    linear-gradient(145deg, rgba(31, 34, 45, 0.92), rgba(15, 16, 22, 0.94));
}

.game-cover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.54;
  transition: opacity 180ms ease, transform 220ms ease;
}

.game-cover-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(6, 7, 10, 0.88));
}

.game-cover-card:hover,
.game-cover-card.is-selected,
.package-card:hover,
.package-card.is-selected {
  border-color: rgba(124, 255, 193, 0.48);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(124, 255, 193, 0.055);
  transform: translateY(-2px);
}

.game-cover-card:hover::before,
.game-cover-card.is-selected::before {
  opacity: 0.84;
  transform: scale(1.04);
}

.game-cover-card--green::before {
  background:
    linear-gradient(90deg, rgba(124, 255, 193, 0.22) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.18) 50% 75%, transparent 75%),
    linear-gradient(135deg, rgba(48, 91, 72, 0.9), rgba(16, 19, 25, 0.8));
  background-size: 54px 54px, auto;
}

.game-cover-card--blue::before {
  background:
    radial-gradient(circle at 28% 22%, rgba(85, 167, 255, 0.48), transparent 9rem),
    linear-gradient(135deg, rgba(51, 75, 102, 0.92), rgba(17, 19, 27, 0.82));
}

.game-cover-card--purple::before {
  background:
    radial-gradient(circle at 34% 26%, rgba(170, 124, 255, 0.52), transparent 10rem),
    linear-gradient(135deg, rgba(71, 54, 94, 0.9), rgba(19, 18, 27, 0.82));
}

.game-cover-card--lime::before {
  background:
    radial-gradient(circle at 50% 26%, rgba(184, 255, 111, 0.4), transparent 9rem),
    linear-gradient(135deg, rgba(80, 95, 62, 0.84), rgba(17, 18, 23, 0.88));
}

.game-cover-card strong {
  margin-top: 56px;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.game-cover-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.game-art {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(13, 14, 18, 0.42);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.game-art::before,
.game-art::after {
  content: "";
  position: absolute;
}

.game-art--minecraft::before {
  width: 34px;
  height: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 33%, transparent 33% 66%, rgba(124, 255, 193, 0.95) 66%),
    linear-gradient(rgba(124, 255, 193, 0.95) 33%, transparent 33% 66%, rgba(255, 255, 255, 0.36) 66%);
}

.game-art--gmod::before {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(-32deg);
}

.game-art--gmod::after {
  width: 22px;
  height: 22px;
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-32deg) translate(10px, -3px);
}

.game-art--astroneer::before {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c49cff, #7a4dff);
}

.game-art--astroneer::after {
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transform: rotate(-16deg);
}

.game-art--csgo::before {
  width: 42px;
  height: 42px;
  border: 4px solid #b8ff6f;
  border-radius: 999px;
}

.game-art--csgo::after {
  width: 54px;
  height: 54px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.64) 48% 52%, transparent 52%),
    linear-gradient(transparent 48%, rgba(255, 255, 255, 0.64) 48% 52%, transparent 52%);
}

.game-config-panel,
.package-panel {
  padding: 0;
}

.config-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 950;
}

.config-panel-title span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: var(--green);
  background: rgba(124, 255, 193, 0.08);
}

.game-select-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.game-select-row label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.game-select-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  font-weight: 850;
}

.game-select-row select:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(124, 255, 193, 0.08);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.package-card {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.package-card.is-selected {
  background:
    radial-gradient(circle at 12% 12%, rgba(124, 255, 193, 0.13), transparent 11rem),
    rgba(255, 255, 255, 0.045);
}

.package-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.package-head strong {
  line-height: 1.25;
  font-size: 1rem;
}

.package-head small {
  padding: 5px 8px;
  border: 1px solid rgba(124, 255, 193, 0.34);
  border-radius: 999px;
  background: rgba(124, 255, 193, 0.11);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 950;
  white-space: nowrap;
}

.package-card em {
  color: var(--muted);
  font-style: normal;
}

.package-card b {
  margin-top: 4px;
  font-size: 1.18rem;
}

.package-card > span:not(.package-head) {
  color: var(--muted);
  font-size: 0.82rem;
}

.cloud-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 255, 193, 0.18), transparent 18rem),
    radial-gradient(circle at 16% 72%, rgba(85, 167, 255, 0.16), transparent 18rem),
    rgba(18, 19, 26, 0.72);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.cloud-hero-card h2 {
  max-width: 540px;
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.cloud-hero-card p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.cloud-hero-card > span {
  display: grid;
  place-items: center;
  width: clamp(94px, 16vw, 168px);
  height: clamp(94px, 16vw, 168px);
  border: 1px solid rgba(124, 255, 193, 0.24);
  border-radius: 42px;
  color: var(--green);
  background:
    radial-gradient(circle, rgba(124, 255, 193, 0.22), transparent 68%),
    rgba(124, 255, 193, 0.06);
  box-shadow: 0 0 60px rgba(124, 255, 193, 0.12);
}

.cloud-hero-card .icon {
  width: 64px;
  height: 64px;
}

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

.cloud-feature-grid {
  margin-top: 0;
}

.legal-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.legal-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 850;
}

.legal-form input,
.legal-form select,
.legal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

.legal-form textarea {
  resize: vertical;
}

.legal-form input:focus,
.legal-form select:focus,
.legal-form textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(124, 255, 193, 0.08);
}

.legal-form .btn {
  width: fit-content;
}

.teamspeak-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.teamspeak-mini-grid .product-card {
  min-height: 150px;
}

.legal-page h1 {
  font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-page a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(124, 255, 193, 0.38);
  text-underline-offset: 0.18em;
}

.legal-list {
  margin: 18px 0 0;
  padding-left: 1.25rem;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-notice {
  margin: 28px 0 10px;
  padding: 16px 18px;
  border-radius: 16px;
  color: var(--text);
  font-weight: 850;
}

.site-footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 16px;
  padding: 22px;
  border-radius: var(--radius);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 22px;
}

.site-footer p,
.footer-bottom {
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.site-footer a:not(.footer-brand) {
  display: block;
  width: fit-content;
  margin: 5px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

@keyframes pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

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

@keyframes core-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes node-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.08); }
}

@keyframes mesh-ring {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(0.96); opacity: 0.45; }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.04); opacity: 0.82; }
  to { transform: translate(-50%, -50%) rotate(360deg) scale(0.96); opacity: 0.45; }
}

@keyframes signal-pop {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 255, 193, 0.0), 0 0 24px rgba(85, 167, 255, 0.55); }
  50% { box-shadow: 0 0 0 10px rgba(124, 255, 193, 0.07), 0 0 30px rgba(124, 255, 193, 0.42); }
}

@keyframes orbit-spin {
  from { transform: rotate(0deg) scale(1); opacity: 0.48; }
  50% { transform: rotate(180deg) scale(1.06); opacity: 0.72; }
  to { transform: rotate(360deg) scale(1); opacity: 0.48; }
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes badge-scan {
  0%, 100% { transform: translateX(-8px); opacity: 0.18; }
  50% { transform: translateX(8px); opacity: 0.85; }
}

@keyframes play-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 255, 193, 0.0); }
  50% { box-shadow: 0 0 0 10px rgba(124, 255, 193, 0.08); }
}

@keyframes panel-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes visual-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes line-scan {
  from { background-position: 220% 0; }
  to { background-position: -220% 0; }
}

@keyframes background-drift {
  from { background-position: 0% 0%, 100% 0%, 0 0; }
  to { background-position: 12% 8%, 88% 14%, 0 0; }
}

@keyframes infra-light {
  from { opacity: 0.72; transform: translateX(-1.5%); }
  to { opacity: 1; transform: translateX(1.5%); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-split > * {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

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

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-open .main-nav,
  .nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .nav-open .main-nav,
  .nav-open .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-open .main-nav a,
  .nav-open .header-actions .btn {
    width: 100%;
  }

  .premium-hero,
  .infra-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .infra-section {
    padding: 26px;
  }

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

  .root-configurator {
    grid-template-columns: 1fr;
  }

  .game-order-shell {
    grid-template-columns: 1fr;
  }

  .root-summary {
    position: static;
  }

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

  .rz-row,
  .rz-row--reverse {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section,
  .video-section,
  .payment-strip,
  .support-band,
  .site-footer,
  .legal-page {
    width: min(100% - 22px, 1180px);
  }

  .brand img {
    height: 34px;
  }

  .footer-brand img {
    height: 42px;
  }

  .premium-hero {
    gap: 24px;
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .hero-actions,
  .support-band,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .support-band .btn {
    width: 100%;
  }

  .node-visual {
    min-height: 300px;
    border-radius: 22px;
  }

  .node-core {
    width: 116px;
    height: 116px;
  }

  .location-badge {
    min-width: 0;
    padding: 8px;
  }

  .location-badge strong {
    display: none;
  }

  .location-badge small {
    display: none;
  }

  .location-badge::after {
    display: none;
  }

  .location-badge--stuttgart {
    left: 16px;
    top: 16px;
  }

  .location-badge--salzgitter {
    right: 16px;
    bottom: 16px;
  }

  .video-card {
    min-height: 260px;
    border-radius: 22px;
  }

  .video-copy {
    left: 18px;
    bottom: 18px;
  }

  .video-play {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .quality-picker {
    width: 100%;
    margin-left: 0;
  }

  .custom-player-controls {
    grid-template-columns: 1fr;
  }

  .player-timeline,
  .player-actions {
    grid-column: 1;
  }

  .player-volume {
    width: 86px;
  }

  .infra-section {
    padding: 22px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(13, 14, 18, 0.74), rgba(13, 14, 18, 0.9)),
      url("/assets/images/evf-datacenter.jpg") center / cover no-repeat;
  }

  .root-config-head,
  .product-cta {
    align-items: stretch;
    flex-direction: column;
  }

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

  .game-cover-grid,
  .package-grid,
  .cloud-package-grid,
  .game-select-row {
    grid-template-columns: 1fr;
  }

  .game-cover-card {
    min-height: 190px;
  }

  .package-card {
    min-height: auto;
  }

  .cloud-hero-card {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 22px;
  }

  .cloud-hero-card > span {
    width: 84px;
    height: 84px;
    border-radius: 26px;
  }

  .cloud-hero-card .icon {
    width: 42px;
    height: 42px;
  }

  .bento-grid,
  .feature-grid,
  .content-grid,
  .product-grid,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-wide,
  .feature-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }

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