:root {
  color-scheme: dark;
  --void: #02030a;
  --void-soft: #060819;
  --white: #f4f7ff;
  --muted: rgba(226, 232, 255, 0.62);
  --dim: rgba(214, 222, 255, 0.34);
  --line: rgba(120, 166, 255, 0.15);
  --blue: #6d9cff;
  --cyan: #76efff;
  --violet: #aa78ff;
  --deep-blue: #3851d8;
  --ease: cubic-bezier(.18,.76,.2,1);
  --mx: 50vw;
  --my: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--void);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(66, 75, 224, .16), transparent 32%),
    radial-gradient(circle at 70% 12%, rgba(93, 60, 205, .08), transparent 28%),
    linear-gradient(145deg, #010209 0%, #05071a 50%, #02030b 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: rgba(118, 239, 255, .96);
  color: #050719;
}

.experience {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
}

#nexus-field {
  position: fixed;
  z-index: -8;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.horizon-lines {
  position: fixed;
  z-index: -7;
  inset: 0;
  opacity: .62;
  background:
    repeating-radial-gradient(ellipse at 50% 58%, transparent 0 58px, rgba(101, 142, 255, .035) 59px 60px, transparent 61px 118px),
    linear-gradient(90deg, transparent 49.94%, rgba(125, 172, 255, .06) 50%, transparent 50.06%);
  mask-image: linear-gradient(180deg, transparent 5%, #000 27%, #000 77%, transparent 100%);
  transform: perspective(920px) rotateX(62deg) translateY(34%);
  transform-origin: 50% 70%;
  pointer-events: none;
}

.ambient {
  position: fixed;
  z-index: -6;
  width: min(66vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .20;
  pointer-events: none;
  will-change: transform;
}

.ambient--one {
  top: -48%;
  right: -24%;
  background: radial-gradient(circle, rgba(119, 83, 255, .72), transparent 66%);
  transform: translate(calc((var(--mx) - 50vw) * -.014), calc((var(--my) - 50vh) * .01));
}

.ambient--two {
  bottom: -53%;
  left: -24%;
  background: radial-gradient(circle, rgba(51, 169, 255, .66), transparent 69%);
  transform: translate(calc((var(--mx) - 50vw) * .012), calc((var(--my) - 50vh) * -.012));
}

.grain {
  position: fixed;
  z-index: 40;
  inset: -70%;
  pointer-events: none;
  opacity: .047;
  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='.58'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}

.vignette {
  position: fixed;
  z-index: 30;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 47%, transparent 24%, rgba(0, 1, 9, .16) 58%, rgba(0, 1, 7, .75) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .24), transparent 23%, transparent 75%, rgba(0, 0, 0, .30));
  pointer-events: none;
}

.topbar,
.footer {
  position: relative;
  z-index: 12;
  display: grid;
  align-items: center;
  width: 100%;
  padding-inline: clamp(22px, 4vw, 70px);
}

.topbar {
  grid-template-columns: 1fr auto 1fr;
  padding-top: max(22px, env(safe-area-inset-top));
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
}

.brand__mark {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 12px rgba(117, 164, 255, .38));
}

.brand__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand__name {
  font-size: 12px;
  font-weight: 660;
  letter-spacing: .32em;
  line-height: 1;
}

.brand__powered {
  color: rgba(215, 225, 255, .36);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 5px;
  letter-spacing: .22em;
  line-height: 1;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .23em;
  white-space: nowrap;
}

.status__pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(118, 239, 255, .50);
  animation: status-pulse 2.2s ease-out infinite;
}

.contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: rgba(226, 233, 255, .70);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .18em;
  transition: color .35s var(--ease);
}

.contact::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

.contact:hover,
.contact:focus-visible {
  color: var(--white);
}

.contact:hover::after,
.contact:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact--top {
  justify-self: end;
}

.stage {
  position: relative;
  z-index: 10;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(28px, 3.5vh, 52px) clamp(22px, 4vw, 70px);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1100px);
  text-align: center;
}

.sigil {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(98px, 10.5vw, 150px);
  aspect-ratio: 1;
  margin-bottom: clamp(16px, 2.4vh, 28px);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transform: translateZ(0);
}

.sigil::before,
.sigil::after {
  position: absolute;
  content: "";
  border-radius: inherit;
  pointer-events: none;
}

.sigil::before {
  inset: -24%;
  border: 1px solid rgba(124, 159, 255, .08);
  box-shadow: inset 0 0 48px rgba(111, 123, 255, .035);
}

