/* ============================================================
   UNIT084 — futuristic dub/industrial site
   ============================================================ */

:root{
  --bg:            #06090a;
  --bg-alt:        #0b1210;
  --bg-elev:       #0f1815;
  --line:          rgba(96, 220, 190, .14);

  --teal:          #2dd9b0;
  --teal-soft:     #6ffbe0;
  --cyan:          #38e0e0;
  --magenta:       #ff4fc3;
  --amber:         #d9a441;

  --text:          #e9f4f0;
  --text-dim:      #9db3ac;
  --text-faint:    #5c716b;

  --font-display:  'Orbitron', system-ui, sans-serif;
  --font-body:     'Rajdhani', system-ui, sans-serif;

  --radius:        14px;
  --container:     1200px;

  --glow-teal:     0 0 18px rgba(45,217,176,.55), 0 0 46px rgba(45,217,176,.22);
  --glow-magenta:  0 0 18px rgba(255,79,195,.5), 0 0 46px rgba(255,79,195,.2);

  --ease-out:      cubic-bezier(0.23, 1, 0.32, 1);      /* entrances / exits */
  --ease-in-out:   cubic-bezier(0.77, 0, 0.175, 1);     /* on-screen movement */
  --ease-drawer:   cubic-bezier(0.32, 0.72, 0, 1);      /* mobile nav drawer */
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

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

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

h1,h2,h3{
  font-family:var(--font-display);
  margin:0 0 .5em;
  letter-spacing:.02em;
  color:#fff;
}

p{ margin:0 0 1em; color:var(--text-dim); }

.section-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(20px, 5vw, 56px);
}

.kicker{
  font-family:var(--font-body);
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:.78rem;
  font-weight:700;
  color:var(--teal);
  margin:0 0 14px;
}

.section-title{
  font-size:clamp(1.9rem, 4vw, 3rem);
  line-height:1.15;
}
.section-title.center{ text-align:center; }

.text-glow{
  color:var(--teal-soft);
  text-shadow:0 0 18px rgba(111,251,224,.55), 0 0 40px rgba(45,217,176,.3);
}

.lead{ font-size:1.1rem; color:var(--text-dim); max-width:56ch; }
.lead.center{ margin-inline:auto; text-align:center; }

