:root {
  --black: #020106;
  --black-soft: #08030f;
  --panel: rgba(12, 5, 20, 0.74);
  --white: #f7f4ff;
  --muted: #a69db7;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #25b8ff;
  --blue-bright: #75dcff;
  --pink: #ff2fcf;
  --pink-bright: #ff82e5;
  --violet: #8b4cff;
  --max: 1380px;
  --header: 82px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 135, 255, .09), transparent 28rem),
    radial-gradient(circle at 88% 30%, rgba(255, 0, 192, .09), transparent 30rem),
    var(--black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: var(--pink); color: #fff; }
section[id] { scroll-margin-top: 76px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: .7rem 1rem;
  background: #fff;
  color: #000;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.ambient, .grain { position: fixed; inset: 0; pointer-events: none; z-index: 100; }
.ambient { opacity: .12; mix-blend-mode: screen; }
.ambient-blue { background: linear-gradient(110deg, rgba(0, 160, 255, .2), transparent 35%); }
.ambient-pink { background: linear-gradient(250deg, rgba(255, 0, 194, .16), transparent 34%); }
.grain {
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.signal-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #020106;
  transition: opacity .7s ease, visibility .7s ease;
}
.signal-intro.is-hidden { opacity: 0; visibility: hidden; }
.signal-intro p { margin: 0; color: rgba(255,255,255,.7); font-size: .68rem; letter-spacing: .38em; text-transform: uppercase; }
.signal-intro-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(68vw, 720px);
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, var(--blue), #fff, var(--pink), transparent);
  box-shadow: 0 0 20px var(--blue), 0 0 45px rgba(255,47,207,.6);
  animation: intro-scan 1.2s var(--ease) both;
}
@keyframes intro-scan {
  0% { transform: translate(-50%, -50%) scaleX(0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scaleX(1); opacity: .3; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: var(--header);
  display: grid;
  grid-template-columns: 86px 1fr 190px;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 3.6vw, 4rem);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(2, 1, 6, .9);
  border-color: rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.brand {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  isolation: isolate;
}
.brand::before,
.brand::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.brand::before {
  border: 1px solid rgba(112, 214, 255, .4);
  box-shadow: 0 0 14px rgba(56, 180, 255, .2), 0 0 22px rgba(255, 38, 190, .13);
  animation: brand-signal-pulse 3.8s ease-in-out infinite;
}
.brand::after {
  inset: -4px;
  border: 1px solid rgba(255, 70, 202, .14);
  opacity: 0;
  animation: brand-signal-wave 3.8s ease-out infinite;
}
.brand-mark {
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  background: #020106;
  box-shadow: inset 0 0 16px rgba(2,1,6,.8), 0 0 8px rgba(75, 195, 255, .16);
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(1.06) contrast(1.03);
  transition: transform .35s var(--ease), filter .35s ease;
}
.brand:hover img,
.brand:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.14) contrast(1.06) brightness(1.06);
}
.brand:focus-visible { outline: 1px solid var(--blue-bright); outline-offset: 5px; }
@keyframes brand-signal-pulse {
  0%, 100% { opacity: .45; transform: scale(.98); box-shadow: 0 0 10px rgba(56, 180, 255, .16), 0 0 18px rgba(255, 38, 190, .09); }
  46% { opacity: .82; transform: scale(1.035); box-shadow: 0 0 18px rgba(56, 180, 255, .3), 0 0 28px rgba(255, 38, 190, .22); }
  58% { opacity: .55; transform: scale(1); }
}
@keyframes brand-signal-wave {
  0%, 42% { opacity: 0; transform: scale(.88); }
  52% { opacity: .32; }
  74%, 100% { opacity: 0; transform: scale(1.22); }
}
.site-nav { justify-self: center; display: flex; gap: clamp(1.2rem, 3vw, 3.2rem); }
.site-nav a { position: relative; color: rgba(255,255,255,.68); font-size: .69rem; letter-spacing: .2em; text-transform: uppercase; transition: color .25s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -.65rem; width: 100%; height: 1px; background: linear-gradient(90deg, var(--blue), var(--pink)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.header-status { justify-self: end; display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.55); font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; }
.header-status i, .signal-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 12px var(--pink); animation: status-pulse 1.6s infinite; }
@keyframes status-pulse { 50% { opacity: .35; transform: scale(.75); } }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; height: 1px; margin: 6px 0; background: #fff; transition: transform .25s ease, opacity .25s ease; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header) + 2.5rem) clamp(1.2rem, 6vw, 7rem) clamp(5rem, 9vh, 7.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; animation: hero-breathe 12s ease-in-out infinite alternate; }
@keyframes hero-breathe { to { transform: scale(1.028); filter: saturate(1.06) contrast(1.03); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,1,6,.96) 0%, rgba(2,1,6,.62) 36%, rgba(2,1,6,.06) 72%), linear-gradient(0deg, #020106 0%, transparent 28%, rgba(2,1,6,.2) 100%); }
.transmission-pulse {
  position: absolute;
  left: 50%;
  top: 45%;
  aspect-ratio: 1;
  width: min(49vw, 700px);
  border-radius: 50%;
  border: 1px solid rgba(130, 223, 255, .46);
  transform: translate(-50%, -50%) scale(.92);
  box-shadow: -12px 0 35px rgba(0,175,255,.25), 12px 0 35px rgba(255,0,203,.25), inset -10px 0 30px rgba(0,175,255,.15), inset 10px 0 30px rgba(255,0,203,.15);
  mix-blend-mode: screen;
  animation: ring-pulse 3.5s ease-out infinite;
}
.pulse-two { animation-delay: 1.75s; border-color: rgba(255,71,214,.34); }
@keyframes ring-pulse {
  0% { transform: translate(-50%, -50%) scale(.92); opacity: 0; }
  18% { opacity: .85; }
  65% { opacity: .3; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}
.transmission-scan { position: absolute; left: 0; right: 0; top: 24%; height: 1px; background: linear-gradient(90deg, transparent, rgba(67,203,255,.7), #fff, rgba(255,63,210,.7), transparent); box-shadow: 0 0 18px rgba(70,205,255,.7), 0 0 32px rgba(255,45,207,.45); opacity: .2; animation: scan 7s linear infinite; }
@keyframes scan { 0% { transform: translateY(-18vh); } 100% { transform: translateY(68vh); } }
.hero-copy { position: relative; width: min(760px, 92vw); z-index: 2; }
.kicker { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.1rem; color: rgba(255,255,255,.65); font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; }
.kicker span { width: 44px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--pink)); box-shadow: 0 0 10px var(--blue); }
.hero h1 { margin: 0; max-width: 800px; font-size: clamp(3.2rem, 7.8vw, 8rem); line-height: .87; letter-spacing: -.045em; font-weight: 760; text-transform: uppercase; text-shadow: 0 0 30px rgba(0,0,0,.75); }
.hero h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.84); text-shadow: 0 0 20px rgba(255,45,207,.45); }
.hero-description { margin: 1.4rem 0 0; max-width: 620px; color: rgba(255,255,255,.76); font-size: clamp(1rem, 1.5vw, 1.25rem); }
.hero-actions, .release-actions, .connect-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.4rem; border: 1px solid var(--line); color: #fff; font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { border-color: transparent; background: linear-gradient(100deg, rgba(0,170,255,.92), rgba(255,27,198,.92)); box-shadow: 0 0 30px rgba(127,43,255,.32); }
.button-primary:hover { box-shadow: -8px 0 25px rgba(0,170,255,.3), 8px 0 25px rgba(255,27,198,.32); }
.button-ghost { background: rgba(4,2,10,.32); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.07); }
.hero-meta { position: absolute; right: clamp(1.2rem, 4vw, 4.5rem); bottom: 3rem; display: flex; flex-direction: column; align-items: flex-end; gap: .45rem; color: rgba(255,255,255,.42); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .55rem; color: rgba(255,255,255,.38); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 26px; background: linear-gradient(var(--blue), var(--pink)); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 50% { transform: scaleY(.55); opacity: .45; } }