.sigil::after {
  inset: 18%;
  background: radial-gradient(circle, rgba(130, 182, 255, .18), rgba(103, 78, 255, .05) 48%, transparent 70%);
  filter: blur(10px);
}

.sigil img {
  position: relative;
  z-index: 3;
  width: 58%;
  filter:
    drop-shadow(0 0 10px rgba(101, 176, 255, .46))
    drop-shadow(0 0 34px rgba(113, 76, 255, .30));
  transition: transform .75s var(--ease), filter .75s var(--ease);
}

.sigil:hover img,
.sigil:focus-visible img {
  transform: scale(1.08) rotate(3deg);
  filter:
    drop-shadow(0 0 15px rgba(136, 228, 255, .66))
    drop-shadow(0 0 48px rgba(137, 92, 255, .42));
}

.sigil:focus-visible {
  box-shadow: 0 0 0 2px rgba(118, 239, 255, .58), 0 0 0 8px rgba(118, 239, 255, .08);
}

.sigil__orbit {
  position: absolute;
  border: 1px solid transparent;
  border-top-color: rgba(126, 203, 255, .46);
  border-left-color: rgba(163, 112, 255, .12);
  border-radius: 50%;
  pointer-events: none;
}

.sigil__orbit--a {
  inset: -8%;
  animation: orbit 12s linear infinite;
}

.sigil__orbit--b {
  inset: 7%;
  border-top-color: rgba(190, 139, 255, .38);
  transform: rotate(126deg);
  animation: orbit-reverse 8.5s linear infinite;
}

.sigil__orbit--c {
  inset: -26%;
  border-top-color: rgba(95, 216, 255, .14);
  transform: rotate(218deg);
  animation: orbit 20s linear infinite;
}

.sigil__glow {
  position: absolute;
  inset: -48%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 151, 255, .18), rgba(101, 68, 230, .04) 44%, transparent 68%);
  filter: blur(9px);
  animation: breathe 5.5s ease-in-out infinite;
  pointer-events: none;
}

.sigil.is-resonating img {
  animation: mark-resonance 1.1s var(--ease);
}

.sigil.is-resonating .sigil__orbit--a {
  animation-duration: 1.1s;
}

.eyebrow,
.question,
.countdown-caption,
.footer,
.hero-brand small {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.eyebrow {
  margin: 0 0 clamp(10px, 1.5vh, 16px);
  color: rgba(120, 211, 255, .68);
  font-size: clamp(8px, .7vw, 10px);
  letter-spacing: .38em;
  text-transform: uppercase;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(9px, 1.25vh, 14px);
}

.hero-brand > span {
  color: rgba(244, 248, 255, .82);
  font-size: clamp(12px, 1.2vw, 17px);
  font-weight: 620;
  letter-spacing: .65em;
  text-indent: .65em;
}

.hero-brand small {
  margin-top: 6px;
  color: rgba(218, 226, 255, .35);
  font-size: 6px;
  font-weight: 400;
  letter-spacing: .31em;
  text-indent: .31em;
}

h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: clamp(42px, 7vw, 108px);
  font-weight: 420;
  letter-spacing: -.06em;
  line-height: .86;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h1 .accent {
  color: transparent;
  background: linear-gradient(103deg, #f4f8ff 3%, #88e9ff 33%, #7192ff 57%, #ba82ff 79%, #e7dcff 98%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 28px rgba(104, 131, 255, .15));
}

.thesis {
  max-width: 650px;
  margin: clamp(17px, 2.5vh, 27px) auto 0;
  color: rgba(226, 232, 255, .60);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 350;
  letter-spacing: .035em;
  line-height: 1.65;
  text-wrap: balance;
}

.question {
  min-height: 1.45em;
  margin: clamp(15px, 2.1vh, 23px) auto 0;
  color: rgba(236, 240, 255, .87);
  font-size: clamp(8px, .8vw, 11px);
  letter-spacing: .28em;
  line-height: 1.45;
  text-transform: uppercase;
  transition: opacity .35s var(--ease), transform .35s var(--ease), filter .35s var(--ease);
}

.question.is-changing {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(4px) scale(.985);
}

.countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(21px, 3.2vh, 36px);
}

.countdown-caption {
  margin: 0 0 13px;
  color: var(--dim);
  font-size: 8px;
  letter-spacing: .30em;
}

.countdown {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px clamp(15px, 2vw, 26px) 10px;
  border: 1px solid rgba(131, 163, 255, .14);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(29, 35, 92, .32), rgba(12, 15, 42, .14)),
    radial-gradient(circle at 50% 0%, rgba(94, 178, 255, .07), transparent 55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .035),
    0 18px 62px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.countdown::before {
  position: absolute;
  top: -1px;
  left: 18%;
  width: 64%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(114, 233, 255, .62), rgba(167, 112, 255, .52), transparent);
  opacity: .55;
}