/* ---------- texture overlays ---------- */
.noise-overlay{
  position:fixed; inset:0; pointer-events:none; z-index:9990;
  opacity:.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow{
  position:fixed; top:0; left:0; width:420px; height:420px;
  border-radius:50%; pointer-events:none; z-index:1;
  background:radial-gradient(circle, rgba(45,217,176,.10), transparent 70%);
  transform:translate(-50%,-50%);
  transition:opacity .3s ease;
  opacity:0;
}
@media (hover:hover) and (pointer:fine){
  .cursor-glow.active{ opacity:1; }
}

/* ============ NAV ============ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:14px 0;
  background:linear-gradient(to bottom, rgba(6,9,10,.85), rgba(6,9,10,0));
  backdrop-filter:blur(2px);
  border-bottom:1px solid transparent;
  transition:background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled{
  background:rgba(6,9,10,.86);
  backdrop-filter:blur(14px) saturate(140%);
  border-bottom-color:var(--line);
}

.nav-wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(20px, 5vw, 56px);
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  width:38px; height:38px; border-radius:50%; object-fit:cover;
  border:1.5px solid rgba(45,217,176,.5);
  box-shadow:0 0 14px rgba(45,217,176,.35);
}
.brand-word{
  font-family:var(--font-display); font-weight:800; font-size:1.05rem;
  letter-spacing:.06em; color:#fff;
}
.brand-word em{ color:var(--teal); font-style:normal; }

.main-nav{ display:flex; gap:clamp(16px,2.4vw,34px); }
.main-nav a{
  position:relative;
  font-family:var(--font-body); font-weight:600; font-size:.95rem;
  letter-spacing:.03em; text-transform:uppercase;
  color:var(--text-dim);
  padding:6px 0;
  transition:color .2s ease;
}
.main-nav a.active{ color:var(--teal-soft); }
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:100%; height:1px;
  background:var(--teal); box-shadow:var(--glow-teal);
  transform:scaleX(0); transform-origin:left;
  transition:transform .25s var(--ease-out);
}
.main-nav a.active::after{ transform:scaleX(1); }

.nav-actions{ display:flex; align-items:center; gap:14px; }

.lang-switch{
  display:flex; align-items:center; gap:2px;
  border:1px solid var(--line); border-radius:999px; padding:3px;
  background:rgba(255,255,255,.02);
}
.lang-btn{
  appearance:none; border:0; background:transparent; cursor:pointer;
  font-family:var(--font-display); font-size:.66rem; font-weight:700; letter-spacing:.04em;
  color:var(--text-faint); padding:6px 9px; border-radius:999px; line-height:1;
  transition:color .2s ease, background .2s ease;
}
.lang-btn.active{ color:#04120e; background:linear-gradient(135deg, var(--teal), var(--cyan)); }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:22px; height:2px; background:var(--text); transition:transform .25s var(--ease-out), opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.live-dot{
  width:9px; height:9px; border-radius:50%; background:var(--text-faint);
  display:inline-block; margin-right:2px;
}
.live-dot.is-live{ background:#ff3b3b; box-shadow:0 0 8px #ff3b3b, 0 0 18px rgba(255,59,59,.6); animation:pulse-live 1.6s ease-in-out infinite; }
.live-dot.lg{ width:12px; height:12px; }
@keyframes pulse-live{ 0%,100%{ opacity:1; } 50%{ opacity:.4; } }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:700; text-transform:uppercase; letter-spacing:.05em;
  font-size:.92rem;
  padding:13px 26px; border-radius:999px;
  border:1px solid transparent;
  cursor:pointer; white-space:nowrap;
  transition:transform .15s var(--ease-out), box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:active{ transform:scale(.97); transition-duration:.1s; }

.btn-primary{
  background:linear-gradient(135deg, var(--teal), var(--cyan));
  color:#04120e;
  box-shadow:var(--glow-teal);
}

.btn-outline{
  background:transparent; color:var(--text);
  border-color:rgba(233,244,240,.28);
}

.btn-ghost{
  background:rgba(45,217,176,.08); color:var(--teal-soft);
  border-color:rgba(45,217,176,.35);
  padding:9px 16px; font-size:.82rem;
}

.btn-sm{ padding:9px 18px; font-size:.8rem; }

@media (hover:hover) and (pointer:fine){
  .main-nav a:hover{ color:var(--teal-soft); }
  .main-nav a:hover::after{ transform:scaleX(1); }

  /* transform (lift/scale/press) is owned by the magnetic-button JS in js/effects.js on
     hover-capable devices; touch/keyboard fall back to .btn:active in the base rules above. */
  .btn-primary:hover{ box-shadow:0 0 26px rgba(45,217,176,.7), 0 0 60px rgba(45,217,176,.3); }
  .btn-outline:hover{ border-color:var(--teal); color:var(--teal-soft); box-shadow:var(--glow-teal); }
  .btn-ghost:hover{ background:rgba(45,217,176,.16); }
  .lang-btn:not(.active):hover{ color:var(--teal-soft); }
}

/* ============ HERO ============ */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:center; justify-content:center;
  overflow:hidden; padding:120px 20px 60px;
}
.hero-bg{
  position:absolute; inset:0; background-size:cover; background-position:center 30%;
  transform:scale(1.06);
  will-change:transform, filter;
}

@keyframes hero-in{
  from{ opacity:0; transform:translateY(16px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes hero-in-reduced{
  from{ opacity:0; }
  to{ opacity:1; }
}

.hero-vignette{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(6,9,10,.35), rgba(6,9,10,.86) 72%),
    linear-gradient(to bottom, rgba(6,9,10,.55) 0%, rgba(6,9,10,.35) 30%, rgba(6,9,10,.55) 65%, var(--bg) 100%);
}
.hero-scanlines{
  position:absolute; inset:0; pointer-events:none; opacity:.5;
  background:repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,.28) 3px, rgba(0,0,0,0) 4px);
  mix-blend-mode:overlay;
}

