:root {
  --bg: #05070f;
  --bg-elev: #0b1222;
  --ink: #eef4ff;
  --muted: #93a4c7;
  --faint: #6b7c9e;
  --cyan: #3cefff;
  --violet: #8b7cff;
  --magenta: #ff4d9d;
  --lime: #d6ff4a;
  --glass: rgba(10, 16, 34, 0.62);
  --glass-2: rgba(18, 26, 52, 0.72);
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke-2: rgba(60, 239, 255, 0.28);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font: "Outfit", "Segoe UI", "Noto Sans", "Hiragino Sans", "PingFang SC", "Noto Naskh Arabic", "Noto Sans Devanagari", sans-serif;
  --display: "Syne", "Outfit", "Segoe UI", "Hiragino Sans", "PingFang SC", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 22px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

body {
  overflow-x: hidden;
}

body.is-ready .reveal {
  opacity: 1;
  transform: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.skip {
  position: absolute;
  inset-inline-start: 12px;
  top: -48px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--cyan);
  color: #041016;
  font-weight: 700;
}

.skip:focus {
  top: 12px;
}

.fx-noise,
.fx-orbs,
.fx-grid,
#field {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#field {
  z-index: 0;
  opacity: 0.55;
}

.fx-orbs {
  z-index: 0;
  overflow: hidden;
}

.fx-orbs::before,
.fx-orbs::after {
  content: "";
  position: absolute;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: drift 18s var(--ease) infinite alternate;
}

.fx-orbs::before {
  background: radial-gradient(circle, #2b6bff 0%, transparent 70%);
  inset-inline-start: -10%;
  top: -12%;
}

.fx-orbs::after {
  background: radial-gradient(circle, #ff2d8a 0%, transparent 70%);
  inset-inline-end: -8%;
  bottom: -18%;
  animation-delay: -6s;
}

.orb-mid {
  position: absolute;
  width: 32vw;
  height: 32vw;
  inset-inline-start: 38%;
  top: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 239, 255, 0.35), transparent 68%);
  filter: blur(70px);
  animation: drift 22s var(--ease) infinite alternate-reverse;
}

.fx-noise {
  z-index: 1;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.fx-grid {
  z-index: 0;
  background-image:
    linear-gradient(rgba(60, 239, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 239, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 20%, transparent 75%);
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5, 7, 15, 0.86), rgba(5, 7, 15, 0.42));
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--stroke);
  background: rgba(5, 7, 15, 0.78);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.brand img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 10px rgba(60, 239, 255, 0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.lang-btn,
.menu-btn {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active,
.lang-btn:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  color: #041016;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(60, 239, 255, 0.22);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--stroke);
}

.lang-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--stroke);
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
}

.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }

.lang-panel {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  width: min(360px, 86vw);
  padding: 14px;
  border-radius: 18px;
  background: var(--glass-2);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  z-index: 50;
}

.lang-wrap {
  position: relative;
}

.lang-wrap.is-open .lang-panel {
  display: grid;
}

.lang-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lang-panel a small {
  color: var(--faint);
  font-size: 0.72rem;
}

.lang-panel a:hover,
.lang-panel a.is-active {
  background: rgba(60, 239, 255, 0.08);
  color: var(--ink);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: center;
  padding: 48px 0 80px;
  overflow: hidden;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke-2);
  background: rgba(60, 239, 255, 0.06);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse 1.8s ease-in-out infinite;
}

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 800;
  max-width: 14ch;
}

