/* ================================================================
   JAY CHAMUNDA GAME STORE — ELECTRIC NIGHT
   Jamnagar's trusted gaming shop. Modern HUD aesthetic on deep
   blue-black with one decisive electric cyan accent. WhatsApp-first.
   Type: Bricolage Grotesque · Big Shoulders Display · DM Sans · JetBrains Mono
   ================================================================ */

/* -------- 1. Reset -------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  background-color: #06090F;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper);
  background-color: var(--bg-deep);
  overflow-x: hidden;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background-color: var(--neon);
  color: var(--bg-deep);
}

/* -------- 2. Design tokens -------- */
:root {
  /* Surface */
  --bg-deep:   #06090F;
  --bg-panel:  #0E141E;
  --bg-card:   #131B27;
  --bg-card-hi:#1A2332;
  --bg-edge:   #1F2937;

  /* Type */
  --paper:      #FFFFFF;
  --paper-soft: #E2E8F0;
  --paper-dim:  #94A3B8;
  --paper-mute: #64748B;

  /* Accents — single restrained blue. WhatsApp green stays as brand. */
  --neon:        #00B6E0;
  --neon-bright: #6FE5FF;
  --neon-deep:   #008CB0;
  --neon-glow:   rgba(0, 182, 224, 0.28);
  --magenta:     #94A3B8;
  --whatsapp:    #25D366;
  --whatsapp-hi: #1EB855;
  --gold:        #E2E8F0;
  --moss:        #00B6E0;

  /* Platform tokens flattened to a single neutral surface — cards no
     longer color-code by platform. Kept as variables so per-card hooks
     still work if we ever bring tinting back. */
  --pf-sony:        #94A3B8;
  --pf-sony-spark:  #CBD5E1;
  --pf-sony-deep:   #0E141E;

  --pf-xbox:        #94A3B8;
  --pf-xbox-spark:  #CBD5E1;
  --pf-xbox-deep:   #0E141E;

  --pf-nin:         #94A3B8;
  --pf-nin-spark:   #CBD5E1;
  --pf-nin-deep:    #0E141E;

  --pf-acc:         #94A3B8;
  --pf-acc-spark:   #CBD5E1;
  --pf-acc-deep:    #0E141E;

  /* Rules */
  --rule:         rgba(255, 255, 255, 0.08);
  --rule-strong:  rgba(255, 255, 255, 0.16);
  --rule-faint:   rgba(255, 255, 255, 0.04);
  --rule-neon:    rgba(255, 255, 255, 0.16);

  /* Type stack */
  --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-stat:    'Big Shoulders Display', 'Bricolage Grotesque', sans-serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'Geist Mono', monospace;

  /* Type scale */
  --fs-2xs: 0.6875rem;
  --fs-xs: 0.78125rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  --fs-2xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --fs-3xl: clamp(2.75rem, 1.6rem + 5vw, 5.5rem);
  --fs-4xl: clamp(3.5rem, 1.8rem + 9vw, 8rem);
  --fs-display: clamp(3.5rem, 2rem + 11vw, 11rem);
  --fs-numeral: clamp(8rem, 4rem + 22vw, 22rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;
  --space-11: 12rem;

  /* Layout */
  --max-content: 1440px;
  --max-text: 60ch;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad-y: clamp(4rem, 8vw, 8rem);
  --nav-h: 72px;
  --ticker-h: 34px;
  --whatsapp-fab: 64px;

  /* Radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms;
  --t-base: 420ms;
  --t-slow: 700ms;

  /* Shadow / glow */
  --glow-neon:     0 0 0 1px var(--neon), 0 0 28px -2px var(--neon-glow);
  --glow-neon-soft: 0 0 24px -4px var(--neon-glow);
  --glow-whatsapp: 0 8px 28px -4px rgba(37, 211, 102, 0.45);
}

/* -------- 3. Type primitives -------- */
.h-display, .h-1, .h-2, .h-3 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100, "opsz" 96;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.h-display {
  font-size: var(--fs-display);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-variation-settings: "wdth" 100, "opsz" 96;
  font-weight: 700;
}

.h-1 {
  font-size: var(--fs-4xl);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.h-2 {
  font-size: var(--fs-3xl);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.h-3 {
  font-size: var(--fs-2xl);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.h-4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xl);
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--paper-dim);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background-color: var(--neon);
  display: inline-block;
}

.eyebrow--accent { color: var(--neon-bright); }
.eyebrow--bare::before { display: none; }

.lede {
  font-size: var(--fs-lg);
  line-height: 1.45;
  color: var(--paper-soft);
  max-width: var(--max-text);
  font-weight: 400;
}

.body-text {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--paper-dim);
  max-width: var(--max-text);
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0;
}

em, .italic {
  font-style: italic;
  color: var(--neon-bright);
  font-weight: 600;
}

/* Glyph badges (PlayStation buttons used as wayfinding) */
.glyph {
  display: inline-grid;
  place-items: center;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-family: var(--font-mono);
  font-size: 0.7em;
  font-weight: 600;
}

/* -------- 4. Layout primitives -------- */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}

.section {
  padding-block: var(--section-pad-y);
  position: relative;
}

/* -------- 5. Atmosphere — film grain + scanlines -------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 2px,
      rgba(255, 255, 255, 0.014) 2px,
      rgba(255, 255, 255, 0.014) 3px
    );
  mix-blend-mode: screen;
}

/* -------- 6. Marquee ticker -------- */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ticker-h);
  z-index: 101;
  background-color: var(--bg-panel);
  color: var(--paper-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.ticker__track {
  display: flex;
  gap: var(--space-7);
  white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-left: var(--space-7);
  will-change: transform;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.ticker__item::before {
  content: "▶";
  font-size: 0.7em;
  color: var(--neon);
  opacity: 0.8;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -------- 7. Nav -------- */
.nav {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: var(--space-3);
  transition: background-color var(--t-base) var(--ease-out-quart),
              backdrop-filter var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background-color: rgba(6, 9, 15, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--rule);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--paper);
  z-index: 110;
}

.nav__brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-deep);
  display: block;
  object-fit: cover;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 1px var(--rule-strong), 0 6px 18px -8px rgba(0, 212, 255, 0.35);
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease-out-quart);
}

.nav__brand:hover .nav__brand-mark {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 0 0 1px var(--neon), 0 0 24px -2px var(--neon);
}

.nav__brand-text {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100, "opsz" 96;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.nav__brand-since {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--neon-bright);
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-top: 3px;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--paper-dim);
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--t-fast) var(--ease-out-quart);
}

.nav__link::before {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background-color: var(--neon);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--t-base) var(--ease-out-quart);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--paper);
}

.nav__link:hover::before,
.nav__link.is-active::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.nav__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px;
  position: relative;
  z-index: 110;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--paper);
  transition: transform var(--t-base) var(--ease-out-quart),
              opacity var(--t-fast) var(--ease-out-quart);
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-3.25px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--bg-deep);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--gutter);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--t-base) var(--ease-out-quart),
              transform var(--t-base) var(--ease-out-quart);
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-overlay__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  counter-reset: ov-counter;
}

.nav-overlay__list li { counter-increment: ov-counter; }

.nav-overlay__link {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100, "opsz" 96;
  font-weight: 700;
  font-size: clamp(2.5rem, 12vw, 5rem);
  line-height: 0.95;
  color: var(--paper);
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-3);
  letter-spacing: -0.04em;
  transition: color var(--t-fast) var(--ease-out-quart);
}

.nav-overlay__link::before {
  content: counter(ov-counter, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--neon);
  font-weight: 500;
  align-self: start;
  margin-top: 0.55em;
}

.nav-overlay__link:hover { color: var(--neon); }

.nav-overlay__meta {
  margin-top: var(--space-9);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* -------- 8. Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: transform var(--t-base) var(--ease-out-quart),
              background-color var(--t-base) var(--ease-out-quart),
              color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart);
  border: 1px solid transparent;
  position: relative;
  white-space: nowrap;
  will-change: transform;
}

.btn--primary {
  background-color: var(--neon);
  color: var(--bg-deep);
  border-color: var(--neon);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--neon-bright);
  border-color: var(--neon-bright);
  box-shadow: var(--glow-neon-soft);
}

.btn--ghost {
  background-color: transparent;
  color: var(--paper);
  border-color: var(--rule-strong);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
  background-color: rgba(0, 212, 255, 0.06);
}

.btn--whatsapp {
  background-color: var(--whatsapp);
  color: #FFFFFF;
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background-color: var(--whatsapp-hi);
  border-color: var(--whatsapp-hi);
  box-shadow: var(--glow-whatsapp);
}

.btn--lg {
  padding: 1.05rem 2rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
}

.btn__arrow,
.btn__icon {
  display: inline-flex;
  transition: transform var(--t-base) var(--ease-out-expo);
}

.btn:hover .btn__arrow { transform: translateX(5px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
  padding-block: var(--space-2);
  transition: color var(--t-fast) var(--ease-out-quart);
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 24px;
  bottom: 0;
  height: 1px;
  background-color: var(--neon);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--t-base) var(--ease-out-quart);
}

.link-arrow:hover { color: var(--neon); }
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left center; }
.link-arrow svg { transition: transform var(--t-base) var(--ease-out-expo); }
.link-arrow:hover svg { transform: translateX(5px); }

/* -------- 9. Rating chip — "★ 4.7 / 43 reviews on Google" -------- */
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px 14px 8px 12px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: var(--fs-xs);
}

.rating-chip__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0;
}

.rating-chip__score {
  font-family: var(--font-stat);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.rating-chip__separator {
  width: 1px;
  height: 14px;
  background-color: var(--rule-strong);
}

.rating-chip__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* -------- 10. WhatsApp floating action button -------- */
.fab-whatsapp {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 90;
  width: var(--whatsapp-fab);
  height: var(--whatsapp-fab);
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.5),
              0 0 0 0 rgba(37, 211, 102, 0.4);
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease-out-quart);
  animation: fabPulse 2.5s ease-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px -6px rgba(37, 211, 102, 0.7);
}

