/* ============================================================
   AAYARE LIVE — broadcast-studio talk show landing page
   Palette: crimson + midnight navy + warm gold + off-white
   ============================================================ */

:root {
  --red:      #FF2D55;
  --red-2:    #FF6B8A;
  --red-deep: #C81E43;
  --gold:     #FFB800;
  --navy:     #0A0E1A;
  --navy-2:   #131828;
  --navy-3:   #1C2236;
  --ink:      #0A0E1A;
  --paper:    #F5F3EE;
  --paper-2:  #E8E4DA;
  --mute:     #8A93A6;
  --line:     rgba(255,255,255,.08);
  --line-d:   rgba(0,0,0,.08);
  --glow:     0 0 40px rgba(255,45,85,.35);
  --shadow:   0 20px 60px -20px rgba(0,0,0,.5);
  --radius:   18px;
  --radius-s: 10px;
  --wrap:     1200px;
  --ease:     cubic-bezier(.2,.7,.2,1);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  background: rgba(10, 14, 26, .72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.nav__logo {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--red);
  display: grid; place-items: center;
  box-shadow: 0 0 0 2px rgba(255,45,85,.2), var(--glow);
}
.nav__logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: white;
  animation: pulse 1.6s ease-in-out infinite;
}
.nav__wordmark { letter-spacing: -.02em; font-size: 18px; }
.nav__wordmark span { color: var(--red); }

.nav__links { display: flex; gap: 26px; justify-content: center; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--paper);
  opacity: .78; transition: opacity .2s;
}
.nav__links a:hover { opacity: 1; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px 9px 12px;
  background: var(--red);
  color: white; font-weight: 700; font-size: 13px;
  border-radius: 999px;
  box-shadow: var(--glow);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 0 60px rgba(255,45,85,.55); }
.nav__cta .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: white;
  position: relative;
}
.nav__cta .pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(255,255,255,.6);
  animation: ping 1.4s ease-out infinite;
}

.nav__follow {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 8px 6px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background .2s, border-color .2s;
}
.nav__follow:hover { background: rgba(255,255,255,.09); border-color: rgba(255,45,85,.3); }
.nav__follow-label {
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: rgba(255,255,255,.7); text-transform: uppercase;
}
.nav__socials { display: flex; gap: 4px; }
.nav__social {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,.75);
  transition: color .2s, background .2s, transform .2s var(--ease);
}
.nav__social:hover { color: white; background: var(--red); transform: translateY(-1px); }
.nav__social:nth-child(1):hover { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.nav__social:nth-child(2):hover { background: #1877F2; }
.nav__social:nth-child(3):hover { background: #FF0000; }

.nav__burger {
  display: none; width: 40px; height: 40px;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav__burger span {
  width: 22px; height: 2px; background: var(--paper); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(.7); opacity: .6; }
}
@keyframes ping {
  0%   { transform: scale(1);   opacity: .7; }
  80%,100% { transform: scale(2.4); opacity: 0; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  padding: 40px 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(45% 40% at 20% 30%, rgba(255,45,85,.35), transparent 60%),
    radial-gradient(35% 30% at 80% 20%, rgba(255,184,0,.20), transparent 60%),
    radial-gradient(50% 45% at 70% 80%, rgba(255,45,85,.28), transparent 60%),
    radial-gradient(40% 40% at 15% 85%, rgba(80,90,180,.28), transparent 60%),
    linear-gradient(180deg, #0A0E1A 0%, #0A0E1A 100%);
  filter: blur(20px);
  animation: mesh 22s ease-in-out infinite alternate;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 100%);
}
.hero__noise {
  position: absolute; inset: 0;
  opacity: .06; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__spot {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,85,.18), transparent 60%);
  pointer-events: none; transform: translate(-50%, -50%);
  transition: transform .2s ease-out;
  left: 50%; top: 30%;
}
@keyframes mesh {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-2%, 2%) scale(1.05); }
  100% { transform: translate(2%, -1%) scale(1); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.onair {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 12px 7px 10px;
  background: rgba(255,45,85,.14);
  border: 1px solid rgba(255,45,85,.4);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  color: var(--red-2);
  text-transform: uppercase;
}
.onair__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red); animation: pulse 1.2s ease-in-out infinite; }
.onair__sep { opacity: .5; }
.onair__meta { color: rgba(255,255,255,.6); font-weight: 600; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: .92; letter-spacing: -.01em;
  margin: 20px 0 22px;
  font-weight: 400;
}
.hero__title .line {
  display: block; opacity: 0;
  transform: translateY(20px);
  animation: rise .8s var(--ease) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: .05s; }
.hero__title .line:nth-child(2) { animation-delay: .18s; }
.hero__title .line:nth-child(3) { animation-delay: .30s; }
.hero__title .line--accent {
  color: transparent;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 60%, var(--red) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  animation: rise .8s var(--ease) forwards, shine 6s linear infinite;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes shine { to { background-position: 200% center; } }

.hero__sub {
  max-width: 520px;
  color: rgba(245,243,238,.72);
  font-size: clamp(15px, 1.4vw, 18px);
  margin-bottom: 32px;
}

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: transform .2s var(--ease), box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: white; box-shadow: var(--glow); }
.btn--primary:hover { box-shadow: 0 0 60px rgba(255,45,85,.6); }
.btn--ghost { color: var(--paper); border: 1px solid rgba(255,255,255,.18); }
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.btn--block { width: 100%; justify-content: center; }
.btn--fb { background: white; color: var(--navy); box-shadow: 0 20px 40px -10px rgba(0,0,0,.4); padding: 16px 26px; font-size: 16px; }
.btn--fb:hover { background: var(--paper); }
.btn__pulse {
  position: absolute; inset: 0; border-radius: 999px;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.35), transparent 60%);
  transform: translateX(-100%);
  animation: sweep 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sweep { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }

.hero__proof { display: flex; flex-direction: column; gap: 14px; }
.watching {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.85);
}
.watching__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 12px #22c55e;
  animation: pulse 1.4s ease-in-out infinite;
}
.watching__num { font-weight: 800; color: white; font-variant-numeric: tabular-nums; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-size: 12px; padding: 6px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
}
.chip b { color: white; font-weight: 800; margin-right: 3px; font-variant-numeric: tabular-nums; }

/* ============ HERO TILE (fake FB player) ============ */
.tile {
  position: relative;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,45,85,.1);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
  transition: transform .6s var(--ease);
}
.tile:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }

.tile__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  background: rgba(0,0,0,.4);
  border-bottom: 1px solid var(--line);
  font-size: 12px; font-weight: 600;
}
.tile__bug {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: white;
  padding: 4px 8px; border-radius: 4px;
  font-size: 11px; letter-spacing: .08em;
}
.tile__bug i { width: 6px; height: 6px; border-radius: 50%; background: white; animation: pulse 1s ease-in-out infinite; }
.tile__viewers { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,.7); margin-left: auto; }
.tile__viewers b { color: white; font-variant-numeric: tabular-nums; }
.tile__time { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6); font-variant-numeric: tabular-nums; }
.tile__blink { width: 5px; height: 5px; border-radius: 50%; background: var(--red); animation: pulse 1s ease-in-out infinite; }