.time-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(54px, 6vw, 84px);
}

.time-cell strong {
  display: block;
  color: #f4f7ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(18px, 2.2vw, 31px);
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 420;
  letter-spacing: -.045em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(112, 190, 255, .16);
  transition: opacity .18s ease, transform .18s ease;
}

.time-cell strong.is-ticking {
  opacity: .58;
  transform: translateY(-2px);
}

.time-cell span {
  margin-top: 7px;
  color: rgba(221, 228, 255, .32);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 6px;
  letter-spacing: .24em;
}

.time-separator {
  padding: 1px 1px 0;
  color: rgba(131, 194, 255, .34);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(15px, 1.9vw, 26px);
  animation: separator-pulse 2s ease-in-out infinite;
}

.threshold {
  margin: 0;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .3em;
}

.footer {
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding-bottom: max(22px, env(safe-area-inset-bottom));
  color: rgba(216, 224, 255, .34);
  font-size: 8px;
  letter-spacing: .16em;
}

.footer p {
  margin: 0;
  text-align: center;
}

.footer .contact {
  justify-self: start;
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: lowercase;
}

.footer__code {
  justify-self: end;
  text-align: right !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease);
}

body.is-ready [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready [data-reveal]:nth-child(2) { transition-delay: .07s; }
body.is-ready [data-reveal]:nth-child(3) { transition-delay: .13s; }
body.is-ready [data-reveal]:nth-child(4) { transition-delay: .19s; }
body.is-ready [data-reveal]:nth-child(5) { transition-delay: .25s; }
body.is-ready [data-reveal]:nth-child(6) { transition-delay: .31s; }

.boot {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  background: #010208;
  transition: opacity .75s var(--ease), visibility .75s;
}

.boot__mark {
  width: 58px;
  opacity: .90;
  filter: drop-shadow(0 0 24px rgba(99, 145, 255, .38));
  animation: boot-mark 1.5s var(--ease) both;
}

.boot__mark img {
  display: block;
  width: 100%;
}

.boot__line {
  width: 154px;
  height: 1px;
  margin-top: 25px;
  overflow: hidden;
  background: rgba(122, 161, 255, .10);
}

.boot__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  transform: translateX(-100%);
  animation: boot-line 1.55s var(--ease) both;
}

.boot p {
  margin: 12px 0 0;
  color: rgba(221, 228, 255, .33);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 7px;
  letter-spacing: .28em;
}

body.is-ready .boot {
  visibility: hidden;
  opacity: 0;
}

.cursor {
  display: none;
}

.noscript {
  position: fixed;
  z-index: 1100;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  border: 1px solid rgba(118, 239, 255, .25);
  background: #080a20;
  color: #eef2ff;
  font: 12px/1.4 ui-monospace, monospace;
  text-align: center;
}

@media (pointer: fine) {
  body,
  a,
  .sigil {
    cursor: none;
  }

  .cursor {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(132, 188, 255, .50);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(calc(var(--mx) - 17px), calc(var(--my) - 17px), 0);
    transition: width .25s var(--ease), height .25s var(--ease), border-color .25s ease, opacity .25s ease;
    mix-blend-mode: screen;
  }

  .cursor span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--violet);
  }

  body.has-pointer .cursor {
    opacity: .84;
  }

  body.cursor-active .cursor {
    width: 52px;
    height: 52px;
    border-color: rgba(205, 223, 255, .76);
    transform: translate3d(calc(var(--mx) - 26px), calc(var(--my) - 26px), 0);
  }
}