.fab-whatsapp svg {
  width: 30px;
  height: 30px;
}

@keyframes fabPulse {
  0% { box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* -------- 11. Hero -------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(var(--ticker-h) + var(--nav-h) + var(--space-6));
  padding-bottom: var(--space-8);
  overflow: hidden;
  background-color: var(--bg-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__wallpaper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: saturate(1.2) contrast(1.1) hue-rotate(-12deg);
  mask-image: linear-gradient(135deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(135deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  animation: wallpaperDrift 28s ease-in-out infinite;
  will-change: transform;
}

.hero__wallpaper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, transparent 30%, transparent 70%, var(--bg-deep) 100%),
    linear-gradient(90deg, var(--bg-deep) 0%, transparent 25%, transparent 75%, var(--bg-deep) 100%);
}

@keyframes wallpaperDrift {
  0%, 100% { transform: scale(1.05) translate(0, 0); }
  33% { transform: scale(1.08) translate(-1%, 0.5%); }
  66% { transform: scale(1.06) translate(0.5%, -1%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__wallpaper { animation: none !important; }
}

.hero__gradient {
  display: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--rule-faint) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rule-faint) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 30%, transparent 95%);
}

.hero__corner {
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: var(--neon);
  pointer-events: none;
  opacity: 0.7;
}

.hero__corner--tl { top: calc(var(--ticker-h) + var(--nav-h) + var(--space-2)); left: var(--gutter); border-top: 2px solid; border-left: 2px solid; }
.hero__corner--tr { top: calc(var(--ticker-h) + var(--nav-h) + var(--space-2)); right: var(--gutter); border-top: 2px solid; border-right: 2px solid; }
.hero__corner--bl { bottom: var(--space-2); left: var(--gutter); border-bottom: 2px solid; border-left: 2px solid; }
.hero__corner--br { bottom: var(--space-2); right: var(--gutter); border-bottom: 2px solid; border-right: 2px solid; }

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  gap: var(--space-6);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}

.hero__pulse {
  width: 8px;
  height: 8px;
  background-color: var(--moss);
  position: relative;
  border-radius: 50%;
}

.hero__pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid var(--moss);
  border-radius: 50%;
  animation: pulse 2.5s ease-out infinite;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
}

.hero__title {
  display: block;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line span {
  display: inline-block;
  will-change: transform;
}

.hero__title-italic {
  font-style: italic;
  color: var(--neon);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.hero__lede {
  max-width: 38ch;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--paper-soft);
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-2);
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-7);
  align-items: end;
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
  position: relative;
}

.hero__bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: var(--neon);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--space-7);
}

.hero__stat-num {
  font-family: var(--font-stat);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--paper);
  display: block;
  letter-spacing: -0.02em;
}

.hero__stat-num em {
  color: var(--neon);
  font-style: normal;
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: var(--space-2);
  display: block;
  font-weight: 500;
}

.hero__numeral {
  position: absolute;
  font-family: var(--font-stat);
  font-weight: 800;
  font-style: italic;
  font-size: var(--fs-numeral);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.08);
  line-height: 0.78;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 1;
  bottom: 8%;
  right: -3%;
  user-select: none;
  opacity: 0.9;
}

/* -------- 12. Section header -------- */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.section-head::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--neon);
}

.section-head__num {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--neon);
  letter-spacing: 0.16em;
  font-weight: 600;
  align-self: start;
  padding-top: 0.4em;
  white-space: nowrap;
}

.section-head__center {
  display: grid;
  gap: var(--space-3);
}

.section-head__title { max-width: 22ch; }

@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; gap: var(--space-3); }
  .section-head__num { padding-top: 0; }
}

/* -------- 13. Service cards (homepage) -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.service-card {
  background-color: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  transition: background-color var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              transform var(--t-base) var(--ease-out-quart);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--neon);
  transition: width var(--t-slow) var(--ease-out-quart);
}

.service-card:hover {
  border-color: var(--rule-strong);
  background-color: var(--bg-card);
  transform: translateY(-4px);
}

.service-card:hover::before { width: 100%; }

.service-card__num {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--neon);
  letter-spacing: 0.18em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--rule-neon);
  display: grid;
  place-items: center;
  color: var(--neon);
  margin-bottom: var(--space-2);
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.service-card__desc {
  color: var(--paper-dim);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* -------- 14. Featured / Product cards (Editorial Premium) --------
   The product is the hero. Media gets a platform-tinted atmospheric
   halo (not flat grey). Badges are typographic micro-tags, not chips.
   Price wears the brand accent. Hover lifts with a *coloured* ambient
   shadow that matches each platform.
   -------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(var(--space-4), 2vw, var(--space-5));
}

.product-grid--featured { gap: clamp(var(--space-4), 2vw, var(--space-5)); }

/* Per-platform accent variables. Set on the card; consumed everywhere
   inside (hairline, dot, glow, price hover, bezel ring). */
.product-card {
  --accent:       var(--pf-sony);
  --accent-spark: var(--pf-sony-spark);
  --accent-deep:  var(--pf-sony-deep);
}
.product-card--xbox {
  --accent:       var(--pf-xbox);
  --accent-spark: var(--pf-xbox-spark);
  --accent-deep:  var(--pf-xbox-deep);
}
.product-card--nintendo,
.product-card--switch {
  --accent:       var(--pf-nin);
  --accent-spark: var(--pf-nin-spark);
  --accent-deep:  var(--pf-nin-deep);
}
.product-card--accessory,
.product-card--other {
  --accent:       var(--pf-acc);
  --accent-spark: var(--pf-acc-spark);
  --accent-deep:  var(--pf-acc-deep);
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  position: relative;
  transition:
    border-color 420ms var(--ease-out-quart),
    transform 520ms var(--ease-out-quart),
    box-shadow 520ms var(--ease-out-quart);
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  --glow-x: 50%;
  --glow-y: 50%;
}

/* Top hairline — quietly visible at rest, draws fully across on hover. */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent) 25%,
    var(--accent-spark) 50%,
    var(--accent) 75%,
    transparent 100%);
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 700ms var(--ease-out-quart),
              opacity 320ms var(--ease-out-quart);
  opacity: 0.6;
  z-index: 3;
}

.product-card:hover::before,
.product-card:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

/* Hover lift — thin blue hairline, neutral ambient shadow. */
.product-card:hover,
.product-card:focus-visible {
  border-color: color-mix(in srgb, var(--neon) 45%, var(--rule-strong));
  transform: translateY(-6px);
  box-shadow:
    0 32px 70px -32px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-card:focus-visible {
  outline: 1px solid var(--neon);
  outline-offset: 4px;
}

/* Media — flat dark surface, no per-platform tinting. */
.product-card__media {
  aspect-ratio: 5/4;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-deep);
  border-bottom: 1px solid var(--rule);
}

.product-card__media::before { content: none; }
.product-card__media::after { content: none; }

/* Letterform fallback when no image is provided — refined camera glyph */
.product-card__visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.62rem;
  color: var(--paper-mute);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-4);
  z-index: 2;
}

.product-card__visual::after {
  content: "photo on request";
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: var(--paper-mute);
  letter-spacing: 0.2em;
  opacity: 0.65;
  white-space: nowrap;
}

.product-card__visual::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--rule-strong));
  border-radius: 50%;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='1.2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='9' cy='10' r='1.4'/%3E%3Cpath d='M21 15l-5-5-9 9'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
}

/* Badge — typographic micro-tag with a coloured square dot. Feels like
   a museum label, not a button. */
.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 6px 10px 5px;
  color: var(--paper-soft);
  background-color: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 4;
  font-weight: 500;
  border-radius: 3px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-card__badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent);
  box-shadow: 0 0 8px color-mix(in srgb, var(--accent) 70%, transparent);
  border-radius: 1px;
}

.product-card__badge--rare {
  color: var(--accent-spark);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}

.product-card__badge--sealed {
  color: var(--paper);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  background-color: color-mix(in srgb, var(--accent-deep) 50%, rgba(8, 12, 20, 0.7));
}

/* Used items — neutral grey instead of accent dot */
.product-card__badge--used::before {
  background: var(--paper-mute);
  box-shadow: none;
}

/* SKU id — barely-there at rest, brightens to brand on hover */
.product-card__id {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--paper-mute);
  letter-spacing: 0.18em;
  z-index: 4;
  font-weight: 500;
  opacity: 0.45;
  transition: opacity 320ms var(--ease-out-quart),
              color 320ms var(--ease-out-quart);
}

.product-card:hover .product-card__id {
  opacity: 0.95;
  color: color-mix(in srgb, var(--accent-spark) 85%, var(--paper-soft));
}

/* Body — generous, hierarchical, breathing */
.product-card__body {
  padding: clamp(var(--space-4), 2.6vw, var(--space-5));
  padding-top: clamp(var(--space-4), 2.2vw, calc(var(--space-5) - 0.25rem));
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
  position: relative;
}

/* Meta line: PLATFORM · SPEC. Platform is in brand accent, spec mute. */
.product-card__platform {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper-mute);
  font-weight: 500;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--rule-faint);
}

.product-card__platform > span:first-child {
  color: var(--accent-spark);
  position: relative;
  padding-left: 12px;
  font-weight: 600;
}

.product-card__platform > span:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 60%, transparent);
}

.product-card__title {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100, "opsz" 96;
  font-weight: 600;
  font-size: clamp(1.0625rem, 1.6vw, 1.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.4em;
  transition: color 320ms var(--ease-out-quart);
}

.product-card:hover .product-card__title {
  color: var(--paper);
}

.product-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--rule-faint);
  gap: var(--space-3);
}

/* Price — display font, currency mark muted, big number wears the accent
   on hover. At rest it's white; on hover it warms into the brand colour. */
.product-card__price {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100, "opsz" 24;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--paper);
  letter-spacing: -0.018em;
  font-feature-settings: "tnum" 1;
  line-height: 1;
  transition: color 320ms var(--ease-out-quart),
              text-shadow 320ms var(--ease-out-quart);
}

