@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --bg: #06070b;
  --bg-soft: #0c1018;
  --panel: rgba(8, 13, 24, 0.76);
  --panel-strong: rgba(10, 16, 29, 0.92);
  --line: rgba(120, 255, 242, 0.28);
  --line-strong: rgba(255, 242, 79, 0.5);
  --text: #f5f7ff;
  --muted: #9aa6be;
  --yellow: #fff04f;
  --cyan: #49f6ff;
  --magenta: #ff45c7;
  --green: #8dff65;
  --danger: #ff6a6a;
  --shadow-cyan: 0 0 24px rgba(73, 246, 255, 0.32);
  --shadow-yellow: 0 0 30px rgba(255, 240, 79, 0.25);
  --clip: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  --clip-small: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  --container: min(1180px, calc(100vw - 32px));
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(73, 246, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 69, 199, 0.14), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(141, 255, 101, 0.08), transparent 34%),
    linear-gradient(180deg, #05060a 0%, #070911 35%, #06070b 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 2px,
      transparent 5px
    );
  mix-blend-mode: soft-light;
  opacity: 0.24;
}

body::after {
  background:
    linear-gradient(90deg, rgba(73, 246, 255, 0.04), transparent 18%, transparent 82%, rgba(255, 69, 199, 0.05)),
    radial-gradient(circle at center, transparent 55%, rgba(0, 0, 0, 0.4) 100%);
}

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

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

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--yellow);
  color: #05060a;
  padding: 10px 14px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 12, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-bar {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand__logo {
  display: block;
  width: auto;
  height: clamp(42px, 4vw, 58px);
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 240, 79, 0.18));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(73, 246, 255, 0.28);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  clip-path: var(--clip-small);
}

.nav-toggle__line {
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.nav-toggle__line::before {
  top: -7px;
}

.nav-toggle__line::after {
  top: 7px;
}

.site-header[data-open='true'] .nav-toggle__line {
  background: transparent;
}

.site-header[data-open='true'] .nav-toggle__line::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header[data-open='true'] .nav-toggle__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--yellow);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-18,
.badge-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  clip-path: var(--clip-small);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.82rem;
}

.badge-18 {
  color: #05060a;
  background: linear-gradient(120deg, var(--yellow), #ffe087);
  box-shadow: var(--shadow-yellow);
}

.badge-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(73, 246, 255, 0.3);
  color: var(--cyan);
}

main {
  position: relative;
}

.hero {
  position: relative;
  padding: 34px 0 48px;
  min-height: calc(100vh - var(--header-h));
  overflow: clip;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__glow,
.hero__streak,
.hero__halo {
  position: absolute;
  filter: blur(18px);
  opacity: 0.7;
}

.hero__glow {
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  left: -12vw;
  top: 12vh;
  background: radial-gradient(circle, rgba(73, 246, 255, 0.22), transparent 68%);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.hero__halo {
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  right: -8vw;
  top: 4vh;
  background: radial-gradient(circle, rgba(255, 69, 199, 0.16), transparent 72%);
  animation: pulseGlow 9s ease-in-out infinite alternate-reverse;
}

.hero__streak {
  width: 320px;
  height: 4px;
  top: 22%;
  right: 12%;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 79, 0.92), transparent);
  box-shadow: 0 0 18px rgba(255, 240, 79, 0.52);
  transform: rotate(-16deg);
  animation: streakShift 6s linear infinite;
}

