:root {
  color-scheme: dark;
  --bg: #03142f;
  --bg-2: #073a83;
  --blue: #0277de;
  --cyan: #25e4ff;
  --aqua: #18c8d7;
  --mint: #72ffd2;
  --violet: #9187ff;
  --ice: #effcff;
  --text: #f6fcff;
  --muted: rgba(232, 249, 255, 0.74);
  --soft: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.14);
  --glass-strong: rgba(255, 255, 255, 0.2);
  --line: rgba(255, 255, 255, 0.28);
  --line-soft: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 90px rgba(0, 20, 54, 0.42);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@property --edge-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, #03142f 0%, #05356f 34%, #0392cf 68%, #23d5df 100%) fixed;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    conic-gradient(from 150deg at 50% 48%, rgba(255, 255, 255, 0.17), transparent 20%, rgba(37, 228, 255, 0.18), transparent 54%, rgba(255, 255, 255, 0.13), transparent 78%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: 0.54;
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 20, 47, 0.22), rgba(3, 20, 47, 0.62)),
    repeating-linear-gradient(120deg, transparent 0 22px, rgba(255, 255, 255, 0.03) 23px 24px);
  content: "";
}

body.nav-open,
body.product-modal-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
h4,
dl {
  margin: 0;
}

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

code {
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.13);
  padding: 0.08rem 0.28rem;
  color: var(--ice);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ice);
  color: #042052;
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.glass-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(28px) saturate(1.38);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(2, 22, 54, 0.48);
  backdrop-filter: blur(30px) saturate(1.45);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(22, 212, 255, 0.28);
}

.brand span {
  overflow-wrap: anywhere;
}

.brand--footer {
  margin-bottom: 1rem;
}

.brand--footer img {
  width: 38px;
  height: 38px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-left: auto;
}

.nav-menu a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-menu a[aria-current="page"] {
  color: var(--text);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"],
.nav-cta[aria-current="page"] {
  border-color: rgba(190, 247, 255, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(135, 237, 255, 0.12)),
    rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 32px rgba(0, 209, 255, 0.16);
  transform: translateY(-1px);
}

.nav-cta[aria-current="page"] {
  border-radius: 999px;
  color: #042052;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  margin-block: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.76rem 1rem;
  color: var(--text);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button--primary,
.button--gold {
  border-color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(173, 248, 255, 0.78)),
    linear-gradient(135deg, var(--cyan), var(--blue));
  color: #052052;
  box-shadow: 0 16px 42px rgba(37, 228, 255, 0.28);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.18);
}

.text-link {
  color: var(--ice);
  font-weight: 850;
}

.text-link:hover {
  color: var(--mint);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 730px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero__media {
  position: absolute;
  inset: 0;
  contain: paint;
  overflow: clip;
}

.hero__media::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(4, 31, 75, 0.45), rgba(10, 172, 199, 0.16) 54%, rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, transparent 0%, rgba(6, 129, 164, 0.12) 100%);
  content: "";
}

.hero__media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 20, 47, 0.95) 0%, rgba(3, 20, 47, 0.76) 45%, rgba(3, 20, 47, 0.28) 100%),
    linear-gradient(0deg, rgba(3, 20, 47, 0.72), transparent 45%);
  content: "";
}

.hero-logo {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  display: block;
  width: var(--size);
  aspect-ratio: 1;
  opacity: var(--alpha);
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.22));
  transform: translate(-50%, -50%);
  animation: heroLogoPan var(--pan-speed) ease-in-out infinite;
  animation-delay: var(--pan-delay);
  will-change: transform;
}

.hero-logo::before {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/onix-logo-alpha.png") center / contain no-repeat;
  content: "";
  transform-origin: 50% 50%;
  animation: heroLogoSpin var(--spin-speed) linear infinite;
  animation-delay: var(--spin-delay);
  will-change: transform;
}

.hero-logo--one {
  --x: 86%;
  --y: 42%;
  --size: clamp(360px, 35vw, 720px);
  --alpha: 0.48;
  --pan-speed: 8.4s;
  --spin-speed: 15s;
  --pan-delay: -1.2s;
  --spin-delay: -2s;
  --pan-x-1: -26px;
  --pan-y-1: -18px;
  --pan-x-2: 32px;
  --pan-y-2: -34px;
  --pan-x-3: 18px;
  --pan-y-3: 28px;
}