.product-card:hover .product-card__price {
  color: var(--accent-spark);
  text-shadow: 0 0 18px color-mix(in srgb, var(--accent) 35%, transparent);
}

.product-card__price--inquire {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--paper-soft);
  text-transform: uppercase;
  font-family: var(--font-mono);
}

/* CTA pill — small, refined, gains an accent ring on hover */
.product-card__view {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 7px 12px 6px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  transition: color 220ms var(--ease-out-quart),
              gap 220ms var(--ease-out-quart),
              border-color 320ms var(--ease-out-quart),
              background-color 320ms var(--ease-out-quart);
  position: relative;
  white-space: nowrap;
}

.product-card__view svg {
  width: 11px;
  height: 11px;
  transition: transform 320ms var(--ease-out-expo);
}

.product-card:hover .product-card__view {
  color: var(--paper);
  gap: 11px;
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, rgba(255, 255, 255, 0.02));
}

.product-card:hover .product-card__view svg {
  transform: translateX(2px);
  color: var(--accent-spark);
}

.product-card::after { content: none; }

/* Bezel ring — barely-visible inner highlight that sells "premium" */
.product-card__body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 0;
}

/* -------- 15. Reviews -------- */
.reviews {
  background-color: var(--bg-panel);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--space-5);
}

.review {
  background-color: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  transition: border-color var(--t-base) var(--ease-out-quart),
              transform var(--t-base) var(--ease-out-quart);
}

.review:hover {
  border-color: var(--rule-strong);
  transform: translateY(-3px);
}

.review__quote-mark {
  position: absolute;
  top: -18px;
  left: var(--space-5);
  background-color: var(--neon);
  color: var(--bg-deep);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

.review__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-top: var(--space-2);
}

.review__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--paper-soft);
  flex: 1;
}

.review__cite {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--rule);
}

.review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-card-hi);
  border: 1px solid var(--rule-strong);
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--font-stat);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review__author {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.review__author strong {
  color: var(--paper);
  font-weight: 600;
  display: block;
}

/* -------- 16. Why Choose Us -------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-cell {
  padding: var(--space-6);
  background-color: var(--bg-panel);
  display: grid;
  gap: var(--space-3);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background-color var(--t-base) var(--ease-out-quart);
  position: relative;
}

.why-cell:hover { background-color: var(--bg-card); }
.why-cell:nth-child(3n) { border-right: none; }
.why-cell:nth-last-child(-n+3) { border-bottom: none; }

.why-cell__num {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--neon);
  letter-spacing: 0.18em;
  font-weight: 600;
}

.why-cell__icon {
  font-family: var(--font-stat);
  font-weight: 800;
  font-size: 2rem;
  color: var(--neon);
  line-height: 1;
}

.why-cell__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--paper);
}

.why-cell__desc {
  color: var(--paper-dim);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-cell { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .why-cell:nth-child(3n) { border-right: 1px solid var(--rule); }
  .why-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
  .why-cell:nth-child(2n) { border-right: none; }
  .why-cell:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-cell { border-right: none !important; border-bottom: 1px solid var(--rule) !important; }
  .why-cell:last-child { border-bottom: none !important; }
}

/* -------- 17. Categories -------- */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.category {
  display: block;
  position: relative;
  padding: var(--space-6);
  background-color: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              transform var(--t-base) var(--ease-out-quart);
}

.category::before {
  content: none;
}

.category:hover {
  background-color: var(--bg-card);
  border-color: var(--rule-neon);
  transform: translateY(-4px);
}

.category:hover::before { opacity: 1; }

.category__num {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--neon);
  letter-spacing: 0.16em;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.category__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
  position: relative;
  z-index: 2;
  margin-block: var(--space-5);
}

.category__title em {
  display: block;
  color: var(--neon);
  font-style: normal;
}

.category__count {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--paper-dim);
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.category__count svg { transition: transform var(--t-base) var(--ease-out-expo); }
.category:hover .category__count svg { transform: translateX(6px); color: var(--neon); }
.category:hover .category__count { color: var(--paper); }

@media (max-width: 1024px) { .categories__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .categories__grid { grid-template-columns: 1fr; } }

/* -------- 18. Visit / Map -------- */
.visit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.visit__info {
  padding: clamp(var(--space-6), 5vw, var(--space-8));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-7);
  border-right: 1px solid var(--rule);
}

.visit__title { margin-block: var(--space-3) var(--space-4); }

.visit__details {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.visit__detail {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--space-4);
  align-items: baseline;
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--rule);
}

.visit__detail:last-child { border-bottom: none; }

.visit__detail-label {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.visit__detail-value {
  font-size: var(--fs-base);
  color: var(--paper);
  line-height: 1.4;
}

.visit__detail-value a:hover { color: var(--neon); }

.visit__map {
  position: relative;
  min-height: 420px;
  background-color: var(--bg-deep);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(190deg) saturate(0.5) brightness(0.95);
  position: absolute;
  inset: 0;
}

.visit__quick-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

/* -------- 19. FAQ -------- */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
  max-width: 880px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--rule);
  padding-block: var(--space-5);
  cursor: pointer;
  transition: padding-block var(--t-base) var(--ease-out-quart);
}

.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--paper);
}

.faq__icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--paper);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-out-quart),
              background-color var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart);
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background-color: var(--neon);
  color: var(--bg-deep);
  border-color: var(--neon);
}

.faq__a {
  margin-top: var(--space-4);
  color: var(--paper-dim);
  font-size: var(--fs-md);
  line-height: 1.65;
  max-width: 60ch;
}

.faq__a a { color: var(--neon); text-decoration: underline; text-underline-offset: 3px; }

/* -------- 20. Newsletter -------- */
.newsletter {
  text-align: center;
  background-color: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.newsletter__inner {
  max-width: 640px;
  margin-inline: auto;
  display: grid;
  gap: var(--space-5);
  justify-items: center;
  position: relative;
  z-index: 2;
}

.newsletter__title { margin-block: var(--space-2); }

.newsletter__form {
  display: flex;
  width: 100%;
  max-width: 520px;
  background-color: var(--bg-panel);
  border: 1px solid var(--rule-strong);
  padding: 5px;
  border-radius: var(--radius-pill);
  transition: border-color var(--t-fast) var(--ease-out-quart);
}

.newsletter__form:focus-within { border-color: var(--neon); }

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.875rem 1rem;
  color: var(--paper);
  font-size: var(--fs-sm);
}

.newsletter__input::placeholder { color: var(--paper-mute); }

.newsletter__button {
  padding: 0.875rem 1.5rem;
  background-color: var(--neon);
  color: var(--bg-deep);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background-color var(--t-fast) var(--ease-out-quart);
  white-space: nowrap;
}

.newsletter__button:hover { background-color: var(--neon-bright); }

.newsletter__note {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--paper-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* -------- 21. Footer -------- */
.footer {
  padding-block: var(--space-9) var(--space-5);
  border-top: 1px solid var(--rule);
  background-color: var(--bg-deep);
  position: relative;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--rule);
}

.footer__brand-block { max-width: 360px; }

.footer__brand-text {
  margin-top: var(--space-4);
  color: var(--paper-dim);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.footer__list {
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.footer__list a,
.footer__list span {
  font-size: var(--fs-sm);
  color: var(--paper);
  transition: color var(--t-fast) var(--ease-out-quart);
}

.footer__list a:hover { color: var(--neon); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--paper-mute);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer__bottom-right { display: flex; gap: var(--space-5); flex-wrap: wrap; }

.footer__big-mark {
  font-family: var(--font-stat);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--rule-strong);
  text-align: center;
  margin-block: var(--space-7);
  user-select: none;
  pointer-events: none;
}

/* -------- 22. Page header (cinematic) -------- */
.page-header {
  padding-top: calc(var(--ticker-h) + var(--nav-h) + var(--space-8));
  padding-bottom: var(--section-pad-y);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-header__bg {
  display: none;
}

.page-header::before {
  /* Subtle grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--rule-faint) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rule-faint) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.page-header::after {
  /* Top edge accent line */
  content: "";
  position: absolute;
  top: calc(var(--ticker-h) + var(--nav-h));
  left: var(--gutter);
  width: 80px;
  height: 1px;
  background: var(--neon);
  z-index: 1;
}

.page-header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-5);
  max-width: 60ch;
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--paper-dim);
  font-weight: 500;
}

.page-header__breadcrumb a:hover { color: var(--neon); }

.page-header__count {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--neon);
  margin-top: var(--space-3);
  letter-spacing: 0.14em;
  font-weight: 500;
}

.page-header__big {
  position: absolute;
  font-family: var(--font-stat);
  font-weight: 800;
  font-style: italic;
  font-size: var(--fs-numeral);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.08);
  line-height: 0.78;
  letter-spacing: -0.05em;
  bottom: 5%;
  right: -2%;
  user-select: none;
  pointer-events: none;
  opacity: 0.9;
}

/* -------- 23. Filter bar -------- */
.filters {
  position: sticky;
  top: calc(var(--ticker-h) + var(--nav-h));
  z-index: 50;
  background-color: rgba(6, 9, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: var(--space-4);
  margin-bottom: var(--space-6);
}

.filters__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}

.filters__groups {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.filters__group { display: flex; align-items: center; gap: var(--space-3); }

.filters__label {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.filters__select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--bg-panel);
  border: 1px solid var(--rule-strong);
  color: var(--paper);
  padding: 0.5rem 2rem 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: 0.12em;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%2394A3B8' stroke-width='1.2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: border-color var(--t-fast) var(--ease-out-quart),
              color var(--t-fast) var(--ease-out-quart);
  font-weight: 500;
  text-transform: uppercase;
}

.filters__select:hover,
.filters__select:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
  outline: none;
}

.filters__select option {
  background-color: var(--bg-panel);
  color: var(--paper);
}

.filters__reset {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: color var(--t-fast) var(--ease-out-quart),
              border-color var(--t-fast) var(--ease-out-quart);
}