.tile__stage {
  position: relative;
  aspect-ratio: 16/10;
  background:
    radial-gradient(60% 50% at 50% 40%, rgba(255,45,85,.22), transparent 70%),
    radial-gradient(50% 60% at 80% 90%, rgba(255,184,0,.15), transparent 70%),
    linear-gradient(180deg, #131828 0%, #05070E 100%);
  overflow: hidden;
}
.tile__bars {
  position: absolute; left: 50%; bottom: 26%; transform: translateX(-50%);
  display: flex; gap: 5px; align-items: flex-end;
  height: 60px;
}
.tile__bars span {
  width: 5px; background: linear-gradient(180deg, var(--red), var(--gold));
  border-radius: 3px;
  animation: eq 900ms ease-in-out infinite alternate;
  opacity: .9;
}
.tile__bars span:nth-child(1)  { height: 20%; animation-delay: -.1s; }
.tile__bars span:nth-child(2)  { height: 55%; animation-delay: -.3s; }
.tile__bars span:nth-child(3)  { height: 35%; animation-delay: -.5s; }
.tile__bars span:nth-child(4)  { height: 80%; animation-delay: -.2s; }
.tile__bars span:nth-child(5)  { height: 45%; animation-delay: -.7s; }
.tile__bars span:nth-child(6)  { height: 90%; animation-delay: -.4s; }
.tile__bars span:nth-child(7)  { height: 30%; animation-delay: -.9s; }
.tile__bars span:nth-child(8)  { height: 70%; animation-delay: -.15s; }
.tile__bars span:nth-child(9)  { height: 50%; animation-delay: -.35s; }
.tile__bars span:nth-child(10) { height: 85%; animation-delay: -.55s; }
.tile__bars span:nth-child(11) { height: 25%; animation-delay: -.75s; }
.tile__bars span:nth-child(12) { height: 65%; animation-delay: -.25s; }
.tile__bars span:nth-child(13) { height: 40%; animation-delay: -.45s; }
.tile__bars span:nth-child(14) { height: 75%; animation-delay: -.65s; }
.tile__bars span:nth-child(15) { height: 30%; animation-delay: -.85s; }
@keyframes eq { to { transform: scaleY(.4); } }

.tile__lower {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
}
.tile__strap { font-size: 10px; letter-spacing: .2em; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.tile__headline { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 30px); line-height: 1; letter-spacing: .01em; }
.tile__meta { display: flex; gap: 8px; margin-top: 8px; font-size: 12px; color: rgba(255,255,255,.7); }

.tile__reactions {
  position: absolute; right: 12px; bottom: 20px;
  width: 40px; height: 200px; pointer-events: none;
  overflow: hidden;
}
.tile__reactions span {
  position: absolute; bottom: 0; left: 50%;
  font-size: 20px;
  transform: translateX(-50%);
  animation: floatUp 3s ease-out forwards;
  opacity: 0;
}
@keyframes floatUp {
  0%   { transform: translate(-50%, 0) scale(.5); opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--drift, 0px)), -200px) scale(1.2); opacity: 0; }
}

.tile__comments {
  height: 120px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 8px 14px;
  background: rgba(0,0,0,.2);
}
.tile__comments .cmt {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 12px; padding: 4px 0;
  animation: cmtIn .5s var(--ease);
}
.tile__comments .cmt .av {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: white; display: grid; place-items: center;
  font-weight: 700; font-size: 10px;
}
.tile__comments .cmt b { color: white; margin-right: 6px; }
.tile__comments .cmt span { color: rgba(255,255,255,.75); }
@keyframes cmtIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.tile__foot {
  display: flex; gap: 6px; padding: 10px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.3);
}
.react {
  padding: 7px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,.06);
  transition: background .2s, transform .1s;
  color: rgba(255,255,255,.85);
}
.react b { margin-left: 4px; color: white; font-variant-numeric: tabular-nums; }
.react:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }
.react--share { margin-left: auto; color: var(--red-2); background: rgba(255,45,85,.12); }

/* ============ HERO MARQUEE ============ */
.hero__marquee {
  overflow: hidden;
  background: var(--red);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(0,0,0,.2);
  transform: rotate(-1deg) translateY(-1px);
  margin: 20px -2% 0;
}
.hero__marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display); font-size: 20px; letter-spacing: .04em;
  color: white;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ SECTION HEAD ============ */
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red-2); font-weight: 700; margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.85); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: .95; letter-spacing: -.005em;
  font-weight: 400;
  margin-bottom: 14px;
}
.section-head p { color: rgba(245,243,238,.6); font-size: clamp(15px, 1.3vw, 17px); }

/* ============ STATS ============ */
.stats {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 20px 10px;
  position: relative;
}
.stat::after {
  content: ''; position: absolute; right: -12px; top: 25%; height: 50%; width: 1px;
  background: var(--line);
}
.stat:last-child::after { display: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1;
  background: linear-gradient(180deg, white 0%, rgba(255,255,255,.6) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
}

/* ============ LIVE ============ */
.live { padding: 100px 0; background: var(--navy-2); }
.embed-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.embed-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed-frame__placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 50% 40%, rgba(255,45,85,.25), transparent 70%),
    linear-gradient(180deg, #131828, #05070E);
  display: grid; place-items: center;
}
.embed-frame__bug {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  padding: 6px 12px; border-radius: 6px;
  font-size: 11px; letter-spacing: .14em; font-weight: 700;
}
.embed-frame__bug i { width: 7px; height: 7px; border-radius: 50%; background: white; animation: pulse 1s ease-in-out infinite; }
.embed-frame__viewers {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px; color: white;
}
.embed-frame__viewers b { font-weight: 700; font-variant-numeric: tabular-nums; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); animation: pulse 1.2s ease-in-out infinite; }
.embed-frame__center { text-align: center; }
.embed-frame__center p { margin-top: 20px; color: rgba(255,255,255,.75); font-size: 14px; }
.embed-frame__center code { background: rgba(255,255,255,.08); padding: 2px 6px; border-radius: 4px; font-size: 12px; }
.play {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  margin: 0 auto;
  box-shadow: 0 0 0 12px rgba(255,45,85,.15), var(--glow);
  animation: pulseRing 2s ease-out infinite;
}
.play span {
  width: 0; height: 0;
  border-left: 24px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 6px;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(255,45,85,.5), var(--glow); }
  70%  { box-shadow: 0 0 0 24px rgba(255,45,85,0), var(--glow); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,85,0), var(--glow); }
}