.hero-logo--two {
  --x: 66%;
  --y: 19%;
  --size: clamp(230px, 22vw, 430px);
  --alpha: 0.22;
  --pan-speed: 7.2s;
  --spin-speed: 12s;
  --pan-delay: -4.2s;
  --spin-delay: -5s;
  --pan-x-1: 22px;
  --pan-y-1: 16px;
  --pan-x-2: -30px;
  --pan-y-2: 28px;
  --pan-x-3: -12px;
  --pan-y-3: -24px;
}

.hero-logo--three {
  --x: 72%;
  --y: 77%;
  --size: clamp(270px, 27vw, 540px);
  --alpha: 0.3;
  --pan-speed: 9.2s;
  --spin-speed: 18s;
  --pan-delay: -2.7s;
  --spin-delay: -8s;
  --pan-x-1: -34px;
  --pan-y-1: 20px;
  --pan-x-2: 30px;
  --pan-y-2: 24px;
  --pan-x-3: 16px;
  --pan-y-3: -32px;
}

.hero-logo--four {
  --x: 98%;
  --y: 76%;
  --size: clamp(280px, 28vw, 560px);
  --alpha: 0.2;
  --pan-speed: 6.8s;
  --spin-speed: 14s;
  --pan-delay: -3.4s;
  --spin-delay: -1.8s;
  --pan-x-1: -40px;
  --pan-y-1: -22px;
  --pan-x-2: -4px;
  --pan-y-2: 34px;
  --pan-x-3: -54px;
  --pan-y-3: 16px;
}

.hero-logo--five {
  --x: 50%;
  --y: 54%;
  --size: clamp(180px, 18vw, 360px);
  --alpha: 0.1;
  --pan-speed: 7.8s;
  --spin-speed: 13s;
  --pan-delay: -5.1s;
  --spin-delay: -4.5s;
  --pan-x-1: 26px;
  --pan-y-1: -18px;
  --pan-x-2: -18px;
  --pan-y-2: -30px;
  --pan-x-3: -28px;
  --pan-y-3: 18px;
}

.hero__inner,
.page-hero__inner {
  position: relative;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.hero__inner {
  display: grid;
  gap: 1.45rem;
  z-index: 3;
  padding: 8.3rem 0 5rem;
}

.eyebrow {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: 5.05rem;
}

h2 {
  max-width: 780px;
  font-size: 3.6rem;
}

h3 {
  font-size: 1.18rem;
}

h4 {
  font-size: 1rem;
}

.hero__lead,
.page-hero__lead,
.section__lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero__actions,
.cta-row,
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(100%, 720px);
  margin-top: 1rem;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  padding: 1rem;
  backdrop-filter: blur(22px);
}

.hero-stats dt {
  color: var(--text);
  font-weight: 900;
}

.hero-stats dd {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(3, 20, 47, 0.88), rgba(0, 166, 214, 0.24)),
    conic-gradient(from 40deg at 82% 35%, rgba(255, 255, 255, 0.18), transparent 28%, rgba(114, 255, 210, 0.18), transparent 62%, rgba(37, 228, 255, 0.2), transparent);
  content: "";
}

.page-hero__inner {
  display: grid;
  gap: 1.2rem;
  padding: 8.4rem 0 5.2rem;
}

.section {
  padding: 6rem 0;
}

.section--tight {
  padding-top: 4.7rem;
  padding-bottom: 4.7rem;
}

.product-catalogue-start {
  padding-top: 3rem;
}