.filters__reset:hover {
  color: var(--neon);
  border-color: var(--rule-strong);
}

.collection__empty {
  text-align: center;
  padding: var(--space-9) var(--space-5);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-lg);
  color: var(--paper-dim);
}

.collection__empty h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--paper);
  margin-bottom: var(--space-2);
}

/* -------- 24. Modal -------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out-quart);
}

.modal.is-open { display: flex; opacity: 1; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(3, 6, 12, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  background-color: var(--bg-panel);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  transform: scale(0.97) translateY(16px);
  opacity: 0;
  transition: transform var(--t-base) var(--ease-out-expo),
              opacity var(--t-base) var(--ease-out-quart);
}

.modal.is-open .modal__panel { transform: scale(1) translateY(0); opacity: 1; }

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 5;
  width: 44px;
  height: 44px;
  background-color: var(--bg-deep);
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--paper);
  transition: background-color var(--t-fast) var(--ease-out-quart),
              color var(--t-fast) var(--ease-out-quart),
              transform var(--t-fast) var(--ease-out-quart);
}

.modal__close:hover {
  background-color: var(--neon);
  color: var(--bg-deep);
  border-color: var(--neon);
  transform: rotate(90deg);
}

.modal__media {
  position: relative;
  background-color: var(--bg-panel);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rule);
}

.modal__media::before {
  content: none;
}

.modal__main-image {
  flex: 1;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--paper-mute);
  text-align: center;
  padding: var(--space-7);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.2;
  overflow: hidden;
}

.modal__main-image:not(.modal__main-image--has-image)::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='1.2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='9' cy='10' r='1.4'/%3E%3Cpath d='M21 15l-5-5-9 9'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.modal__thumbnails { display: none; }

.modal__media-info {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.modal__media-info-label { color: var(--paper-dim); }
.modal__media-info-label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background-color: var(--neon);
  vertical-align: middle;
  margin-right: 8px;
}
.modal__media-info-id { color: var(--paper-mute); }

.modal__body {
  padding: var(--space-7);
  overflow-y: auto;
  display: grid;
  gap: var(--space-5);
  align-content: start;
}

.modal__body::-webkit-scrollbar { width: 6px; }
.modal__body::-webkit-scrollbar-track { background: transparent; }
.modal__body::-webkit-scrollbar-thumb { background-color: var(--rule-strong); border-radius: 3px; }

.modal__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--paper-dim);
  font-weight: 500;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--rule);
}

.modal__meta-dot {
  width: 3px;
  height: 3px;
  background-color: var(--paper-mute);
  border-radius: 50%;
}

.modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-2xl);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.modal__badges { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border: 1px solid var(--rule-strong);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.badge--cib {
  color: var(--paper-soft);
  border-color: var(--rule-strong);
  background-color: rgba(255, 255, 255, 0.03);
}
.badge--cib::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--paper-soft);
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.badge--sealed {
  color: var(--paper);
  border-color: var(--rule-strong);
  background-color: rgba(255, 255, 255, 0.03);
}
.badge--sealed::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--paper);
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.badge--rare {
  background-color: transparent;
  border-color: var(--rule-strong);
  color: var(--paper-soft);
}
.badge--loose { color: var(--paper-dim); }

.modal__price-block {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: var(--space-4);
  border-block: 1px solid var(--rule);
}

.modal__price {
  font-family: var(--font-stat);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--paper);
  letter-spacing: -0.015em;
}

.modal__availability {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--moss);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
}

.modal__availability::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 50%;
}

.modal__desc {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--paper-soft);
}

.modal__desc p + p { margin-top: 0.85em; }

.modal__specs { display: grid; gap: var(--space-2); }

.modal__specs-title {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--neon);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.modal__spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--rule);
}

.modal__spec-row:last-child { border-bottom: none; }

.modal__spec-label { color: var(--paper-mute); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; }
.modal__spec-value { color: var(--paper); letter-spacing: 0.04em; }

.modal__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--rule);
}

/* -------- 25. About page -------- */
.about-intro {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: var(--space-9);
  align-items: start;
}

.about-intro__copy {
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.2rem);
  line-height: 1.65;
}

.about-intro__copy p { color: var(--paper-soft); margin-bottom: var(--space-4); }

.about-intro__copy p:first-child::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4.5em;
  float: left;
  line-height: 0.82;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: var(--neon);
}

.about-meta {
  position: sticky;
  top: calc(var(--ticker-h) + var(--nav-h) + var(--space-5));
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.about-meta__row {
  display: grid;
  gap: var(--space-1);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--rule);
}

.about-meta__label {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  font-weight: 500;
}

.about-meta__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--paper);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* CTA banner */
.cta-banner {
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
  background-color: var(--bg-panel);
  border-block: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner {
  max-width: 740px;
  margin-inline: auto;
  display: grid;
  gap: var(--space-4);
  justify-items: center;
  position: relative;
  z-index: 2;
}

.cta-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-3);
}

/* -------- 26. Contact page -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: var(--space-8);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 0;
  position: sticky;
  top: calc(var(--ticker-h) + var(--nav-h) + var(--space-5));
  border-top: 1px solid var(--rule);
}

.contact-info__block {
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--rule);
}

.contact-info__label {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--paper-dim);
  margin-bottom: var(--space-3);
  display: block;
  font-weight: 500;
}

.contact-info__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: var(--space-2);
  display: block;
  letter-spacing: -0.018em;
}

.contact-info__value a:hover { color: var(--neon); }

.contact-info__sub {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--paper-dim);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form {
  background-color: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-5), 4vw, var(--space-7));
  display: grid;
  gap: var(--space-5);
  position: relative;
}

.contact-form::before {
  content: "INQUIRY 01";
  position: absolute;
  top: -1px;
  left: 0;
  background-color: var(--neon);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}

.form-group { display: grid; gap: var(--space-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

.form-label {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--paper-dim);
  font-weight: 500;
}

.form-label .required { color: var(--neon); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  color: var(--paper);
  font-size: var(--fs-base);
  transition: border-color var(--t-fast) var(--ease-out-quart),
              background-color var(--t-fast) var(--ease-out-quart);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--neon);
  background-color: rgba(0, 212, 255, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--paper-mute); }

.form-textarea { min-height: 140px; resize: vertical; line-height: 1.55; }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%2394A3B8' stroke-width='1.2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option { background-color: var(--bg-panel); color: var(--paper); }

.honeypot { position: absolute; left: -9999px; visibility: hidden; }

.form-submit { margin-top: var(--space-3); }

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-7);
  background-color: var(--bg-panel);
  border: 1px solid var(--neon);
  border-radius: var(--radius-lg);
  color: var(--paper);
}

.form-success.is-visible { display: block; }

.form-success__icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: var(--space-3);
  background-color: var(--neon);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bg-deep);
}

.form-success__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.form-success__text {
  font-size: var(--fs-base);
  color: var(--paper-dim);
  line-height: 1.55;
}

/* -------- 26b. Contact direct (no form — phone + WhatsApp only) -------- */
.contact-direct {
  background-color: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-5), 4vw, var(--space-7));
  display: grid;
  gap: var(--space-5);
  position: relative;
}

.contact-direct__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon);
  font-weight: 600;
}

.contact-direct__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-2xl);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.contact-direct__title em {
  color: var(--neon);
  font-style: italic;
}

.contact-direct__text {
  color: var(--paper-soft);
  font-size: var(--fs-md);
  line-height: 1.6;
  max-width: 52ch;
}

.contact-direct__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.contact-direct__list {
  display: grid;
  gap: 0;
  margin-top: var(--space-3);
  border-top: 1px solid var(--rule);
}

.contact-direct__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.contact-direct__row:last-child {
  border-bottom: none;
}

.contact-direct__row dt {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  font-weight: 500;
}

.contact-direct__row dd {
  color: var(--paper);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

@media (max-width: 540px) {
  .contact-direct__row { grid-template-columns: 1fr; gap: var(--space-1); }
}

/* -------- 27. Sell callout -------- */
.sell-callout {
  margin-top: var(--space-9);
  padding: clamp(var(--space-6), 5vw, var(--space-9));
  background-color: var(--bg-panel);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--neon);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-5);
  align-items: center;
  position: relative;
}

.sell-callout__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-2xl);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
  max-width: 18ch;
  color: var(--paper);
}

.sell-callout__title em { color: var(--neon); }

.sell-callout__text {
  color: var(--paper-dim);
  font-size: var(--fs-md);
  max-width: 50ch;
  line-height: 1.55;
}

.sell-callout__cta { justify-self: end; }

/* -------- 28. Cursor (desktop) -------- */
.cursor { display: none; }

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width var(--t-fast) var(--ease-spring),
                height var(--t-fast) var(--ease-spring),
                background-color var(--t-fast) var(--ease-out-quart);
    transform: translate(-50%, -50%);
    will-change: transform;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
  }

  .cursor.is-hover {
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 1px solid var(--neon);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.4);
  }
}