/* ============ CATEGORIES / SHOP ============ */
.cats {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.cats::before {
  content: ''; position: absolute; inset: -20% -10% auto -10%; height: 400px;
  background:
    radial-gradient(40% 60% at 20% 40%, rgba(255,45,85,.14), transparent 70%),
    radial-gradient(40% 60% at 80% 40%, rgba(255,184,0,.10), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.cats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-3);
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.cat__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  transition: transform .8s var(--ease), filter .35s;
}
.cat__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(255,255,255,.25), transparent 70%),
    radial-gradient(70% 60% at 70% 90%, rgba(0,0,0,.35), transparent 70%);
}
.cat__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .10; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.cat__live {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(10,14,26,.6); backdrop-filter: blur(8px);
  color: white; padding: 5px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
}
.cat__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 1s ease-in-out infinite; }
.cat__count {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  background: rgba(10,14,26,.5); backdrop-filter: blur(8px);
  color: white; padding: 5px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.cat__icon {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 68px; height: 68px;
  transform: translate(-50%, -75%);
  color: white;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
  transition: transform .5s var(--ease);
}
.cat__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,14,26,.75) 50%, rgba(10,14,26,.92) 100%);
  color: white;
}
.cat__name {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1;
  letter-spacing: .01em;
  margin-bottom: 6px;
}
.cat__tag {
  font-size: 12px; color: rgba(255,255,255,.75);
  margin-bottom: 10px;
  min-height: 32px;
}
.cat__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: white;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.18);
  width: 100%;
  transition: gap .25s var(--ease);
}
.cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08);
}
.cat:hover .cat__bg { transform: scale(1.08); filter: saturate(1.2); }
.cat:hover .cat__icon { transform: translate(-50%, -80%) rotate(-6deg) scale(1.06); }
.cat:hover .cat__cta { gap: 12px; }

.cats__foot { text-align: center; margin-top: 36px; position: relative; }

@media (max-width: 1080px) {
  .cats__grid { grid-template-columns: repeat(3, 1fr); }
  .cat:nth-child(4), .cat:nth-child(5) { aspect-ratio: 4/3; }
}
@media (max-width: 720px) {
  .cats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat, .cat:nth-child(4), .cat:nth-child(5) { aspect-ratio: 3/4; }
  .cat:nth-child(5) { grid-column: span 2; aspect-ratio: 5/3; }
  .cat:nth-child(5) .cat__icon { transform: translate(-50%, -85%); }
  .cat__name { font-size: 24px; }
}
@media (max-width: 400px) {
  .cats__grid { grid-template-columns: 1fr; }
  .cat, .cat:nth-child(5) { grid-column: auto; aspect-ratio: 5/3; }
}

/* ============ SCHEDULE ============ */
.schedule { padding: 100px 0; background: var(--navy); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card {
  position: relative;
  padding: 24px 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-2) 100%);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,45,85,.5), transparent 40%, transparent 60%, rgba(255,184,0,.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,45,85,.3); }
.card:hover::before { opacity: 1; }
.card__day { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--red-2); font-weight: 700; margin-bottom: 10px; }
.card__title { font-family: var(--font-display); font-size: 28px; line-height: 1.05; margin-bottom: 8px; }
.card__meta { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.card__meta b { color: white; font-weight: 600; }
.card__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 12px; color: rgba(255,255,255,.5);
}
.card__foot .go {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--red-2); font-weight: 600;
}
.card--live {
  background: linear-gradient(180deg, rgba(255,45,85,.15) 0%, var(--navy-2) 100%);
  border-color: rgba(255,45,85,.4);
}
.card--live .card__day::before {
  content: '● '; color: var(--red); animation: pulse 1s ease-in-out infinite; display: inline-block;
}