.hero-content{
  position:relative; z-index:2; max-width:920px; margin:0 auto; text-align:center;
  display:flex; flex-direction:column; align-items:center;
}

.eyebrow{
  display:flex; align-items:center; gap:14px; justify-content:center;
  font-family:var(--font-body); text-transform:uppercase; letter-spacing:.32em;
  font-size:.78rem; font-weight:700; color:var(--teal-soft);
  margin-bottom:22px;
  animation:hero-in .6s var(--ease-out) both;
}
.eyebrow-line{ width:34px; height:1px; background:linear-gradient(to right, transparent, var(--teal)); }
.eyebrow-line:last-child{ background:linear-gradient(to left, transparent, var(--teal)); }

.hero-logo-wrap{
  position:relative;
  width:min(560px, 82vw);
  margin-bottom:8px;
  animation:hero-in .6s var(--ease-out) both 90ms;
}
.hero-logo{
  position:relative; width:100%; display:block;
  filter:drop-shadow(0 0 22px rgba(45,217,176,.45)) drop-shadow(0 0 60px rgba(45,217,176,.2));
  animation:logo-flicker 4.2s ease-in-out infinite 1s;
}
.hero-logo-ghost{
  position:absolute; inset:0; width:100%; height:100%;
  opacity:0; pointer-events:none; mix-blend-mode:screen;
}
.hero-logo-ghost--a{
  filter:hue-rotate(-55deg) saturate(6) brightness(1.4);
  animation:ghost-glitch-a 4.2s steps(1,end) infinite 1s;
}
.hero-logo-ghost--b{
  filter:hue-rotate(150deg) saturate(6) brightness(1.4);
  animation:ghost-glitch-b 4.2s steps(1,end) infinite 1s;
}

@keyframes logo-flicker{
  0%, 84%{ filter:drop-shadow(0 0 22px rgba(45,217,176,.45)) drop-shadow(0 0 60px rgba(45,217,176,.2)); opacity:1; }
  86%{ filter:drop-shadow(0 0 4px rgba(45,217,176,.1)); opacity:.75; }
  88%{ filter:drop-shadow(0 0 34px rgba(111,251,224,.85)) drop-shadow(0 0 90px rgba(45,217,176,.4)); opacity:1; }
  90%{ filter:drop-shadow(0 0 4px rgba(45,217,176,.1)); opacity:.7; }
  92%{ filter:drop-shadow(0 0 30px rgba(111,251,224,.7)) drop-shadow(0 0 80px rgba(45,217,176,.35)); opacity:1; }
  94%{ filter:drop-shadow(0 0 6px rgba(45,217,176,.15)); opacity:.85; }
  100%{ filter:drop-shadow(0 0 22px rgba(45,217,176,.45)) drop-shadow(0 0 60px rgba(45,217,176,.2)); opacity:1; }
}
@keyframes ghost-glitch-a{
  0%, 84%, 100%{ opacity:0; transform:translate(0,0); clip-path:inset(0 0 100% 0); }
  86%{ opacity:.65; transform:translate(-4px,0); clip-path:inset(10% 0 55% 0); }
  88%{ opacity:.55; transform:translate(3px,0); clip-path:inset(60% 0 5% 0); }
  90%{ opacity:.5; transform:translate(-2px,0); clip-path:inset(30% 0 30% 0); }
  92%{ opacity:.35; transform:translate(2px,0); clip-path:inset(0 0 70% 0); }
  94%{ opacity:0; transform:translate(0,0); clip-path:inset(0 0 100% 0); }
}
@keyframes ghost-glitch-b{
  0%, 84%, 100%{ opacity:0; transform:translate(0,0); clip-path:inset(100% 0 0 0); }
  86%{ opacity:.6; transform:translate(4px,0); clip-path:inset(45% 0 20% 0); }
  88%{ opacity:.5; transform:translate(-3px,0); clip-path:inset(5% 0 65% 0); }
  90%{ opacity:.45; transform:translate(2px,0); clip-path:inset(35% 0 25% 0); }
  92%{ opacity:.3; transform:translate(-2px,0); clip-path:inset(70% 0 0 0); }
  94%{ opacity:0; transform:translate(0,0); clip-path:inset(100% 0 0 0); }
}