/* -------- 29. Reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out-quart),
              transform 800ms var(--ease-out-quart);
}

.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* -------- 30. Responsive -------- */
@media (max-width: 1024px) {
  .visit__inner { grid-template-columns: 1fr; }
  .visit__info { border-right: none; border-bottom: 1px solid var(--rule); }
  .visit__map { min-height: 320px; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand-block { grid-column: 1 / -1; max-width: none; margin-bottom: var(--space-5); }
  .about-intro { grid-template-columns: 1fr; }
  .about-meta { position: static; grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .modal__panel { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .modal__main-image { aspect-ratio: 4/3; }
  .modal__media { border-right: none; border-bottom: 1px solid var(--rule); }
}

@media (max-width: 768px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__bottom { grid-template-columns: 1fr; gap: var(--space-5); }
  .hero__stats { gap: var(--space-5); grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .sell-callout { grid-template-columns: 1fr; }
  .sell-callout__cta { justify-self: start; }
  .form-row { grid-template-columns: 1fr; }
  .filters__groups { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: var(--space-2); scrollbar-width: none; }
  .filters__groups::-webkit-scrollbar { display: none; }
  .modal__body { padding: var(--space-5); }
  .ticker__track { animation-duration: 36s; }
  .fab-whatsapp {
    width: 56px;
    height: 56px;
    bottom: var(--space-4);
    right: var(--space-4);
  }
  .fab-whatsapp svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .nav__brand-since { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .about-meta { grid-template-columns: 1fr; }
}

/* -------- 31. Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cursor { display: none !important; }
  .ticker__track { animation: none !important; }
  body::after { display: none; }
  .fab-whatsapp { animation: none !important; }
}

/* -------- 32. Focus visible -------- */
:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

/* -------- 33. Print -------- */
@media print {
  .nav, .ticker, .footer, .hero__scroll, .modal, .fab-whatsapp,
  body::after, body::before {
    display: none !important;
  }
}

/* ================================================================
   §33b — Product images
   ================================================================ */

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(20px, 7%, 44px);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.5));
  transition: transform 700ms var(--ease-out-quart),
              filter 320ms var(--ease-out-quart);
  z-index: 2;
  background-color: transparent;
}

/* The platform-tinted halo background already lives on .product-card__media
   (see §14 editorial premium block) and applies to both --has-image and
   visual-only cards — so we DON'T override the background here. We only
   bump the highlight glow and tweak hover transform for image cards. */
.product-card--has-image .product-card__media {
  position: relative;
}

.product-card--has-image:hover .product-card__img {
  transform: scale(1.05) translateY(-4px);
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.75))
          drop-shadow(0 0 22px color-mix(in srgb, var(--accent) 22%, transparent));
}

/* Modal main image with real photo */
.modal__main-image--has-image {
  font-size: 0;
  padding: 0;
}

.modal__main-image--has-image::before {
  display: none;
}

.modal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(24px, 5%, 56px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.7));
}

/* ================================================================
   §34 — PREMIUM LAYER
   Scroll progress, intro overlay, 3D tilts, glow halos,
   floating console glyphs, animated CSS console mockup,
   glitch text, premium reveals.
   ================================================================ */

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  height: 2px;
  z-index: 102;
  pointer-events: none;
  background-color: transparent;
}

.scroll-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--neon-bright), var(--magenta));
  box-shadow: 0 0 12px var(--neon);
  transition: width 80ms linear;
  transform-origin: left center;
}

/* ---- Page intro overlay ---- */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--bg-deep);
  display: grid;
  place-items: center;
  pointer-events: auto;
  overflow: hidden;
}

.intro-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0, 212, 255, 0.18), transparent 70%);
  animation: introGlow 1.4s ease-out forwards;
}

.intro-overlay__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  animation: introFade 1s ease-out forwards;
}

.intro-overlay__mark {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background-color: var(--bg-deep);
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.4), 0 12px 40px -6px rgba(0, 212, 255, 0.45);
  position: relative;
  animation: introMark 900ms 100ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.intro-overlay__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--paper);
  letter-spacing: -0.02em;
  animation: introUp 800ms 350ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.intro-overlay__tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-bright);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: introUp 800ms 500ms cubic-bezier(0.19, 1, 0.22, 1) both;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.intro-overlay__tag::before,
.intro-overlay__tag::after {
  content: "";
  width: 24px;
  height: 1px;
  background-color: var(--neon);
}

.intro-overlay.is-leaving {
  animation: introLeave 700ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes introMark {
  from { opacity: 0; transform: scale(0.6) rotate(-12deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes introUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes introGlow {
  0% { opacity: 0; transform: scale(0.8); }
  60% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.6; transform: scale(1); }
}

@keyframes introLeave {
  0% { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
  100% { opacity: 1; transform: translateY(0); clip-path: inset(100% 0 0 0); }
}

/* ---- Hero floating glyphs (PlayStation buttons) ---- */
.hero__glyphs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__glyph {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--neon);
  display: grid;
  place-items: center;
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  opacity: 0.4;
  background-color: rgba(0, 212, 255, 0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero__glyph--1 { top: 14%; left: 8%;  animation: glyphFloat 9s ease-in-out infinite; }
.hero__glyph--2 { top: 22%; right: 12%; animation: glyphFloat 11s 1s ease-in-out infinite reverse; }
.hero__glyph--3 { bottom: 28%; left: 14%; animation: glyphFloat 13s 2s ease-in-out infinite; }
.hero__glyph--4 { bottom: 18%; right: 8%;  animation: glyphFloat 10s 3s ease-in-out infinite reverse; color: var(--magenta); border-color: var(--magenta); background-color: rgba(255, 45, 134, 0.05); }

@keyframes glyphFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(12px, -16px) rotate(8deg); }
  50% { transform: translate(-8px, 12px) rotate(-5deg); }
  75% { transform: translate(16px, 8px) rotate(4deg); }
}

/* ---- CSS Console mockup (PS-inspired silhouette in hero) ---- */
.hero__console {
  position: absolute;
  z-index: 1;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(240px, 30vw, 420px);
  aspect-ratio: 1.4 / 1;
  pointer-events: none;
  opacity: 0.22;
  filter: blur(0.4px);
}

.hero__console::before,
.hero__console::after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

/* Console body (slanted Z-shape) */
.hero__console::before {
  inset: 24% 8% 24% 8%;
  background: linear-gradient(135deg, var(--neon) 0%, transparent 60%);
  border: 1.5px solid var(--neon);
  transform: skewY(-6deg);
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
}

/* Top stripe — accent */
.hero__console::after {
  top: 26%;
  left: 12%;
  right: 12%;
  height: 6px;
  background-color: var(--neon);
  transform: skewY(-6deg);
  box-shadow: 0 0 24px var(--neon);
}

@media (max-width: 900px) {
  .hero__console { display: none; }
}

/* ---- 3D tilt hover container ---- */
.tilt {
  transform-style: preserve-3d;
  transition: transform 200ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.tilt > * {
  transform: translateZ(0);
  transition: transform 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* §35 product-card spotlight is defined in §14 (editorial premium block).
   This older overlay was removed to avoid stomping the platform-tinted halo. */

/* ---- Glitch text effect ---- */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

.glitch::before {
  color: var(--magenta);
  transform: translate(2px, 0);
  mix-blend-mode: screen;
}

.glitch::after {
  color: var(--neon);
  transform: translate(-2px, 0);
  mix-blend-mode: screen;
}

.glitch.is-glitching::before {
  animation: glitchA 600ms steps(8) forwards;
}

.glitch.is-glitching::after {
  animation: glitchB 600ms steps(8) forwards;
}

@keyframes glitchA {
  0%   { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
  20%  { opacity: 1; transform: translate(3px, -1px); clip-path: inset(0 0 70% 0); }
  40%  { opacity: 1; transform: translate(-2px, 2px); clip-path: inset(45% 0 25% 0); }
  60%  { opacity: 1; transform: translate(2px, 1px); clip-path: inset(70% 0 0 0); }
  80%  { opacity: 1; transform: translate(-1px, -2px); clip-path: inset(20% 0 60% 0); }
  100% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

@keyframes glitchB {
  0%   { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
  20%  { opacity: 1; transform: translate(-3px, 1px); clip-path: inset(60% 0 10% 0); }
  40%  { opacity: 1; transform: translate(2px, -2px); clip-path: inset(30% 0 40% 0); }
  60%  { opacity: 1; transform: translate(-2px, -1px); clip-path: inset(0 0 65% 0); }
  80%  { opacity: 1; transform: translate(1px, 2px); clip-path: inset(50% 0 25% 0); }
  100% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

/* ---- Character split for hero ---- */
.split-text {
  display: inline-block;
  white-space: pre;
}

.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(8deg);
  transition: opacity 600ms cubic-bezier(0.19, 1, 0.22, 1),
              transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform, opacity;
}

.split-text.is-visible .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* ---- Rolling-digit stat counter ---- */
.digit-roll {
  display: inline-flex;
  overflow: hidden;
  height: 1em;
  line-height: 1;
  vertical-align: baseline;
}

.digit-roll__col {
  display: inline-block;
  transform: translateY(0);
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.digit-roll__col span {
  display: block;
  height: 1em;
  line-height: 1;
}

/* ---- Glow border on hover (CTAs / cards) ---- */
.glow-frame {
  position: relative;
  isolation: isolate;
}

.glow-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--neon), transparent 40%, transparent 60%, var(--magenta));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out-quart);
}

.glow-frame:hover::before { opacity: 0.5; }

/* ---- Section transitions / dramatic reveal ---- */
.dramatic-reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  filter: blur(8px);
  transition: opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1),
              transform 1.1s cubic-bezier(0.19, 1, 0.22, 1),
              filter 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.dramatic-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ---- Animated underline draw under em ---- */
em {
  position: relative;
}

.h-display em::after,
.h-1 em::after,
.h-2 em::after,
.h-3 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.06em;
  background: linear-gradient(90deg, var(--neon), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.is-revealed .h-display em::after,
.is-revealed .h-1 em::after,
.is-revealed .h-2 em::after,
.is-revealed .h-3 em::after,
.h-display.is-revealed em::after,
.h-1.is-revealed em::after,
.h-2.is-revealed em::after,
.h-3.is-revealed em::after {
  transform: scaleX(0.85);
}

/* ---- Refined cursor with trail ---- */
@media (hover: hover) and (pointer: fine) {
  .cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transition: width 300ms var(--ease-spring),
                height 300ms var(--ease-spring),
                opacity 300ms var(--ease-out-quart);
    transform: translate(-50%, -50%);
    will-change: transform;
    opacity: 0.5;
    mix-blend-mode: screen;
  }

  .cursor-trail.is-hover {
    width: 56px;
    height: 56px;
    opacity: 0.9;
  }
}

/* ---- Animated section divider (line draw) ---- */
.section-head__center::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--neon);
  margin-bottom: var(--space-3);
  transition: width 1.4s 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.is-revealed .section-head__center::before,
.section-head__center.is-revealed::before {
  width: 80px;
}

/* ---- Card 3D depth on hover ---- */
.product-card,
.service-card,
.category {
  perspective: 1000px;
}

.product-card[data-tilt],
.service-card[data-tilt],
.category[data-tilt] {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition: transform 300ms var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              background-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart);
}

/* ---- Hero parallax mouse layer ---- */
.hero__parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

/* ---- Floating action label tooltip ---- */
.fab-whatsapp {
  position: fixed;
}

.fab-whatsapp__label {
  position: absolute;
  right: calc(var(--whatsapp-fab) + 12px);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bg-deep);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--rule-strong);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out-quart),
              transform var(--t-base) var(--ease-out-quart);
}