/* ============ HIGHLIGHTS ============ */
.highlights { padding: 100px 0; background: var(--navy-2); }
.masonry {
  columns: 3;
  column-gap: 16px;
}
.masonry .tile-img {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--navy-3);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.masonry .tile-img:hover { transform: scale(1.02); }
.tile-img__thumb {
  aspect-ratio: var(--ar, 16/10);
  background:
    linear-gradient(135deg, var(--h1, #FF2D55), var(--h2, #FFB800));
  position: relative;
  overflow: hidden;
}
.tile-img__thumb::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 30% 40%, rgba(255,255,255,.15), transparent 70%),
    radial-gradient(50% 40% at 70% 70%, rgba(0,0,0,.4), transparent 70%);
}
.tile-img__thumb .frame-num {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-display); font-size: 32px; color: white;
  opacity: .7; letter-spacing: .05em;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.tile-img__thumb .frame-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  transition: transform .3s;
}
.tile-img__thumb .frame-play::after {
  content: ''; width: 0; height: 0;
  border-left: 14px solid var(--navy); border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.tile-img:hover .frame-play { transform: translate(-50%,-50%) scale(1.15); }
.tile-img__label {
  padding: 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
  position: absolute; left: 0; right: 0; bottom: 0;
}
.tile-img__label b { display: block; font-size: 14px; color: white; margin-bottom: 4px; }
.tile-img__label span { display: block; font-size: 11px; color: rgba(255,255,255,.6); }
.tile-img__stats {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: white; font-size: 11px; font-weight: 600;
  padding: 4px 8px; border-radius: 999px;
}

/* ============ VOICES / TESTIMONIALS ============ */
.voices { padding: 100px 0; background: var(--navy); overflow: hidden; }
.marquee { overflow: hidden; margin: 12px 0; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.marquee__track {
  display: flex; gap: 16px; width: max-content;
  animation: scroll 60s linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 70s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.voice {
  flex: 0 0 340px;
  padding: 20px 22px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.voice__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.voice__av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: grid; place-items: center;
  font-weight: 800; color: white; font-size: 15px;
  flex-shrink: 0;
}
.voice__name { font-weight: 700; font-size: 14px; }
.voice__meta { font-size: 12px; color: rgba(255,255,255,.5); }
.voice__body { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.55; }
.voice__stars { color: var(--gold); font-size: 12px; margin-top: 10px; letter-spacing: 2px; }

/* ============ NOTIFY ============ */
.notify { padding: 100px 0; background: var(--navy-2); }
.notify__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.notify__copy h2 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); line-height: .95; margin: 10px 0 14px; font-weight: 400; }
.notify__copy > p { color: rgba(255,255,255,.65); margin-bottom: 24px; }
.checks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checks li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: 14px;
}
.checks li svg { color: var(--red); flex-shrink: 0; }

.notify__form {
  padding: 30px;
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.field { display: block; margin-bottom: 18px; }
.field__label {
  display: block; margin-bottom: 6px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 700;
}
.field input {
  width: 100%; padding: 14px 16px;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  color: white; font-size: 15px;
  transition: border-color .2s, background .2s;
}
.field input::placeholder { color: rgba(255,255,255,.35); }
.field input:focus { outline: 0; border-color: var(--red); background: rgba(255,45,85,.05); }
.fine { margin-top: 12px; font-size: 11px; color: rgba(255,255,255,.5); }
.notify__ok[hidden] { display: none !important; }
.notify__ok {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; margin-top: 14px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius-s);
  color: #4ade80; font-weight: 600; font-size: 14px;
}

/* ============ FB CTA ============ */
.fbcta { padding: 100px 0; background: var(--navy); }
.fbcta__wrap { position: relative; }
.fbcta__bg {
  position: absolute; inset: -40px;
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(255,45,85,.35), transparent 70%),
    radial-gradient(40% 40% at 20% 30%, rgba(255,184,0,.2), transparent 70%),
    radial-gradient(40% 40% at 80% 70%, rgba(80,90,200,.25), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: mesh 18s ease-in-out infinite alternate;
}
.fbcta__inner {
  position: relative; z-index: 1;
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.fbcta__title { font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px); line-height: .95; letter-spacing: -.005em; font-weight: 400; margin: 14px 0 14px; }
.fbcta__title span { color: transparent; background: linear-gradient(90deg, var(--red), var(--gold)); -webkit-background-clip: text; background-clip: text; }
.fbcta__inner > p { color: rgba(255,255,255,.7); margin: 0 auto 30px; max-width: 480px; }