.section--soft {
  border-block: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.section--split {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(22, 205, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.section__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: start;
}

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

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: visible;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card::before,
.gallery-card::before {
  position: absolute;
  inset: -2px;
  z-index: 12;
  content: "";
  border-radius: calc(var(--radius) + 2px);
  background:
    conic-gradient(from var(--edge-angle),
      transparent 0deg 280deg,
      rgba(36, 223, 255, 0.04) 292deg,
      rgba(46, 229, 255, 0.16) 308deg,
      rgba(76, 236, 255, 0.38) 322deg,
      rgba(205, 253, 255, 0.74) 332deg,
      rgba(255, 255, 255, 0.92) 336deg,
      rgba(67, 232, 255, 0.46) 341deg,
      transparent 350deg 360deg);
  filter: drop-shadow(0 0 9px rgba(69, 231, 255, 0.42));
  opacity: 0;
  padding: 4px;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: opacity 360ms ease;
}

.product-card::after,
.gallery-card::after {
  position: absolute;
  inset: -2px;
  z-index: 13;
  content: "";
  border-radius: calc(var(--radius) + 2px);
  background:
    conic-gradient(from var(--edge-angle),
      transparent 0deg 329deg,
      rgba(91, 237, 255, 0.32) 331deg,
      rgba(180, 250, 255, 0.86) 333deg,
      #ffffff 334deg,
      rgba(158, 247, 255, 0.8) 335deg,
      rgba(69, 232, 255, 0.18) 337deg,
      transparent 340deg 360deg);
  filter: drop-shadow(0 0 6px rgba(165, 248, 255, 0.68));
  opacity: 0;
  padding: 4px;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: opacity 360ms ease;
}

.product-card:hover::before,
.product-card:focus-visible::before,
.gallery-card:hover::before,
.gallery-card:focus-visible::before {
  opacity: 1;
  animation: edgeRingTravel 3.1s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.product-card:hover::after,
.product-card:focus-visible::after,
.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
  animation: edgeRingTravel 3.1s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.product-card:hover,
.product-card:focus-visible {
  z-index: 3;
  animation: cardHoverGlow 2.7s ease-in-out infinite;
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 32px 110px rgba(0, 203, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  outline: none;
  transform: translateY(-4px);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
}

.product-card > .product-visual {
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}

.product-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__topline strong {
  color: var(--ice);
  letter-spacing: 0;
  white-space: nowrap;
}

.product-card p {
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: rgba(242, 252, 255, 0.86);
  font-size: 0.94rem;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 1rem;
}

.product-card li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.product-card__actions {
  margin-top: auto;
}

.product-visual {
  --accent: var(--cyan);
  --accent-2: var(--mint);
  position: relative;
  display: block;
  width: 100%;
  min-height: 220px;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(3, 20, 47, 0.96), rgba(0, 146, 207, 0.64));
  isolation: isolate;
}

.product-visual--card {
  aspect-ratio: 16 / 10;
}

.product-visual--detail {
  min-height: 0;
  height: clamp(240px, 36vh, 340px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-visual--clickable {
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-visual--clickable:hover,
.product-visual--clickable:focus-visible {
  border-color: rgba(190, 247, 255, 0.66);
  box-shadow: 0 22px 64px rgba(0, 209, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  outline: none;
  transform: translateY(-2px);
}

.product-visual--video,
.product-visual--image {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.product-visual--economy {
  --accent: var(--mint);
  --accent-2: #9aff8a;
}

.product-visual--quest {
  --accent: var(--violet);
  --accent-2: var(--cyan);
}

.product-visual--lobby {
  --accent: #8be8ff;
  --accent-2: #c7f7ff;
}

.product-visual__preview-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.product-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(2, 18, 43, 0.02), rgba(2, 18, 43, 0.28)),
    linear-gradient(90deg, rgba(2, 18, 43, 0.1), transparent 45%);
  content: "";
  pointer-events: none;
}

.product-visual__brand-spin {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 5;
  width: clamp(46px, 18%, 82px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(2, 18, 43, 0.42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.product-visual__brand-spin::before {
  position: absolute;
  inset: 8%;
  background: url("../images/onix-logo-mark.png") center / contain no-repeat;
  content: "";
  transform-origin: 50% 50%;
  animation: productLogoSpin 9s linear infinite;
}

.product-visual__chrome {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  display: flex;
  gap: 0.38rem;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}

.product-visual__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.product-visual__grid,
.media-card__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 74%, transparent);
  opacity: 0.42;
}

.product-visual__grid {
  display: none;
}

.product-visual__vortex {
  position: absolute;
  right: 10%;
  top: 18%;
  width: 42%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background:
    conic-gradient(from 20deg, transparent 0 9%, var(--accent) 10% 16%, transparent 17% 32%, rgba(255, 255, 255, 0.92) 33% 39%, transparent 40% 62%, var(--accent-2) 63% 70%, transparent 71% 100%);
  box-shadow: 0 0 44px rgba(37, 228, 255, 0.34);
  animation: vortexTurn 12s linear infinite;
  display: none;
}

.product-visual__panel {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  display: none;
}

.product-visual__panel--one {
  left: 9%;
  bottom: 16%;
  width: 38%;
  height: 34%;
  animation: panelFloat 5.8s ease-in-out infinite;
}

.product-visual__panel--two {
  right: 13%;
  bottom: 18%;
  width: 24%;
  height: 18%;
  animation: panelFloat 6.4s ease-in-out infinite reverse;
}

.product-visual__meter {
  position: absolute;
  left: 12%;
  top: 34%;
  z-index: 2;
  width: 44%;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent), var(--accent-2) 58%, rgba(255, 255, 255, 0.26) 58%),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 44%, transparent);
  display: none;
}

.product-visual__status {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  padding: 0.42rem 0.62rem;
  color: var(--ice);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  display: none;
}

.process-list,
.feature-grid,
.support-list {
  display: grid;
  gap: 1rem;
}

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

.process-list article,
.feature-grid article,
.support-list article,
.support-panel,
.cta-band {
  border-radius: var(--radius);
}

.process-list article,
.feature-grid article,
.support-list article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
  padding: 1.25rem;
  backdrop-filter: blur(24px);
}

.process-list span {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--mint);
  font-weight: 900;
}

.process-list p,
.feature-grid p,
.support-list p,
.support-panel p,
.cta-band p {
  color: var(--muted);
}

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

.compact-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: end;
}

.seo-content__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.seo-content h2 {
  max-width: 780px;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-tags li {
  border: 1px solid rgba(190, 247, 255, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(110, 230, 255, 0.09)),
    rgba(255, 255, 255, 0.08);
  padding: 0.42rem 0.7rem;
  color: rgba(239, 252, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.gallery-card {
  position: relative;
  min-width: 0;
  overflow: visible;
  border-radius: var(--radius);
  padding: 0;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  z-index: 3;
  animation: cardHoverGlow 2.7s ease-in-out infinite;
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 30px 100px rgba(0, 203, 255, 0.24);
  outline: none;
  transform: translateY(-4px);
}

.gallery-card__meta {
  display: grid;
  gap: 0.22rem;
  padding: 1rem;
}

.gallery-card__preview {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  background: rgba(3, 20, 47, 0.78);
}

.gallery-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-card:hover .gallery-card__preview img,
.gallery-card:focus-visible .gallery-card__preview img {
  filter: saturate(1.16) contrast(1.06);
  transform: scale(1.035);
}

.gallery-card__preview::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 18, 43, 0.03), rgba(2, 18, 43, 0.24)),
    linear-gradient(90deg, rgba(2, 18, 43, 0.1), transparent 45%);
  content: "";
  pointer-events: none;
}

.gallery-card__preview .product-visual__brand-spin {
  width: clamp(56px, 13%, 86px);
}

.gallery-card__preview .play-icon {
  z-index: 6;
  border-block-width: 18px;
  border-left-width: 27px;
}

.gallery-card__meta span {
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card__meta strong {
  line-height: 1.1;
}

.gallery-card__meta em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.cta-band {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  padding: 2.4rem;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(28px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form__fields {
  display: grid;
  gap: 1rem;
}

.bot-field {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

label {
  color: rgba(247, 253, 255, 0.88);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  color: var(--text);
  padding: 0.85rem 0.9rem;
  outline: none;
  backdrop-filter: blur(18px);
}

select {
  color: var(--text);
}

option {
  background: #062453;
  color: var(--text);
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(37, 228, 255, 0.22);
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note--success {
  color: var(--mint);
}

.form-note--error {
  color: #ffd0d8;
}

.form-success {
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgba(178, 235, 255, 0.44);
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(56, 205, 233, 0.16));
  box-shadow: var(--shadow);
  padding: 1.35rem;
  backdrop-filter: blur(26px);
}

.form-success[hidden] {
  display: none;
}

.form-success h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.form-success p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.support-panel {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
  padding: 1.2rem;
  backdrop-filter: blur(26px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.policy-card,
.faq-item,
.not-found-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(24px);
}

.info-card,
.policy-card,
.faq-item {
  display: grid;
  gap: 0.65rem;
  padding: 1.2rem;
}

.info-card p,
.policy-card p,
.faq-item p,
.policy-card li,
.not-found-card p {
  color: var(--muted);
}

.policy-layout {
  display: grid;
  gap: 1rem;
}

.policy-card {
  scroll-margin-top: 96px;
}

.policy-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item h2 {
  font-size: 1.35rem;
}

.not-found {
  min-height: calc(100dvh - 76px);
  display: grid;
  align-items: center;
  padding: 5rem 0;
}

.not-found-card {
  display: grid;
  gap: 1.2rem;
  width: min(100% - 2rem, 860px);
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 2.6rem);
}

.not-found-card h1 {
  font-size: clamp(2.45rem, 8vw, 4.8rem);
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(2, 16, 39, 0.56);
  backdrop-filter: blur(24px);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 0.65fr 0.9fr;
  gap: 2rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.2rem 0;
}

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

.site-footer h3 {
  margin-bottom: 0.7rem;
}

.site-footer a {
  display: table;
  margin-top: 0.3rem;
}

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

.media-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.65rem;
  align-items: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.58rem;
  color: var(--text);
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.media-card:hover,
.media-card:focus-visible {
  border-color: rgba(190, 247, 255, 0.58);
  box-shadow: 0 18px 52px rgba(0, 209, 255, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  outline: none;
  transform: translateY(-2px);
}

.media-card__preview {
  position: relative;
  min-height: 64px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(3, 20, 47, 0.74);
}

.media-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
}

.media-card__preview--poster::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 18, 43, 0.06), rgba(2, 18, 43, 0.38)),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(2, 18, 43, 0.24) 70%);
  content: "";
}

.media-card__scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateY(-100%);
  animation: scanLine 3.4s ease-in-out infinite;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 2;
  border-block: 12px solid transparent;
  border-left: 18px solid rgba(255, 255, 255, 0.9);
  transform: translate(-35%, -50%);
  filter: drop-shadow(0 0 18px rgba(37, 228, 255, 0.58));
}