.section { position: relative; padding: clamp(5rem, 8vw, 8rem) clamp(1.1rem, 4vw, 3.5rem); }
.section-shell { width: min(100%, var(--max)); margin: 0 auto; }
.section-heading { margin-bottom: clamp(2.6rem, 5vw, 4.5rem); }
.section-heading h2, .identity h2, .connect h2, .manifesto h2 { margin: 0; font-size: clamp(2.35rem, 5vw, 5.2rem); line-height: .97; letter-spacing: -.045em; font-weight: 690; text-transform: uppercase; }
.section-heading h2 { max-width: 880px; }
.lead { color: rgba(255,255,255,.85); font-size: clamp(1.08rem, 1.7vw, 1.42rem); line-height: 1.5; }
.body-copy { color: var(--muted); max-width: 680px; }

.transmission { background: linear-gradient(180deg, #020106, #08020d 42%, #020106); }
.transmission::before { content: ""; position: absolute; width: 48vw; height: 48vw; left: -20vw; top: 20%; border-radius: 50%; background: rgba(0,125,255,.11); filter: blur(110px); }
.transmission-grid { display: grid; grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr); gap: clamp(2.2rem, 6vw, 7rem); align-items: center; }
.release-cover { position: relative; width: min(100%, 590px); justify-self: center; padding: clamp(.55rem, 1.2vw, .9rem); background: linear-gradient(135deg, rgba(34,181,255,.28), transparent 35%, rgba(255,47,207,.28)); border: 1px solid rgba(255,255,255,.15); }
.release-cover img { position: relative; z-index: 2; width: 100%; height: auto; }
.cover-glow { position: absolute; inset: 12%; z-index: 0; background: linear-gradient(120deg, var(--blue), var(--pink)); filter: blur(55px); opacity: .38; }
.signal-chip { display: inline-flex; align-items: center; gap: .6rem; padding: .45rem .7rem; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.035); color: rgba(255,255,255,.65); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.release-copy h3 { margin: 1.35rem 0 1.2rem; font-size: clamp(2.3rem, 4.4vw, 4.9rem); line-height: .94; letter-spacing: -.05em; }
.release-data { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1.8rem 0; }
.release-data div { padding: 1rem; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.025); }
.release-data span { display: block; margin-bottom: .35rem; color: rgba(255,255,255,.38); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.release-data strong { font-size: .78rem; font-weight: 500; }
.availability-note { margin: 1rem 0 0; color: rgba(255,255,255,.42); font-size: .76rem; }
.banner-frame { position: relative; margin-top: clamp(4.5rem, 8vw, 8rem); border: 1px solid rgba(255,255,255,.12); overflow: hidden; }
.banner-frame img { width: 100%; min-height: 260px; object-fit: cover; }
.banner-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.18), transparent 40%, rgba(0,0,0,.32)); }
.banner-overlay { position: absolute; z-index: 2; right: clamp(1.2rem, 4vw, 4rem); bottom: clamp(1rem, 4vw, 3rem); display: flex; gap: .6rem; font-size: clamp(.7rem, 1.4vw, 1rem); letter-spacing: .24em; text-transform: uppercase; }
.banner-overlay span { color: var(--blue-bright); }
.banner-overlay strong { color: var(--pink-bright); }

