/* ─────────────────────────────────────────────
   CORE TOKENS & FALLBACKS
───────────────────────────────────────────── */
:root {
  --void: #02020a;
  --deep: #060614;
  --surface: rgba(255, 255, 255, 0.032);
  --surface-hover: rgba(255, 255, 255, 0.072);
  --rim: rgba(255, 255, 255, 0.06);
  --rim-hot: rgba(99, 202, 255, 0.45);
  --text-0: #f0f0ff;
  --text-1: #8888aa;
  --text-2: #4a4a6a;
  --cyan: #63caff;
  --violet: #a78bfa;
  --rose: #fb7185;
  --amber: #fbbf24;
  --green: #34d399;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
  background-color: #02020a;
}

body {
  background-color: #02020a;
  background: var(--void);
  color: #f0f0ff;
  color: var(--text-0);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

/* ─────────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────────── */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, background 0.3s, width 0.25s var(--ease-spring), height 0.25s var(--ease-spring);
  mix-blend-mode: screen;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(99,202,255,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-expo), width 0.35s var(--ease-spring), height 0.35s var(--ease-spring), border-color 0.3s;
}
body.hovering #cursor-dot  { width: 12px; height: 12px; background: white; }
body.hovering #cursor-ring { width: 56px; height: 56px; border-color: rgba(255,255,255,0.3); }

/* ─────────────────────────────────────────────
   CANVAS — STAR FIELD
───────────────────────────────────────────── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   NOISE OVERLAY
───────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* ─────────────────────────────────────────────
   AMBIENT GLOWS (fixed orbs)
───────────────────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.orb-a {
  width: 40vw; height: 40vw;
  top: -10%; left: -5%;
  background: radial-gradient(circle, rgba(99,202,255,0.09) 0%, transparent 70%);
  animation-duration: 22s;
}
.orb-b {
  width: 50vw; height: 50vw;
  bottom: -15%; right: -10%;
  background: radial-gradient(circle, rgba(167,139,250,0.07) 0%, transparent 70%);
  animation-duration: 28s;
  animation-delay: -8s;
}
.orb-c {
  width: 30vw; height: 30vw;
  top: 45%; left: 38%;
  background: radial-gradient(circle, rgba(251,113,133,0.05) 0%, transparent 70%);
  animation-duration: 16s;
  animation-delay: -4s;
}
@keyframes orb-drift {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.04); }
  66%  { transform: translate(-20px, 15px) scale(0.97); }
  100% { transform: translate(10px, 30px) scale(1.02); }
}

/* ─────────────────────────────────────────────
   PAGE WRAPPER
───────────────────────────────────────────── */
.page {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

/* ─────────────────────────────────────────────
   NAV BAR
───────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rim);
  margin-bottom: 6rem;
  position: relative;
  z-index: 10;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.4px;
  color: var(--text-0);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 12px var(--cyan); }
  50%       { transform: scale(1.35); box-shadow: 0 0 24px var(--cyan), 0 0 48px rgba(99,202,255,0.3); }
}
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-1);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav-back:hover { color: var(--text-0); }
.nav-back svg { transition: transform 0.25s var(--ease-expo); }
.nav-back:hover svg { transform: translateX(-4px); }
.nav-count {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-count span {
  color: var(--cyan);
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   HERO TITLE SECTION
───────────────────────────────────────────── */
.hero {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 1.8rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(99,202,255,0.2);
  border-radius: 100px;
  background: rgba(99,202,255,0.05);
  animation: fade-up 0.8s var(--ease-expo) both;
}
.hero-eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero h1 {
  font-family: var(--font-display);
  /* RECALIBRATED CLAMP: Perfectly scales to container width dynamically */
  font-size: clamp(2rem, 5.2vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fade-up 0.9s var(--ease-expo) 0.1s both;
  
  max-width: 100%;
  overflow-wrap: normal;
  word-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.hero h1 .line-1,
.hero h1 .line-2 {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.hero h1 .line-1 {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .line-2 {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 50%, var(--rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-1);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
  animation: fade-up 1s var(--ease-expo) 0.2s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   SEARCH BAR
───────────────────────────────────────────── */
.search-wrap {
  max-width: 480px;
  margin: 2.5rem auto 0;
  position: relative;
  animation: fade-up 1s var(--ease-expo) 0.3s both;
}
.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-2);
  pointer-events: none;
  transition: color 0.3s;
}
.search-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rim);
  border-radius: 14px;
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  color: var(--text-0);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: all 0.35s var(--ease-expo);
  backdrop-filter: blur(12px);
}
.search-input::placeholder { color: var(--text-2); }
.search-input:focus {
  border-color: rgba(99,202,255,0.4);
  background: rgba(99,202,255,0.04);
  box-shadow: 0 0 0 4px rgba(99,202,255,0.06), 0 8px 32px rgba(99,202,255,0.08);
}
.search-input:focus + .search-icon { color: var(--cyan); }
.search-wrap:focus-within .search-icon { color: var(--cyan); }

/* ─────────────────────────────────────────────
   FILTER TABS
───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  animation: fade-up 1s var(--ease-expo) 0.4s both;
}
.filter-btn {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rim);
  color: var(--text-1);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  cursor: none;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-expo);
  overflow: hidden;
}
.filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 100px;
}
.filter-btn:hover {
  color: var(--text-0);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.filter-btn.active {
  color: var(--void);
  border-color: transparent;
  background: white;
  box-shadow: 0 8px 30px rgba(255,255,255,0.18);
}
.filter-btn.active::before { opacity: 0; }
.filter-btn .btn-label { position: relative; z-index: 1; }
.filter-btn .btn-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.4rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}
.filter-btn.active .btn-count {
  background: rgba(0,0,0,0.15);
}

/* ─────────────────────────────────────────────
   CATEGORY LABEL (section dividers)
───────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 1.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
}
.section-label.visible {
  opacity: 1;
  transform: translateX(0);
}
.section-label-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-2);
  font-weight: 600;
  white-space: nowrap;
}
.section-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--rim), transparent);
}
.section-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   VENDOR GRID
───────────────────────────────────────────── */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}

/* ─────────────────────────────────────────────
   VENDOR CARD — 2026 LIQUID GLASS
───────────────────────────────────────────── */
.partner-card {
  --hx: 50%;
  --hy: 50%;
  --glow-color: rgba(99,202,255,0.25);
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: 24px;
  padding: 2rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  min-height: 200px;
  overflow: hidden;
  cursor: none;
  transition:
    transform 0.5s var(--ease-expo),
    border-color 0.4s,
    box-shadow 0.5s var(--ease-expo);
  will-change: transform;
  /* Entrance */
  opacity: 0;
  transform: translateY(24px) scale(0.97);
}
.partner-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Liquid-glass shimmer layer */
.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    380px circle at var(--hx) var(--hy),
    rgba(255,255,255,0.07) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.partner-card:hover::before { opacity: 1; }

/* Color glow underlay */
.partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    220px circle at var(--hx) var(--hy),
    var(--glow-color) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  border-radius: 24px;
}
.partner-card:hover::after { opacity: 1; }