.grid-floor {
  position: absolute;
  inset: auto -12vw -24vh -12vw;
  height: 48vh;
  background:
    linear-gradient(rgba(73, 246, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 246, 255, 0.18) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(900px) rotateX(76deg);
  transform-origin: center top;
  opacity: 0.36;
}

.cityline {
  position: absolute;
  inset: auto 0 13vh 0;
  height: 26vh;
  opacity: 0.7;
}

.cityline svg,
.hero-character svg,
.hero-character img {
  width: 100%;
  height: 100%;
}

.hero-character img {
  object-fit: contain;
  object-position: bottom center;
}

.hero-character {
  position: absolute;
  bottom: 15vh;
  width: min(28vw, 340px);
  height: min(54vh, 560px);
  opacity: 0.76;
  filter: drop-shadow(0 0 28px rgba(73, 246, 255, 0.18));
}

.hero-character--left {
  left: max(1vw, 8px);
}

.hero-character--right {
  right: max(2vw, 12px);
  filter: drop-shadow(0 0 28px rgba(255, 69, 199, 0.24));
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 36px;
  min-height: calc(100vh - var(--header-h) - 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 42px 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 18px;
  clip-path: var(--clip-small);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(73, 246, 255, 0.28);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.eyebrow__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(141, 255, 101, 0.8);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(3rem, 5vw + 1rem, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.hero h1 .accent {
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255, 240, 79, 0.22);
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan);
  transform: translate(2px, -1px);
  clip-path: inset(0 0 48% 0);
  animation: glitchShift 3.8s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--magenta);
  transform: translate(-2px, 1px);
  clip-path: inset(56% 0 0 0);
  animation: glitchShift 2.9s infinite linear alternate;
}

.hero__lede {
  max-width: 62ch;
  margin: 20px 0 0;
  color: #dfe6f8;
  font-size: clamp(1.12rem, 1.3vw + 0.82rem, 1.46rem);
  line-height: 1.5;
}

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

.btn,
.link-chip,
.faq__question {
  position: relative;
  isolation: isolate;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  clip-path: var(--clip-small);
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
}

.btn::before,
.link-chip::before,
.product-card::before,
.panel::before,
.benefit-card::before,
.faq__item::before,
.age-gate__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045) 0,
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: soft-light;
  opacity: 0.18;
  pointer-events: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 280ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn--primary {
  color: #05060a;
  background: linear-gradient(135deg, var(--yellow), #ffd650 62%, #c7ff64);
  box-shadow: var(--shadow-yellow);
}

.btn--secondary {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(73, 246, 255, 0.35);
  box-shadow: var(--shadow-cyan);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card,
.panel,
.benefit-card,
.product-card,
.faq__item,
.seo-card {
  position: relative;
  clip-path: var(--clip);
  background: linear-gradient(180deg, rgba(14, 20, 35, 0.92), rgba(6, 9, 16, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.stat-card {
  padding: 16px 18px;
}

.stat-card strong {
  display: block;
  font-family: 'Oxanium', sans-serif;
  font-size: 1.5rem;
  color: var(--yellow);
}

.stat-card span {
  color: var(--muted);
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 30px 0;
}

.hero-visual__core {
  position: relative;
  width: min(520px, 88vw);
  aspect-ratio: 1;
  clip-path: polygon(12% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
  background:
    radial-gradient(circle at 50% 46%, rgba(73, 246, 255, 0.08), transparent 42%),
    linear-gradient(145deg, rgba(255, 240, 79, 0.12), rgba(255, 69, 199, 0.12)),
    rgba(8, 11, 20, 0.52);
  border: 1px solid rgba(73, 246, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 40px rgba(73, 246, 255, 0.12);
}

.hero-banner {
  position: absolute;
  inset: auto 50% 0;
  width: min(760px, 145%);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.48));
  z-index: 2;
}

.hero-visual__core::before,
.hero-visual__core::after {
  content: '';
  position: absolute;
  inset: 10%;
  clip-path: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual__core::after {
  inset: 18%;
  border-color: rgba(255, 240, 79, 0.16);
}

.hud-ring,
.hud-ring::before,
.hud-ring::after {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(73, 246, 255, 0.22);
}

.hud-ring {
  inset: 16%;
  animation: spin 18s linear infinite;
  z-index: 4;
}

.hud-ring::before,
.hud-ring::after {
  content: '';
  inset: 14%;
}

.hud-ring::after {
  inset: -10%;
  border-style: dashed;
  border-color: rgba(255, 69, 199, 0.16);
  animation: spinReverse 14s linear infinite;
}

.hero-products {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.corner-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  clip-path: var(--clip-small);
  background: rgba(6, 11, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.82rem;
}

.corner-chip strong {
  color: var(--yellow);
  font-family: 'Oxanium', sans-serif;
}

.corner-chip--top {
  top: 8%;
  right: 6%;
}

.corner-chip--bottom {
  left: 6%;
  bottom: 10%;
}

.section {
  padding: 54px 0;
}

.section-banner-showcase {
  padding-top: 10px;
}

.showcase-banner {
  aspect-ratio: 16 / 9;
  min-height: 0;
  clip-path: polygon(4% 0, 100% 0, 100% 92%, 96% 100%, 0 100%, 0 8%);
  border: 1px solid rgba(73, 246, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 36px rgba(73, 246, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.14), rgba(5, 7, 12, 0.2)),
    url('./assets/cyberpunk-banner-big.png') center center / cover no-repeat;
}

#moc .container {
  position: relative;
  overflow: visible;
}

.section-figures {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.section-figure {
  position: absolute;
  bottom: 18px;
  width: min(28vw, 320px);
  height: auto;
  opacity: 0.34;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(255, 240, 79, 0.22));
}

.section-figure--left {
  left: -42px;
}

.section-figure--right {
  right: -42px;
}

.section-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2rem, 1.8vw + 1.3rem, 3.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-head p {
  margin: 10px 0 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.section-head__meta {
  justify-self: end;
}

.mobile-swipe-hint {
  display: none;
  margin: -6px 0 18px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.product-card {
  padding: 12px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 240, 79, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36), 0 0 24px rgba(255, 240, 79, 0.08);
}

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-card__series,
.product-card__flavor,
.product-card__strength {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  clip-path: var(--clip-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card__series {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cyan);
}

.product-card__strength {
  background: rgba(141, 255, 101, 0.08);
  color: var(--green);
}

.product-card__image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  height: 144px;
  margin-bottom: 8px;
  clip-path: var(--clip-small);
  background:
    radial-gradient(circle at 50% 28%, rgba(73, 246, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.product-card__image-wrap::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: inherit;
}

.product-card__image {
  width: min(58%, 138px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.4));
  transition: transform 220ms ease;
}

.product-card:hover .product-card__image,
.product-card:focus-within .product-card__image {
  transform: scale(1.04) rotate(-3deg);
}

.product-card h3 {
  margin: 0;
  font-family: 'Oxanium', sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
  min-height: 2.05em;
}

.product-card__subline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.product-card__price {
  margin-top: 10px;
  display: block;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(73, 246, 255, 0.24);
  color: var(--text);
  clip-path: var(--clip-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  transition: border-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.link-chip:hover,
.link-chip:focus-visible {
  border-color: rgba(255, 240, 79, 0.45);
  color: var(--yellow);
  transform: translateY(-2px);
}

.product-card__price .link-chip {
  min-height: 48px;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 240, 79, 0.96), rgba(199, 255, 100, 0.92));
  border-color: rgba(255, 240, 79, 0.56);
  color: #05060a;
  box-shadow: 0 10px 22px rgba(255, 240, 79, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  letter-spacing: 0.14em;
}

.product-card__price .link-chip::after {
  content: '->';
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.product-card__price .link-chip:hover,
.product-card__price .link-chip:focus-visible {
  color: #05060a;
  border-color: rgba(255, 240, 79, 0.72);
  box-shadow: 0 16px 30px rgba(255, 240, 79, 0.24), 0 0 26px rgba(255, 240, 79, 0.2);
  transform: translateY(-3px) scale(1.01);
}

.product-card__price .link-chip:hover::after,
.product-card__price .link-chip:focus-visible::after {
  transform: translateX(3px);
}

.flavors-marquee {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.flavors-marquee .chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  clip-path: var(--clip-small);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.seo-layout,
.benefits-layout,
.faq-layout,
.lineup-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.seo-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
}

.seo-card,
.panel {
  padding: 24px;
}

.panel-visual {
  margin: -6px -6px 18px;
  padding: 14px;
  display: grid;
  gap: 14px;
  clip-path: var(--clip-small);
  background:
    radial-gradient(circle at 50% 20%, rgba(73, 246, 255, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.panel-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35));
}

.panel-still {
  display: block;
  width: 100%;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 5, 10, 0.72);
}

.section-inline-figure {
  margin-bottom: 10px;
  padding: 16px;
  clip-path: var(--clip-small);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 240, 79, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.section-inline-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.36));
}

.section-inline-figure--faq {
  margin-bottom: 18px;
}

.panel-video {
  display: block;
  width: min(100%, 270px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.35), 0 0 22px rgba(73, 246, 255, 0.08);
  background: rgba(3, 5, 10, 0.86);
}

.panel-visual--faq {
  margin-bottom: 20px;
}

.panel-visual--faq .panel-video {
  width: min(100%, 290px);
}

.seo-card p,
.panel p,
.faq__answer p {
  margin: 0;
  color: #d4dcec;
  line-height: 1.7;
  font-size: 1.08rem;
}

.copy-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.panel h3,
.seo-card h3,
.faq__question span,
.faq__item h3 {
  margin: 0 0 10px;
  font-family: 'Oxanium', sans-serif;
  font-size: 1.24rem;
  text-transform: uppercase;
}

.fact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.fact-list div {
  padding: 14px;
  clip-path: var(--clip-small);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fact-list strong {
  color: var(--yellow);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.line-card {
  position: relative;
  padding: 22px;
  clip-path: var(--clip);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.line-card--storm {
  background: linear-gradient(155deg, rgba(8, 18, 26, 0.96), rgba(7, 11, 18, 0.92));
}

.line-card--armageddon {
  background: linear-gradient(155deg, rgba(26, 9, 20, 0.96), rgba(11, 7, 16, 0.92));
}

#moc .line-card,
#moc .benefit-card {
  background: linear-gradient(180deg, rgba(14, 20, 35, 0.42), rgba(6, 9, 16, 0.28));
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.line-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 14px;
  clip-path: var(--clip-small);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.line-card__value {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--yellow);
  line-height: 1;
}

.line-card p {
  margin-top: 12px;
  color: #d4dcec;
  line-height: 1.65;
}

.benefits-layout {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
}

.benefit-card {
  padding: 20px;
  min-height: 210px;
}

.benefit-card__index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.12em;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-family: 'Oxanium', sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq__item {
  padding: 0;
}

.faq__question {
  width: 100%;
  border: 0;
  padding: 20px 22px;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.faq__question span {
  margin: 0;
  font-size: 1.08rem;
}

.faq__icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  clip-path: var(--clip-small);
  background: rgba(255, 255, 255, 0.05);
  color: var(--yellow);
  font-size: 1.4rem;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq__answer > div {
  overflow: hidden;
}

.faq__answer p {
  padding: 0 22px 22px;
}

.faq__item[data-open='true'] .faq__answer {
  grid-template-rows: 1fr;
}

.faq__item[data-open='true'] .faq__icon {
  color: var(--cyan);
}

.note-card {
  padding: 24px;
}

.note-card p + p {
  margin-top: 12px;
}

.site-footer {
  padding: 26px 0 42px;
}

.footer-panel {
  position: relative;
  padding: 26px;
  clip-path: var(--clip);
  background: linear-gradient(180deg, rgba(11, 14, 25, 0.94), rgba(5, 7, 12, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 22px;
}

.footer-panel small,
.footer-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-logo {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 240, 79, 0.14));
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 68ch;
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  clip-path: var(--clip-small);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column h2 {
  margin: 0 0 4px;
  font-family: 'Oxanium', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0.08em;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  line-height: 1.5;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--cyan);
}

.footer-column--cta p {
  color: #d4dcec;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.footer-actions .link-chip {
  width: auto;
  min-width: 148px;
}

.footer-meta {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-warning {
  color: #ffe087;
  max-width: 74ch;
}

.mobile-dock {
  display: none;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: var(--size, 3px);
  height: var(--size, 3px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 16px currentColor;
  color: var(--cyan);
  opacity: 0.46;
  animation: drift var(--duration, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.age-gate {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 4, 8, 0.84);
  backdrop-filter: blur(18px);
  z-index: 30;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.age-gate[hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: grid;
}

.age-gate__panel {
  position: relative;
  width: min(560px, 100%);
  padding: 28px;
  clip-path: var(--clip);
  background: linear-gradient(180deg, rgba(12, 16, 27, 0.96), rgba(5, 8, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 30px rgba(73, 246, 255, 0.12);
}

.age-gate__panel h2 {
  margin: 0;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  text-transform: uppercase;
}

.age-gate__panel p {
  margin: 14px 0 0;
  color: #d4dcec;
  line-height: 1.65;
  font-size: 1.08rem;
}

.age-gate__warning {
  margin-top: 18px;
  padding: 14px;
  clip-path: var(--clip-small);
  background: rgba(255, 106, 106, 0.08);
  border: 1px solid rgba(255, 106, 106, 0.18);
  color: #ffe1e1;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.age-gate__blocked {
  margin-top: 18px;
  padding: 16px;
  clip-path: var(--clip-small);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

@keyframes pulseDot {
  0%,
  100% { transform: scale(0.8); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes pulseGlow {
  from { transform: scale(0.96); opacity: 0.54; }
  to { transform: scale(1.06); opacity: 0.8; }
}

@keyframes streakShift {
  0% { transform: translateX(0) rotate(-16deg); opacity: 0; }
  18% { opacity: 0.7; }
  100% { transform: translateX(180px) rotate(-16deg); opacity: 0; }
}

@keyframes glitchShift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(2px, -1px); }
  40% { transform: translate(-2px, 2px); }
  60% { transform: translate(1px, 1px); }
  80% { transform: translate(-1px, -2px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes floatMain {
  0%, 100% { transform: translate(-50%, -50%) rotate(-8deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-4deg) translateY(-16px); }
}

@keyframes floatSide {
  0%, 100% { transform: translateY(-50%) rotate(-18deg) translateY(0); }
  50% { transform: translateY(-50%) rotate(-14deg) translateY(-12px); }
}

@keyframes floatLow {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-12px); }
}

@keyframes drift {
  from {
    transform: translate3d(0, 110vh, 0) scale(0.6);
    opacity: 0;
  }
  10%, 90% {
    opacity: 0.46;
  }
  to {
    transform: translate3d(0, -10vh, 0) scale(1.2);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-top: 26px;
  }

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

  .hero-character {
    opacity: 0.42;
  }

  .hero-banner {
    width: min(720px, 154%);
  }

  .section-figure {
    width: min(24vw, 240px);
    opacity: 0.26;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-column--cta {
    grid-column: 1 / -1;
  }

}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    clip-path: var(--clip);
    background: rgba(7, 10, 18, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
  }

  .site-header[data-open='true'] .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    clip-path: var(--clip-small);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-meta {
    margin-left: auto;
  }

  .product-grid,
  .benefits-layout,
  .lineup-grid,
  .seo-layout,
  .faq-layout {
    grid-template-columns: 1fr 1fr;
  }

  .section-figure {
    width: 190px;
    opacity: 0.22;
  }

  .section-figure--left {
    left: -44px;
  }

  .section-figure--right {
    right: -44px;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head__meta {
    justify-self: start;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 100%);
    --header-h: 74px;
  }

  body {
    padding-bottom: 94px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .header-bar {
    min-height: var(--header-h);
    gap: 12px;
  }

  .brand {
    order: 1;
  }

  .header-meta {
    order: 2;
    margin-left: 0;
  }

  .brand__logo {
    height: 38px;
  }

  .nav-toggle {
    order: 3;
    margin-left: auto;
    width: 48px;
    height: 48px;
  }

  .header-meta .badge-outline {
    display: none;
  }

  .header-meta {
    gap: 8px;
  }

  .badge-18,
  .badge-outline {
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .site-nav {
    left: 12px;
    right: 12px;
    padding: 14px;
    gap: 10px;
  }

  .hero {
    padding: 14px 0 36px;
    min-height: auto;
  }

  .hero__glow {
    width: 78vw;
    height: 78vw;
    left: -20vw;
    top: 10vh;
  }

  .hero__halo {
    width: 72vw;
    height: 72vw;
    right: -18vw;
    top: 4vh;
  }

  .hero__streak {
    width: 180px;
    top: 16%;
    right: -6%;
  }

  .grid-floor {
    inset: auto -30vw -16vh -30vw;
    height: 36vh;
    background-size: 34px 34px;
    opacity: 0.24;
  }

  .hero-layout {
    gap: 18px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    padding: 14px 14px 0;
    clip-path: var(--clip);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 14, 24, 0.78), rgba(7, 9, 16, 0.34));
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 8.6vw, 2.9rem);
    line-height: 0.94;
    letter-spacing: 0.03em;
    text-wrap: pretty;
  }

  .hero h1 .glitch,
  .hero h1 .accent {
    display: block;
    max-width: 100%;
  }

  .hero__lede {
    max-width: 100%;
    font-size: 0.98rem;
    margin-top: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .btn {
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.84rem;
    letter-spacing: 0.09em;
  }

  .hero-visual {
    min-height: 0;
    padding: 0;
    display: none;
  }

  .hero-visual__core {
    width: min(100%, 360px);
    min-width: 0;
    aspect-ratio: 1 / 1.08;
    margin: 0 auto;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 48px rgba(73, 246, 255, 0.14);
  }

  .hero-banner {
    width: min(560px, 162%);
  }

  .corner-chip {
    padding: 8px 10px;
    font-size: 0.68rem;
    max-width: 48%;
  }

  .hero-stats {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 82vw);
    overflow-x: auto;
    gap: 12px;
    padding: 4px 2px 10px;
    margin: 22px -2px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-stats::-webkit-scrollbar {
    display: none;
  }

  .stat-card {
    min-height: 108px;
    scroll-snap-align: start;
  }

  .section {
    padding: 40px 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .section-head p {
    font-size: 1rem;
    line-height: 1.48;
  }

  .section-banner-showcase {
    padding-top: 2px;
  }

  .showcase-banner {
    clip-path: polygon(6% 0, 100% 0, 100% 92%, 94% 100%, 0 100%, 0 10%);
  }

  .product-grid,
  .benefits-layout,
  .lineup-grid,
  .seo-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-figures {
    display: none;
  }

  .mobile-swipe-hint {
    display: block;
  }

  .product-grid {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-padding-left: 2px;
    margin-right: -4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar,
  .flavors-marquee::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 76vw;
    min-width: 76vw;
    scroll-snap-align: start;
    min-height: 100%;
    padding: 14px;
    background: linear-gradient(180deg, rgba(14, 20, 35, 0.96), rgba(6, 9, 16, 0.98));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  }

  .product-card:active {
    transform: scale(0.985);
  }

  .product-card__image-wrap {
    height: 156px;
  }

  .product-card__image {
    width: min(64%, 156px);
  }

  .product-card h3 {
    font-size: 1.06rem;
  }

  .flavors-marquee {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-right: -4px;
    scroll-snap-type: x proximity;
  }

  .flavors-marquee .chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .seo-card,
  .panel,
  .line-card,
  .benefit-card,
  .note-card {
    padding: 18px;
  }

  .section-inline-figure,
  .panel-visual {
    margin-left: 0;
    margin-right: 0;
  }

  .seo-layout > .panel,
  .faq-layout > .note-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 540px;
    padding: 20px 18px 18px;
    background: linear-gradient(180deg, rgba(4, 7, 12, 0.14), rgba(4, 7, 12, 0.4));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    isolation: isolate;
  }

  .seo-layout > .panel::after,
  .faq-layout > .note-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(4, 7, 12, 0.08) 0%, rgba(4, 7, 12, 0.3) 34%, rgba(4, 7, 12, 0.82) 72%, rgba(4, 7, 12, 0.96) 100%),
      radial-gradient(circle at 50% 16%, rgba(73, 246, 255, 0.2), transparent 34%);
    pointer-events: none;
    z-index: 1;
  }

  .seo-layout > .panel > *:not(.panel-visual),
  .faq-layout > .note-card > *:not(.panel-visual) {
    position: relative;
    z-index: 2;
  }

  .seo-layout > .panel .panel-visual,
  .faq-layout > .note-card .panel-visual {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    clip-path: none;
    border: 0;
    background: none;
    z-index: 0;
  }

  .seo-layout > .panel .panel-video,
  .faq-layout > .note-card .panel-video,
  .faq-layout > .note-card .panel-visual--faq .panel-video {
    width: 100%;
    height: 100%;
    margin: 0;
    clip-path: none;
    border: 0;
    box-shadow: none;
    background: #05060a;
  }

  .seo-layout > .panel h3,
  .faq-layout > .note-card h3 {
    margin-bottom: 12px;
    font-size: 1.34rem;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  }

  .seo-layout > .panel p,
  .faq-layout > .note-card p {
    color: #edf3ff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.58);
  }

  .seo-layout > .panel .fact-list div {
    background: rgba(6, 10, 18, 0.54);
    backdrop-filter: blur(6px);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .faq-layout > .note-card .section-actions {
    position: relative;
    z-index: 2;
  }

  .faq-layout > .note-card .btn--secondary {
    background: rgba(6, 10, 18, 0.46);
    backdrop-filter: blur(6px);
  }

  .lineup-grid,
  .benefits-layout {
    gap: 14px;
  }

  .benefit-card {
    min-height: 0;
  }

  .age-gate__actions,
  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .btn,
  .link-chip {
    width: 100%;
  }

  .faq-list {
    gap: 10px;
  }

  .faq__question {
    padding: 18px;
    gap: 14px;
  }

  .faq__question span {
    font-size: 1rem;
  }

  .faq__answer p {
    padding: 0 18px 18px;
  }

  .faq__icon {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  .footer-panel {
    padding: 18px;
    margin-bottom: 8px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-actions {
    flex-direction: column;
  }

  .footer-actions .link-chip {
    width: 100%;
    min-width: 0;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 18;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    clip-path: var(--clip);
    background: rgba(7, 10, 18, 0.84);
    border: 1px solid rgba(73, 246, 255, 0.18);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35), 0 0 24px rgba(73, 246, 255, 0.08);
  }

  .mobile-dock__item {
    min-height: 56px;
    padding: 8px 10px;
    display: grid;
    align-content: center;
    gap: 2px;
    clip-path: var(--clip-small);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
  }

  .mobile-dock__item span {
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
  }

  .mobile-dock__item strong {
    font-family: 'Oxanium', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
  }

  .mobile-dock__item--primary {
    background: linear-gradient(135deg, rgba(255, 240, 79, 0.94), rgba(141, 255, 101, 0.88));
    border-color: rgba(255, 240, 79, 0.45);
  }

  .mobile-dock__item--primary span,
  .mobile-dock__item--primary strong {
    color: #05060a;
  }

  .cityline {
    bottom: 16vh;
  }

  .hero-character--left {
    left: -40px;
  }

  .hero-character--right {
    right: -40px;
  }
}

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