:root {
  --bg: #050814;
  --bg2: #070c1f;
  --deep: #06102a;
  --text: #f4f7ff;
  --muted: rgba(244, 247, 255, .62);
  --line: rgba(244, 247, 255, .12);
  --accent: #4cc9ff;
  --accent2: #7a5cff;
  --glass: rgba(8, 14, 32, .58);
  --shadow: 0 18px 90px rgba(0, 0, 0, .68);
  --radius: 18px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  height: 100%
}

body {
  background:
    radial-gradient(1200px 800px at 70% 15%, rgba(76, 201, 255, .18), transparent 55%),
    radial-gradient(900px 700px at 25% 80%, rgba(122, 92, 255, .14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  font-family: var(--sans);
  overflow: hidden;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.deck {
  position: relative;
  z-index: 2;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.panel {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 26px 84px;
  overflow: hidden;
}

.panel--video {
  padding: 0 !important;
  background: #000;
}

.video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel.is-active .video-container video {
  opacity: 1;
}



.panel__inner {
  width: min(1120px, 100%);
  position: relative;
  z-index: 3;
}

/* Cinematic Staggering & Directional Base */
.panel__inner>* {
  opacity: 0;
  filter: blur(25px);
  will-change: transform, opacity, filter;
  transition:
    opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Increased Stagger Delays for Flow */
.panel__inner>*:nth-child(1) {
  transition-delay: 0.2s;
}

.panel__inner>*:nth-child(2) {
  transition-delay: 0.35s;
}

.panel__inner>*:nth-child(3) {
  transition-delay: 0.5s;
}

.panel__inner>*:nth-child(4) {
  transition-delay: 0.65s;
}

.panel__inner>*:nth-child(5) {
  transition-delay: 0.8s;
}

/* Slide 2 waits for Radar zoom-out */
.panel--academics .panel__inner>*:nth-child(1) {
  transition-delay: 1s;
}

.panel--academics .panel__inner>*:nth-child(2) {
  transition-delay: 1.15s;
}

.panel--academics .panel__inner>*:nth-child(3) {
  transition-delay: 1.3s;
}

.panel--academics .panel__inner>*:nth-child(4) {
  transition-delay: 1.45s;
}

.panel--academics .panel__inner>*:nth-child(5) {
  transition-delay: 1.6s;
}

/* PANEL SPECIFIC STARTING POSITIONS */

/* INTRO: Center Scale */
.panel--intro .panel__inner>* {
  transform: scale(0.8);
}

/* ACADEMICS: Left */
.panel--academics .panel__inner>* {
  transform: translateX(-180px) rotateY(25deg);
}

/* SCIENCE: Right */
.panel--science .panel__inner>* {
  transform: translateX(180px) rotateY(-25deg);
}

/* DIGITAL: Bottom */
.panel--digital .panel__inner>* {
  transform: translateY(180px) rotateX(15deg);
}

/* FINAL: Top */
.panel--final .panel__inner>* {
  transform: translateY(-180px) rotateX(-15deg);
}

/* ACTIVE STATE */
.panel.is-active .panel__inner>* {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0deg);
  filter: blur(0);
}

.scanlines {
  position: absolute;
  inset: -2px;
  background: repeating-linear-gradient(to bottom,
      rgba(255, 255, 255, .03) 0px,
      rgba(255, 255, 255, .03) 1px,
      transparent 2px,
      transparent 5px);
  mix-blend-mode: overlay;
  opacity: .14;
  pointer-events: none;
  z-index: 2;
  animation: scan 9s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(40px)
  }
}

.grain {
  position: absolute;
  inset: -40%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: .08;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
  animation: grain 7s steps(8) infinite;
}

@keyframes grain {
  0% {
    transform: translate3d(-2%, -2%, 0)
  }

  20% {
    transform: translate3d(3%, -1%, 0)
  }

  40% {
    transform: translate3d(-1%, 4%, 0)
  }

  60% {
    transform: translate3d(4%, 2%, 0)
  }

  80% {
    transform: translate3d(-3%, 1%, 0)
  }

  100% {
    transform: translate3d(-2%, -2%, 0)
  }
}

.hud {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  padding: 16px 18px 10px;
  background: linear-gradient(180deg, rgba(5, 8, 20, .82), rgba(5, 8, 20, .40), transparent);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hud__left {
  display: flex;
  align-items: center;
  gap: 14px
}

.hud__right {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 14, 32, .35);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.brand__mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(76, 201, 255, .95), rgba(122, 92, 255, .75));
  font-weight: 800;
}

.brand__text {
  letter-spacing: .18em;
  font-family: var(--mono);
  font-size: 12px;
}

.hud__meta {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.hud__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(244, 247, 255, .86)
}

.hud__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--muted)
}