.partner-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(99,202,255,0.3);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 1px 0 rgba(255,255,255,0.1) inset;
}

/* Top accent streak */
.card-streak {
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-expo);
  transform-origin: center;
}
.partner-card:hover .card-streak { transform: scaleX(1); }

/* Badge */
.partner-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-2);
  font-weight: 600;
  font-family: var(--font-display);
  transition: color 0.3s;
}
.partner-card:hover .partner-badge { color: var(--text-1); }

/* External link icon */
.card-link-arrow {
  position: absolute;
  top: 11px; right: 13px;
  color: var(--text-2);
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity 0.3s, transform 0.35s var(--ease-expo), color 0.3s;
}
.partner-card:hover .card-link-arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--cyan);
}

/* Logo wrapper */
.partner-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 0;
}
.partner-icon img {
  max-width: 75%;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(30%) brightness(0.85) saturate(0.9);
  transition: filter 0.4s var(--ease-expo), transform 0.5s var(--ease-expo);
}
.partner-card:hover .partner-icon img {
  filter: grayscale(0%) brightness(1.15) saturate(1.1);
  transform: scale(1.08);
}

/* Name */
.partner-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-0);
  letter-spacing: -0.01em;
  text-align: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────
   HIDDEN STATE (filter)
───────────────────────────────────────────── */
.partner-card.hidden {
  display: none;
}

/* ─────────────────────────────────────────────
   NO RESULTS
───────────────────────────────────────────── */
#no-results {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-1);
  font-size: 1rem;
}
#no-results svg { margin-bottom: 1.2rem; opacity: 0.3; }

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rim);
  animation: fade-up 1s var(--ease-expo) 0.5s both;
}
.stats-label {
  font-size: 0.85rem;
  color: var(--text-2);
}
.stats-label span {
  color: var(--text-0);
  font-weight: 600;
}
.stats-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-0);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
}
.stat-divider {
  width: 1px; height: 28px;
  background: var(--rim);
}