@media (max-width: 760px) {
  .experience {
    min-height: 100svh;
    overflow: clip;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .status {
    display: none;
  }

  .stage {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(40px, 13.6vw, 70px);
  }

  .thesis {
    max-width: 92%;
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer > p:nth-child(2) {
    text-align: right;
  }

  .footer__code {
    display: none;
  }
}

@media (max-width: 520px) {
  .topbar,
  .footer {
    padding-inline: 18px;
  }

  .brand__name {
    font-size: 10px;
  }

  .brand__powered {
    font-size: 4px;
  }

  .contact--top {
    font-size: 8px;
  }

  .stage {
    padding-inline: 15px;
  }

  .sigil {
    width: 88px;
    margin-bottom: 14px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 7px;
  }

  .hero-brand {
    margin-bottom: 8px;
  }

  .hero-brand > span {
    font-size: 11px;
  }

  .hero-brand small {
    margin-top: 4px;
    font-size: 5px;
  }

  .thesis {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.55;
  }

  .question {
    max-width: 94%;
    margin-top: 13px;
    font-size: 7px;
    letter-spacing: .19em;
  }

  .countdown-wrap {
    margin-top: 19px;
  }

  .countdown-caption {
    margin-bottom: 9px;
    font-size: 6px;
  }

  .countdown {
    width: min(100%, 360px);
    padding: 10px 7px 8px;
    border-radius: 14px;
  }

  .time-cell {
    min-width: 0;
    flex: 1;
  }

  .time-cell strong {
    font-size: clamp(16px, 5.8vw, 24px);
  }

  .time-cell span {
    margin-top: 6px;
    font-size: 5px;
    letter-spacing: .15em;
  }

  .time-separator {
    padding-inline: 0;
    font-size: 16px;
  }

  .footer {
    gap: 12px;
    font-size: 6px;
  }

  .footer .contact {
    font-size: 7px;
  }
}

@media (max-height: 780px) and (min-width: 761px) {
  .sigil {
    width: 92px;
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(42px, 6.2vw, 78px);
  }

  .hero-brand {
    margin-bottom: 7px;
  }

  .thesis,
  .question,
  .countdown-wrap {
    margin-top: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .grain {
    display: none;
  }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes orbit-reverse {
  to { transform: rotate(-234deg); }
}

@keyframes breathe {
  0%, 100% { opacity: .56; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(118, 239, 255, .48); }
  75%, 100% { box-shadow: 0 0 0 9px rgba(118, 239, 255, 0); }
}

@keyframes separator-pulse {
  0%, 100% { opacity: .26; }
  50% { opacity: .76; }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-4%, -8%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(6%, -12%); }
  40% { transform: translate(-5%, 13%); }
  50% { transform: translate(-12%, 6%); }
  60% { transform: translate(13%, 0); }
  70% { transform: translate(0, 11%); }
  80% { transform: translate(3%, 5%); }
  90% { transform: translate(-10%, 10%); }
}

@keyframes boot-mark {
  0% { opacity: 0; transform: scale(.68) rotate(-11deg); filter: blur(9px); }
  68% { opacity: 1; transform: scale(1.05) rotate(1deg); filter: blur(0); }
  100% { opacity: .9; transform: scale(1) rotate(0); }
}

@keyframes boot-line {
  15% { transform: translateX(-100%); }
  75%, 100% { transform: translateX(100%); }
}

@keyframes mark-resonance {
  0% { transform: scale(1) rotate(0); }
  22% { transform: scale(.86) rotate(-8deg); }
  52% { transform: scale(1.18) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}


/* Standalone 404 page */
body.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}

.not-found::before {
  position: fixed;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 45%, rgba(106, 220, 255, .10), transparent 34%);
  pointer-events: none;
}

.not-found__panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 700px;
  text-align: center;
}

.not-found__panel img {
  width: 82px;
  height: 82px;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 28px rgba(112, 227, 255, .22));
}

.not-found__panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .28em;
}

.not-found__panel h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 88px);
  font-weight: 520;
  letter-spacing: -.055em;
}

.not-found__panel span {
  max-width: 540px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.not-found__panel a {
  margin-top: 36px;
  border-bottom: 1px solid var(--line-strong);
  padding: 0 0 8px;
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .22em;
  transition: border-color .25s ease, color .25s ease;
}

.not-found__panel a:hover,
.not-found__panel a:focus-visible {
  border-color: currentColor;
  color: var(--mint, #9edfff);
}


/* V1.1 — official brand integration */
.brand__official {
  display:block; width:clamp(112px, 9vw, 150px); height:auto;
  filter: drop-shadow(0 0 15px rgba(46,95,255,.20));
}
.hero-official-logo {
  width:clamp(190px, 22vw, 310px); height:auto; margin:0 0 clamp(14px,2vh,24px);
  filter: drop-shadow(0 0 30px rgba(45,79,255,.23));
}
.hero-official-logo--aion { width:clamp(190px, 20vw, 300px); }
.sigil img { object-fit: contain; }
@media (max-width: 640px) {
  .brand__official { width:104px; }
  .hero-official-logo--aion { width:min(58vw, 245px); }
}
