/* ============================================================================
   HeyaBud.ai — MOTION LAYER
   Free-floating 3D devices, scroll-reveal, parallax glow. No boxes.
   Loaded AFTER style.css. Everything degrades gracefully and respects
   prefers-reduced-motion.
   ========================================================================== */

/* ---------- scroll reveal ---------- */
.reveal{
  opacity:0; transform:translateY(34px);
  transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change:opacity,transform;
}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.09s}
.reveal.d2{transition-delay:.18s}
.reveal.d3{transition-delay:.27s}
.reveal.d4{transition-delay:.36s}

/* ---------- the phone: a real device, not a screenshot in a card ---------- */
.stage{
  perspective:1600px;
  perspective-origin:50% 40%;
  position:relative;
}

.phone{
  position:relative;
  width:100%;
  max-width:320px;
  aspect-ratio:9/19.5;
  border-radius:46px;
  padding:9px;
  margin:0 auto;
  background:linear-gradient(150deg,#3a4448 0%,#171d1f 34%,#0d1113 62%,#2d3639 100%);
  box-shadow:
    0 2px 0 rgba(255,255,255,.10) inset,
    0 50px 90px -30px rgba(0,0,0,.85),
    0 0 90px -20px rgba(26,179,178,.30);
  transform-style:preserve-3d;
  will-change:transform;
}
.phone::after{                       /* screen glare */
  content:'';position:absolute;inset:9px;border-radius:38px;pointer-events:none;z-index:3;
  background:linear-gradient(122deg,rgba(255,255,255,.13) 0%,rgba(255,255,255,.03) 22%,transparent 46%);
}
.phone .screen{
  position:relative;width:100%;height:100%;border-radius:38px;overflow:hidden;
  background:#05090a;
}
.phone .screen img{width:100%;height:100%;object-fit:cover;display:block}
.phone .notch{
  position:absolute;top:8px;left:50%;transform:translateX(-50%);
  width:33%;height:20px;border-radius:0 0 14px 14px;background:#0a0e0f;z-index:4;
}
/* soft floor reflection so it sits in space, not on a card */
.phone-glow{
  position:absolute;left:50%;bottom:-40px;transform:translateX(-50%);
  width:70%;height:80px;border-radius:50%;filter:blur(38px);
  background:radial-gradient(ellipse,rgba(26,179,178,.42),transparent 70%);
  z-index:-1;
}

/* drifting idle float */
@keyframes drift{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-16px)}
}
.float{animation:drift 7s ease-in-out infinite}
.float.slow{animation-duration:9s}
.float.delay{animation-delay:-3.5s}

/* ---------- fanned device cluster ----------
   Flex-based, NOT absolutely positioned — so it always reserves its own height and can
   never bleed into the section below. The 3D angle comes purely from transforms. */
.fan{
  display:flex; justify-content:center; align-items:center;
  gap:clamp(-40px,-2vw,0px);
  perspective:1800px;
  padding:20px 0 60px;
}
.fan .phone{
  max-width:250px; margin:0; flex:0 0 auto;
  transition:transform .8s cubic-bezier(.2,.7,.2,1), opacity .6s;
}
.fan .p1{transform:rotateY(26deg) rotateZ(-5deg) scale(.84); opacity:.7; z-index:1; margin-right:-34px}
.fan .p2{transform:rotateY(-3deg) scale(1.03); z-index:3}
.fan .p3{transform:rotateY(-26deg) rotateZ(5deg) scale(.84); opacity:.7; z-index:1; margin-left:-34px}
.fan:hover .p1{transform:rotateY(19deg) rotateZ(-3deg) scale(.9) translateX(-26px); opacity:.95}
.fan:hover .p3{transform:rotateY(-19deg) rotateZ(3deg) scale(.9) translateX(26px); opacity:.95}

/* ---------- parallax glow orbs ---------- */
.orb{
  position:absolute;border-radius:50%;pointer-events:none;z-index:-2;
  filter:blur(90px);will-change:transform;
}
.orb.cy{background:radial-gradient(circle,rgba(26,179,178,.5),transparent 66%)}
.orb.mg{background:radial-gradient(circle,rgba(207,57,232,.42),transparent 66%)}