.image-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 31px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 5px;
  transform: translate(-50%, -50%);
}

.image-icon::after {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  height: 11px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.82) 51%);
  content: "";
}

.media-card span {
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 0.5rem;
}

.product-modal[hidden] {
  display: none;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 16, 42, 0.62);
  backdrop-filter: blur(22px);
}

.product-modal__panel {
  position: relative;
  width: min(100%, 1180px);
  max-height: calc(100dvh - 1rem);
  overflow: hidden;
  border-radius: var(--radius);
  padding: 1rem;
}

.product-modal__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 4;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  color: var(--text);
  padding: 0 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.product-modal__layout {
  display: grid;
  gap: 0.7rem;
  max-height: calc(100dvh - 3rem);
}

.product-modal__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  padding-right: 4.8rem;
}

.product-modal__hero > div:last-child {
  display: grid;
  align-content: center;
  gap: 0.72rem;
  padding: 0.4rem;
}

.product-modal__hero h2 {
  max-width: 680px;
  font-size: clamp(2.05rem, 4.2vw, 3.15rem);
}

.product-modal__hero p,
.product-modal__content p {
  color: var(--muted);
}

.product-modal__hero > div:last-child > p:not(.eyebrow) {
  font-size: 0.94rem;
  line-height: 1.45;
}