.hud__pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 14, 32, .35);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  user-select: none;
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(76, 201, 255, .85);
  box-shadow: 0 0 0 4px rgba(76, 201, 255, .10);
}

.hud__btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 14, 32, .35);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.hud__btnIcon {
  font-family: var(--mono);
  font-size: 16px;
  opacity: .9
}

.hud__progress {
  margin-top: 12px;
  height: 2px;
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
  overflow: hidden;
}

.hud__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(76, 201, 255, .95), rgba(122, 92, 255, .9));
}

.kicker {
  font-family: var(--mono);
  letter-spacing: .18em;
  font-size: 11px;
  color: rgba(244, 247, 255, .78);
  margin-bottom: 14px;
}

.title {
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.title__line {
  display: block
}

.title__line--ghost {
  font-family: var(--mono);
  font-size: clamp(14px, 2.1vw, 18px);
  letter-spacing: .22em;
  color: rgba(244, 247, 255, .66);
  margin-top: 12px;
}

.h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  color: rgba(244, 247, 255, .78);
  max-width: 74ch;
}

.ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px
}

.btn {
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  text-decoration: none;
  color: var(--text);
  background: rgba(8, 14, 32, .35);
  backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .22)
}

.btn--primary {
  background: linear-gradient(135deg, rgba(76, 201, 255, .95), rgba(122, 92, 255, .70));
  border-color: rgba(76, 201, 255, .32);
  box-shadow: 0 18px 70px rgba(76, 201, 255, .16);
}

.btn--ghost {
  background: rgba(8, 14, 32, .26)
}

.hudCard {
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 14, 32, .22);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 16px;
}

.hudCard__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hudCard__item {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  border-radius: 16px;
  padding: 14px 14px 12px;
  position: relative;
  overflow: hidden;
}

.hudCard__item::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(76, 201, 255, .20), transparent 55%);
  opacity: .55;
  transform: translate3d(-20%, 20%, 0);
}

.hudCard__n {
  font-family: var(--mono);
  font-size: 34px;
  letter-spacing: .10em;
  position: relative;
  z-index: 1;
}

.hudCard__l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--muted);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.hudCard__note {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: rgba(244, 247, 255, .58);
}

.grid2 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.module {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 14, 32, .20);
  backdrop-filter: blur(12px);
  padding: 16px;
  box-shadow: 0 16px 70px rgba(0, 0, 0, .35);
  overflow: hidden;
  position: relative;
}

.module::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(122, 92, 255, .16), transparent 55%);
  opacity: .8;
  transform: translate3d(30%, -20%, 0);
  pointer-events: none;
}

.module__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1
}

.module__code {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(244, 247, 255, .66)
}

.module__name {
  font-size: 18px
}

.module__text {
  position: relative;
  z-index: 1;
  color: rgba(244, 247, 255, .72);
  line-height: 1.7;
  margin-top: 10px
}

.module__bar {
  margin-top: 14px;
  height: 2px;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  z-index: 1
}

.module__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(76, 201, 255, .95), rgba(122, 92, 255, .85))
}

.split {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: start;
}