.fab-whatsapp__label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: var(--bg-deep);
  border-right: 1px solid var(--rule-strong);
  border-top: 1px solid var(--rule-strong);
}

.fab-whatsapp:hover .fab-whatsapp__label {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

@media (max-width: 768px) {
  .fab-whatsapp__label { display: none; }
}

/* Marquees scroll continuously — no hover/tap pause */

/* ---- Stat numeral with shine ---- */
.hero__stat-num,
.heritage__stat-num,
.about-meta__value {
  background-image: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---- Decorative noise dots in section heads ---- */
.section-head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 80px;
  height: 8px;
  background-image: radial-gradient(circle, var(--rule-strong) 1px, transparent 1.5px);
  background-size: 8px 8px;
  pointer-events: none;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .section-head::after { display: none; }
}

/* ---- Premium hover lift on rating chip ---- */
.rating-chip {
  transition: transform var(--t-base) var(--ease-spring),
              border-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart);
}

.rating-chip:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px -8px rgba(255, 184, 0, 0.4);
}

/* ---- Animated scroll prompt under hero ---- */
.scroll-prompt {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: var(--paper-mute);
  text-transform: uppercase;
  pointer-events: none;
}

/* Hide on mobile to avoid clashing with the hero stats row */
@media (max-width: 768px) {
  .scroll-prompt { display: none; }
}

.scroll-prompt__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--neon));
  position: relative;
  overflow: hidden;
}

.scroll-prompt__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--neon);
  animation: scrollProbe 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--neon);
}

@keyframes scrollProbe {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(220%); }
}

/* ---- Premium reveal on stagger items with rotation ---- */
.stagger.premium > * {
  opacity: 0;
  transform: translateY(40px) rotate(-1.5deg) scale(0.96);
  filter: blur(6px);
}

.stagger.premium.is-revealed > * {
  opacity: 1;
  transform: translateY(0) rotate(0) scale(1);
  filter: blur(0);
  transition: opacity 900ms var(--ease-out-quart),
              transform 900ms var(--ease-out-quart),
              filter 700ms var(--ease-out-quart);
}

/* ---- Floating console icon (decorative) ---- */
.console-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--neon);
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon);
  vertical-align: middle;
  margin-inline: 4px;
}

/* ---- Reduced motion respect for premium layer ---- */
@media (prefers-reduced-motion: reduce) {
  .hero__glyph, .scroll-prompt__line::after, .intro-overlay,
  .glitch::before, .glitch::after, .dramatic-reveal {
    animation: none !important;
    transition: none !important;
  }
  .dramatic-reveal { opacity: 1; transform: none; filter: none; }
  .split-text .char { opacity: 1; transform: none; }
  .stagger.premium > * { opacity: 1; transform: none; filter: none; }
}

/* ================================================================
   §35 — CINEMATIC LAYER (added in this revision)
   Aurora orbs, hero spotlight, floating product portraits,
   showcase parade, platform wall, decorative section atmospherics.
   ================================================================ */

/* ---- 35.1 Hero aurora orbs ---- */
.hero__aurora {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  pointer-events: none;
  filter: blur(80px) saturate(1.4);
  opacity: 0.7;
  mix-blend-mode: screen;
}

.hero__aurora-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.hero__aurora-orb--cyan {
  width: 46vw;
  height: 46vw;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.55) 0%, rgba(0, 212, 255, 0) 65%);
  animation: orbDriftA 18s ease-in-out infinite;
}

.hero__aurora-orb--magenta {
  width: 38vw;
  height: 38vw;
  bottom: -10%;
  right: -6%;
  background: radial-gradient(circle, rgba(255, 45, 134, 0.45) 0%, rgba(255, 45, 134, 0) 65%);
  animation: orbDriftB 22s ease-in-out infinite;
}

.hero__aurora-orb--violet {
  width: 30vw;
  height: 30vw;
  top: 38%;
  left: 38%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.32) 0%, rgba(124, 58, 237, 0) 65%);
  animation: orbDriftC 26s ease-in-out infinite;
}

@keyframes orbDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 4%) scale(1.08); }
}

@keyframes orbDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5%, -3%) scale(1.1); }
}

@keyframes orbDriftC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4%, 6%) scale(0.92); }
}

/* ---- 35.2 Hero mouse-tracking spotlight ---- */
.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    520px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 212, 255, 0.18),
    rgba(0, 212, 255, 0) 60%
  );
  transition: opacity 600ms var(--ease-out-quart);
}

.hero[data-hero-spotlight]:hover .hero__spotlight,
.hero[data-hero-spotlight].is-active .hero__spotlight {
  opacity: 1;
}

/* ---- 35.3 Subtle CRT scanlines on hero (toned down) ---- */
.hero__scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0px,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: overlay;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 90%);
}

/* ---- 35.4 Hero product showcase card (single focal piece) ---- */
.hero__showcase {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(2%, 4vw, 6%);
  transform: translateY(-50%) rotate(-2deg);
  width: clamp(260px, 24vw, 340px);
  background-color: rgba(14, 20, 30, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: clamp(var(--space-4), 1.4vw, var(--space-5));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 212, 255, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  animation: heroShowcaseFloat 11s ease-in-out infinite;
  will-change: transform;
}

.hero__showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(var(--space-4), 1.4vw, var(--space-5));
  right: clamp(var(--space-4), 1.4vw, var(--space-5));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon) 50%, transparent);
  opacity: 0.6;
}

@keyframes heroShowcaseFloat {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50% { transform: translateY(calc(-50% - 10px)) rotate(-1deg); }
}

.hero__showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-bright);
  font-weight: 500;
}

.hero__showcase-dot {
  width: 6px;
  height: 6px;
  background-color: var(--moss);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--moss);
  animation: pulse 2.5s ease-out infinite;
}

.hero__showcase-image {
  aspect-ratio: 5 / 4;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero__showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, rgba(6, 9, 15, 0.5) 100%);
  pointer-events: none;
}

.hero__showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(8px, 1.2vw, 16px);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.hero__showcase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--rule-faint);
}

.hero__showcase-platform {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 500;
  margin-bottom: 3px;
}

.hero__showcase-name {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100, "opsz" 24;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--paper);
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.hero__showcase-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--paper);
  letter-spacing: -0.012em;
  font-feature-settings: "tnum" 1;
}

@media (max-width: 1100px) {
  .hero__showcase {
    width: clamp(240px, 28vw, 280px);
    right: 3%;
  }
}

@media (max-width: 900px) {
  .hero__showcase { display: none; }
}

/* Console silhouette is now redundant with the showcase card */
.hero__console { display: none; }

/* ---- 35.5 Showcase parade (marquee strip) ---- */
.showcase {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem) clamp(3rem, 5vw, 5rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-panel) 50%, var(--bg-deep) 100%);
  isolation: isolate;
}

.showcase__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
}

.showcase__orb {
  position: absolute;
  border-radius: 50%;
}

.showcase__orb--a {
  width: 50vw;
  height: 50vw;
  top: -25%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35) 0%, transparent 65%);
}

.showcase__orb--b {
  width: 45vw;
  height: 45vw;
  bottom: -25%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 45, 134, 0.25) 0%, transparent 65%);
}

.showcase__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong) 20%, var(--neon) 50%, var(--rule-strong) 80%, transparent);
  opacity: 0.6;
}

.showcase__edge--top { top: 0; }
.showcase__edge--bottom { bottom: 0; }

.showcase__heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  align-items: flex-start;
}

.showcase__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.875rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 22ch;
}

.showcase__title em {
  color: var(--neon);
  font-style: italic;
}

.showcase__rail {
  display: flex;
  gap: var(--space-5);
  width: max-content;
  animation: showcaseScroll 60s linear infinite;
  padding-inline: var(--gutter);
  will-change: transform;
}

.showcase__card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 300px);
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, #1B2434 0%, #0E141E 100%);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: clamp(var(--space-4), 1.5vw, var(--space-5));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition:
    border-color 320ms var(--ease-out-quart),
    transform 420ms var(--ease-out-quart),
    box-shadow 420ms var(--ease-out-quart);
  isolation: isolate;
}

.showcase__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--neon);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 600ms var(--ease-out-quart);
  z-index: 4;
}

.showcase__card::after {
  /* Soft vignette */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent 40%, rgba(6, 9, 15, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.showcase__card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.7);
}

.showcase__card:hover::before {
  transform: scaleX(1);
}

.showcase__card-img {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  z-index: 2;
  margin-block: var(--space-3) var(--space-2);
}

.showcase__card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.65));
  transition: transform 700ms var(--ease-out-quart);
}

.showcase__card:hover .showcase__card-img img {
  transform: scale(1.05) translateY(-3px);
}

.showcase__card-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--rule-faint);
}

.showcase__card-label {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100, "opsz" 24;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--paper);
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.showcase__card-tag {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper-mute);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding-left: 10px;
}

.showcase__card-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--neon);
  border-radius: 50%;
  transform: translateY(-50%);
}

@keyframes showcaseScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .showcase__rail { animation: none !important; }
}

/* ---- 35.6 Platform wall ---- */
.platforms {
  position: relative;
  padding-block: var(--section-pad-y);
  overflow: hidden;
  background-color: var(--bg-deep);
}