.hero-tag{
  font-size:1.15rem; color:var(--text-dim); max-width:56ch; margin:14px 0 34px;
  animation:hero-in .6s var(--ease-out) both 200ms;
}

.hero-actions{
  display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin-bottom:46px;
  animation:hero-in .6s var(--ease-out) both 300ms;
}

.hero-stats{
  display:flex; align-items:center; gap:clamp(18px,4vw,40px);
  padding-top:28px; border-top:1px solid var(--line);
  animation:hero-in .6s var(--ease-out) both 390ms;
}
.hstat{ display:flex; flex-direction:column; align-items:center; gap:4px; }
.hstat-num{
  font-family:var(--font-display); font-weight:800; font-size:clamp(1.5rem,3vw,2.1rem);
  color:var(--teal-soft); text-shadow:0 0 20px rgba(111,251,224,.4);
}
.hstat-label{ font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:var(--text-faint); }
.hstat-sep{ width:1px; height:32px; background:var(--line); }

.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border:1.5px solid rgba(233,244,240,.35); border-radius:20px;
  z-index:2;
}
.scroll-cue span{
  position:absolute; top:7px; left:50%; width:4px; height:8px; margin-left:-2px;
  background:var(--teal-soft); border-radius:2px; box-shadow:var(--glow-teal);
  animation:cue 1.8s ease-in-out infinite;
}
@keyframes cue{ 0%{ opacity:1; top:7px;} 70%{ opacity:0; top:20px;} 100%{ opacity:0; top:7px;} }

/* ============ SECTION generic ============ */
.section{ position:relative; padding:clamp(70px,10vw,120px) 0; }
.section-head{
  display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap:20px;
  margin-bottom:48px;
}

/* Initial hidden state only — GSAP (js/main.js) owns the reveal animation itself.
   If GSAP fails to load, main.js sets opacity back to 1 immediately. */
.reveal{ opacity:0; }

/* ============ ABOUT ============ */
.about{ background:linear-gradient(to bottom, var(--bg), var(--bg-alt)); }
.about-grid{
  display:grid; grid-template-columns:340px 1fr; gap:clamp(30px,6vw,80px); align-items:center;
}

.about-portrait{ position:relative; justify-self:center; width:min(340px, 100%); }
.portrait-ring{
  position:absolute; inset:-14px; border-radius:50%;
  border:1.5px dashed rgba(45,217,176,.4);
  animation:spin 40s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.portrait-img{
  border-radius:50%; aspect-ratio:1/1; object-fit:cover;
  box-shadow:0 0 0 1px rgba(45,217,176,.3), var(--glow-teal), 0 30px 60px -20px rgba(0,0,0,.7);
}
.portrait-tag{
  position:absolute; bottom:6px; left:50%; transform:translateX(-50%);
  background:rgba(6,9,10,.85); border:1px solid rgba(45,217,176,.4);
  color:var(--teal-soft); font-family:var(--font-display); font-size:.68rem; letter-spacing:.14em;
  padding:6px 14px; border-radius:999px; backdrop-filter:blur(6px);
}

.tag-row{ list-style:none; display:flex; flex-wrap:wrap; gap:10px; padding:0; margin:22px 0 30px; }
.tag-row li{
  font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; font-weight:700;
  color:var(--teal-soft); background:rgba(45,217,176,.08);
  border:1px solid rgba(45,217,176,.3); padding:7px 14px; border-radius:999px;
}

.about-links{ display:flex; flex-wrap:wrap; gap:12px; }
.chip{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.85rem; font-weight:600; color:var(--text);
  border:1px solid var(--line); padding:9px 16px; border-radius:999px;
  transition:border-color .2s ease, color .2s ease, background .2s ease;
}

/* ============ MUSIC ============ */
.music{ background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.track-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:22px; }
.track-card{
  background:var(--bg-elev); border:1px solid var(--line); border-radius:var(--radius);
  padding:18px 18px 8px;
  transition:border-color .25s ease, transform .25s var(--ease-out), box-shadow .25s ease;
}
.track-card h3{ font-size:1rem; margin-bottom:12px; color:var(--teal-soft); }
.track-card iframe{ border-radius:8px; }

/* ============ VIDEOS ============ */
.videos{ background:linear-gradient(to bottom, var(--bg-alt), var(--bg)); }

.video-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:26px;
}
.video-card-featured{ grid-column:1 / -1; }
.video-card-featured .video-frame{ aspect-ratio:21/9; }