.quote {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 14, 32, .22);
  backdrop-filter: blur(12px);
  padding: 18px 18px 16px;
  box-shadow: 0 16px 70px rgba(0, 0, 0, .35);
  position: relative;
  overflow: hidden;
}

.quote__mark {
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 86px;
  color: rgba(76, 201, 255, .16);
}

.quote__text {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(244, 247, 255, .90);
  position: relative
}

.quote__cite {
  margin-top: 10px;
  color: rgba(244, 247, 255, .62);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.step {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 14, 32, .18);
  backdrop-filter: blur(12px);
  padding: 14px;
  display: flex;
  gap: 14px;
  box-shadow: 0 16px 70px rgba(0, 0, 0, .28);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.step:hover {
  transform: translateX(10px);
  border-color: rgba(76, 201, 255, .30);
  background: rgba(76, 201, 255, .06)
}

.step__n {
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: .16em;
  color: rgba(244, 247, 255, .72);
  min-width: 44px;
}

.step__t {
  font-size: 16px;
  margin-bottom: 6px
}

.step__p {
  color: rgba(244, 247, 255, .70);
  line-height: 1.6
}

.radar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120vw;
  height: 120vw;
  transform: translate(-50%, -50%) scale(1.5);
  border-radius: 50%;
  border: 1px solid rgba(76, 201, 255, .18);
  background: radial-gradient(circle, rgba(76, 201, 255, .08), transparent 62%);
  filter: drop-shadow(0 30px 90px rgba(76, 201, 255, .12));
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 2.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.5s ease-in-out,
    width 2.2s cubic-bezier(0.22, 1, 0.36, 1),
    height 2.2s cubic-bezier(0.22, 1, 0.36, 1),
    left 2.2s cubic-bezier(0.22, 1, 0.36, 1),
    top 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel.is-active .radar {
  opacity: 0.8;
  left: 75%;
  top: 50%;
  width: 340px;
  height: 340px;
  transform: translate(0, -50%) scale(1);
}

.radar__ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(76, 201, 255, .14)
}

.radar__ring:nth-child(2) {
  inset: 26%
}

.radar__ring:nth-child(3) {
  inset: 40%
}

.radar__sweep {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(76, 201, 255, .0), rgba(76, 201, 255, .18), rgba(76, 201, 255, 0));
  animation: sweep 2.8s linear infinite;
  mask: radial-gradient(circle, transparent 44%, #000 46%);
}

@keyframes sweep {
  to {
    transform: rotate(360deg)
  }
}

.tiles {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tile {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 14, 32, .18);
  backdrop-filter: blur(12px);
  padding: 16px;
  box-shadow: 0 16px 70px rgba(0, 0, 0, .28);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 201, 255, .12), transparent);
  transition: left .55s ease;
}

.tile:hover::before {
  left: 120%
}

.tile:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(76, 201, 255, .30);
  background: rgba(76, 201, 255, .06);
}

.tile__icon {
  font-size: 34px;
  margin-bottom: 10px
}

.tile__t {
  font-size: 16px;
  margin-bottom: 8px
}

.tile--wide {
  grid-column: 1 / -1
}

.digital-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}

.digital-image {
  position: relative;
  z-index: 1;
}

.digital-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  filter: drop-shadow(0 0 50px var(--accent));
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.8s ease-out;
}

.panel.is-active .digital-image img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.kicker--center {
  margin-left: auto;
  margin-right: auto;
}

.h2--center {
  margin-left: auto;
  margin-right: auto;
}

.lead--center {
  margin-left: auto;
  margin-right: auto;
}