.product-modal__price {
  display: flex;
  align-items: end;
  gap: 0.75rem;
}

.product-modal__price strong {
  font-size: 1.55rem;
  line-height: 1;
}

.product-modal__price span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.product-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.75rem;
}

.product-modal__previews,
.product-modal__facts,
.product-modal__content > div {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.product-modal__previews {
  grid-template-columns: 0.85fr 1.15fr;
}

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

.modal-media-grid {
  display: grid;
  gap: 0.45rem;
}

.modal-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-list li {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.65rem;
  color: rgba(247, 253, 255, 0.9);
  font-size: 0.82rem;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 12, 32, 0.72);
  backdrop-filter: blur(26px);
}

.media-lightbox__panel {
  position: relative;
  display: grid;
  gap: 1rem;
  width: min(100%, 1040px);
  max-height: calc(100dvh - 2rem);
  overflow: hidden;
  border-radius: var(--radius);
  padding: 1rem;
}

.media-lightbox__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 5;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  color: var(--text);
  padding: 0 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.media-lightbox__visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(3, 20, 47, 0.96), rgba(0, 146, 207, 0.64));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.media-lightbox__visual img,
.media-lightbox__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.media-lightbox__visual video {
  position: relative;
  z-index: 3;
  background: #020f25;
}