.video-frame{
  position:relative; width:100%; aspect-ratio:16/9; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 20px 46px -26px rgba(0,0,0,.8);
  background:#000;
}
.video-frame iframe{ position:absolute; inset:0; width:100%; height:100%; }

.video-card h3{
  font-family:var(--font-body); font-weight:700; font-size:.98rem; color:var(--text);
  margin-top:14px; letter-spacing:.01em;
}

/* ============ LIVE / TWITCH ============ */
.live{ position:relative; overflow:hidden; background:var(--bg); }
.live-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,79,195,.12), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(45,217,176,.16), transparent 50%);
  pointer-events:none;
}

.live-grid{
  position:relative; display:grid; grid-template-columns:1fr 1.15fr; gap:clamp(30px,6vw,70px); align-items:center;
}

.live-status{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.03); border:1px solid var(--line);
  padding:10px 18px; border-radius:999px; margin:6px 0 30px;
  font-weight:700; font-size:.85rem; letter-spacing:.03em; text-transform:uppercase; color:var(--text-dim);
}

.twitch-frame-wrap{
  position:relative; width:100%; aspect-ratio:16/9; border-radius:var(--radius); overflow:hidden;
  border:1px solid rgba(255,79,195,.3);
  box-shadow:var(--glow-magenta), 0 20px 50px -20px rgba(0,0,0,.8);
  background:#000;
}
.twitch-frame-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

.embed-note{ font-size:.8rem; color:var(--text-faint); margin-top:14px; }
.embed-note code{
  background:rgba(255,255,255,.06); padding:1px 6px; border-radius:4px; color:var(--teal-soft);
  font-family:ui-monospace, SFMono-Regular, monospace; font-size:.78rem;
}

/* ============ CONNECT ============ */
.connect{ background:linear-gradient(to bottom, var(--bg), var(--bg-alt)); }
.connect-inner{ text-align:center; }