/* ---------- full-bleed cinematic band ---------- */
.band{
  position:relative;overflow:hidden;
  padding:150px 0;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 460px at 20% 30%, rgba(207,57,232,.12), transparent 65%),
    radial-gradient(900px 460px at 80% 70%, rgba(26,179,178,.13), transparent 65%),
    var(--ink-2);
}
.band-quote{
  font-family:var(--display);font-weight:700;letter-spacing:-.025em;line-height:1.16;
  font-size:clamp(2rem,4.6vw,3.6rem);max-width:20ch;margin:0 auto;text-align:center;
}

/* ---------- character grabs ---------- */
.chars{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.char{
  position:relative;aspect-ratio:3/4;border-radius:18px;overflow:hidden;
  background:linear-gradient(170deg,var(--ink-3),var(--ink));
  border:1px solid var(--line);
  transition:transform .5s cubic-bezier(.2,.7,.2,1),border-color .4s;
}
.char:hover{transform:translateY(-8px) scale(1.02);border-color:var(--magenta)}
.char img{
  width:100%;height:100%;object-fit:cover;
  /* oversized so there's room to move without exposing an edge */
  transform:scale(1.14);
  transition:transform .9s cubic-bezier(.2,.7,.2,1);
  will-change:transform;
}
.char:hover img{transform:scale(1.2)}

/* PARALLAX PORTRAIT — she drifts against the frame as you scroll and follows the cursor,
   so she reads as a person in a space rather than a photo stuck to a card. */
.char[data-parallax] img{transition:transform .5s cubic-bezier(.2,.7,.2,1)}
.char[data-parallax]{cursor:crosshair}

/* the featured, big version */
.char-hero{
  grid-column:span 2; grid-row:span 2; aspect-ratio:auto;
}
.char-hero .meta{padding:30px 26px 24px}
.char-hero .nm{font-size:1.6rem}
.char-hero .tp{opacity:1;max-height:none;font-size:.9rem;margin-top:10px;max-width:34ch}
@media(max-width:960px){ .char-hero{grid-column:span 2;grid-row:span 1} }
@media(max-width:560px){ .char-hero{grid-column:span 1} }
.char .meta{
  position:absolute;inset:auto 0 0 0;padding:22px 20px 18px;z-index:2;
  background:linear-gradient(transparent,rgba(6,9,10,.82) 42%,rgba(6,9,10,.97));
}
.char .nm{font-family:var(--display);font-weight:700;font-size:1.15rem}
.char .cy{font-family:var(--mono);font-size:.64rem;letter-spacing:.14em;text-transform:uppercase;color:var(--magenta);margin-top:3px}
.char .tp{font-size:.8rem;color:var(--muted);margin-top:7px;opacity:0;max-height:0;transition:opacity .4s,max-height .4s}
/* 160, not 60: the blurbs are two or three sentences and 60px cut them off mid-word — the
   reader got half a thought and a fade. */
.char:hover .tp{opacity:1;max-height:160px}
/* THE FEATURED CARD'S BLURB WAS NEVER VISIBLE.  (fixed 2026-09-04)
   `.char-hero .tp{opacity:1}` is declared ABOVE `.char .tp{opacity:0}` and carries exactly the
   same specificity, so the later rule quietly won and the hero's copy only ever appeared on
   hover — the one card whose whole job is to be read at rest. Restated here with a higher
   specificity so its position in the file stops mattering. */
.char.char-hero .tp{opacity:1;max-height:none}
/* placeholder when we don't have a render yet */
.char.empty{display:grid;place-items:center;border-style:dashed}
.char.empty .ph{
  font-family:var(--display);font-weight:800;font-size:3rem;color:var(--line);
}

/* ---------- REAL app icons ----------
   The PNGs ship in mixed colours (some grey, some magenta). We normalise every one to a
   brand colour with a filter, and follow the Bible's own rule:
     CYAN    = standard / core capability
     MAGENTA = Heyabud+ (premium)
   ------------------------------------------------------------------------- */
/* ONE consistent icon family, drawn as inline SVG — identical 24px grid, identical stroke
   weight, identical round caps. The app's own PNGs are a mix of thin line, filled, and
   solid shapes drawn at different times; they can never be made to match. These keep the
   same SHAPES (waveform, pin, brain, layers) so they still read as HeyaBud. */
/* Aden's PNG icons, tinted. Same rule as .bi — one system, no SVG conversion. */
.ficon{
  margin-bottom:22px; display:block; width:44px; height:44px;
  transition:transform .35s cubic-bezier(.2,.7,.2,1);
}
.card:hover .ficon{transform:translateY(-3px) scale(1.06)}
.ficon img{
  width:44px;height:44px;object-fit:contain;display:block;
  filter:brightness(0) saturate(100%) invert(63%) sepia(52%) saturate(1234%) hue-rotate(140deg)
         brightness(92%) contrast(88%) drop-shadow(0 0 10px rgba(26,179,178,.30));
}
.ficon.plus img{
  filter:brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(3000%) hue-rotate(268deg)
         brightness(97%) contrast(92%) drop-shadow(0 0 10px rgba(207,57,232,.34));
}

/* premium badge on a card */
.card.plus{border-color:rgba(207,57,232,.28)}
.card.plus:hover{border-color:var(--magenta)}
.plus-tag{
  font-family:var(--mono);font-size:.58rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--magenta);border:1px solid rgba(207,57,232,.4);border-radius:100px;
  padding:3px 9px;margin-left:9px;vertical-align:middle;white-space:nowrap;
}