.media-lightbox__visual:has(video)::after,
.media-lightbox__visual:has(video) .product-visual__brand-spin {
  display: none;
}

.media-lightbox__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 18, 43, 0.02), rgba(2, 18, 43, 0.18)),
    linear-gradient(90deg, rgba(2, 18, 43, 0.08), transparent 45%);
  content: "";
  pointer-events: none;
}

.media-lightbox__visual .product-visual__brand-spin {
  width: clamp(70px, 11%, 108px);
}

.media-lightbox__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 98px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(2, 18, 43, 0.38);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), 0 0 48px rgba(37, 228, 255, 0.24);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
}

.media-lightbox__play::before {
  position: absolute;
  left: 54%;
  top: 50%;
  width: 0;
  height: 0;
  border-block: 18px solid transparent;
  border-left: 28px solid rgba(255, 255, 255, 0.94);
  content: "";
  transform: translate(-45%, -50%);
}

.media-lightbox__body {
  display: grid;
  gap: 0.35rem;
  max-width: 760px;
  padding: 0 0.2rem 0.15rem;
}

.media-lightbox__body h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.media-lightbox__body p:last-child {
  color: var(--muted);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroLogoPan {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(var(--pan-x-1), var(--pan-y-1), 0);
  }
  42% {
    transform: translate(-50%, -50%) translate3d(var(--pan-x-2), var(--pan-y-2), 0);
  }
  72% {
    transform: translate(-50%, -50%) translate3d(var(--pan-x-3), var(--pan-y-3), 0);
  }
}