/* ─────────────────────────────────────────────
   SCROLL-TO-TOP
───────────────────────────────────────────── */
#scrolltop {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--rim);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.35s var(--ease-expo);
  opacity: 0;
  transform: translateY(20px);
  z-index: 100;
  backdrop-filter: blur(12px);
}
#scrolltop.visible { opacity: 1; transform: translateY(0); }
#scrolltop:hover {
  background: var(--surface-hover);
  border-color: rgba(99,202,255,0.3);
  color: var(--cyan);
  box-shadow: 0 8px 24px rgba(99,202,255,0.15);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────────
   TOAST
───────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(6,6,20,0.92);
  border: 1px solid var(--rim);
  border-radius: 14px;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  color: var(--text-0);
  backdrop-filter: blur(20px);
  z-index: 200;
  pointer-events: none;
  transition: transform 0.4s var(--ease-expo), opacity 0.4s;
  opacity: 0;
  white-space: nowrap;
}
#toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — refined
───────────────────────────────────────────── */

/* Tablet & below */
@media (max-width: 1024px) {
  .page { padding: 0 1.5rem 5rem; }
  nav { margin-bottom: 4rem; }
  .hero { margin-bottom: 4rem; }
  .vendor-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
  #scrolltop { bottom: 1.5rem; right: 1.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .page { padding: 0 1rem 4rem; }

  /* Nav stacks cleanly */
  nav {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding: 1.1rem 0;
    margin-bottom: 2.5rem;
  }
  .nav-back { order: 1; font-size: 0.8rem; }
  .nav-count { order: 2; font-size: 0.7rem; margin-left: auto; }
  .nav-logo { order: 3; flex-basis: 100%; justify-content: center; font-size: 1rem; }

  /* Hero Mobile Override */
  .hero { margin-bottom: 3rem; }
  .hero-eyebrow { font-size: 0.65rem; padding: 0.4rem 0.9rem; margin-bottom: 1.2rem; }
  
  .hero h1 { 
    /* Fluid percentage scaling locks letters to the container */
    font-size: clamp(1.4rem, 6.5vw, 2.8rem) !important; 
    margin-bottom: 1rem; 
    line-height: 1.15;
    padding: 0 0.25rem;
  }
  
  .hero-sub { font-size: 0.95rem; padding: 0 0.5rem; }

  /* Search */
  .search-wrap { margin-top: 1.75rem; }
  .search-input { font-size: 0.9rem; padding: 0.8rem 1rem 0.8rem 2.8rem; }

  /* Filter bar — horizontal scroll, no wrap */
  .filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 1rem 0.75rem;
    margin: 0 -1rem 2.5rem;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 0.55rem 1.1rem;
    font-size: 0.8rem;
  }

  /* Stats bar */
  .stats-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    margin-bottom: 1.5rem;
  }
  .stats-right { display: flex; gap: 1rem; width: 100%; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1rem; }

  /* Section labels */
  .section-label { margin: 2rem 0 1rem; gap: 0.75rem; }
  .section-label-text { font-size: 0.66rem; letter-spacing: 0.14em; }

  /* Vendor grid — 2 col fluid */
  .vendor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
  .partner-card {
    min-height: 170px;
    padding: 1.6rem 0.85rem 1.2rem;
    border-radius: 20px;
  }
  .partner-icon img { max-height: 52px; max-width: 80%; }
  .partner-name { font-size: 0.85rem; margin-top: 0.75rem; }
  .partner-badge { font-size: 0.55rem; top: 10px; left: 10px; }

  /* Disable card hover lift on touch — keeps things snappy */
  .partner-card:hover { transform: none; }
  .partner-card:active { transform: scale(0.98); }

  /* Floating UI */
  #scrolltop { bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px; }
  #toast { bottom: 1.2rem; font-size: 0.78rem; padding: 0.6rem 1.1rem; max-width: calc(100vw - 2rem); white-space: normal; text-align: center; }

  /* Reduce ambient cost on mobile */
  .orb { filter: blur(70px); }

  /* Native cursor on touch devices */
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero h1 { 
    font-size: clamp(1.2rem, 7.5vw, 1.9rem) !important; 
    line-height: 1.2; 
  }
  .vendor-grid { gap: 0.7rem; }
  .partner-card { min-height: 150px; padding: 1.4rem 0.7rem 1rem; border-radius: 18px; }
  .partner-icon img { max-height: 44px; }
  .partner-name { font-size: 0.8rem; }
  .nav-logo { font-size: 0.95rem; }
}

/* Pointer: coarse — kill custom cursor regardless of width */
@media (pointer: coarse) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  .partner-card, .filter-btn, #scrolltop { cursor: pointer; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .orb { animation: none; }
}