.connect-cards{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:22px; margin-top:44px;
}
.connect-card{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  padding:34px 20px; border-radius:var(--radius);
  border:1px solid var(--line); background:var(--bg-elev);
  transition:transform .25s var(--ease-out), border-color .25s ease, box-shadow .25s ease;
}
.connect-card svg{ color:var(--teal); transition:color .25s ease; }
.connect-card-title{ font-family:var(--font-display); font-weight:700; color:#fff; letter-spacing:.04em; }
.connect-card-sub{ font-size:.82rem; color:var(--text-faint); }

/* ============ FOOTER ============ */
.site-footer{ border-top:1px solid var(--line); padding:34px 0; background:var(--bg); }
.footer-inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px;
}
.brand-footer{ opacity:.9; }
.footer-copy{ font-size:.85rem; color:var(--text-faint); margin:0; }
.footer-socials{ display:flex; gap:12px; }
.footer-socials a{
  width:36px; height:36px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:.68rem; font-weight:700; color:var(--text-dim);
  transition:border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

@media (hover:hover) and (pointer:fine){
  .chip:hover{ border-color:var(--teal); color:var(--teal-soft); background:rgba(45,217,176,.08); }
  .track-card:hover{ border-color:rgba(45,217,176,.5); transform:translateY(-3px); box-shadow:0 14px 34px -18px rgba(45,217,176,.35); }
  .connect-card:hover{ transform:translateY(-6px); border-color:var(--teal); box-shadow:var(--glow-teal); }
  .connect-card:hover svg{ color:var(--teal-soft); }
  .footer-socials a:hover{ border-color:var(--teal); color:var(--teal-soft); box-shadow:var(--glow-teal); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .main-nav{
    position:fixed; top:0; right:0; height:100svh; width:min(320px, 78vw);
    background:rgba(7,11,10,.98); backdrop-filter:blur(16px);
    flex-direction:column; justify-content:center; align-items:flex-start; gap:28px;
    padding:40px; border-left:1px solid var(--line);
    transform:translateX(100%); transition:transform .38s var(--ease-drawer);
    z-index:1001;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav a{ font-size:1.2rem; }
  .nav-toggle{ display:flex; }
  .nav-actions .btn-ghost{ display:none; }

  .about-grid{ grid-template-columns:1fr; text-align:center; }
  .about-copy{ display:flex; flex-direction:column; align-items:center; }
  .about-links, .tag-row{ justify-content:center; }

  .live-grid{ grid-template-columns:1fr; }
  .live-copy{ text-align:center; }
  .live-copy .lead{ margin-inline:auto; }
  .live-status, .hero-actions{ justify-content:center; }

  .video-grid{ grid-template-columns:repeat(2,1fr); }
  .connect-cards{ grid-template-columns:1fr; max-width:360px; margin-inline:auto; }
}

@media (max-width: 640px){
  body{ font-size:16px; }
  .hero{ padding-top:110px; }
  .hero-stats{ flex-wrap:wrap; row-gap:18px; }
  .hstat-sep{ display:none; }
  .track-grid{ grid-template-columns:1fr; }
  .video-grid{ grid-template-columns:1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .footer-inner{ flex-direction:column; text-align:center; }
}

/* ============================================================
   REDUCED MOTION — fewer and gentler, not zero.
   Keep opacity fades (they aid comprehension); drop looping
   ambient motion and on-hover/on-scroll translation.
   ============================================================ */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }

  /* ambient/looping decoration: off */
  .hero-bg, .portrait-ring, .scroll-cue span{ animation:none !important; }
  .hero-logo{ animation:none !important; }
  .hero-logo-wrap{ animation:hero-in-reduced .6s ease both 90ms !important; }
  .hero-logo-ghost{ display:none !important; }

  /* staggered entrances: fade only, no travel */
  .eyebrow, .hero-tag, .hero-actions, .hero-stats{
    animation-name:hero-in-reduced;
  }

  /* .reveal itself is handled in JS: main.js checks prefers-reduced-motion
     and sets opacity:1 immediately, skipping GSAP's animated reveal entirely. */

  /* interactive feedback: keep color/shadow, drop translation */
  .btn:hover, .btn:active,
  .track-card:hover, .connect-card:hover{ transform:none !important; }

  /* ambient extras added below: fully off */
  .eq-bars span{ animation:none !important; transform:scaleY(.7) !important; }
  .marquee-track{ animation:none !important; }
  #bg-particles{ display:none !important; }
}

/* ============================================================
   BOOT / INTRO SEQUENCE — plays once per browser session
   ============================================================ */
.boot-screen{
  position:fixed; inset:0; z-index:10000;
  background:var(--bg);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:20px;
}
.boot-screen::before{
  content:''; position:absolute; inset:0; opacity:.4; pointer-events:none;
  background:repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,.3) 3px, rgba(0,0,0,0) 4px);
  mix-blend-mode:overlay;
}
.boot-logo{
  position:relative;
  font-family:var(--font-display); font-weight:800; font-size:clamp(1.6rem,5vw,2.4rem);
  letter-spacing:.14em; color:var(--teal-soft);
  text-shadow:0 0 20px rgba(111,251,224,.5), 0 0 50px rgba(45,217,176,.3);
  opacity:0;
}
.boot-console{
  position:relative;
  font-family:ui-monospace, SFMono-Regular, Menlo, monospace; font-size:.82rem;
  color:var(--teal); letter-spacing:.02em; min-height:1.4em; text-align:center;
}
.boot-console .boot-caret{
  display:inline-block; width:.5em; height:1em; background:var(--teal);
  margin-left:2px; vertical-align:-2px; animation:boot-blink .9s steps(1) infinite;
}
@keyframes boot-blink{ 50%{ opacity:0; } }
.boot-bar{
  position:relative;
  width:min(220px, 60vw); height:2px; background:rgba(45,217,176,.15); border-radius:2px; overflow:hidden;
  opacity:0;
}
.boot-bar-fill{ width:0%; height:100%; background:linear-gradient(90deg, var(--teal), var(--cyan)); box-shadow:var(--glow-teal); }

