/* ============================================================
   AFTERHOURS — DORON + ACID EDITORIAL LAYER  v3
   Complete rewrite — nav fixed, textures maxed
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   1. TRUE BLACK SURFACES
   ══════════════════════════════════════════════════════════ */
html { background: #000; }
body { background: #000; overflow-x: hidden; }
.hero, .proof-strip, .section, .pricing-section,
.markets-section, .cta-section, .page-hero,
.about-section, .contact-section { background: #000; }

/* ══════════════════════════════════════════════════════════
   2. SCANLINE OVERLAY — global, never blocks clicks
   ══════════════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none !important;
  z-index: 9000;  /* high but cursor elements are higher */
  background: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.028) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: overlay;
  animation: scanlines-drift 12s linear infinite;
}
@keyframes scanlines-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 0 120px; }
}

/* ══════════════════════════════════════════════════════════
   3. HALFTONE TEXTURE — hero + cta sections
   ══════════════════════════════════════════════════════════ */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(89,0,255,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* ══════════════════════════════════════════════════════════
   4. GRID + CROSSHAIR — hero background layer
   ══════════════════════════════════════════════════════════ */
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(89,0,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89,0,255,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 0%, transparent 100%);
}
/* Crosshair markers at grid intersections (4 visible ones) */
.hero__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 2px at calc(25%) calc(30%), #FF3115 0%, transparent 100%),
    radial-gradient(circle 2px at calc(75%) calc(25%), #5900FF 0%, transparent 100%),
    radial-gradient(circle 2px at calc(30%) calc(70%), #5900FF 0%, transparent 100%),
    radial-gradient(circle 2px at calc(72%) calc(68%), #FF3115 0%, transparent 100%);
}

/* ══════════════════════════════════════════════════════════
   5. NAV — fixed, NEVER clips, z-index above everything
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 8000 !important;
  overflow: visible !important;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  /* CRITICAL: never none cursor on nav */
  cursor: auto !important;
}
.nav * { cursor: auto !important; }
.nav a, .nav button, .nav .btn { cursor: pointer !important; }

.nav.scrolled {
  background: rgba(0,0,0,0.94) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(89,0,255,0.2) !important;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--s5);
  padding: 1.1rem var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
  text-decoration: none;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--paper);
}
.nav__wordmark span { color: var(--blue); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s7);
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.15s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { transform: scaleX(1); }

/* Square separator between links */
.nav__links a + a::before {
  content: '■';
  position: absolute;
  left: calc(-1 * var(--s7) / 2);
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 5px;
  color: rgba(89,0,255,0.4);
  pointer-events: none;
}

.nav__cta { margin-left: var(--s5); flex-shrink: 0; }

/* Burger */
.nav__burger { display: none; color: var(--paper); padding: var(--s2); }
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--s4) var(--gutter) var(--s6);
  gap: var(--s3);
  border-top: 1px solid rgba(89,0,255,0.2);
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(14px);
}
.nav__mobile a {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: var(--s3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: color 0.15s;
}
.nav__mobile a:hover { color: var(--paper); }
.nav__mobile.open { display: flex; }
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; align-items: center; margin-left: auto; }
}

/* Mega-menu — direct child of .nav */
.nav__mega {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid rgba(89,0,255,0.3);
  border-bottom: 1px solid rgba(89,0,255,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 100;
}
.nav__mega--open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__mega-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s5) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.nav__mega-item {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: var(--s4) var(--s5);
  border: 1px solid transparent;
  text-decoration: none;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.nav__mega-item:hover {
  color: var(--paper);
  background: rgba(89,0,255,0.07);
  border-color: rgba(89,0,255,0.25);
}

/* ══════════════════════════════════════════════════════════
   6. CUSTOM SCROLLBAR
   ══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(89,0,255,0.4); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
* { scrollbar-width: thin; scrollbar-color: rgba(89,0,255,0.4) #000; }

/* ══════════════════════════════════════════════════════════
   7. HERO MOTH — CSS blob (full Acid Editorial spec)
   ══════════════════════════════════════════════════════════ */
.hero__moth {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.28;
}
.hero__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89,0,255,0.22) 0%, rgba(89,0,255,0.08) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: glow-breathe 7s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  50%       { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   8. ANIMATED MOTH — flies across screen, morphs to liquid
   ══════════════════════════════════════════════════════════ */
#moth-fly {
  position: fixed;
  pointer-events: none;
  z-index: 8999;
  top: 0; left: 0;
  will-change: transform, opacity, filter;
}

/* ══════════════════════════════════════════════════════════
   9. TICKER BAR
   ══════════════════════════════════════════════════════════ */