/* ============================================================================
   BENTO — varied cell sizes, live visuals, gradient icons that actually move.
   A uniform grid of identical boxes is what makes a feature section boring.
   ========================================================================== */
.bento{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.bx{
  position:relative; overflow:hidden;
  grid-column:span 2;
  background:linear-gradient(165deg,#1c2124 0%,var(--ink-3) 46%,#14181a 100%);
  border:1px solid var(--line);
  border-radius:20px;
  padding:32px 30px;
  min-height:230px;
  display:flex; flex-direction:column;
  transition:border-color .4s, transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.bx::before{                                  /* corner light that wakes on hover */
  content:''; position:absolute; inset:0; pointer-events:none; opacity:0;
  background:radial-gradient(460px 220px at 12% 0%, rgba(26,179,178,.16), transparent 70%);
  transition:opacity .45s;
}
.bx:hover{transform:translateY(-4px);border-color:rgba(26,179,178,.42);
  box-shadow:0 22px 50px -24px rgba(0,0,0,.85), 0 0 40px -18px rgba(26,179,178,.35)}
.bx:hover::before{opacity:1}

.bx.wide{grid-column:span 3}
.bx.hero{grid-column:span 4; min-height:300px}
.bx.tall{grid-row:span 2}

/* premium tint */
.bx.plus::before{background:radial-gradient(460px 220px at 12% 0%, rgba(207,57,232,.17), transparent 70%)}
.bx.plus:hover{border-color:rgba(207,57,232,.45);
  box-shadow:0 22px 50px -24px rgba(0,0,0,.85), 0 0 40px -18px rgba(207,57,232,.38)}

.bx h3{font-size:1.28rem;margin-bottom:10px;letter-spacing:-.02em;position:relative;z-index:2}
.bx p{color:var(--muted);font-size:.95rem;line-height:1.6;position:relative;z-index:2;max-width:46ch}
.bx .spacer{flex:1}

/* ---- the icon ----
   ADEN'S OWN PNG ICONS, used directly. No tracing, no SVG conversion — that kept inverting.
   The *_bare.png files are his glyphs with the rings and white discs stripped. We tint them
   to the brand colour with a filter. Simple, and it is unambiguously HIS artwork.
     CYAN    = standard      MAGENTA = Heyabud+ */
.bi{width:46px;height:46px;margin-bottom:20px;position:relative;z-index:2}
.bi img{
  width:46px;height:46px;object-fit:contain;display:block;
  /* brightness(0) flattens the glyph to black, then we recolour it -> works on ANY source colour */
  filter:brightness(0) saturate(100%) invert(63%) sepia(52%) saturate(1234%) hue-rotate(140deg)
         brightness(92%) contrast(88%) drop-shadow(0 0 10px rgba(26,179,178,.32));
}
.bx.plus .bi img{
  filter:brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(3000%) hue-rotate(268deg)
         brightness(97%) contrast(92%) drop-shadow(0 0 10px rgba(207,57,232,.36));
}

/* Aden's traced icons are single filled paths, so we animate the WHOLE glyph rather than
   sub-parts. Each card names its own motion — still alive, but every icon is authentically
   his, not an approximation. */
.bi svg{transform-origin:50% 50%}

/* idle: the voice icon breathes on its own, so the page isn't dead before you touch it */
.bi.pulse svg{animation:puls 2.4s ease-in-out infinite}
@keyframes puls{0%,100%{transform:scale(1);opacity:.92}50%{transform:scale(1.09);opacity:1}}
.bx:hover .bi.pulse svg{animation-duration:.7s}

/* hover motions */
.bx:hover .bi.bob svg{animation:bob .85s cubic-bezier(.3,1.5,.4,1)}
@keyframes bob{0%{transform:translateY(-4px)}55%{transform:translateY(2px)}100%{transform:translateY(0)}}

.bx:hover .bi.sweep svg{animation:swp 1s ease-in-out}
@keyframes swp{0%{transform:rotate(0) scale(1)}35%{transform:rotate(-12deg) scale(1.1)}70%{transform:rotate(8deg) scale(1.06)}100%{transform:rotate(0) scale(1)}}

.bx:hover .bi.blink svg{animation:blk 1s ease-in-out}
@keyframes blk{0%,100%{transform:scaleY(1)}45%{transform:scaleY(.08)}}

.bx:hover .bi.tw svg{animation:twk 1s ease-in-out}
@keyframes twk{0%,100%{transform:scale(1) rotate(0)}50%{transform:scale(1.22) rotate(9deg)}}

.bx:hover .bi.spin svg{animation:sp 2.6s linear infinite}
@keyframes sp{to{transform:rotate(360deg)}}

.bx:hover .bi.rise svg{animation:rise .9s cubic-bezier(.2,.8,.2,1)}
@keyframes rise{0%{transform:translateY(3px) scale(.94)}100%{transform:translateY(0) scale(1)}}

/* ---- a screenshot living inside a bento cell ---- */
.bx-shot{
  position:absolute; right:-34px; bottom:-46px; width:212px;
  border-radius:20px; border:1px solid var(--line);
  box-shadow:0 24px 60px rgba(0,0,0,.6);
  transform:rotate(-6deg); transition:transform .55s cubic-bezier(.2,.7,.2,1); z-index:1;
  opacity:.92;
}
.bx:hover .bx-shot{transform:rotate(-3deg) translateY(-10px) scale(1.03)}
.bx.has-shot p{max-width:56%}

@media(max-width:1000px){
  .bento{grid-template-columns:repeat(2,1fr)}
  .bx,.bx.wide,.bx.hero{grid-column:span 1}
  .bx.tall{grid-row:span 1}
  .bx-shot{display:none}
  .bx.has-shot p{max-width:100%}
}
@media(max-width:640px){ .bento{grid-template-columns:1fr} }
@media(prefers-reduced-motion:reduce){
  .bi .bar,.bx:hover .bi *{animation:none!important}
}

/* ---------- builder stages (horizontal icon strip) ---------- */
.stages{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin-top:12px}
.stage-step{
  background:var(--ink-3);border:1px solid var(--line);border-radius:14px;
  padding:24px 16px;text-align:center;transition:border-color .3s,transform .3s;
}
.stage-step:hover{border-color:var(--magenta);transform:translateY(-4px)}
.stage-step img{
  width:34px;height:34px;object-fit:contain;margin:0 auto 14px;display:block;
  filter:brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(3000%) hue-rotate(268deg)
         brightness(97%) contrast(92%) drop-shadow(0 0 8px rgba(207,57,232,.28));
  transition:transform .4s cubic-bezier(.2,.7,.2,1);}
.stage-step:hover img{transform:scale(1.12)}
.stage-step .n{font-family:var(--mono);font-size:.6rem;letter-spacing:.14em;color:var(--muted);display:block;margin-bottom:6px}
.stage-step .t{font-family:var(--display);font-weight:600;font-size:.92rem}

/* ---------- travel modes strip ---------- */
.modes{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
.mode{
  display:flex;align-items:center;gap:9px;
  background:var(--ink-3);border:1px solid var(--line);border-radius:100px;
  padding:9px 17px 9px 13px;font-size:.85rem;color:var(--text-2);
  transition:border-color .3s;
}
.mode:hover{border-color:var(--cyan)}
.mode img{width:19px;height:19px;object-fit:contain;flex-shrink:0;
  filter:brightness(0) saturate(100%) invert(63%) sepia(52%) saturate(1234%) hue-rotate(140deg) brightness(92%) contrast(88%);}

@media(max-width:960px){ .stages{grid-template-columns:repeat(3,1fr)} }
@media(max-width:560px){ .stages{grid-template-columns:repeat(2,1fr)} }

/* ---------- site music toggle ---------- */
.hb-music{
  position:fixed; right:22px; bottom:22px; z-index:2000;
  width:46px; height:46px; border-radius:14px; cursor:pointer;
  display:grid; place-items:center;
  background:rgba(18,23,25,.82); border:1px solid var(--line);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  box-shadow:0 8px 26px rgba(0,0,0,.5);
  transition:border-color .3s, transform .25s cubic-bezier(.2,.7,.2,1), background .3s;
}
.hb-music:hover{transform:translateY(-2px);border-color:rgba(26,179,178,.5)}
.hb-music svg{
  width:20px;height:20px;fill:none;stroke:var(--muted);stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round;transition:stroke .3s;
  grid-area:1/1;
}
.hb-music .ico-on{display:none}
.hb-music.on{border-color:rgba(26,179,178,.55);background:rgba(26,179,178,.12)}
.hb-music.on .ico-on{display:block;stroke:var(--cyan)}
.hb-music.on .ico-off{display:none}

/* the little equaliser only appears while it's actually playing */
.hb-music-eq{display:none;grid-area:1/1;align-items:flex-end;gap:2px;height:14px}
.hb-music.on .hb-music-eq{display:none}   /* keep the speaker icon; eq reserved for future use */
.hb-music-eq i{width:2px;background:var(--cyan);border-radius:2px;animation:mq 1s ease-in-out infinite}
.hb-music-eq i:nth-child(2){animation-delay:-.35s}
.hb-music-eq i:nth-child(3){animation-delay:-.7s}
@keyframes mq{0%,100%{height:4px}50%{height:14px}}

/* the speaker's waves pulse gently while music is on */
.hb-music.on .ico-on .w1{animation:mw 2s ease-in-out infinite}
.hb-music.on .ico-on .w2{animation:mw 2s ease-in-out infinite .35s}
@keyframes mw{0%,100%{opacity:.35}50%{opacity:1}}

@media(max-width:640px){ .hb-music{right:14px;bottom:14px;width:42px;height:42px} }
@media(prefers-reduced-motion:reduce){ .hb-music.on .ico-on .w1,.hb-music.on .ico-on .w2{animation:none} }

/* ============================================================================
   MOBILE
   Most visitors will meet this on a phone. Everything below assumes that, and
   strips out anything that only makes sense with a mouse or a wide screen.
   ========================================================================== */
@media(max-width:760px){
  /* Hover-only motion is dead weight on touch — no cursor to lean toward. */
  .bx:hover{transform:none}
  .char:hover{transform:none}
  .char:hover img{transform:scale(1.14)}

  /* Bento: one column, and the screenshots that lean in off-frame would overflow. */
  .bento{grid-template-columns:1fr;gap:14px}
  .bx,.bx.wide,.bx.hero{grid-column:span 1;min-height:0;padding:26px 22px}
  .bx-shot{display:none}
  .bx.has-shot p{max-width:100%}
  .bx h3{font-size:1.18rem}

  /* The tilting 3D phone fights a touch scroll. Sit it flat and centre it. */
  .stage{perspective:none}
  .phone{transform:none!important;max-width:250px}
  .float{animation:none}

  /* Icons need to be bigger on a phone, not smaller. */
  .bi,.bi img{width:40px;height:40px}
  .ficon,.ficon img{width:40px;height:40px}

  /* Timeline: pull the rail in so the copy gets the width. */
  .tl{padding-left:26px}
  .tl::before{left:5px}
  .tl-item::before{left:-26px;width:9px;height:9px}
  .tl-item{padding-bottom:40px}
  .tl-item h3{font-size:1.2rem}
  .tl-item p{font-size:.95rem}

  .band{padding:70px 0}
  .band-quote{font-size:clamp(1.6rem,7vw,2.2rem);max-width:100%}

  .stages{grid-template-columns:repeat(2,1fr);gap:10px}
  .stage-step{padding:18px 10px}

  .modes{gap:8px}
  .mode{padding:8px 14px 8px 11px;font-size:.8rem}

  .strands{gap:14px}
  .strand{padding:26px 22px}
}

/* Very small phones — stop anything from forcing a horizontal scroll. */
@media(max-width:400px){
  .stages{grid-template-columns:repeat(2,1fr)}
  .phone{max-width:210px}
  .bx{padding:22px 18px}
}

/* ---------- timeline (the history of Aetheris) ---------- */
.tl{position:relative;padding-left:38px}
.tl::before{
  content:'';position:absolute;left:9px;top:8px;bottom:8px;width:1px;
  background:linear-gradient(to bottom,var(--cyan),var(--violet) 55%,var(--magenta));
  opacity:.55;
}
.tl-item{position:relative;padding-bottom:56px}
.tl-item:last-child{padding-bottom:0}
.tl-item::before{
  content:'';position:absolute;left:-34px;top:7px;width:11px;height:11px;border-radius:50%;
  background:var(--ink);border:2px solid var(--cyan);
  box-shadow:0 0 0 4px rgba(26,179,178,.12);
}
.tl-item.dark::before{border-color:var(--magenta);box-shadow:0 0 0 4px rgba(207,57,232,.12)}
.tl-era{
  font-family:var(--mono);font-size:.66rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--cyan);margin-bottom:8px;display:block;
}
.tl-item.dark .tl-era{color:var(--magenta)}
.tl-item h3{font-size:1.45rem;margin-bottom:10px;letter-spacing:-.02em}
.tl-item p{color:var(--muted);max-width:60ch;font-size:.98rem}
.tl-item p + p{margin-top:12px}
.tl-item .pull{
  color:var(--text-2);font-style:italic;border-left:2px solid var(--line);
  padding-left:16px;margin-top:16px;font-size:.95rem;
}

/* two-strand split */
.strands{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.strand{border-radius:18px;padding:34px 32px;border:1px solid var(--line);position:relative;overflow:hidden}
.strand.lumen{background:radial-gradient(600px 260px at 0% 0%,rgba(26,179,178,.13),transparent 70%),var(--ink-3)}
.strand.nocturne{background:radial-gradient(600px 260px at 100% 0%,rgba(207,57,232,.13),transparent 70%),var(--ink-3)}
.strand h3{font-size:1.4rem;margin-bottom:6px}
.strand .sub{font-family:var(--mono);font-size:.66rem;letter-spacing:.16em;text-transform:uppercase;margin-bottom:18px}
.strand.lumen .sub{color:var(--cyan)}
.strand.nocturne .sub{color:var(--magenta)}
.strand p{color:var(--muted);font-size:.95rem}
.strand .tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:20px}
.strand .tags span{
  font-family:var(--mono);font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;
  padding:5px 11px;border-radius:100px;border:1px solid var(--line);color:var(--muted);
}
.strand.lumen .tags span{border-color:rgba(26,179,178,.35);color:#9fdedd}
.strand.nocturne .tags span{border-color:rgba(207,57,232,.35);color:#e6a8f2}

@media(max-width:960px){
  .fan .p1,.fan .p3{display:none}
  .fan .p2{transform:none;margin:0}
  .chars{grid-template-columns:repeat(2,1fr)}
  .band{padding:100px 0}
  .strands{grid-template-columns:1fr}
}
@media(max-width:560px){ .chars{grid-template-columns:1fr} }

@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .float{animation:none}
  .phone,.char,.char img{transition:none!important}
}