.qr-presentation {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.qr-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.qr-large {
  width: 240px;
  height: 240px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .06);
  padding: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 80px rgba(76, 201, 255, 0.15);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.qr-large:hover {
  transform: scale(1.05);
  border-color: var(--accent);
}

.qr-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.qr-hint {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.final-meta {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 15px;
  align-items: center;
}

.final-separator {
  opacity: 0.3;
}

.footer--center {
  text-align: center;
  margin-top: 40px;
}

.qr-container {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.qr-box {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  padding: 8px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.qr-box:hover {
  transform: scale(1.05);
  border-color: var(--accent);
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.console {
  margin-top: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
  padding: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
}

.console__line {
  display: flex;
  gap: 10px;
  margin: 6px 0
}

.console__k {
  color: rgba(244, 247, 255, .60);
  min-width: 78px
}

.console__v {
  color: rgba(244, 247, 255, .88)
}

.contact {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 14, 32, .20);
  backdrop-filter: blur(12px);
  padding: 16px;
  box-shadow: 0 16px 70px rgba(0, 0, 0, .28);
}

.contact__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 14px
}

.contact__row+.contact__row {
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.contact__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(244, 247, 255, .62)
}

.contact__value {
  color: rgba(244, 247, 255, .92);
  text-decoration: none
}

.contact__value:hover {
  text-decoration: underline
}

.contact__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.chip {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(244, 247, 255, .90);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 92, 255, .30);
  background: rgba(122, 92, 255, .06)
}

.finalRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px
}

.footer {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(244, 247, 255, .50);
}

.panel--intro::after {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(900px 600px at 75% 30%, rgba(76, 201, 255, .12), transparent 60%),
    radial-gradient(900px 600px at 25% 75%, rgba(122, 92, 255, .10), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: .9;
  z-index: 1;
}

.orb--a {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(76, 201, 255, .35), rgba(76, 201, 255, .08), transparent 60%);
  animation: floatA 10s ease-in-out infinite;
}

.orb--b {
  width: 380px;
  height: 380px;
  left: -160px;
  bottom: 8%;
  background: radial-gradient(circle at 70% 30%, rgba(122, 92, 255, .30), rgba(122, 92, 255, .08), transparent 62%);
  animation: floatB 12s ease-in-out infinite;
}

@keyframes floatA {
  50% {
    transform: translate3d(-18px, 10px, 0) scale(1.02)
  }
}

@keyframes floatB {
  50% {
    transform: translate3d(18px, -10px, 0) scale(1.03)
  }
}

.glitch {
  position: relative
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: .50;
}

.glitch::before {
  transform: translate3d(2px, 0, 0);
  color: rgba(76, 201, 255, .65);
  clip-path: inset(0 0 55% 0);
  animation: gl1 2.6s infinite linear;
}

.glitch::after {
  transform: translate3d(-2px, 0, 0);
  color: rgba(122, 92, 255, .65);
  clip-path: inset(55% 0 0 0);
  animation: gl2 2.9s infinite linear;
}

@keyframes gl1 {

  0%,
  100% {
    clip-path: inset(0 0 55% 0)
  }

  50% {
    clip-path: inset(0 0 40% 0)
  }
}

@keyframes gl2 {

  0%,
  100% {
    clip-path: inset(55% 0 0 0)
  }

  50% {
    clip-path: inset(62% 0 0 0)
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50
}

.modal.is-open {
  display: block
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(8px)
}

.modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100% - 26px));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(8, 14, 32, .70);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 120px rgba(0, 0, 0, .72);
  overflow: hidden;
}

.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.modal__title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em
}

.modal__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.modal__body {
  padding: 16px;
  color: rgba(244, 247, 255, .82);
  line-height: 1.75
}

.modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, .10)
}

@media (max-width: 980px) {
  .hud__meta {
    display: none
  }

  .grid2 {
    grid-template-columns: 1fr
  }

  .split {
    grid-template-columns: 1fr
  }

  .tiles {
    grid-template-columns: 1fr
  }

  .tile--wide {
    grid-column: auto
  }

  .radar {
    display: none
  }

  .digital-layout {
    grid-template-columns: 1fr;
  }

  .digital-image {
    max-width: 300px;
    margin: 0 auto;
  }
}