:root {
  --white: #f7f7f2;
  --black: #0a0d10;
  --graphite: #1a2328;
  --silver: #b7c4cc;
  --cyan: #00e6ff;
  --teal: #008c9e;
  --blue: #0057ff;
  --emerald: #008b69;
  --line: rgba(183, 196, 204, .22);
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --header: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; overflow-x: hidden; color: var(--black); background: var(--white); font-family: var(--sans); font-size: 15px; }
body.is-locked { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
::selection { color: var(--black); background: var(--cyan); }

.noise { position: fixed; inset: 0; z-index: 99; pointer-events: none; opacity: .045; 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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E"); }
.scanline { position: fixed; inset: 0; z-index: 98; pointer-events: none; opacity: .025; background: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, #fff 4px); }
.scroll-progress { position: fixed; z-index: 120; top: 0; left: 0; width: 0; height: 2px; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.cursor { position: fixed; z-index: 150; top: 0; left: 0; width: 32px; height: 32px; border: 1px solid rgba(0,230,255,.65); border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); transition: width .2s ease, height .2s ease, background .2s ease; mix-blend-mode: screen; }
.cursor span { position: absolute; top: 50%; left: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); transform: translate(-50%, -50%); }
.cursor.is-hover { width: 54px; height: 54px; background: rgba(0,230,255,.08); }

.boot { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; color: var(--white); background: var(--black); transition: opacity .7s ease, visibility .7s ease; }
.boot.is-hidden { opacity: 0; visibility: hidden; }
.boot__frame { position: relative; width: min(560px, calc(100% - 40px)); padding: 30px; border: 1px solid rgba(0,230,255,.35); }
.boot__frame::before, .boot__frame::after { content: ""; position: absolute; width: 18px; height: 18px; border-color: var(--cyan); }
.boot__frame::before { top: -1px; left: -1px; border-top: 1px solid; border-left: 1px solid; }
.boot__frame::after { right: -1px; bottom: -1px; border-right: 1px solid; border-bottom: 1px solid; }
.boot__frame > span, .ui-label { font-size: 8px; letter-spacing: .22em; text-transform: uppercase; }
.boot__frame strong { display: block; margin: 55px 0 22px; font-size: 68px; font-weight: 300; letter-spacing: -.08em; }
.boot__frame i { display: block; height: 1px; background: linear-gradient(90deg, var(--cyan) var(--boot, 0%), rgba(255,255,255,.15) var(--boot, 0%)); }
.boot__frame p { margin: 18px 0 0; color: var(--silver); font: italic 12px var(--serif); }

.header { position: fixed; z-index: 80; top: 0; left: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; height: var(--header); padding: 0 34px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.13); transition: height .35s ease, background .35s ease, backdrop-filter .35s ease; }
.header.is-scrolled { height: 62px; background: rgba(10,13,16,.83); backdrop-filter: blur(16px); }
.logo { justify-self: start; font-size: 18px; font-weight: 700; letter-spacing: .33em; }
.logo sup { margin-left: 6px; color: var(--cyan); font-size: 6px; letter-spacing: .14em; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a { position: relative; padding: 8px 0; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(247,247,242,.68); }
.desktop-nav a::after { content: ""; position: absolute; right: 100%; bottom: 2px; left: 0; height: 1px; background: var(--cyan); transition: right .3s ease; }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { right: 0; }
.header__actions { justify-self: end; display: flex; align-items: center; gap: 25px; }
.signal { display: flex; align-items: center; gap: 8px; font-size: 7px; letter-spacing: .18em; }
.signal i { width: 5px; height: 5px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px var(--emerald); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .25; } }
.menu-toggle { display: none; width: 28px; height: 28px; padding: 0; border: 0; background: none; color: inherit; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .3s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu { position: fixed; inset: 0; z-index: 70; display: flex; flex-direction: column; justify-content: space-between; padding: calc(var(--header) + 35px) 28px 34px; color: var(--white); background: var(--black); transform: translateY(-101%); transition: transform .65s cubic-bezier(.77,0,.18,1); }
.menu.is-open { transform: translateY(0); }
.menu__meta { display: flex; justify-content: space-between; color: var(--cyan); font-size: 8px; letter-spacing: .2em; }
.menu nav { display: grid; }
.menu nav a { display: flex; align-items: baseline; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); font: 38px/1 var(--serif); }
.menu nav small { color: var(--cyan); font: 8px var(--sans); }
.menu > p { margin: 0; color: var(--silver); font: italic 14px var(--serif); }

.hero { position: relative; min-height: 100svh; overflow: hidden; color: var(--white); background: var(--black); }
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center; transform: scale(1.015); animation: hero-breathe 16s ease-in-out infinite alternate; }
@keyframes hero-breathe { to { transform: scale(1.055); } }
.hero__shade { background: linear-gradient(90deg, transparent 0%, rgba(10,13,16,.08) 42%, rgba(10,13,16,.75) 69%, rgba(10,13,16,.96) 100%), linear-gradient(0deg, rgba(10,13,16,.62), transparent 35%); }
.frame { position: absolute; inset: 18px; pointer-events: none; }
.frame i { position: absolute; width: 24px; height: 24px; border-color: rgba(0,230,255,.65); }
.frame i:nth-child(1) { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.frame i:nth-child(2) { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.frame i:nth-child(3) { right: 0; bottom: 0; border-right: 1px solid; border-bottom: 1px solid; }
.frame i:nth-child(4) { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }
.frame--hero { inset: calc(var(--header) + 16px) 18px 18px; }
.hero__protocol { position: absolute; top: calc(var(--header) + 30px); left: 38px; display: flex; gap: 40px; color: rgba(247,247,242,.52); }
.hero__copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: 47%; min-height: 100svh; margin-left: auto; padding: calc(var(--header) + 55px) 6vw 80px 2vw; }
.hero__kicker { margin: 0 0 24px; color: var(--cyan); font-size: 8px; letter-spacing: .23em; text-transform: uppercase; }
.hero h1 { margin: 0 0 34px; color: transparent; font-size: clamp(75px, 10vw, 170px); line-height: .73; letter-spacing: -.06em; -webkit-text-stroke: 1px rgba(247,247,242,.42); }
.hero h2 { margin: 0; font: 400 clamp(43px, 5.3vw, 83px)/.92 var(--serif); letter-spacing: -.055em; }
.hero h2 em, .display em { color: var(--cyan); font-weight: 400; }
.hero__intro { margin: 35px 0 0; color: rgba(247,247,242,.66); font: 15px/1.55 var(--serif); }
.hero__actions { display: flex; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; min-width: 184px; padding: 15px 17px; border: 1px solid rgba(247,247,242,.35); color: var(--white); background: transparent; cursor: pointer; font-size: 8px; letter-spacing: .17em; text-transform: uppercase; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.button i { font-style: normal; }
.button--solid { border-color: var(--white); color: var(--black); background: var(--white); }
.button--solid:hover { border-color: var(--cyan); background: var(--cyan); }
.button--ghost:hover { color: var(--black); border-color: var(--cyan); background: var(--cyan); }
.sound-bars { display: flex; align-items: center; gap: 2px; height: 13px; }
.sound-bars b { width: 1px; height: 4px; background: currentColor; }
.button.is-playing .sound-bars b { animation: bars .6s ease-in-out infinite alternate; }
.button.is-playing .sound-bars b:nth-child(2) { animation-delay: -.2s; height: 10px; }
.button.is-playing .sound-bars b:nth-child(3) { animation-delay: -.4s; height: 7px; }
@keyframes bars { to { height: 13px; } }
.hero__side { position: absolute; right: 24px; top: 50%; display: flex; flex-direction: column; gap: 55px; color: rgba(247,247,242,.38); writing-mode: vertical-rl; }
.hero__scroll { position: absolute; z-index: 2; bottom: 30px; left: 38px; display: flex; align-items: center; gap: 28px; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll i { color: var(--cyan); font-size: 15px; font-style: normal; animation: down 1.6s ease-in-out infinite; }
@keyframes down { 50% { transform: translateY(7px); } }
.wave-canvas { position: absolute; z-index: 1; right: 0; bottom: 12%; width: 55%; height: 100px; pointer-events: none; opacity: .35; }

.section { padding: 145px 6vw; }
.section-index { display: flex; align-items: center; gap: 18px; margin-bottom: 70px; }
.section-index span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(10,13,16,.4); border-radius: 50%; font-size: 8px; }
.section-index p { margin: 0; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.section-index--light span { border-color: rgba(247,247,242,.45); }
.overline { margin: 0; font-size: 8px; letter-spacing: .25em; text-transform: uppercase; }
.display { margin: 28px 0 0; font: 400 clamp(58px, 7.1vw, 118px)/.82 var(--serif); letter-spacing: -.06em; }
.manifest { background: var(--white); }
.manifest__body { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 8vw; }
.manifest__body .overline, .manifest__body .display { grid-column: 1; }
.manifest__copy { grid-column: 2; grid-row: 1 / span 2; max-width: 560px; padding-bottom: 4px; }
.manifest__copy p { margin: 0 0 25px; font: 20px/1.45 var(--serif); }
.manifest__copy p:last-child { color: rgba(10,13,16,.55); }
.formula { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; margin-top: 130px; border-top: 1px solid rgba(10,13,16,.25); border-bottom: 1px solid rgba(10,13,16,.25); }
.formula > div { padding: 28px 8px; }
.formula > div span { display: block; margin-bottom: 28px; color: var(--teal); font-size: 8px; }
.formula strong { display: block; font: 25px/1 var(--serif); font-weight: 400; }
.formula small { display: block; margin-top: 10px; color: rgba(10,13,16,.46); font-size: 7px; letter-spacing: .16em; text-transform: uppercase; }
.formula > i { color: var(--teal); font-size: 20px; font-style: normal; }

.music { color: var(--white); background: var(--black); }
.section-title { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 80px; }
.music-player { display: grid; grid-template-columns: minmax(320px, .82fr) 1.18fr; min-height: 540px; border: 1px solid var(--line); background: #0d1215; }
.music-player__cover { position: relative; min-width: 0; overflow: hidden; }
.music-player__cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,13,16,.55), transparent 65%); }
.music-player__cover img { height: 100%; object-fit: cover; transition: opacity .4s ease, transform 1s ease; }
.music-player:hover .music-player__cover img { transform: scale(1.035); }
.music-player__cover > span { position: absolute; z-index: 2; bottom: 20px; left: 20px; color: var(--cyan); font-size: 7px; letter-spacing: .2em; }
.music-player__content { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 6vw; }
.music-player__meta { display: flex; justify-content: space-between; color: rgba(247,247,242,.45); font-size: 7px; letter-spacing: .18em; }
.music-player h3 { margin: 65px 0 12px; font: 400 clamp(42px, 5.7vw, 90px)/.9 var(--serif); letter-spacing: -.05em; }
.music-player__content > p { margin: 0; color: rgba(247,247,242,.5); font: italic 14px var(--serif); }
.player-line { height: 1px; margin: 70px 0 22px; background: rgba(247,247,242,.18); }
.player-line i { display: block; width: 0; height: 1px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.music-player__controls { display: flex; align-items: center; gap: 22px; }
.play { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(247,247,242,.5); border-radius: 50%; color: var(--white); background: transparent; cursor: pointer; transition: color .25s ease, background .25s ease; }
.play:hover, .play.is-playing { color: var(--black); background: var(--cyan); }
.play span { margin-left: 2px; }
.play.is-playing span { font-size: 0; }
.play.is-playing span::after { content: "Ⅱ"; font-size: 12px; }
.time { display: flex; gap: 7px; color: rgba(247,247,242,.5); font-size: 8px; }
.mini-wave { flex: 1; overflow: hidden; color: rgba(0,230,255,.58); font-size: 12px; letter-spacing: .12em; white-space: nowrap; }
.platforms { display: flex; gap: 22px; margin-top: 50px; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.platforms span { color: rgba(247,247,242,.38); }
.platforms a { border-bottom: 1px solid rgba(247,247,242,.3); }
.release-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.release-strip button { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 27px 22px; border: 0; border-right: 1px solid var(--line); color: var(--white); background: transparent; text-align: left; cursor: pointer; }
.release-strip button:last-child { border-right: 0; }
.release-strip button:hover { background: rgba(0,230,255,.06); }
.release-strip button > span { color: var(--cyan); font-size: 7px; }
.release-strip strong { display: block; font: 16px var(--serif); font-weight: 400; }
.release-strip small { grid-column: 2; color: rgba(247,247,242,.4); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.release-strip i { grid-column: 3; grid-row: 1 / span 2; color: var(--cyan); font-style: normal; }

.cinema { color: var(--white); background: var(--black); }
.cinema__image, .cinema-video-wrap { position: relative; min-height: 0; aspect-ratio: 16 / 9; overflow: hidden; background: #050709; }
.cinema-video { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #050709; }
.cinema__image::after { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(0deg, rgba(10,13,16,.45), transparent 35%); pointer-events: none; }
.cinema-video-wrap .frame { z-index: 2; pointer-events: none; }
.cinema-video__controls, .video-controls { position: absolute; z-index: 50; right: 40px; bottom: 62px; left: 40px; display: flex; flex-wrap: wrap; gap: 10px; pointer-events: auto; }
.cinema-control { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; min-width: 150px; padding: 12px 14px; border: 1px solid rgba(247,247,242,.38); color: var(--white); background: rgba(10,13,16,.68); cursor: pointer; pointer-events: auto; backdrop-filter: blur(12px); font-size: 7px; letter-spacing: .15em; text-transform: uppercase; transition: color .3s ease, border-color .3s ease, background .3s ease; }
.cinema-control i { color: var(--cyan); font-size: 12px; font-style: normal; }
.cinema-control:hover { color: var(--black); border-color: var(--cyan); background: var(--cyan); }
.cinema-control:hover i { color: var(--black); }
.video-control { pointer-events: auto; cursor: pointer; opacity: 1; }
.cinema-control.video-control:hover { color: var(--cyan); border-color: var(--cyan); background: rgba(10,13,16,.78); box-shadow: 0 0 18px rgba(0,230,255,.25); }
.cinema-control.video-control:hover i { color: var(--cyan); }
.video-control[disabled], .video-control.is-disabled { pointer-events: auto; cursor: pointer; opacity: 1; }
.cinema__time { position: absolute; z-index: 4; top: 32px; right: 40px; left: 40px; display: flex; justify-content: space-between; color: rgba(247,247,242,.65); pointer-events: none; }
.cinema__copy { display: grid; grid-template-columns: .35fr 1.65fr; gap: 5vw; }
.cinema__copy .section-index { align-self: start; }
.cinema__text { max-width: 950px; }
.cinema__text > p:not(.overline) { max-width: 610px; margin: 52px 0 0; color: rgba(247,247,242,.62); font: 19px/1.55 var(--serif); }
.text-link { display: inline-flex; align-items: center; gap: 45px; margin-top: 42px; padding: 0 0 10px; border: 0; border-bottom: 1px solid rgba(247,247,242,.4); color: inherit; background: none; cursor: pointer; font-size: 8px; letter-spacing: .19em; text-transform: uppercase; }
.text-link span { color: var(--cyan); font-size: 15px; transition: transform .25s ease; }
.text-link:hover span { transform: translate(4px, -4px); }

.digital { background: var(--white); }
.digital__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: center; }
.digital__portrait { position: relative; min-height: 730px; overflow: hidden; background: var(--graphite); }
.digital__portrait > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 38% center; }
.identity-frame { position: absolute; inset: 20px; border: 1px solid rgba(0,230,255,.45); color: var(--white); font-size: 7px; letter-spacing: .18em; }
.identity-frame span { position: absolute; top: 15px; left: 15px; }
.identity-frame span:nth-child(2) { right: 15px; left: auto; }
.identity-frame i { position: absolute; right: 15px; bottom: 15px; width: 38%; height: 1px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.digital__copy { max-width: 700px; }
.digital__lead { margin: 50px 0 18px; font: 23px/1.45 var(--serif); }
.digital__lead + p { margin: 0; color: rgba(10,13,16,.6); font: 17px/1.55 var(--serif); }
.protocol { margin: 65px 0 0; border-top: 1px solid rgba(10,13,16,.25); }
.protocol div { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(10,13,16,.25); }
.protocol dt { color: var(--teal); font-size: 8px; }
.protocol dd { margin: 0; font: 15px var(--serif); }
.protocol span { color: var(--emerald); font-size: 7px; letter-spacing: .16em; }

.world { position: relative; color: var(--white); background: var(--black); }
.world__image { --cursor-x: 50%; --cursor-y: 50%; position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; }
.world__image > img, .world__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.world__image > img { z-index: 0; object-fit: cover; }
.world__shade { z-index: 1; background: linear-gradient(90deg, rgba(10,13,16,.85), rgba(10,13,16,.05) 48%, rgba(10,13,16,.28)); }
.world__image::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(0,230,255,.11), transparent 18%); opacity: 0; transition: opacity .3s ease; }
.world__image:hover::before { opacity: 1; }
.world__heading { position: absolute; z-index: 4; top: 14%; left: 6vw; max-width: 530px; }
.world__heading > p:last-child { margin-top: 30px; color: rgba(247,247,242,.53); font: italic 13px var(--serif); }
.hotspot { position: absolute; z-index: 6; display: grid; place-items: center; width: 30px; height: 30px; border: 0; border-radius: 50%; color: var(--black); background: var(--white); cursor: pointer; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.hotspot::before { content: ""; position: absolute; inset: -10px; border: 1px solid rgba(0,230,255,.5); border-radius: 50%; animation: sonar 2s ease-out infinite; }
.hotspot::after { content: attr(aria-label); position: absolute; top: calc(100% + 15px); left: 50%; padding: 7px 9px; color: var(--cyan); background: rgba(10,13,16,.82); border: 1px solid rgba(0,230,255,.3); opacity: 0; pointer-events: none; white-space: nowrap; transform: translate(-50%, 5px); font-size: 7px; letter-spacing: .13em; text-transform: uppercase; transition: opacity .25s ease, transform .25s ease; }
@keyframes sonar { to { inset: -24px; opacity: 0; } }
.hotspot:hover, .hotspot.is-active { background: var(--cyan); box-shadow: 0 0 24px rgba(0,230,255,.65); transform: scale(1.18); }
.hotspot:hover::after, .hotspot:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
.hotspot i { width: 3px; height: 3px; border-radius: 50%; background: var(--black); }
.hotspot span { position: absolute; top: -18px; color: var(--white); font-size: 7px; }
.hotspot--tower { top: 45%; left: 35%; }
.hotspot--cube { top: 56%; left: 57%; }
.hotspot--note { top: 33%; left: 67%; }
.hotspot--portal { top: 61%; left: 82%; }
.city-glow { position: absolute; z-index: 3; border-radius: 999px; opacity: 0; pointer-events: none; mix-blend-mode: screen; transform: scale(.94); transition: opacity .45s ease, transform .45s ease; }
.city-glow::before, .city-glow::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.city-glow--tower { top: 24%; left: 27%; width: 18%; height: 50%; background: radial-gradient(ellipse, rgba(0,230,255,.26), transparent 68%); filter: blur(3px); }
.city-glow--tower::after { inset: 12% 31%; background: repeating-linear-gradient(90deg, rgba(0,230,255,.65) 0 1px, transparent 1px 11px); animation: towerPulse 2.8s ease-in-out infinite; }
.city-glow--cube { top: 43%; left: 49%; width: 18%; height: 25%; background: radial-gradient(circle, rgba(0,140,158,.42), transparent 67%); }
.city-glow--cube::after { inset: 20%; border: 1px solid rgba(0,230,255,.62); box-shadow: inset 0 0 24px rgba(0,230,255,.25), 0 0 25px rgba(0,140,158,.3); animation: memoryFlicker 2.1s steps(4, end) infinite; }
.city-glow--note { top: 22%; left: 61%; width: 14%; aspect-ratio: 1; border: 1px solid rgba(0,230,255,.55); box-shadow: 0 0 32px rgba(0,230,255,.35); }
.city-glow--note::after { inset: 32%; background: var(--cyan); box-shadow: -35px 18px 12px rgba(0,230,255,.22); animation: noteOrbit 4s linear infinite; }
.city-glow--portal { top: 38%; left: 73%; width: 21%; height: 38%; border: 1px solid rgba(0,230,255,.58); background: radial-gradient(ellipse, rgba(0,87,255,.18), transparent 62%); box-shadow: inset 0 0 42px rgba(0,230,255,.18), 0 0 38px rgba(0,230,255,.22); animation: portalWave 2.8s ease-in-out infinite; }
.world__image[data-active="tower"] .city-glow--tower,
.world__image[data-active="cube"] .city-glow--cube,
.world__image[data-active="note"] .city-glow--note,
.world__image[data-active="portal"] .city-glow--portal { opacity: 1; transform: scale(1.06); }
@keyframes towerPulse { 0%, 100% { opacity: .35; transform: translateY(8%); } 50% { opacity: .95; transform: translateY(-6%); } }
@keyframes memoryFlicker { 0%, 100% { opacity: .35; } 45% { opacity: .9; } 55% { opacity: .55; } 75% { opacity: 1; } }
@keyframes noteOrbit { to { transform: rotate(360deg); } }
@keyframes portalWave { 0%, 100% { filter: brightness(.8); } 50% { filter: brightness(1.35); } }

.world-card.signal-card { position: absolute; z-index: 20; right: auto; left: clamp(24px, 6vw, 90px); bottom: clamp(24px, 7vh, 72px); width: min(480px, calc(100% - 48px)); max-width: 480px; padding: 28px; border: 1px solid rgba(0,230,255,.35); background: rgba(10,13,16,.82); opacity: 0; transform: translateY(18px); pointer-events: none; visibility: hidden; backdrop-filter: blur(15px); transition: opacity .35s ease, transform .35s ease, border-color .35s ease, box-shadow .35s ease, visibility .35s ease; }
.world-card.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.world-card.is-visible { visibility: visible; }
.world-card span { color: var(--cyan); font-size: 7px; letter-spacing: .18em; }
.world-card h3 { margin: 25px 0 12px; font: 31px/1 var(--serif); font-weight: 400; }
.world-card p { margin: 0; color: rgba(247,247,242,.58); font: 14px/1.5 var(--serif); }
.world-card__close { position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; padding: 0; border: 1px solid rgba(0,230,255,.35); border-radius: 50%; color: var(--cyan); background: transparent; cursor: pointer; font-size: 18px; line-height: 1; transition: color .25s ease, background .25s ease, transform .25s ease; }
.world-card__close:hover { color: var(--black); background: var(--cyan); transform: rotate(90deg); }

@media (max-width: 768px) {
  .world { padding-bottom: 24px; }
  .world__image::before { display: none; }
  .hotspot { width: 44px; height: 44px; }
  .hotspot::after { display: none; }
  .world-card.signal-card { position: relative; right: auto; bottom: auto; left: auto; width: calc(100% - 40px); max-width: none; max-height: 0; margin: 0 auto; padding-top: 0; padding-bottom: 0; overflow: hidden; border-color: transparent; transform: none; }
  .world-card.is-visible { max-height: 360px; margin-top: 24px; padding-top: 28px; padding-bottom: 28px; border-color: rgba(0,230,255,.35); transform: none; }
}

.contact { min-height: 100svh; display: flex; flex-direction: column; color: var(--white); background: var(--graphite); }
.contact .section-index span { border-color: rgba(247,247,242,.45); }
.contact__body { flex: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 20px 0 90px; }
.contact__text { max-width: 550px; margin: 45px 0; color: rgba(247,247,242,.6); font: 18px/1.55 var(--serif); }
.contact__email { display: flex; align-items: center; gap: 60px; padding-bottom: 10px; border-bottom: 1px solid var(--cyan); font: 31px/1 var(--serif); }
.contact__email span { color: var(--cyan); transition: transform .25s ease; }
.contact__email:hover span { transform: translate(5px, -5px); }
.contact__footer { display: grid; grid-template-columns: 1fr 1fr 1fr; padding-top: 25px; border-top: 1px solid rgba(247,247,242,.18); font-size: 7px; letter-spacing: .15em; text-transform: uppercase; }
.contact__footer div { display: flex; gap: 30px; }
.contact__footer div:nth-child(2) { justify-content: center; }
.contact__footer > a { justify-self: end; }

.cinema-modal { position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; padding: 35px; color: var(--white); background: rgba(3,5,7,.97); opacity: 0; visibility: hidden; transition: opacity .45s ease, visibility .45s ease; }
.cinema-modal.is-open { opacity: 1; visibility: visible; }
.cinema-modal__close { position: absolute; z-index: 3; top: 22px; right: 25px; width: 45px; height: 45px; border: 1px solid rgba(247,247,242,.35); border-radius: 50%; color: var(--white); background: transparent; font-size: 23px; cursor: pointer; }
.cinema-modal__frame { position: relative; width: 100%; height: 100%; overflow: hidden; border: 1px solid rgba(0,230,255,.28); }
.cinema-modal__frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity .7s ease, transform 7s linear; }
.cinema-modal.is-open .cinema-modal__frame img { transform: scale(1.08); }
.cinema-modal__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,13,16,.65), transparent 45%); }
.cinema-modal__copy { position: absolute; right: 30px; bottom: 26px; left: 30px; display: flex; justify-content: space-between; align-items: flex-end; }
.cinema-modal__copy span { color: var(--cyan); font-size: 8px; letter-spacing: .2em; }
.cinema-modal__copy p { margin: 0; font: italic 21px var(--serif); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Signal marquee */
.signal-marquee { overflow: hidden; padding: 18px 0; color: var(--white); background: var(--black); border-top: 1px solid rgba(0,230,255,.32); border-bottom: 1px solid rgba(0,230,255,.32); }
.signal-marquee__track { display: flex; width: max-content; animation: signal-marquee 38s linear infinite; will-change: transform; }
.signal-marquee:hover .signal-marquee__track { animation-play-state: paused; }
.signal-marquee__phrase { display: flex; align-items: center; gap: 23px; padding-right: 23px; white-space: nowrap; }
.signal-marquee__phrase span { font: 400 18px/1 var(--serif); transition: all .35s ease; }
.signal-marquee__phrase span:hover { color: var(--cyan); text-shadow: 0 0 18px rgba(0,230,255,.45); }
.signal-marquee__phrase i { color: var(--teal); font-size: 15px; font-style: normal; }
.signal-marquee__phrase b { color: rgba(247,247,242,.25); font-weight: 400; }
@keyframes signal-marquee { to { transform: translateX(-50%); } }

/* Shared signal activation language */
.signal-card, .media-card, .world-object, .identity-link { transition: all .35s ease; }
.signal-card { position: relative; }
.signal-card::after { content: ""; position: absolute; inset: 0; border: 1px solid transparent; pointer-events: none; transition: all .35s ease; }
.signal-card:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 12px 45px rgba(0,140,158,.11); }
.signal-card:hover::after { border-color: rgba(0,230,255,.34); box-shadow: inset 0 0 28px rgba(0,230,255,.045); }
.world-card.signal-card:hover { transform: translateY(0); }
.world-card.signal-card:not(.is-visible):hover { transform: translateY(18px); }
.media-card { overflow: hidden; }
.media-card img { transition: all .6s ease; }
.media-card:hover img { transform: scale(1.025); filter: brightness(1.04) saturate(1.04); }
.identity-link:hover { color: var(--cyan); text-shadow: 0 0 16px rgba(0,230,255,.28); }
.button:active, .text-link:active, .contact-card:active { transform: scale(.98); }

