:root {
  color-scheme: dark;
  --bg: #020713;
  --bg-2: #061428;
  --panel: rgba(7, 22, 42, 0.72);
  --panel-strong: rgba(8, 28, 55, 0.92);
  --line: rgba(85, 223, 255, 0.24);
  --line-strong: rgba(85, 223, 255, 0.55);
  --cyan: #00e5ff;
  --cyan-soft: #7af6ff;
  --blue: #138dff;
  --violet: #7c3aed;
  --text: #f6fbff;
  --muted: #9db8cf;
  --muted-2: #6d89a2;
  --success: #27e3a2;
  --warning: #ffbf47;
  --danger: #ff4d68;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-cyan: 0 0 38px rgba(0, 229, 255, 0.25), 0 0 96px rgba(19, 141, 255, 0.14);
  --shadow-panel: 0 20px 80px rgba(0, 0, 0, 0.38);
  --max: 1280px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100dvh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.2), transparent 42%),
    radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.14), transparent 34%),
    linear-gradient(135deg, #020713 0%, #061428 52%, #020713 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 246, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 246, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.62;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; cursor: pointer; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  background: var(--cyan);
  color: #00111d;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-shell { position: relative; z-index: 1; min-height: 100dvh; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px clamp(14px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(2, 7, 19, 0.88), rgba(2, 7, 19, 0.56));
  border-bottom: 1px solid rgba(122, 246, 255, 0.16);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr auto;
  align-items: center;
  gap: 14px;
}
.brand-link { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(122, 246, 255, 0.35);
  object-fit: cover;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.32);
  background: #041324;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-title {
  font-weight: 900;
  letter-spacing: 0.13em;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-subtitle { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }

.nav-menu { display: flex; align-items: center; justify-content: center; gap: 5px; }
.nav-link {
  position: relative;
  color: rgba(246, 251, 255, 0.78);
  padding: 10px 10px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff;
  background: rgba(0, 229, 255, 0.1);
  outline: none;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(122, 246, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(4, 19, 36, 0.76);
}
.lang-btn {
  min-width: 42px;
  padding: 9px 10px;
  color: rgba(246, 251, 255, 0.72);
  background: transparent;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.lang-btn.active {
  color: #00111d;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 900;
  color: #00111d;
  background: linear-gradient(135deg, #ffffff, var(--cyan));
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.28);
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(122, 246, 255, 0.22);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px; height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

main { min-height: calc(100dvh - var(--header-h)); }

.kinetic-page {
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: center;
  padding: clamp(18px, 3vw, 38px);
}

.hero-stage {
  position: relative;
  width: min(var(--max), 100%);
  margin-inline: auto;
  min-height: clamp(560px, calc(100dvh - 122px), 820px);
  border: 1px solid rgba(122, 246, 255, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-panel), var(--shadow-cyan);
  background: rgba(2, 7, 19, 0.82);
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.92) 0%, rgba(2, 7, 19, 0.52) 38%, rgba(2, 7, 19, 0.38) 62%, rgba(2, 7, 19, 0.86) 100%),
    linear-gradient(180deg, rgba(2, 7, 19, 0.06) 0%, rgba(2, 7, 19, 0.72) 86%, rgba(2, 7, 19, 0.95) 100%);
  z-index: 2;
}
.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg img {
  filter: saturate(1.16) contrast(1.05) brightness(0.78);
  transform: scale(1.012);
  animation: bannerDrift 14s ease-in-out infinite alternate;
}
.hero-canvas { position: absolute; inset: 0; z-index: 3; opacity: 0.75; }
.scan-line {
  position: absolute;
  left: -18%; right: -18%; top: 56%;
  height: 2px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.18), #bdfcff, rgba(0, 229, 255, 0.18), transparent);
  box-shadow: 0 0 24px rgba(0,229,255,.75), 0 0 90px rgba(19,141,255,.4);
  animation: scanSweep 4.8s ease-in-out infinite;
}
.energy-rail {
  position: absolute;
  z-index: 4;
  left: 8%; right: 8%; top: 43%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.5), transparent);
  opacity: .86;
}
.energy-rail::before,
.energy-rail::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 32%; height: 5px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  filter: blur(1px);
  animation: railPulse 2.6s ease-in-out infinite alternate;
}
.energy-rail::before { left: 3%; }
.energy-rail::after { right: 3%; animation-delay: -1.2s; }