/* ============ FOOTER ============ */
.foot { padding: 40px 0; background: var(--navy); border-top: 1px solid var(--line); }
.foot__wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.foot__brand { display: flex; align-items: center; gap: 10px; }
.foot__links { display: flex; gap: 20px; }
.foot__links a { transition: color .2s; }
.foot__links a:hover { color: white; }

/* ============ AUDIENCE SECTIONS (BUYER / SELLER / B2B) ============ */
.aud {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.aud:nth-of-type(even) { background: var(--navy-2); }
.aud#seller { --accent: var(--gold);  --accent-2: var(--red); }
.aud#buyer  { --accent: var(--red);   --accent-2: var(--gold); }
.aud#b2b    { --accent: #8B5CF6;      --accent-2: var(--red); }

.aud::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(30% 40% at 15% 20%, color-mix(in srgb, var(--accent, var(--red)) 12%, transparent), transparent 70%),
    radial-gradient(30% 40% at 85% 80%, color-mix(in srgb, var(--accent-2, var(--gold)) 8%, transparent), transparent 70%);
  filter: blur(20px);
}

.aud__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.aud--alt .aud__wrap { grid-template-columns: .95fr 1.05fr; }

.aud__content h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: .95; letter-spacing: -.005em;
  font-weight: 400;
  margin: 14px 0 18px;
}
.aud__content > p {
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.3vw, 17px);
  margin-bottom: 26px;
  max-width: 540px;
}
.aud__benefits {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin: 0 0 32px;
  padding: 0;
}
.aud__benefits li {
  position: relative;
  padding: 12px 16px 12px 42px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.aud__benefits li:hover { background: rgba(255,255,255,.06); border-color: rgba(255,45,85,.25); transform: translateX(3px); }
.aud__benefits li::before {
  content: ''; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent, var(--red));
  box-shadow: 0 0 12px color-mix(in srgb, var(--accent, var(--red)) 60%, transparent);
}
.aud__benefits li::after {
  content: ''; position: absolute; left: 19px; top: calc(50% - 4px);
  width: 8px; height: 4px;
  border-left: 2px solid white; border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.aud__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- panel visual (right of each aud section) ---------- */
.aud__visual { display: grid; place-items: center; }
.panel {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1/1;
  border-radius: 28px;
  background:
    radial-gradient(60% 50% at 30% 30%, color-mix(in srgb, var(--accent, var(--red)) 20%, transparent), transparent 70%),
    linear-gradient(180deg, var(--navy-3) 0%, var(--navy-2) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 0 1px color-mix(in srgb, var(--accent, var(--red)) 20%, transparent);
  overflow: hidden;
  isolation: isolate;
}
.panel__glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(50% 50% at 50% 50%, color-mix(in srgb, var(--accent, var(--red)) 25%, transparent), transparent 70%);
  filter: blur(30px);
  animation: pulseSoft 4s ease-in-out infinite;
}
@keyframes pulseSoft {
  0%,100% { opacity: .5; transform: scale(1); }
  50%     { opacity: .8; transform: scale(1.08); }
}
.panel__icon {
  position: absolute; top: 50%; left: 50%;
  width: 120px; height: 120px;
  transform: translate(-50%, -60%);
  color: white;
  filter: drop-shadow(0 10px 30px color-mix(in srgb, var(--accent, var(--red)) 40%, transparent));
  z-index: 1;
}
.panel__badge {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, 55%);
  padding: 10px 20px;
  background: var(--accent, var(--red));
  color: white;
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: .1em;
  border-radius: 8px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent, var(--red)) 50%, transparent);
  z-index: 2;
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translate(-50%, 55%); }
  50%     { transform: translate(-50%, 50%); }
}