/* ============================================================
   AMBIENT BACKGROUND PARTICLES — full-page, screen-blended
   ============================================================ */
#bg-particles{
  position:fixed; inset:0; z-index:3; pointer-events:none;
  mix-blend-mode:screen; opacity:.6;
}

/* ============================================================
   HUD CORNER BRACKETS — track / video / connect cards
   ============================================================ */
.track-card, .connect-card, .video-frame{ position:relative; }

.track-card::before, .track-card::after,
.connect-card::before, .connect-card::after,
.video-frame::before, .video-frame::after{
  content:''; position:absolute; width:16px; height:16px;
  border:1.5px solid var(--teal-soft); opacity:0;
  transition:opacity .25s ease, transform .3s var(--ease-out);
  pointer-events:none; z-index:1;
}
.track-card::before, .connect-card::before, .video-frame::before{
  top:8px; left:8px; border-right:0; border-bottom:0; transform:translate(5px,5px);
}
.track-card::after, .connect-card::after, .video-frame::after{
  bottom:8px; right:8px; border-left:0; border-top:0; transform:translate(-5px,-5px);
}

@media (hover:hover) and (pointer:fine){
  .track-card:hover::before, .track-card:hover::after,
  .connect-card:hover::before, .connect-card:hover::after,
  .video-card:hover .video-frame::before, .video-card:hover .video-frame::after{
    opacity:1; transform:translate(0,0);
  }
}

/* ============================================================
   EQUALIZER BARS — small "on air" motif
   ============================================================ */
.eq-bars{ display:inline-flex; align-items:flex-end; gap:2px; height:13px; }
.eq-bars span{
  width:3px; border-radius:1px; transform-origin:bottom;
  background:linear-gradient(to top, var(--teal), var(--teal-soft));
  animation:eq-bounce 1.1s ease-in-out infinite;
}
.eq-bars span:nth-child(1){ height:40%; animation-delay:-0.9s; }
.eq-bars span:nth-child(2){ height:100%; animation-delay:-0.45s; }
.eq-bars span:nth-child(3){ height:65%; animation-delay:-0.15s; }
.eq-bars span:nth-child(4){ height:85%; animation-delay:-0.7s; }
@keyframes eq-bounce{ 0%,100%{ transform:scaleY(.35); } 50%{ transform:scaleY(1); } }

.eq-bars.lg{ height:20px; gap:3px; }
.eq-bars.lg span{ width:4px; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee{
  position:relative; overflow:hidden;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--bg-alt);
  padding:16px 0;
}
.marquee-track{
  display:flex; width:max-content;
  animation:marquee-scroll 30s linear infinite;
}
.marquee-track span{
  display:inline-flex; align-items:center; gap:16px;
  font-family:var(--font-display); font-weight:700; font-size:.85rem;
  letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint);
  padding:0 20px; white-space:nowrap;
}
.marquee-track span.accent{ color:var(--teal-soft); }
.marquee-track .dot{ color:var(--teal); }
@keyframes marquee-scroll{ to{ transform:translateX(-50%); } }

/* ============================================================
   TEXT SCRAMBLE (decode-in) — no extra styling needed,
   js/effects.js swaps textContent on existing .section-title spans
   ============================================================ */