@keyframes heroLogoSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes productLogoSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cardHoverGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.52);
    box-shadow:
      0 26px 82px rgba(0, 203, 255, 0.22),
      0 0 0 1px rgba(135, 237, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  50% {
    border-color: rgba(194, 247, 255, 0.78);
    box-shadow:
      0 34px 112px rgba(0, 203, 255, 0.34),
      0 0 34px rgba(106, 232, 255, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }
}

@keyframes edgeRingTravel {
  to {
    --edge-angle: 360deg;
  }
}

@keyframes vortexTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scanLine {
  0% {
    transform: translateY(-100%);
  }
  52%,
  100% {
    transform: translateY(100%);
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: relative;
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
    flex: 0 0 44px;
    margin-left: auto;
    place-content: center;
  }

  .nav-menu {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.4rem;
    border-bottom: 1px solid var(--line-soft);
    background:
      linear-gradient(180deg, rgba(5, 34, 76, 0.92), rgba(2, 16, 42, 0.82)),
      rgba(2, 18, 43, 0.94);
    box-shadow: 0 24px 70px rgba(0, 10, 28, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    padding: 1rem;
    backdrop-filter: blur(44px) saturate(1.55);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    border-radius: var(--radius);
    padding: 0.95rem 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-logo--one {
    --x: 91%;
    --y: 42%;
    --size: 520px;
    --alpha: 0.34;
  }

  .hero-logo--two {
    --x: 69%;
    --y: 18%;
    --size: 310px;
  }

  .hero-logo--three {
    --x: 78%;
    --y: 78%;
    --size: 390px;
  }

  .hero-logo--five {
    --x: 50%;
    --y: 50%;
    --alpha: 0.08;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .section__header,
  .split,
  .contact-layout,
  .compact-help,
  .seo-content__inner,
  .product-modal__hero {
    grid-template-columns: 1fr;
  }

  .product-modal__panel {
    overflow: auto;
  }

  .product-modal__layout {
    max-height: none;
  }

  .product-modal__hero {
    padding-right: 0;
  }

  .section__header {
    display: grid;
    align-items: start;
  }

  .product-grid,
  .product-grid--catalogue,
  .process-list,
  .gallery-grid--home,
  .gallery-grid--large,
  .info-grid,
  .site-footer__inner,
  .product-modal__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-nav,
  .section__inner,
  .hero__inner,
  .page-hero__inner,
  .site-footer__inner {
    width: min(100% - 1.75rem, var(--max));
  }

  .brand span {
    font-size: 0.82rem;
  }

  .brand {
    gap: 0.55rem;
    max-width: calc(100% - 56px);
  }

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

  .hero {
    min-height: 720px;
  }

  .hero__inner {
    gap: 1.2rem;
    padding: 7rem 0 4rem;
  }

  .hero-logo--one {
    --x: 83%;
    --y: 31%;
    --size: 300px;
    --alpha: 0.28;
  }

  .hero-logo--two {
    --x: 30%;
    --y: 18%;
    --size: 210px;
    --alpha: 0.11;
  }

  .hero-logo--three {
    --x: 78%;
    --y: 74%;
    --size: 260px;
    --alpha: 0.18;
  }

  .hero-logo--four {
    --x: 100%;
    --y: 56%;
    --size: 250px;
    --alpha: 0.12;
  }

  .hero-logo--five {
    --x: 18%;
    --y: 61%;
    --size: 180px;
    --alpha: 0.08;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.08rem, 9.6vw, 2.42rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero__lead,
  .page-hero__lead,
  .section__lead {
    font-size: 0.98rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section--tight {
    padding-top: 2.8rem;
    padding-bottom: 3.2rem;
  }

  .hero-stats,
  .product-grid,
  .product-grid--catalogue,
  .process-list,
  .feature-grid,
  .gallery-grid--home,
  .gallery-grid--large,
  .info-grid,
  .form-grid,
  .seo-content__inner,
  .site-footer__inner,
  .product-modal__content,
  .media-card {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .cta-row {
    gap: 0.55rem;
  }

  .page-hero .button {
    min-height: 40px;
    padding: 0.62rem 0.9rem;
  }

  .product-card__topline {
    align-items: start;
    flex-direction: column;
  }

  .media-lightbox {
    padding: 0.5rem;
  }

  .media-lightbox__panel {
    max-height: calc(100dvh - 1rem);
    overflow: auto;
  }

  .media-lightbox__visual {
    aspect-ratio: 4 / 3;
  }

  .page-hero__inner {
    gap: 0.72rem;
    padding: 3.25rem 0 2.35rem;
  }

  .page-hero__lead {
    max-width: 32rem;
    line-height: 1.42;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-card {
    overflow: hidden;
  }

  .gallery-card__preview {
    aspect-ratio: 16 / 11;
  }

  .gallery-card__meta {
    padding: 0.9rem;
  }

  .gallery-card__meta strong {
    font-size: 1rem;
  }

  .gallery-card__meta em {
    font-size: 0.86rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem 0;
  }

  .site-footer__inner > div:first-child {
    display: grid;
    gap: 0.45rem;
    align-items: start;
  }

  .site-footer__inner > div:first-child p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .site-footer .brand--footer {
    max-width: none;
    width: max-content;
  }

  .site-footer .brand--footer span {
    white-space: nowrap;
  }

  .site-footer__inner > div:not(:first-child) {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
    align-items: center;
  }

  .site-footer h3 {
    flex-basis: 100%;
    margin-bottom: 0;
    font-size: 0.95rem;
  }

  .site-footer a,
  .site-footer p {
    font-size: 0.86rem;
  }

  .site-footer a {
    display: inline-flex;
    margin-top: 0;
  }

  .brand--footer {
    margin-bottom: 0;
  }

  .brand--footer img {
    width: 34px;
    height: 34px;
  }

  .product-modal {
    padding: 0.5rem;
  }

  .product-modal__panel {
    max-height: 94vh;
  }

  .product-visual--detail {
    min-height: 260px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .product-card::before,
  .gallery-card::before {
    opacity: 0.78;
    animation: edgeRingTravel 3.9s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  }

  .product-card::after,
  .gallery-card::after {
    opacity: 0.72;
    animation: edgeRingTravel 3.9s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  }

  .product-card:nth-child(2n)::before,
  .product-card:nth-child(2n)::after,
  .gallery-card:nth-child(2n)::before,
  .gallery-card:nth-child(2n)::after {
    animation-delay: -1.3s;
  }

  .product-card:nth-child(3n)::before,
  .product-card:nth-child(3n)::after,
  .gallery-card:nth-child(3n)::before,
  .gallery-card:nth-child(3n)::after {
    animation-delay: -2.4s;
  }
}

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