.platforms__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(0, 212, 255, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 60% at 20% 100%, rgba(255, 45, 134, 0.08), transparent 75%);
}

.platforms__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 2fr;
  gap: clamp(var(--space-6), 5vw, var(--space-9));
  align-items: end;
}

.platforms__head {
  display: grid;
  gap: var(--space-3);
  position: sticky;
  top: calc(var(--ticker-h) + var(--nav-h) + var(--space-5));
  align-self: start;
}

.platforms__title em {
  color: var(--neon);
  font-style: italic;
}

.platforms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--bg-panel);
}

.platform-tile {
  position: relative;
  padding: clamp(var(--space-5), 3vw, var(--space-7));
  display: grid;
  gap: var(--space-3);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background-color: transparent;
  overflow: hidden;
  transition:
    background-color var(--t-base) var(--ease-out-quart),
    transform var(--t-base) var(--ease-out-quart);
  isolation: isolate;
}

.platform-tile:nth-child(2n) { border-right: none; }
.platform-tile:nth-last-child(-n+2) { border-bottom: none; }

.platform-tile::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--neon) 0%, transparent 40%, transparent 60%, var(--magenta) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--t-base) var(--ease-out-quart);
  border-radius: inherit;
}

.platform-tile:hover {
  background-color: var(--bg-card);
  transform: translateY(-3px);
}

.platform-tile:hover::after { opacity: 0.18; }

.platform-tile__num {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: 0.18em;
  color: var(--neon);
  font-weight: 600;
}

.platform-tile__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
}

.platform-tile__lineup {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  line-height: 1.5;
  font-weight: 500;
  max-width: 28ch;
}

.platform-tile__glyph {
  position: absolute;
  right: clamp(var(--space-4), 2.5vw, var(--space-6));
  bottom: clamp(var(--space-4), 2.5vw, var(--space-6));
  font-family: var(--font-stat);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(0, 212, 255, 0.25);
  pointer-events: none;
  user-select: none;
  transition: color var(--t-base) var(--ease-out-quart),
              -webkit-text-stroke-color var(--t-base) var(--ease-out-quart);
}

.platform-tile:hover .platform-tile__glyph {
  -webkit-text-stroke-color: var(--neon);
}

.platform-tile--microsoft .platform-tile__glyph { -webkit-text-stroke-color: rgba(16, 185, 129, 0.25); }
.platform-tile--microsoft:hover .platform-tile__glyph { -webkit-text-stroke-color: var(--moss); }

.platform-tile--nintendo .platform-tile__glyph { -webkit-text-stroke-color: rgba(255, 45, 134, 0.25); }
.platform-tile--nintendo:hover .platform-tile__glyph { -webkit-text-stroke-color: var(--magenta); }

.platform-tile--studios .platform-tile__glyph { -webkit-text-stroke-color: rgba(255, 184, 0, 0.25); }
.platform-tile--studios:hover .platform-tile__glyph { -webkit-text-stroke-color: var(--gold); }

@media (max-width: 900px) {
  .platforms__inner { grid-template-columns: 1fr; }
  .platforms__head { position: static; }
}

@media (max-width: 540px) {
  .platforms__grid { grid-template-columns: 1fr; }
  .platform-tile { border-right: none !important; border-bottom: 1px solid var(--rule) !important; }
  .platform-tile:last-child { border-bottom: none !important; }
}

/* ---- 35.7 Decorative atmospherics on category cards ---- */
.category {
  isolation: isolate;
}

.category::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(135deg, rgba(0, 212, 255, 0.06), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 45, 134, 0.05), transparent 50%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out-quart);
}

.category:hover::after { opacity: 1; }

/* Category corner ticks */
.category {
  --tick-c: var(--rule-strong);
}

.category:hover { --tick-c: var(--neon); }

.category > * { position: relative; z-index: 2; }

/* ---- 35.8 Why-cell soft glow on hover ---- */
.why-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 0%, rgba(0, 212, 255, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out-quart);
}

.why-cell:hover::after { opacity: 1; }

.why-cell > * { position: relative; z-index: 1; }

/* ---- 35.9 Reviews — atmospheric watermark ---- */
.reviews {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.reviews::before {
  content: "★ 4.7";
  position: absolute;
  z-index: 0;
  right: -6%;
  bottom: -10%;
  font-family: var(--font-stat);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(14rem, 30vw, 28rem);
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 212, 255, 0.08);
  pointer-events: none;
  user-select: none;
}

.reviews .container { position: relative; z-index: 1; }

/* Soften review backgrounds */
.review {
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 212, 255, 0.05), transparent 50%),
    var(--bg-card);
}

/* ---- 35.10 Service card icon glow ---- */
.service-card__icon {
  position: relative;
  overflow: visible;
}

.service-card__icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out-quart);
  z-index: -1;
  filter: blur(8px);
}

.service-card:hover .service-card__icon::after { opacity: 0.8; }

/* ---- 35.11 Decorative section divider — line draw with dot ---- */
.section + .section,
.showcase + .section,
.section + .platforms,
.platforms + .section {
  position: relative;
}

.section + .section::before,
.section + .platforms::before,
.platforms + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong) 40%, var(--neon) 50%, var(--rule-strong) 60%, transparent);
  opacity: 0.55;
}

/* ---- 35.12 Featured grid — layered backdrop ---- */
.product-grid--featured {
  position: relative;
  isolation: isolate;
}

.product-grid--featured::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20% -10%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(0, 212, 255, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(255, 45, 134, 0.06), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* ---- 35.13 Premium CTA-banner aurora ---- */
.cta-banner {
  isolation: isolate;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-banner::before {
  width: 480px;
  height: 480px;
  top: -30%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35), transparent 70%);
  animation: orbDriftA 22s ease-in-out infinite;
}

.cta-banner::after {
  width: 380px;
  height: 380px;
  bottom: -30%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 45, 134, 0.25), transparent 70%);
  animation: orbDriftB 26s ease-in-out infinite;
}

/* ---- 35.14 Footer — animated big mark glow ---- */
.footer__big-mark {
  position: relative;
  isolation: isolate;
}

.footer__big-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% -5%;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(0, 212, 255, 0.10), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* ---- 35.15 Light beam sweep across nav (subtle) ---- */
.nav.is-scrolled::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon) 50%, transparent);
  opacity: 0.5;
  animation: navSweep 8s ease-in-out infinite;
}

@keyframes navSweep {
  0%, 100% { transform: scaleX(0.2); transform-origin: 0% 50%; opacity: 0.2; }
  50% { transform: scaleX(1); opacity: 0.7; }
}

/* ---- 35.16 Product card light sweep on hover ---- */
.product-card--has-image .product-card__media::before,
.product-card .product-card__media::after {
  /* keep existing rules — additive sweep below */
}

.product-card .product-card__media .product-card__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 48%,
    transparent 60%
  );
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 2;
}

.product-card:hover .product-card__media .product-card__sheen {
  transition: transform 1s var(--ease-out-quart);
  transform: translateX(100%);
}

/* ---- 35.17 Rating chip soft pulse for hero copy ---- */
.hero__meta .rating-chip {
  box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.06), 0 8px 28px -12px rgba(255, 184, 0, 0.25);
}

/* ---- 35.18 Hero numeral — soft glow halo behind it ---- */
.hero__numeral {
  position: absolute;
  isolation: isolate;
}

.hero__numeral::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -10%;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0, 212, 255, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* ---- 35.19 Faded brand watermark behind hero copy ---- */
.hero__inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  inset: -20% -5% auto auto;
  width: 60%;
  height: 80%;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.06), transparent 60%);
  filter: blur(40px);
}

/* ---- 35.20 Magnetic glow around primary buttons ---- */
.btn--whatsapp {
  position: relative;
  isolation: isolate;
}

.btn--whatsapp::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hi) 60%, var(--neon) 100%);
  opacity: 0;
  filter: blur(10px);
  transition: opacity var(--t-base) var(--ease-out-quart);
}

.btn--whatsapp:hover::after { opacity: 0.6; }

/* ---- 35.21 Decorative tick corner brackets on category cards ---- */
.category > .category__num::before,
.category > .category__num::after {
  /* reserved — we draw via category::before instead */
}

/* ---- 35.22 Performance / responsive tweaks for cinematic layer ---- */
@media (max-width: 640px) {
  .hero__aurora { filter: blur(40px); opacity: 0.5; }
  .showcase__bg { filter: blur(40px); opacity: 0.4; }
  .reviews::before { font-size: 12rem; }
  .showcase__card { width: 200px; }
  .showcase__heading { padding-inline: var(--gutter); }
  .showcase__rail { gap: var(--space-4); }
  .platform-tile__glyph { display: none; }
  .platform-tile { padding: var(--space-5) !important; }
  .page-header::before { background-size: 40px 40px; }
  .page-header::after { left: var(--gutter); }
}