.grad {
  background: linear-gradient(92deg, #fff 10%, var(--cyan) 42%, var(--violet) 68%, var(--magenta) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 8s linear infinite;
}

.lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.12rem;
  margin: 22px 0 32px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(90deg, var(--cyan), #6ee7ff 40%, var(--violet));
  color: #041016;
  box-shadow: 0 10px 30px rgba(60, 239, 255, 0.18);
}

.btn-ghost {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.hud {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 42px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hud b {
  color: var(--ink);
  font-weight: 500;
}

.crystal {
  position: absolute;
  inset-inline-end: -40px;
  top: 12%;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  perspective: 900px;
  z-index: 1;
}

.crystal-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: spin3d 22s linear infinite;
}

.crystal i {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(60, 239, 255, 0.35);
  background: linear-gradient(135deg, rgba(60, 239, 255, 0.08), rgba(139, 124, 255, 0.05));
  box-shadow: inset 0 0 40px rgba(60, 239, 255, 0.08), 0 0 50px rgba(139, 124, 255, 0.12);
}

.crystal i:nth-child(1) { transform: rotateY(0deg) translateZ(110px); }
.crystal i:nth-child(2) { transform: rotateY(90deg) translateZ(110px); }
.crystal i:nth-child(3) { transform: rotateY(180deg) translateZ(110px); }
.crystal i:nth-child(4) { transform: rotateY(-90deg) translateZ(110px); }
.crystal i:nth-child(5) { transform: rotateX(90deg) translateZ(110px); }
.crystal i:nth-child(6) { transform: rotateX(-90deg) translateZ(110px); }

.section {
  padding: 88px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head p,
.page-intro {
  color: var(--muted);
  max-width: 54ch;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 10px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--stroke);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(60, 239, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--stroke-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(60, 239, 255, 0.08);
}

.card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 16px;
  background: rgba(60, 239, 255, 0.08);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.86rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.soon {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}

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

.step {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.step-num {
  font-family: var(--mono);
  color: var(--cyan);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.preview-main,
.preview-side {
  min-height: 280px;
  border-radius: 28px;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(60, 239, 255, 0.05), transparent 40%),
    rgba(255, 255, 255, 0.02);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.scan {
  position: absolute;
  inset-inline: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(60, 239, 255, 0.12), transparent);
  animation: scan 4.5s linear infinite;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.86rem;
}

.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.band {
  margin: 20px 0 100px;
  padding: 48px;
  border-radius: 32px;
  border: 1px solid var(--stroke-2);
  background:
    radial-gradient(600px 200px at 10% 0%, rgba(60, 239, 255, 0.16), transparent 50%),
    radial-gradient(500px 220px at 90% 100%, rgba(255, 77, 157, 0.14), transparent 50%),
    rgba(12, 18, 36, 0.7);
  text-align: center;
}

.band h2 {
  margin-bottom: 12px;
}

.band p {
  margin: 0 auto 24px;
  color: var(--muted);
  max-width: 54ch;
}

.page {
  padding: 56px 0 100px;
}

.crumbs {
  margin: 0 0 22px;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-inline-start: 8px;
  color: var(--faint);
}

.crumbs a {
  color: var(--cyan);
}

.crumbs [aria-current="page"] {
  color: var(--muted);
}

.page h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 16ch;
}

.page-intro {
  font-size: 1.1rem;
  margin: 18px 0 36px;
}

.prose {
  max-width: 74ch;
}

.prose h2 {
  font-size: 1.5rem;
  margin: 36px 0 12px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-inline-start: 1.1rem;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(60, 239, 255, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

option {
  background: #0b1222;
  color: var(--ink);
}

.form-status {
  min-height: 1.4em;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.aside-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.aside-card a {
  color: var(--cyan);
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--stroke);
  padding: 48px 0 28px;
  background: rgba(5, 7, 15, 0.72);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  margin-bottom: 10px;
}

.foot-brand img {
  width: 28px;
  height: 28px;
}

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

.site-footer h3 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

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

.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--stroke);
  color: var(--faint);
  font-size: 0.88rem;
}

.cookie {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 24, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.cookie.is-on {
  display: flex;
}

.cookie p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 70;
  border-radius: 50%;
  mix-blend-mode: difference;
  display: none;
}

.cursor {
  width: 8px;
  height: 8px;
  background: #fff;
  margin: -4px 0 0 -4px;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  margin: -18px 0 0 -18px;
  transition: transform 0.15s linear;
}

body.has-pointer,
body.has-pointer a,
body.has-pointer button,
body.has-pointer input,
body.has-pointer textarea,
body.has-pointer select {
  cursor: none;
}

body.has-pointer .cursor,
body.has-pointer .cursor-ring {
  display: block;
}

.step h3,
.preview-main h3,
.preview-side h3,
.aside-card h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.step p,
.preview-main p,
.preview-side p {
  margin: 0;
  color: var(--muted);
}

.card .icon {
  box-shadow: 0 0 24px rgba(60, 239, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.gateway {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 48px 0;
  position: relative;
  z-index: 2;
}

.gateway-box {
  width: min(980px, calc(100% - 32px));
  text-align: center;
}

.gateway h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin: 12px 0 16px;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.lang-tile {
  padding: 18px 12px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.lang-tile:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-2);
  background: rgba(60, 239, 255, 0.06);
}

.lang-tile strong {
  display: block;
  font-size: 1.05rem;
}

.lang-tile span {
  color: var(--faint);
  font-size: 0.82rem;
}

.error {
  min-height: 70svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--stroke);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  font-size: 0.78rem;
}

@keyframes sheen {
  to { background-position: 200% center; }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8%, 10%, 0) scale(1.12); }
}

@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.7); }
}

@keyframes spin3d {
  to { transform: rotateX(18deg) rotateY(360deg) rotateZ(8deg); }
}

@keyframes scan {
  from { top: -20%; }
  to { top: 110%; }
}

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

@media (max-width: 980px) {
  .cats,
  .why,
  .lang-grid { grid-template-columns: repeat(2, 1fr); }
  .steps,
  .preview,
  .contact-grid,
  .foot-grid { grid-template-columns: 1fr; }
  .crystal { opacity: 0.35; inset-inline-end: -80px; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-btn { display: grid; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    inset-inline: 0;
    z-index: 45;
    padding: 16px;
    background: rgba(5, 7, 15, 0.96);
    border-bottom: 1px solid var(--stroke);
  }
  .nav-cta { margin: 8px 0 0; }
  .form-row { grid-template-columns: 1fr; }
  .cookie { flex-direction: column; align-items: stretch; }
  .hero h1 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