.panel__chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: rgba(10,14,26,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: white; font-size: 12px; font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  animation: float 4s ease-in-out infinite;
}
.panel__chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.panel__chip .dot--green { background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulse 1.4s ease-in-out infinite; }
.panel__chip .dot--red   { background: var(--red); box-shadow: 0 0 8px var(--red); animation: pulse 1s ease-in-out infinite; }
.panel__chip--tl { top: 8%;   left: 6%;  animation-delay: 0s; }
.panel__chip--tr { top: 12%;  right: 6%; animation-delay: -1s; }
.panel__chip--bl { bottom: 10%; left: 6%; animation-delay: -2s; }
.panel__chip--br { bottom: 8%; right: 6%; animation-delay: -3s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ============ FOLLOW US ============ */
.follow { padding: 120px 0; background: var(--navy); position: relative; overflow: hidden; }
.follow__wrap { position: relative; }
.follow__bg {
  position: absolute; inset: -60px;
  background:
    radial-gradient(50% 60% at 50% 40%, rgba(255,45,85,.30), transparent 70%),
    radial-gradient(40% 50% at 20% 80%, rgba(80,90,200,.20), transparent 70%),
    radial-gradient(40% 50% at 80% 80%, rgba(255,184,0,.15), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: mesh 18s ease-in-out infinite alternate;
}
.follow__inner {
  position: relative; z-index: 1;
  text-align: center;
  padding: 70px 40px;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.follow__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: .95; letter-spacing: -.01em;
  font-weight: 400;
  margin: 14px 0 14px;
  color: transparent;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 60%, var(--red) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  animation: shine 6s linear infinite;
}
.follow__inner > p {
  color: rgba(255,255,255,.7);
  font-size: clamp(15px, 1.3vw, 17px);
  margin: 0 auto 40px;
  max-width: 560px;
}
.follow__socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.social {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: left;
  color: var(--paper);
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.social::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  opacity: 0; transition: opacity .35s;
  background: linear-gradient(135deg, var(--s1) 0%, var(--s2) 100%);
}
.social--ig { --s1: #f09433; --s2: #bc1888; }
.social--fb { --s1: #1877F2; --s2: #0b52c3; }
.social--yt { --s1: #FF0000; --s2: #c00000; }
.social:hover { transform: translateY(-4px); border-color: transparent; }
.social:hover::before { opacity: 1; }
.social__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05);
  color: white;
  flex-shrink: 0;
  transition: background .3s;
}
.social:hover .social__icon { background: rgba(255,255,255,.18); }
.social__body { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.social__body b { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.social__body em { font-size: 12px; font-style: normal; color: rgba(255,255,255,.7); }
.social:hover .social__body em { color: rgba(255,255,255,.9); }
.social__arrow {
  font-size: 22px; font-weight: 700;
  opacity: .5;
  transition: opacity .3s, transform .3s var(--ease);
}
.social:hover .social__arrow { opacity: 1; transform: translateX(4px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 30px 20px 60px; }
  .tile { transform: none; }
  .tile:hover { transform: none; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(2), .stat:nth-child(4) { border-left: none; }
  .aud__wrap, .aud--alt .aud__wrap { grid-template-columns: 1fr; gap: 50px; }
  .aud__visual { order: 2; }
  .aud--alt .aud__visual { order: 2; }
  .follow__socials { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 720px) {
  .nav { grid-template-columns: auto 1fr auto auto; padding: 12px 16px; gap: 12px; }
  .nav__links {
    position: fixed; inset: 60px 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(10,14,26,.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    transform: translateY(-120%);
    transition: transform .3s var(--ease);
    border-bottom: 1px solid var(--line);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 24px; font-size: 16px; }
  .nav__burger { display: flex; order: 4; }
  .nav__follow { padding: 6px 6px 6px 10px; gap: 8px; }
  .nav__follow-label { display: none; }
  .hero__title { font-size: 60px; }
  .aud { padding: 70px 0; }
  .aud__benefits li { font-size: 13.5px; }
  .follow { padding: 70px 0; }
  .follow__inner { padding: 50px 24px; }
  .panel { max-width: 380px; }
  .section-head h2 { font-size: 40px; }
}
@media (max-width: 520px) {
  .stats .wrap { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .aud__cta { flex-direction: column; align-items: stretch; }
  .aud__cta .btn { justify-content: center; }
  .panel__chip { font-size: 10px; padding: 6px 10px; }
  .panel__icon { width: 90px; height: 90px; }
  .panel__badge { font-size: 16px; padding: 8px 14px; }
  .social { padding: 16px 18px; gap: 12px; }
  .social__icon { width: 46px; height: 46px; }
  .social__body b { font-size: 15px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__title .line { opacity: 1; transform: none; }
  .marquee__track, .hero__marquee-track { animation: none; }
}