.ticker-wrap {
  border-top: 1px solid rgba(89,0,255,0.2);
  border-bottom: 1px solid rgba(89,0,255,0.2);
  padding: 0;
  background: #000;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
  padding: 0.6rem 0;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--s5);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-right: var(--s5);
}
.ticker-sep { color: rgba(89,0,255,0.5); font-size: 8px; }
.ticker-blue { color: var(--blue); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(138,143,168,0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 0 var(--s4);
  transition: color 0.2s;
  align-self: stretch;
  display: flex;
  align-items: center;
  z-index: 2;
}
.ticker-btn:hover { color: var(--paper); }
.ticker-btn--pause { border-right: 1px solid rgba(255,255,255,0.07); }
.ticker-btn--close { border-left: 1px solid rgba(255,255,255,0.07); }

/* ══════════════════════════════════════════════════════════
   10. PROOF STRIP — Doron accent border
   ══════════════════════════════════════════════════════════ */
.proof-strip {
  border-top: 1px solid rgba(89,0,255,0.25) !important;
  border-bottom: 1px solid rgba(89,0,255,0.25) !important;
  background: #000 !important;
  position: relative;
}
.proof-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(89,0,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   11. SECTION LABELS ([ 01 ] format)
   ══════════════════════════════════════════════════════════ */
.sec-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(89,0,255,0.2);
  max-width: 200px;
}

/* ══════════════════════════════════════════════════════════
   12. GLITCH TEXT on headline
   ══════════════════════════════════════════════════════════ */
.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::before {
  color: var(--red);
  animation: glitch-r 5s 0.3s infinite;
  left: 2px;
}
.glitch::after {
  color: var(--blue);
  animation: glitch-b 5s 0.5s infinite;
  left: -2px;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}
@keyframes glitch-r {
  0%,90%,100% { transform: none; opacity: 0; }
  91%  { transform: translate(3px, 0) skewX(-1deg); opacity: 1; }
  93%  { transform: translate(-2px, 0); opacity: 1; }
  95%  { transform: translate(1px, 0); opacity: 1; }
  97%  { transform: none; opacity: 0; }
}
@keyframes glitch-b {
  0%,88%,100% { transform: none; opacity: 0; }
  89%  { transform: translate(-3px, 0) skewX(1deg); opacity: 1; }
  91%  { transform: translate(2px, 0); opacity: 1; }
  93%  { transform: translate(-1px, 0); opacity: 1; }
  95%  { transform: none; opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   13. Y2K SYSTEM WINDOW (notification-style card)
   ══════════════════════════════════════════════════════════ */
.notif-window {
  background: #ECE9E0;
  color: #06060B;
  box-shadow: 6px 6px 0 rgba(89,0,255,0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  min-width: 260px;
  border: 1px solid rgba(89,0,255,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.notif-window:hover {
  transform: perspective(600px) rotateY(-2deg) rotateX(1deg) !important;
  box-shadow: 8px 8px 0 rgba(89,0,255,0.7);
}
.notif-window__bar {
  background: #06060B;
  color: #ECE9E0;
  padding: var(--s2) var(--s4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(89,0,255,0.3);
  letter-spacing: 0.14em;
  font-size: 10px;
  text-transform: uppercase;
}
.notif-window__bar-dots { display: flex; gap: 5px; }
.notif-window__bar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(236,233,224,0.25);
}
.notif-window__body { padding: var(--s4) var(--s5); display: flex; flex-direction: column; gap: var(--s3); }
.notif-row { display: grid; grid-template-columns: 3.5rem 1fr auto; gap: var(--s3); align-items: center; font-size: 10px; }
.notif-time { color: rgba(6,6,11,0.5); white-space: nowrap; }
.notif-msg { color: #06060B; line-height: 1.4; }
.notif-new { color: var(--blue); white-space: nowrap; letter-spacing: 0.1em; }

/* ══════════════════════════════════════════════════════════
   14. CORNER MARKS (Doron-style)
   ══════════════════════════════════════════════════════════ */
.corner-marks { position: relative; }
.corner-marks::before, .corner-marks::after,
.corner-marks-bl, .corner-marks-br {
  position: absolute;
  width: 10px; height: 10px;
  border-color: rgba(89,0,255,0.35);
  border-style: solid;
  pointer-events: none;
}
.corner-marks::before {
  content: '';
  top: var(--s4); left: var(--s4);
  border-width: 1px 0 0 1px;
}
.corner-marks::after {
  content: '';
  top: var(--s4); right: var(--s4);
  border-width: 1px 1px 0 0;
}
.corner-marks-bl {
  bottom: var(--s4); left: var(--s4);
  border-width: 0 0 1px 1px;
}
.corner-marks-br {
  bottom: var(--s4); right: var(--s4);
  border-width: 0 1px 1px 0;
}

/* ══════════════════════════════════════════════════════════
   15. SERVICE CARDS — 3D tilt + depth
   ══════════════════════════════════════════════════════════ */
.service-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.3s ease;
  background: #000;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(89,0,255,0.06) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  box-shadow:
    0 0 0 1px rgba(89,0,255,0.4),
    0 12px 48px rgba(89,0,255,0.12),
    inset 0 1px 0 rgba(89,0,255,0.15);
}
.card-depth-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(89,0,255,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.service-card:hover .card-depth-glow { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   16. MARKET ITEMS
   ══════════════════════════════════════════════════════════ */
.market-item {
  transition: background 0.2s, box-shadow 0.3s;
  will-change: transform;
}
.market-item:hover {
  background: rgba(89,0,255,0.04);
  box-shadow: inset 0 0 0 1px rgba(89,0,255,0.3);
}

/* ══════════════════════════════════════════════════════════
   17. BUTTONS (rectangular, acid editorial)
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: var(--blue);
  color: var(--paper);
  border: 1px solid var(--blue);
}
.btn-primary:hover {
  box-shadow: 0 0 24px rgba(89,0,255,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(236,233,224,0.35);
}
.btn-outline:hover {
  border-color: var(--paper);
  background: rgba(236,233,224,0.05);
}
.btn-red {
  background: var(--red);
  color: var(--paper);
  border: 1px solid var(--red);
}
.btn-red:hover {
  box-shadow: 0 0 24px rgba(255,49,21,0.45);
}

/* ══════════════════════════════════════════════════════════
   18. SECTION DIVIDERS
   ══════════════════════════════════════════════════════════ */
hr.rule { border: none; border-top: 1px solid rgba(236,233,224,0.12); }

/* ══════════════════════════════════════════════════════════
   19. STATUS DOT
   ══════════════════════════════════════════════════════════ */
.status-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block;
  animation: status-pulse 2.5s ease-in-out infinite;
}
@keyframes status-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* ══════════════════════════════════════════════════════════
   20. FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(89,0,255,0.2);
  padding: var(--s8) 0 var(--s6);
  background: #000;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89,0,255,0.5), transparent);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s8);
  align-items: start;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.footer__links a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--paper); }
.footer__links-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(89,0,255,0.6);
  margin-bottom: var(--s3);
  display: block;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(138,143,168,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__colophon {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(138,143,168,0.3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding-top: var(--s5);
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: var(--s6);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: var(--s6); }
}

/* ══════════════════════════════════════════════════════════
   21. CUSTOM CURSOR
   IMPORTANT: cursor:none is set ONLY on .hero and main sections,
   NEVER on .nav or its children. This is what was breaking nav clicks.
   ══════════════════════════════════════════════════════════ */
/* Custom cursor disabled — using default system cursor for performance */
.cursor-area { cursor: auto; }

/* Cursor elements hidden — custom cursor disabled */
#cursor-dot, #cursor-ring { display: none !important; }

/* (kept below for reference only) */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 20px;
  height: 24px;
  pointer-events: none !important;
  z-index: 9999;
  will-change: transform;
  /* Pixel-art arrow shape via clip-path */
  background: #FF6600;
  clip-path: polygon(
    0% 0%,
    0% 80%,
    25% 60%,
    40% 100%,
    55% 92%,
    40% 52%,
    70% 52%
  );
  image-rendering: pixelated;
  filter:
    drop-shadow(0 0 4px rgba(255,102,0,0.9))
    drop-shadow(0 0 10px rgba(255,102,0,0.5));
  /* Offset so tip of arrow (top-left) is at cursor point */
  transform: translate(0, 0);
}
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  pointer-events: none !important;
  z-index: 9998;
  will-change: transform;
  border: 1.5px solid rgba(255,102,0,0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* ══════════════════════════════════════════════════════════
   22. SCROLL PROGRESS LINE
   ══════════════════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  pointer-events: none;
  z-index: 9998;
  transform-origin: left;
  width: 0%;
}

/* ══════════════════════════════════════════════════════════
   23. DRAG CAROUSEL
   ══════════════════════════════════════════════════════════ */
[data-drag] {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: var(--s5) !important;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--s3);
  scroll-snap-type: x proximity;
}
[data-drag]::-webkit-scrollbar { display: none; }
[data-drag] .market-item {
  flex: 0 0 clamp(240px, 28vw, 300px);
  scroll-snap-align: start;
}

/* ══════════════════════════════════════════════════════════
   24. REVEAL — GSAP handles opacity, CSS provides transition
   ══════════════════════════════════════════════════════════ */
.reveal { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   25. 3D DEPTH SECTIONS
   ══════════════════════════════════════════════════════════ */
.hero { perspective: 1200px; }
.notif-window {
  transform: perspective(600px) rotateY(-5deg) rotateX(2deg);
}