.identity { overflow: hidden; }
.identity-backdrop { position: absolute; inset: 0; background: radial-gradient(circle at 72% 48%, rgba(255,0,195,.12), transparent 35%), radial-gradient(circle at 20% 55%, rgba(0,150,255,.1), transparent 34%); }
.identity-grid { position: relative; display: grid; grid-template-columns: minmax(320px, .9fr) minmax(340px, 1.1fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.identity-image { position: relative; aspect-ratio: 4 / 5; }
.identity-image::before { content: ""; position: absolute; inset: 9%; border-radius: 50%; background: linear-gradient(110deg, rgba(0,180,255,.45), rgba(255,27,198,.45)); filter: blur(60px); }
.identity-image img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%); }
.identity-ring { position: absolute; z-index: 2; inset: -2%; border: 1px solid rgba(255,255,255,.09); clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%); }
.identity h2 { max-width: 780px; }
.identity h2 em { font-style: normal; color: var(--pink-bright); text-shadow: 0 0 24px rgba(255,47,207,.28); }
.identity-principles { margin-top: 2.2rem; border-top: 1px solid var(--line); }
.identity-principles div { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.identity-principles span { color: var(--blue-bright); font-size: .65rem; letter-spacing: .15em; }
.identity-principles p { margin: 0; color: rgba(255,255,255,.72); }

.manifesto { position: relative; min-height: 72svh; display: grid; place-items: center; overflow: hidden; }
.manifesto-image, .manifesto-overlay { position: absolute; inset: 0; }
.manifesto-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.manifesto-overlay { background: linear-gradient(0deg, #020106 0%, rgba(2,1,6,.2) 42%, rgba(2,1,6,.66) 100%), radial-gradient(circle, transparent 16%, rgba(2,1,6,.58) 84%); }
.manifesto-copy { position: relative; z-index: 2; padding: 2rem 1rem; text-align: center; text-shadow: 0 2px 30px #000; }
.manifesto-copy p { margin: 0 0 .3rem; color: rgba(255,255,255,.78); font-size: clamp(.66rem, 1.4vw, .9rem); letter-spacing: .34em; text-transform: uppercase; }
.manifesto h2 { font-size: clamp(4rem, 10vw, 10rem); background: linear-gradient(90deg, var(--blue-bright), #fff 48%, var(--pink-bright)); -webkit-background-clip: text; color: transparent; text-shadow: none; }

.visuals { background: linear-gradient(180deg, #020106, #07020d); }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: end; }
.split-heading > p { margin: 0; color: var(--muted); max-width: 560px; }
.visual-grid { display: grid; grid-template-columns: 1.05fr .95fr; grid-template-rows: 420px 420px; gap: 1rem; }
.visual-card { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: #08040f; }
.visual-card-tall { grid-row: span 2; }
.visual-card-wide { grid-column: 2; }
.visual-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter 1s var(--ease); }
.visual-card:hover img { transform: scale(1.035); filter: saturate(1.12); }
.visual-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,1,6,.92), transparent 54%); }
.visual-card > div { position: absolute; z-index: 2; left: 1.4rem; right: 1.4rem; bottom: 1.3rem; }
.visual-card span { display: block; color: var(--pink-bright); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; }
.visual-card strong { display: block; margin-top: .2rem; font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 500; }
.clip-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: 4rem; }
.clip-strip figure { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.09); }
.clip-strip img { width: 100%; aspect-ratio: 1.24; object-fit: cover; transition: transform .7s var(--ease); }
.clip-strip figure:hover img { transform: scale(1.04); }
.clip-strip figcaption { position: absolute; left: .8rem; bottom: .7rem; padding: .35rem .5rem; background: rgba(2,1,6,.7); backdrop-filter: blur(10px); font-size: .55rem; letter-spacing: .16em; }

.connect { min-height: 78svh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.connect-media, .connect-overlay { position: absolute; inset: 0; }
.connect-media img { width: 100%; height: 100%; object-fit: cover; filter: blur(1px) saturate(.9); animation: hero-breathe 14s ease-in-out infinite alternate; }
.connect-overlay { background: radial-gradient(circle at center, rgba(2,1,6,.48), rgba(2,1,6,.94) 72%), linear-gradient(180deg, #07020d, transparent 20%, #020106); }
.connect-panel { position: relative; z-index: 2; width: min(920px, 94vw); padding: clamp(2rem, 5vw, 4.2rem); border: 1px solid rgba(255,255,255,.14); background: rgba(4,2,10,.72); backdrop-filter: blur(18px); box-shadow: 0 0 80px rgba(113,24,170,.22); }
.connect-panel .kicker { justify-content: center; }
.connect-panel h2 { max-width: 780px; margin-inline: auto; font-size: clamp(2.5rem, 5vw, 5.2rem); }
.connect-panel > p:not(.kicker) { color: rgba(255,255,255,.62); }
.connect-actions { justify-content: center; }
.social-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.social-row a { padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.035); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.social-row a:hover, .social-row a:focus-visible { border-color: var(--pink); background: rgba(255,47,207,.1); transform: translateY(-2px); }

.site-footer { position: relative; z-index: 2; background: #020106; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 132px 1fr auto; align-items: center; gap: 2rem; padding-top: 2.35rem; padding-bottom: 2.35rem; }
.footer-brand {
  position: relative;
  display: flex;
  width: 116px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(7,3,16,.42);
  box-shadow: 0 0 0 1px rgba(255,255,255,.055), 0 0 28px rgba(58,177,255,.08), 0 0 34px rgba(255,47,207,.07);
  transition: transform .28s var(--ease), box-shadow .28s ease;
}
.footer-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(58,177,255,.08), transparent 42%, rgba(255,47,207,.08));
}
.footer-brand img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand:hover,
.footer-brand:focus-visible { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 0 1px rgba(255,255,255,.09), 0 0 34px rgba(58,177,255,.14), 0 0 42px rgba(255,47,207,.12); }
.footer-brand:focus-visible { outline: 1px solid var(--blue-bright); outline-offset: 5px; }
.footer-top p { margin: 0; justify-self: center; color: rgba(255,255,255,.34); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-contact { color: rgba(255,255,255,.65); font-size: .76rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.1rem; padding-bottom: 1.4rem; border-top: 1px solid var(--line); color: rgba(255,255,255,.34); font-size: .67rem; }
.footer-bottom div { display: flex; gap: 1.2rem; }
.footer-bottom a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { min-height: 100vh; padding: 3.5rem 1.2rem 5rem; }
.legal-shell { width: min(880px, 100%); margin: auto; }
.legal-logo { display: flex; width: 180px; height: 56px; padding: 4px 7px; margin-bottom: 2.3rem; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.legal-logo img { width: 100%; height: 100%; object-fit: contain; }
.legal-shell h1 { font-size: clamp(2.5rem, 7vw, 5rem); line-height: .95; margin: 0 0 1rem; }
.legal-shell h2 { margin-top: 2.5rem; font-size: 1.25rem; }
.legal-shell h3 { margin-top: 1.8rem; font-size: 1rem; }
.legal-shell p, .legal-shell li { color: rgba(255,255,255,.68); }
.legal-shell a { color: var(--blue-bright); }
.legal-shell ul { padding-left: 1.2rem; }
.legal-meta { margin-bottom: 2.5rem; color: rgba(255,255,255,.42) !important; font-size: .78rem; }
.legal-back { display: inline-flex; margin-bottom: 2rem; color: var(--blue-bright); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.legal-box { margin-top: 2rem; padding: 1rem 1.2rem; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 78px 1fr 150px; }
  .transmission-grid, .identity-grid { grid-template-columns: 1fr; }
  .release-cover, .identity-image { width: min(660px, 100%); margin: auto; }
  .release-copy { width: min(820px, 100%); margin-inline: auto; }
  .split-heading { grid-template-columns: 1fr; align-items: start; }
  .visual-grid { grid-template-rows: 390px 390px; }
  .clip-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-top p { justify-self: center; }
}

@media (max-width: 820px) {
  :root { --header: 68px; }
  .site-header { grid-template-columns: 66px 1fr auto; padding-inline: 1rem; }
  .brand { width: 54px; height: 54px; }
  .brand-mark { width: 46px; height: 46px; }
  .header-status { display: none; }
  .menu-button { display: block; justify-self: end; }
  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    width: min(82vw, 360px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(4,1,9,.97);
    border-left: 1px solid rgba(255,255,255,.1);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    backdrop-filter: blur(20px);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-size: .8rem; }
  .menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 100svh; align-items: flex-end; padding: calc(var(--header) + 2rem) 1.1rem 6rem; }
  .hero-media img { object-position: center top; }
  .hero-shade { background: linear-gradient(0deg, #020106 0%, rgba(2,1,6,.8) 38%, rgba(2,1,6,.1) 78%); }
  .transmission-pulse { top: 38%; width: 76vw; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5.6rem); }
  .hero-description br { display: none; }
  .hero-meta { display: none; }
  .scroll-cue { left: auto; right: 1rem; transform: none; }
  .section { padding-inline: 1rem; }
  .release-data { grid-template-columns: 1fr; }
  .banner-frame img { min-height: 340px; object-position: 63% center; }
  .banner-overlay { left: 1rem; right: auto; }
  .visual-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 520px 380px 520px; }
  .visual-card-tall, .visual-card-wide { grid-row: auto; grid-column: auto; }
  .clip-strip { grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: 3rem; }
  .manifesto { min-height: 64svh; }
  .connect { min-height: 70svh; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 520px) {
  .site-header { grid-template-columns: 60px 1fr auto; }
  .brand { width: 50px; height: 50px; }
  .brand-mark { width: 43px; height: 43px; }
  .hero-actions, .release-actions, .connect-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero h1 { letter-spacing: -.06em; }
  .clip-strip { grid-template-columns: 1fr; }
  .visual-grid { grid-template-rows: 510px 360px 510px; }
  .social-row { display: grid; grid-template-columns: 1fr 1fr; }
  .social-row a { display: flex; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .signal-intro { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* v0.4.0 — AVYRO homepage handover copy + touch signal viewer */
.hero-claim {
  margin: 1.35rem 0 .35rem;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.34rem);
  font-weight: 600;
  letter-spacing: .03em;
}
.hero-claim + .hero-description { margin-top: 0; }

.world {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 42%, rgba(0,151,255,.105), transparent 31%),
    radial-gradient(circle at 82% 52%, rgba(255,22,199,.11), transparent 32%),
    linear-gradient(180deg, #030107, #08020e 50%, #030107);
}
.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.world-card {
  position: relative;
  min-height: 330px;
  padding: clamp(1.55rem, 3.5vw, 3rem);
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  overflow: hidden;
}
.world-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -55% 35%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(125deg, rgba(0,177,255,.17), rgba(255,34,200,.17));
  filter: blur(55px);
}
.world-card > * { position: relative; z-index: 1; }
.world-card > span {
  color: var(--blue-bright);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.world-card:nth-child(2) > span { color: var(--pink-bright); }
.world-card h3 {
  max-width: 580px;
  margin: 1.25rem 0 1rem;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.world-card p { max-width: 640px; color: var(--muted); }
.world-card strong {
  display: block;
  margin-top: 1.75rem;
  color: rgba(255,255,255,.84);
  font-size: .92rem;
  font-weight: 500;
}

.signal-viewable { cursor: zoom-in; }
.signal-viewable:focus-visible {
  outline: 1px solid var(--blue-bright);
  outline-offset: 5px;
}
.view-signal {
  position: absolute;
  z-index: 5;
  top: .85rem;
  right: .85rem;
  padding: .42rem .58rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(3,1,8,.68);
  color: rgba(255,255,255,.75);
  font-size: .52rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  opacity: .75;
  transition: opacity .25s ease, border-color .25s ease, background .25s ease;
}
.signal-viewable:hover .view-signal,
.signal-viewable:focus-visible .view-signal {
  opacity: 1;
  border-color: rgba(255,54,211,.6);
  background: rgba(20,3,28,.82);
}
.identity-image .view-signal { z-index: 4; }
.banner-frame .view-signal { left: 1rem; right: auto; }
.clip-strip .view-signal { display: none; }

.signal-viewer[hidden] { display: none; }
.signal-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.signal-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1,0,4,.94);
  backdrop-filter: blur(16px);
}
.signal-viewer-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  width: min(1320px, 96vw);
  height: min(900px, 92svh);
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(4,2,10,.74);
  box-shadow: -24px 0 90px rgba(0,139,255,.13), 24px 0 90px rgba(255,0,195,.13);
  overflow: hidden;
}
.signal-viewer-dialog figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
}
.viewer-media {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 1.25rem;
  background: radial-gradient(circle at center, rgba(33,8,48,.24), rgba(2,1,6,.12) 66%);
}
.signal-viewer-dialog figure > .viewer-media > img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  flex: 0 0 auto;
  user-select: none;
  -webkit-user-drag: none;
}
.signal-viewer-dialog figcaption {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .3rem 1rem;
  align-items: end;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(3,1,8,.88);
}
.signal-viewer-dialog figcaption span {
  grid-column: 1;
  color: var(--pink-bright);
  font-size: .56rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.signal-viewer-dialog figcaption strong {
  grid-column: 1;
  font-size: clamp(.95rem, 2vw, 1.3rem);
  font-weight: 500;
}
.signal-viewer-dialog figcaption small {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: rgba(255,255,255,.46);
  font-size: .65rem;
  letter-spacing: .15em;
}
.viewer-close,
.viewer-nav {
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.viewer-close:hover,
.viewer-close:focus-visible,
.viewer-nav:hover,
.viewer-nav:focus-visible {
  border-color: rgba(255,54,211,.55);
  background: rgba(255,54,211,.1);
}
.viewer-close {
  position: absolute;
  z-index: 3;
  top: .8rem;
  right: .8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.65rem;
  line-height: 1;
}
.viewer-nav {
  width: 42px;
  height: 70px;
  justify-self: center;
  font-size: 2rem;
}
.viewer-prev { grid-column: 1; }
.viewer-next { grid-column: 3; }
body.viewer-open { overflow: hidden; }

@media (hover: hover) and (pointer: fine) {
  .signal-viewable:hover > img { transform: scale(1.035); filter: saturate(1.12); }
}
@media (hover: none) {
  .signal-viewable:active > img { transform: scale(1.012); }
  .view-signal { opacity: .9; }
}
@media (max-width: 820px) {
  .world-grid { grid-template-columns: 1fr; }
  .world-card { min-height: 0; }
  .signal-viewer { padding: 0; }
  .signal-viewer-dialog {
    width: 100vw;
    height: 100svh;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    border: 0;
  }
  .viewer-media { padding: .5rem; }
  .viewer-nav { width: 38px; height: 62px; }
  .viewer-close { top: .6rem; right: .6rem; }
}
@media (max-width: 520px) {
  .view-signal { top: .55rem; right: .55rem; }
  .banner-frame .view-signal { left: .55rem; right: auto; }
  .signal-viewer-dialog {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }
  .signal-viewer-dialog figcaption { padding: .85rem 1rem; }
  .viewer-nav { width: 34px; height: 56px; font-size: 1.6rem; }
}


/* v0.4.1 — complete signal-viewer images + release countdown */
.release-countdown {
  margin-top: 1.35rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(115deg, rgba(39,159,255,.075), transparent 42%, rgba(255,38,203,.075)),
    rgba(255,255,255,.018);
  box-shadow: inset 0 0 30px rgba(76,23,122,.09);
}
.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.countdown-header span,
.countdown-header strong {
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.countdown-header span { color: rgba(255,255,255,.58); }
.countdown-header strong { color: var(--pink-bright); font-weight: 500; }
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
}
.countdown-grid > div {
  position: relative;
  padding: .85rem .55rem .3rem;
  text-align: center;
}
.countdown-grid > div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75rem;
  bottom: .2rem;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.countdown-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.035em;
}
.countdown-grid span {
  display: block;
  margin-top: .4rem;
  color: rgba(255,255,255,.42);
  font-size: .49rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.release-countdown.is-live {
  border-color: rgba(255,47,207,.38);
  box-shadow: inset 0 0 36px rgba(255,47,207,.08), 0 0 32px rgba(58,177,255,.07);
}
.release-countdown.is-live .countdown-header strong { color: var(--blue-bright); }
@media (max-width: 520px) {
  .countdown-header { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .countdown-grid > div { padding-inline: .2rem; }
  .countdown-grid strong { font-size: 1.45rem; }
}


/* v0.4.2 — full-image signal viewer + AVYRO preview transmission player */
.signal-viewer {
  padding: clamp(.45rem, 1.2vw, 1rem);
}
.signal-viewer-dialog {
  display: block;
  width: min(1500px, calc(100vw - 2rem));
  height: min(940px, calc(100dvh - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow: hidden;
}
.signal-viewer-dialog figure {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.viewer-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(.65rem, 1.5vw, 1.35rem) clamp(3.25rem, 5vw, 4.75rem) .65rem;
}
.signal-viewer-dialog figure > .viewer-media > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  flex: none;
}
.viewer-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.viewer-nav:hover,
.viewer-nav:focus-visible { transform: translateY(-50%); }
.viewer-prev { left: .75rem; }
.viewer-next { right: .75rem; }
.signal-viewer-dialog figcaption { position: relative; z-index: 2; }

.preview-player {
  position: relative;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 0 0, rgba(31,177,255,.12), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(255,38,203,.11), transparent 42%),
    rgba(255,255,255,.018);
  box-shadow: inset 0 0 34px rgba(75,22,122,.08), 0 18px 60px rgba(0,0,0,.16);
  overflow: hidden;
}
.preview-player::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-bright), transparent);
}
.preview-player::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 1px;
  background: linear-gradient(270deg, var(--pink-bright), transparent);
}
.preview-player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.preview-player-head div { min-width: 0; }
.preview-player-head span,
.preview-player-head strong { display: block; }
.preview-player-head span {
  color: var(--blue-bright);
  font-size: .54rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.preview-player-head strong {
  margin-top: .18rem;
  color: rgba(255,255,255,.92);
  font-size: .96rem;
  font-weight: 500;
}
.preview-player-head > i {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink-bright);
  box-shadow: 0 0 18px var(--pink-bright);
  animation: preview-signal-pulse 2.4s ease-in-out infinite;
}
.preview-audio-source {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.preview-player-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .9rem;
}
.preview-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-width: 126px;
  height: 46px;
  padding: 0 .85rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(4,2,10,.72);
  color: #fff;
  font: inherit;
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.preview-play:hover,
.preview-play:focus-visible {
  border-color: rgba(46,185,255,.68);
  background: rgba(21,8,31,.86);
  box-shadow: -10px 0 30px rgba(0,153,255,.1), 10px 0 30px rgba(255,0,195,.09);
}
.preview-play-icon {
  position: relative;
  width: 13px;
  height: 15px;
  flex: 0 0 auto;
}
.preview-play-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 0;
  height: 0;
  border-top: 6.5px solid transparent;
  border-bottom: 6.5px solid transparent;
  border-left: 10px solid var(--blue-bright);
  filter: drop-shadow(0 0 6px rgba(35,184,255,.7));
}
.preview-player.is-playing .preview-play-icon::before,
.preview-player.is-playing .preview-play-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 3px;
  height: 13px;
  border: 0;
  background: var(--pink-bright);
  filter: drop-shadow(0 0 5px rgba(255,53,207,.62));
}
.preview-player.is-playing .preview-play-icon::before { left: 2px; }
.preview-player.is-playing .preview-play-icon::after { right: 2px; }
.preview-wave-shell {
  position: relative;
  min-width: 0;
  height: 58px;
}
.preview-waveform {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.preview-waveform img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  user-select: none;
  -webkit-user-drag: none;
}
.preview-wave-base {
  opacity: .18;
  filter: grayscale(1) brightness(1.35);
}
.preview-wave-active {
  opacity: .92;
  clip-path: inset(0 calc(100% - var(--audio-progress)) 0 0);
  filter: drop-shadow(0 0 7px rgba(90,85,255,.28));
}
.preview-seek {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.preview-time {
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 82px;
  justify-content: flex-end;
  color: rgba(255,255,255,.7);
  font-size: .65rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}
.preview-time i { color: rgba(255,255,255,.25); font-style: normal; }
.preview-note {
  margin: .72rem 0 0;
  color: rgba(255,255,255,.42);
  font-size: .63rem;
  line-height: 1.45;
}
@keyframes preview-signal-pulse {
  0%, 100% { opacity: .42; transform: scale(.82); }
  45% { opacity: 1; transform: scale(1); }
  58% { opacity: .68; transform: scale(.9); }
}

@media (max-width: 820px) {
  .signal-viewer { padding: 0; }
  .signal-viewer-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border: 0;
  }
  .viewer-media {
    padding: max(.55rem, env(safe-area-inset-top)) 2.7rem .45rem;
  }
  .viewer-prev { left: .3rem; }
  .viewer-next { right: .3rem; }
  .preview-player-controls {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .preview-time {
    grid-column: 1 / -1;
    justify-content: flex-end;
    min-width: 0;
    margin-top: -.35rem;
  }
}
@media (max-width: 520px) {
  .viewer-media { padding-left: 2.25rem; padding-right: 2.25rem; }
  .viewer-nav { width: 32px; height: 52px; }
  .preview-player { padding: .85rem; }
  .preview-player-controls { gap: .65rem; }
  .preview-play {
    min-width: 46px;
    width: 46px;
    padding: 0;
  }
  .preview-play > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); }
  .preview-wave-shell { height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  .preview-player-head > i { animation: none; opacity: .8; }
}

/* v0.4.2 viewer/player final safeguards */
.signal-viewer-dialog figure { place-items: stretch; }
.preview-wave-shell:focus-within {
  outline: 1px solid rgba(35,184,255,.7);
  outline-offset: 4px;
}


/* v0.4.3 — stable visual archive without modal viewer */
.visual-card, .clip-strip figure, .release-cover, .banner-frame, .identity-image { cursor: default; }