.formula > .signal-card { padding: 28px 12px; }
.formula > .signal-card p { max-width: 210px; max-height: 0; margin: 0; overflow: hidden; opacity: 0; color: rgba(10,13,16,.58); font: 13px/1.45 var(--serif); transform: translateY(8px); transition: all .35s ease; }
.formula > .signal-card:hover p { max-height: 70px; margin-top: 17px; opacity: 1; transform: none; }
.myth-note { margin-top: 28px; border-top: 1px solid rgba(10,13,16,.22); border-bottom: 1px solid rgba(10,13,16,.22); }
.myth-note summary { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; list-style: none; cursor: pointer; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.myth-note summary::-webkit-details-marker { display: none; }
.myth-note summary i { color: var(--teal); font-size: 20px; font-style: normal; transition: transform .35s ease; }
.myth-note[open] summary i { transform: rotate(45deg); }
.myth-note p { max-width: 900px; margin: 0; padding: 0 0 30px; color: rgba(10,13,16,.65); font: 17px/1.55 var(--serif); }

/* Honest signal player and releases */
.player-line--live { position: relative; overflow: hidden; }
.player-line--live i { width: 38%; animation: signal-line 4.5s ease-in-out infinite alternate; }
@keyframes signal-line { from { transform: translateX(-90%); } to { transform: translateX(260%); } }
.music-player.is-signal-active { border-color: rgba(0,230,255,.55); box-shadow: 0 0 52px rgba(0,230,255,.07); }
.music-player.is-signal-active .mini-wave { color: var(--cyan); animation: wave-glow 1.2s ease-in-out infinite alternate; }
@keyframes wave-glow { to { opacity: .38; letter-spacing: .18em; } }
.track-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 1px; background: var(--line); border: 1px solid var(--line); }
.track-card { display: flex; flex-direction: column; min-height: 420px; color: var(--white); background: #0d1215; }
.track-card__image { position: relative; height: 235px; overflow: hidden; }
.track-card__image img { height: 100%; object-fit: cover; }
.track-card__image span { position: absolute; top: 15px; left: 15px; padding: 7px 9px; color: var(--cyan); background: rgba(10,13,16,.72); font-size: 7px; letter-spacing: .16em; }
.track-card__body { flex: 1; display: flex; flex-direction: column; padding: 25px; }
.track-card h3 { margin: 0 0 10px; font: 25px/1 var(--serif); font-weight: 400; }
.track-card p { margin: 0 0 28px; color: rgba(247,247,242,.5); font: 13px/1.5 var(--serif); }
.track-card__links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.track-card__links a { padding: 10px 12px; border: 1px solid rgba(247,247,242,.2); font-size: 7px; letter-spacing: .12em; text-transform: uppercase; transition: all .35s ease; }
.track-card__links a:hover { color: var(--black); border-color: var(--cyan); background: var(--cyan); }

/* YouTube clip archive */
.video-archive { padding-top: 35px; }
.video-archive__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 35px; color: rgba(247,247,242,.5); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video-card { color: var(--white); background: #0d1215; border: 1px solid rgba(183,196,204,.18); }
.video-card__poster { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.video-card__poster img { height: 100%; object-fit: cover; }
.video-card__poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,13,16,.66), transparent 60%); }
.video-card__index { position: absolute; z-index: 2; top: 14px; left: 14px; color: var(--cyan); font-size: 7px; letter-spacing: .17em; }
.video-card__signal { position: absolute; z-index: 2; right: 15px; bottom: 14px; opacity: 0; color: var(--cyan); font-size: 7px; letter-spacing: .13em; transform: translateY(6px); transition: all .35s ease; }
.video-card:hover .video-card__signal { opacity: 1; transform: none; }
.video-card__body { padding: 24px; }
.video-card h3 { margin: 0 0 10px; font: 27px/1.05 var(--serif); font-weight: 400; }
.video-card p { min-height: 58px; margin: 0 0 24px; color: rgba(247,247,242,.5); font: 13px/1.5 var(--serif); }
.video-card__action { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 13px 0 8px; border: 0; border-bottom: 1px solid rgba(247,247,242,.35); color: var(--white); background: none; cursor: pointer; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.video-card__action span:last-child { color: var(--cyan); font-size: 15px; }
.video-card__action:hover { color: var(--cyan); }

.video-modal { position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; padding: 4vw; color: var(--white); background: rgba(10,13,16,.94); backdrop-filter: blur(15px); opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal__shell { width: min(1180px, 100%); }
.video-modal__meta { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; }
.video-modal__meta span { color: var(--cyan); font-size: 7px; letter-spacing: .18em; }
.video-modal__meta h2 { margin: 0; font: 27px/1 var(--serif); font-weight: 400; }
.video-modal__screen { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid rgba(0,230,255,.35); background: #000; box-shadow: 0 0 70px rgba(0,230,255,.08); }
.video-modal__screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close { position: absolute; z-index: 2; top: 22px; right: 25px; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(0,230,255,.38); border-radius: 50%; background: rgba(10,13,16,.62); cursor: pointer; }
.video-modal__close span { position: absolute; top: 50%; left: 50%; width: 20px; height: 1px; background: var(--cyan); }
.video-modal__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.video-modal__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.video-modal__close:hover { background: rgba(0,230,255,.12); transform: rotate(90deg); }

/* Identity scan and contacts */
.digital__scan { position: absolute; z-index: 2; top: -20%; right: 0; left: 0; height: 18%; background: linear-gradient(0deg, transparent, rgba(0,230,255,.12), transparent); opacity: 0; pointer-events: none; }
.digital__portrait:hover .digital__scan { opacity: 1; animation: identity-scan 2.8s ease-in-out infinite; }
@keyframes identity-scan { to { top: 105%; } }
.identity-frame i { animation: identity-line 4.5s ease-in-out infinite alternate; }
@keyframes identity-line { to { width: 62%; opacity: .45; } }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(230px, 1fr)); gap: 1px; width: min(900px, 100%); margin-top: 65px; background: rgba(247,247,242,.12); border: 1px solid rgba(247,247,242,.12); }
.contact-card { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 18px; min-height: 110px; padding: 22px; color: var(--white); background: var(--graphite); }
.contact-card__icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(0,230,255,.45); border-radius: 50%; color: var(--cyan); font-size: 12px; }
.contact-card small { display: block; margin-bottom: 7px; color: rgba(247,247,242,.42); font-size: 7px; letter-spacing: .16em; text-transform: uppercase; }
.contact-card strong { font: 18px/1 var(--serif); font-weight: 400; }
.contact-card > i { color: var(--cyan); font-size: 16px; font-style: normal; transition: transform .35s ease; }
.contact-card:hover > i { transform: translate(4px, -4px); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header { grid-template-columns: 1fr auto; }
  .header__actions { grid-column: 2; }
  .hero__copy { width: 56%; }
  .manifest__body { gap: 5vw; }
  .music-player { grid-template-columns: .9fr 1.1fr; }
  .digital__grid { gap: 6vw; }
  .digital__portrait { min-height: 620px; }
  .world__image { min-height: 850px; }
  .track-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .track-card:last-child, .video-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header: 66px; }
  .cursor { display: none; }
  .header { padding: 0 18px; }
  .signal { display: none; }
  .hero { min-height: 940px; }
  .hero__image { object-position: 31% center; }
  .hero__shade { background: linear-gradient(0deg, rgba(10,13,16,.96) 0%, rgba(10,13,16,.7) 53%, rgba(10,13,16,.05) 82%); }
  .frame--hero { inset: calc(var(--header) + 10px) 10px 10px; }
  .hero__protocol { top: calc(var(--header) + 20px); left: 20px; gap: 18px; }
  .hero__copy { justify-content: flex-end; width: 100%; min-height: 940px; padding: 420px 22px 110px; }
  .hero__kicker { max-width: 270px; line-height: 1.5; }
  .hero h1 { font-size: 24vw; }
  .hero h2 { font-size: 52px; }
  .hero__intro { font-size: 14px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero__side { display: none; }
  .hero__scroll { left: 22px; bottom: 34px; }
  .wave-canvas { width: 100%; bottom: 35%; }
  .section { padding: 95px 22px; }
  .section-index { margin-bottom: 55px; }
  .display { font-size: clamp(51px, 17vw, 76px); }
  .manifest__body { display: block; }
  .manifest__copy { margin-top: 55px; }
  .manifest__copy p { font-size: 18px; }
  .formula { grid-template-columns: 1fr; margin-top: 75px; }
  .formula > div { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; border-bottom: 1px solid rgba(10,13,16,.18); }
  .formula > div:last-child { border-bottom: 0; }
  .formula > div span { margin: 0; }
  .formula small { margin: 0; }
  .formula > .signal-card p { grid-column: 2 / -1; max-width: none; max-height: none; margin: 12px 0 0; opacity: 1; transform: none; }
  .formula > i { display: none; }
  .music-player { grid-template-columns: 1fr; }
  .music-player__cover { min-height: 390px; }
  .music-player__content { padding: 40px 24px; }
  .music-player h3 { margin-top: 50px; font-size: 48px; }
  .player-line { margin-top: 50px; }
  .platforms { flex-wrap: wrap; gap: 15px; }
  .platforms span { width: 100%; }
  .signal-marquee { padding: 14px 0; }
  .signal-marquee__phrase { gap: 17px; padding-right: 17px; }
  .signal-marquee__phrase span { font-size: 15px; }
  .track-grid, .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .track-card:last-child, .video-card:last-child { grid-column: auto; }
  .track-card { min-height: auto; }
  .track-card__image { height: 225px; }
  .release-strip { grid-template-columns: 1fr; }
  .release-strip button { border-right: 0; border-bottom: 1px solid var(--line); }
  .release-strip button:last-child { border-bottom: 0; }
  .cinema__image { min-height: 0; aspect-ratio: 16 / 9; }
  .cinema-video { object-position: 57% center; }
  .cinema-video__controls { right: 12px; bottom: 48px; left: 12px; gap: 6px; }
  .cinema-control { flex: 1; min-width: 96px; gap: 8px; padding: 9px 10px; }
  .cinema__time { top: 12px; right: 14px; left: 14px; }
  .cinema__time span:last-child { display: none; }
  .cinema__copy { display: block; }
  .cinema__text > p:not(.overline) { font-size: 17px; }
  .video-archive { padding-right: 22px; padding-left: 22px; }
  .video-archive__head { align-items: flex-start; gap: 18px; }
  .video-card p { min-height: 0; }
  .digital__grid { grid-template-columns: 1fr; gap: 70px; }
  .digital__portrait { min-height: 590px; }
  .digital__portrait > img { object-position: 37% center; }
  .world__image { min-height: 900px; }
  .world__image > img { object-position: 50% center; }
  .world__shade { background: linear-gradient(0deg, rgba(10,13,16,.93) 0%, rgba(10,13,16,.12) 60%, rgba(10,13,16,.72) 100%); }
  .world__heading { top: 9%; left: 22px; right: 22px; }
  .hotspot--tower { top: 47%; left: 22%; }
  .hotspot--cube { top: 52%; left: 53%; }
  .hotspot--note { top: 37%; left: 69%; }
  .hotspot--portal { top: 57%; left: 82%; }
  .contact__email { gap: 16px; max-width: 100%; font-size: clamp(18px, 5.8vw, 24px); overflow-wrap: anywhere; }
  .contact-grid { margin-top: 48px; }
  .contact__footer { grid-template-columns: 1fr; gap: 25px; }
  .contact__footer div:nth-child(2) { justify-content: flex-start; }
  .contact__footer > a { justify-self: start; }
  .cinema-modal { padding: 12px; }
  .cinema-modal__close { top: 18px; right: 18px; }
  .cinema-modal__copy { flex-direction: column; align-items: flex-start; gap: 15px; }
  .video-modal { padding: 74px 12px 12px; }
  .video-modal__close { top: 14px; right: 14px; }
  .video-modal__meta { flex-direction: column; align-items: flex-start; gap: 9px; }
  .video-modal__meta h2 { font-size: 22px; }
}

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