.dragon-orb {
  position: absolute;
  z-index: 5;
  right: clamp(16px, 6vw, 86px);
  top: clamp(70px, 12vh, 120px);
  width: clamp(210px, 28vw, 380px);
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.9;
  transform-style: preserve-3d;
  animation: dragonBreath 5.5s ease-in-out infinite;
}
.dragon-orb::before,
.dragon-orb::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: inherit;
  border: 1px solid rgba(122, 246, 255, 0.34);
  box-shadow: inset 0 0 32px rgba(0,229,255,.14), 0 0 30px rgba(0,229,255,.16);
  animation: ringSpin 18s linear infinite;
}
.dragon-orb::after {
  inset: 16%;
  border-style: dashed;
  opacity: 0.82;
  animation-direction: reverse;
  animation-duration: 12s;
}
.dragon-emblem {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(0,229,255,.38), 0 0 95px rgba(0,99,255,.26);
  filter: drop-shadow(0 0 12px rgba(122,246,255,.8));
  animation: dragonFloat 4.2s ease-in-out infinite;
}
.dragon-glint {
  position: absolute;
  width: 10%; height: 4%;
  border-radius: 50%;
  right: 32%; top: 43%;
  background: radial-gradient(circle, #fff, var(--cyan) 42%, transparent 70%);
  filter: blur(.5px);
  opacity: .9;
  animation: eyePulse 1.7s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 8;
  max-width: min(660px, 58%);
  padding: clamp(28px, 5vw, 72px);
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(122, 246, 255, 0.28);
  border-radius: 999px;
  background: rgba(2, 7, 19, 0.5);
  color: var(--cyan-soft);
  font-size: clamp(0.72rem, 1.1vw, 0.84rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: inset 0 0 22px rgba(0,229,255,.07);
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 99px; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.hero-title {
  margin: 20px 0 0;
  font-size: clamp(2.45rem, 6.2vw, 6.35rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  max-width: 10ch;
  text-transform: uppercase;
}
.hero-title span {
  background: linear-gradient(90deg, #fff 0%, #dffcff 24%, var(--cyan) 58%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 44px rgba(0,229,255,.18);
}
.hero-lead {
  color: rgba(246, 251, 255, 0.82);
  font-size: clamp(1.02rem, 1.7vw, 1.34rem);
  line-height: 1.62;
  max-width: 54ch;
  margin: 20px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(122, 246, 255, 0.24);
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  overflow: hidden;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; box-shadow: 0 0 32px rgba(0,229,255,.22); }
.btn-primary { background: linear-gradient(135deg, #ffffff, var(--cyan)); color: #00111d; border-color: transparent; }
.btn-ghost { background: rgba(3, 18, 34, 0.72); color: #f6fbff; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-140%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(140%) skewX(-18deg); }

.status-strip {
  position: absolute;
  left: clamp(16px, 4vw, 56px); right: clamp(16px, 4vw, 56px); bottom: clamp(16px, 3vw, 34px);
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.status-card {
  min-width: 0;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(4, 19, 36, 0.68);
  border: 1px solid rgba(122, 246, 255, 0.18);
  backdrop-filter: blur(14px);
}
.status-card strong {
  display: block;
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  color: var(--cyan-soft);
  overflow-wrap: anywhere;
}
.status-card span { display: block; color: var(--muted); font-size: .78rem; margin-top: 5px; line-height: 1.35; }

.content-grid {
  position: relative;
  z-index: 8;
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: clamp(560px, calc(100dvh - 122px), 820px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}
.page-panel,
.feature-matrix,
.contact-panel,
.legal-panel {
  border: 1px solid rgba(122, 246, 255, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(5, 18, 36, 0.86), rgba(3, 12, 25, 0.74));
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.page-panel { position: relative; padding: clamp(24px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.page-panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(0,229,255,.18), transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(124,58,237,.18), transparent 32%);
  pointer-events: none;
}
.page-panel > * { position: relative; z-index: 1; }
.page-title {
  font-size: clamp(2.05rem, 4.2vw, 4.55rem);
  line-height: 0.94;
  margin: 18px 0 0;
  letter-spacing: -0.055em;
}
.page-title .accent { color: var(--cyan); text-shadow: 0 0 26px rgba(0,229,255,.25); }
.page-copy { margin: 20px 0 0; color: rgba(246, 251, 255, 0.8); line-height: 1.7; font-size: clamp(1rem, 1.2vw, 1.14rem); }
.panel-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.panel-list li { display: flex; gap: 10px; color: rgba(246,251,255,.82); line-height: 1.45; }
.panel-list li::before { content: ""; flex: 0 0 9px; width: 9px; height: 9px; margin-top: .45em; border-radius: 99px; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }

.feature-matrix { padding: clamp(16px, 2.2vw, 26px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-content: center; }
.feature-card {
  position: relative;
  min-height: 158px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(122, 246, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(10, 31, 58, 0.72), rgba(2, 9, 20, 0.72)),
    radial-gradient(circle at 80% 10%, rgba(0,229,255,.14), transparent 30%);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  left: -20%; right: -20%; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.7), transparent);
  opacity: .62;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(122, 246, 255, 0.42); }
.feature-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: var(--cyan);
  border: 1px solid rgba(122,246,255,.2);
  background: rgba(0,229,255,.08);
  box-shadow: inset 0 0 18px rgba(0,229,255,.1);
  margin-bottom: 14px;
}
.feature-card h2,
.feature-card h3 { margin: 0; font-size: clamp(1rem, 1.35vw, 1.18rem); letter-spacing: -0.015em; }
.feature-card p { margin: 10px 0 0; color: var(--muted); line-height: 1.58; font-size: .95rem; }
.card-link { color: var(--cyan-soft); font-weight: 900; display: inline-flex; margin-top: 14px; }

.contact-wrap { width: min(var(--max), 100%); margin: 0 auto; min-height: clamp(560px, calc(100dvh - 122px), 820px); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(18px, 3vw, 34px); }
.contact-panel { padding: clamp(18px, 3vw, 30px); }
.contact-form { display: grid; gap: 12px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--muted); font-size: .85rem; font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(122, 246, 255, 0.2);
  border-radius: 16px;
  background: rgba(2, 9, 20, 0.74);
  color: var(--text);
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: rgba(0,229,255,.68); box-shadow: 0 0 0 3px rgba(0,229,255,.12); }
.form-note { color: var(--muted); font-size: .86rem; line-height: 1.55; margin: 0; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(122, 246, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 19, 36, 0.72);
  color: rgba(246,251,255,.86);
  font-weight: 900;
}
.social-pill svg { width: 19px; height: 19px; color: var(--cyan); }

.legal-layout { width: min(980px, 100%); margin: 0 auto; min-height: clamp(560px, calc(100dvh - 122px), 820px); display: grid; align-items: center; }
.legal-panel { padding: clamp(22px, 4vw, 54px); }
.legal-panel h1 { font-size: clamp(2rem, 4vw, 4rem); line-height: .96; margin: 16px 0 20px; letter-spacing: -.055em; }
.legal-section { padding: 16px 0; border-top: 1px solid rgba(122,246,255,.14); }
.legal-section h2 { margin: 0 0 8px; color: var(--cyan-soft); font-size: 1.08rem; }
.legal-section p { color: rgba(246,251,255,.78); line-height: 1.72; margin: 0; }

.cookie-banner {
  position: fixed;
  z-index: 2200;
  left: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  display: none;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(122,246,255,.24);
  border-radius: 24px;
  background: rgba(2, 9, 20, 0.94);
  box-shadow: 0 24px 80px rgba(0,0,0,.46), 0 0 36px rgba(0,229,255,.16);
  padding: 16px;
  backdrop-filter: blur(18px);
}
.cookie-banner.show { display: grid; }
.cookie-banner h2 { margin: 0 0 5px; font-size: 1rem; }
.cookie-banner p { margin: 0; color: var(--muted); line-height: 1.5; font-size: .92rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cookie-btn {
  padding: 11px 13px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(122,246,255,.1);
  color: #fff;
  border: 1px solid rgba(122,246,255,.18);
}
.cookie-btn.accept { background: linear-gradient(135deg, #fff, var(--cyan)); color: #00111d; }
.cookie-preferences {
  display: none;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(122,246,255,.14);
  padding-top: 12px;
  gap: 10px;
}
.cookie-preferences.show { display: grid; }
.cookie-toggle { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: rgba(246,251,255,.86); }
.cookie-toggle input { width: 20px; height: 20px; accent-color: var(--cyan); }

.footer {
  position: relative;
  z-index: 3;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 38px) 26px;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
}
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }

@keyframes bannerDrift { from { transform: scale(1.012) translate3d(-.4%, 0, 0); } to { transform: scale(1.04) translate3d(.6%, -.5%, 0); } }
@keyframes scanSweep { 0%,100% { transform: translateY(-10px); opacity: .45; } 50% { transform: translateY(10px); opacity: .92; } }
@keyframes railPulse { from { opacity: .25; transform: scaleX(.72); } to { opacity: 1; transform: scaleX(1.08); } }
@keyframes dragonBreath { 0%,100% { filter: brightness(1) saturate(1); transform: translateY(0) scale(1); } 50% { filter: brightness(1.25) saturate(1.3); transform: translateY(-5px) scale(1.022); } }
@keyframes dragonFloat { 0%,100% { transform: translate3d(0, 0, 0) rotateZ(-.5deg); } 35% { transform: translate3d(4px, -8px, 0) rotateZ(.9deg); } 70% { transform: translate3d(-3px, 3px, 0) rotateZ(-.2deg); } }
@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes eyePulse { 0%,100% { opacity: .55; transform: scale(.82); } 50% { opacity: 1; transform: scale(1.45); } }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 12px; right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(122,246,255,.22);
    border-radius: 24px;
    background: rgba(2,9,20,.96);
    box-shadow: var(--shadow-panel);
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 14px; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .hero-content { max-width: 68%; }
  .dragon-orb { opacity: .72; right: 18px; }
}

@media (max-width: 860px) {
  body { overflow-y: auto; }
  .site-header { height: auto; min-height: var(--header-h); }
  .brand-subtitle { display: none; }
  .kinetic-page { align-items: start; padding: 14px; }
  .hero-stage { min-height: calc(100dvh - 102px); border-radius: 22px; }
  .hero-stage::before { background: linear-gradient(180deg, rgba(2,7,19,.48) 0%, rgba(2,7,19,.88) 50%, rgba(2,7,19,.96) 100%); }
  .hero-bg img { object-position: center top; }
  .dragon-orb { top: 72px; right: 50%; transform: translateX(50%); width: min(270px, 62vw); opacity: .88; }
  .hero-content { max-width: none; min-height: calc(100dvh - 102px); justify-content: end; padding: 24px; padding-top: min(56vh, 390px); }
  .hero-title { max-width: 11ch; }
  .hero-lead { font-size: 1rem; line-height: 1.52; }
  .status-strip { position: relative; left: auto; right: auto; bottom: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: -102px 20px 20px; }
  .content-grid,
  .contact-wrap { min-height: auto; grid-template-columns: 1fr; }
  .feature-matrix { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  :root { --header-h: 68px; }
  .header-inner { gap: 8px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .brand-title { font-size: .78rem; letter-spacing: .09em; }
  .lang-btn { min-width: 36px; padding: 8px; }
  .hero-actions .btn { width: 100%; }
  .status-strip { grid-template-columns: 1fr; margin-left: 12px; margin-right: 12px; }
  .page-panel, .feature-matrix, .contact-panel, .legal-panel { border-radius: 22px; }
  .social-pill { width: 100%; justify-content: center; }
}

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