@media (max-width: 480px) {
  .product-card__media { aspect-ratio: 5/3.5; }
  .product-card__title { font-size: 0.95rem; min-height: 2.2em; }
  .product-card__platform { font-size: 0.6rem; letter-spacing: 0.14em; }
  .platforms__title { font-size: clamp(1.3rem, 7vw, 1.75rem); }
  .platforms__grid { grid-template-columns: 1fr; }
  .platform-tile { border-right: none !important; border-bottom: 1px solid var(--rule) !important; }
  .platform-tile:last-child { border-bottom: none !important; }
  .footer__big-mark { font-size: clamp(4.5rem, 22vw, 7rem); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__aurora-orb,
  .hero__portrait,
  .hero__showcase,
  .cta-banner::before,
  .cta-banner::after,
  .nav.is-scrolled::after {
    animation: none !important;
  }
}

/* ================================================================
   §36 — REVIEWS POLISH + FOOTER FEATURE MARK
   ================================================================ */

/* ---- 36.1 Tinted review avatars ---- */
.review__avatar--cyan    { background: linear-gradient(135deg, #00D4FF, #0095B7); }
.review__avatar--magenta { background: linear-gradient(135deg, #FF66A8, #B82666); color: #FFFFFF; }
.review__avatar--violet  { background: linear-gradient(135deg, #A78BFA, #6D28D9); color: #FFFFFF; }
.review__avatar--gold    { background: linear-gradient(135deg, #FFD86F, #B47B00); }

/* ---- 36.2 Source line w/ Google "G" SVG ---- */
.review__source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 500;
  margin-top: 3px;
}

.review__source svg {
  flex-shrink: 0;
  filter: saturate(1.05);
}

.review__author strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  text-transform: none;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
}

.review__guide-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  padding: 2px 6px;
  border-radius: 2px;
  background-color: color-mix(in srgb, var(--gold) 10%, transparent);
  font-weight: 600;
}

/* ---- 36.3 Refined review card layout ---- */
.review__cite {
  align-items: flex-start;
  gap: var(--space-3);
}

.review__avatar {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

/* ---- 36.4 Footer big-mark — feature treatment ---- */
.footer__big-mark {
  font-size: clamp(6rem, 22vw, 20rem);
  letter-spacing: -0.05em;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: rgba(0, 212, 255, 0.18);
  position: relative;
  margin-block: clamp(var(--space-7), 8vw, var(--space-9));
}

.footer__big-mark::after {
  content: "";
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 18vw, 240px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon) 50%, transparent);
  opacity: 0.7;
}

.footer__big-mark em {
  font-style: italic;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ================================================================
   §37 — RESTRAINT PASS
   Quiets the cinematic layer (§35 / §36): disables aurora orbs,
   spotlight washes, multi-color glows, and per-platform color tints.
   The page reads black + white + gray with a single restrained blue
   accent — used only for hover/focus, primary buttons, and the
   "available" indicator.
   ================================================================ */

.hero__aurora,
.hero__spotlight,
.platforms__bg,
.cta-banner::before,
.cta-banner::after,
.product-grid--featured::before,
.footer__big-mark::before,
.hero__numeral::before,
.hero__inner::after,
.why-cell::after,
.service-card__icon::after {
  display: none !important;
}

.showcase {
  background-color: var(--bg-deep);
  background-image: none;
}
.showcase__bg { display: none; }

.category::after { background: none !important; }
.platform-tile::after { background: none !important; }

.platform-tile__glyph,
.platform-tile--microsoft .platform-tile__glyph,
.platform-tile--nintendo .platform-tile__glyph,
.platform-tile--studios .platform-tile__glyph {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.10);
}
.platform-tile:hover .platform-tile__glyph,
.platform-tile--microsoft:hover .platform-tile__glyph,
.platform-tile--nintendo:hover .platform-tile__glyph,
.platform-tile--studios:hover .platform-tile__glyph {
  -webkit-text-stroke-color: var(--neon);
}

.reviews::before {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.06) !important;
}
.review {
  background: var(--bg-card) !important;
}

.review__avatar--cyan,
.review__avatar--magenta,
.review__avatar--violet,
.review__avatar--gold {
  background: var(--bg-card-hi) !important;
  color: var(--paper) !important;
}

.hero__meta .rating-chip {
  box-shadow: 0 0 0 1px var(--rule), 0 8px 28px -12px rgba(0, 0, 0, 0.5);
}

.review__guide-tag {
  color: var(--paper-soft);
  border-color: var(--rule-strong);
  background-color: rgba(255, 255, 255, 0.03);
}

.footer__big-mark {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.06);
}

.section + .section::before,
.section + .platforms::before,
.platforms + .section::before {
  opacity: 0.4;
}

/* WhatsApp button keeps brand green; drop the blue tail in the magnetic glow. */
.btn--whatsapp::after {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hi) 100%) !important;
}

/* Intro overlay — uses the logo image, no radial glow wash */
.intro-overlay::before { display: none !important; }

/* Hero floating glyphs — reduce to a single neutral set, hide the magenta one */
.hero__glyph--4 { display: none !important; }

/* Hero showcase card — drop the cyan ring in the box-shadow */
.hero__showcase {
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px var(--rule),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* ============================================
   PRODUCT DETAIL PAGE (replaces the modal)
   ============================================ */

.product-loading {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding-top: calc(var(--ticker-h) + var(--nav-h) + var(--space-7));
}

.product-loading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: var(--paper-mute);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.product-loading__spinner {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--rule-strong);
  border-top-color: var(--neon);
  border-radius: 50%;
  animation: pdSpin 0.9s linear infinite;
}

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

.product-detail {
  position: relative;
  padding-top: calc(var(--ticker-h) + var(--nav-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(3rem, 6vw, 6rem);
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}

/* Entrance animation when the page resolves a product */
.product-detail[data-pd-enter] .pd__breadcrumb,
.product-detail[data-pd-enter] .pd__media,
.product-detail[data-pd-enter] .pd__body > * {
  opacity: 0;
  transform: translateY(18px);
  animation: pdEnter 700ms var(--ease-out-quart) forwards;
}

.product-detail[data-pd-enter] .pd__breadcrumb { animation-delay: 40ms; }
.product-detail[data-pd-enter] .pd__media      { animation-delay: 120ms; transform: translateY(24px) scale(0.985); }
.product-detail[data-pd-enter] .pd__body > *:nth-child(1) { animation-delay: 180ms; }
.product-detail[data-pd-enter] .pd__body > *:nth-child(2) { animation-delay: 220ms; }
.product-detail[data-pd-enter] .pd__body > *:nth-child(3) { animation-delay: 260ms; }
.product-detail[data-pd-enter] .pd__body > *:nth-child(4) { animation-delay: 300ms; }
.product-detail[data-pd-enter] .pd__body > *:nth-child(5) { animation-delay: 340ms; }
.product-detail[data-pd-enter] .pd__body > *:nth-child(6) { animation-delay: 380ms; }
.product-detail[data-pd-enter] .pd__body > *:nth-child(7) { animation-delay: 420ms; }
.product-detail[data-pd-enter] .pd__body > *:nth-child(8) { animation-delay: 460ms; }

@keyframes pdEnter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .product-detail[data-pd-enter] .pd__breadcrumb,
  .product-detail[data-pd-enter] .pd__media,
  .product-detail[data-pd-enter] .pd__body > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.pd__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper-mute);
  flex-wrap: wrap;
}

.pd__breadcrumb a {
  color: var(--paper-dim);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out-quart);
}

.pd__breadcrumb a:hover { color: var(--neon); }
.pd__breadcrumb svg { color: var(--paper-mute); flex-shrink: 0; }
.pd__breadcrumb span { color: var(--paper); }

.pd__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.pd__media {
  position: sticky;
  top: calc(var(--ticker-h) + var(--nav-h) + var(--space-5));
  background-color: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pd__main-image {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  padding: clamp(var(--space-5), 4vw, var(--space-7));
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}

.pd__main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent 50%, rgba(6, 9, 15, 0.6) 100%);
  pointer-events: none;
}

.pd__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.75));
  transition: transform 900ms var(--ease-out-quart);
}

.pd__main-image:hover .pd__img {
  transform: scale(1.03) translateY(-4px);
}

.pd__img-placeholder {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--paper-mute);
  letter-spacing: -0.04em;
}

.pd__media-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.pd__media-info-label { color: var(--paper-dim); }
.pd__media-info-label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background-color: var(--neon);
  vertical-align: middle;
  margin-right: 8px;
}
.pd__media-info-id { color: var(--paper-mute); }

.pd__body {
  display: grid;
  gap: var(--space-5);
  align-content: start;
}

.pd__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--paper-dim);
  font-weight: 500;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--rule);
}

.pd__meta-dot {
  width: 3px;
  height: 3px;
  background-color: var(--paper-mute);
  border-radius: 50%;
}

.pd__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 1.2rem + 2.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin: 0;
}

.pd__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pd__price-block {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-block: var(--space-4);
  border-block: 1px solid var(--rule);
}

.pd__price {
  font-family: var(--font-stat);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  color: var(--paper);
  letter-spacing: -0.015em;
}

.pd__availability {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
}

.pd__availability::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 50%;
}

.pd__availability--sold { color: var(--paper-mute); }

.pd__desc {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--paper-soft);
}

.pd__desc p + p { margin-top: 0.95em; }

.pd__specs {
  display: grid;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--rule);
}

.pd__specs-title {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--neon);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.pd__spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--rule-faint);
}

.pd__spec-row:last-child { border-bottom: none; }

.pd__spec-label {
  color: var(--paper-mute);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.pd__spec-value {
  color: var(--paper);
  letter-spacing: 0.04em;
  word-break: break-word;
}

.pd__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--rule);
}

/* ---- Related products ---- */
.pd-related {
  padding-block: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid var(--rule);
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-panel) 50%, var(--bg-deep) 100%);
}

.pd-related__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

/* ---- 404 / not found ---- */
.pd-notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding-top: calc(var(--ticker-h) + var(--nav-h) + var(--space-7));
  padding-bottom: clamp(3rem, 6vw, 6rem);
  text-align: center;
}

.pd-notfound .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.pd-notfound .lede { max-width: 50ch; }

.pd-notfound__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-4);
}

/* ---- Responsive: stack on tablet+, simplify on phone ---- */
@media (max-width: 960px) {
  .pd__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .pd__media {
    position: static;
    top: auto;
  }

  .pd__main-image {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 640px) {
  .product-detail {
    padding-top: calc(var(--ticker-h) + var(--nav-h) + var(--space-5));
  }

  .pd__breadcrumb {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    gap: 6px;
  }

  .pd__main-image {
    padding: var(--space-4);
    aspect-ratio: 1 / 1;
  }

  .pd__media-info {
    padding: var(--space-3) var(--space-4);
    font-size: 0.55rem;
  }

  .pd__spec-row {
    grid-template-columns: 110px 1fr;
    gap: var(--space-2);
  }

  .pd__ctas .btn { flex: 1 1 100%; justify-content: center; }
  .pd-notfound__ctas .btn { flex: 1 1 100%; justify-content: center; }

  .pd__price-block {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}
