* { box-sizing: border-box; }
:root {
  color-scheme: dark;
  --background: #030914;
  --text: #f1f4f8;
  --blue: #88ceff;
  --gutter: clamp(24px, 3.5vw, 72px);
  --slogan-size: clamp(48px, 5.65vw, 114px);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
body { margin: 0; min-height: 680px; height: 100svh; position: relative; }
::selection { background: #88ceff; color: #030914; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--blue); outline-offset: 7px; }
.scene {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  animation: scene-arrive 1.6s ease-out both;
}
@keyframes scene-arrive {
  from { opacity: 0; filter: blur(4px); }
  to { opacity: 1; filter: none; }
}
.scene::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 57% 29%, #0a162b 0%, #040b17 43%, #02060d 78%);
}
#ribbon, .scene-fallback { position: absolute; width: 100%; height: 100%; display: block; }
.scene-fallback { object-fit: cover; }
.webgl-ready .scene-fallback { visibility: hidden; }
.scene-shade { position: absolute; inset: 0; background: linear-gradient(90deg, #03091430, transparent 48%); }
.identity {
  position: absolute; top: 4.5%; left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font: 14px/1.5 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  letter-spacing: .15em;
}
.identity a { padding-block: 8px; }
.role {
  position: absolute; top: 10.5%; left: var(--gutter); margin: 0;
  font-size: clamp(48px, 5.15vw, 104px); font-weight: 400;
  line-height: .97; letter-spacing: -.058em; will-change: transform;
}
.role > span { display: block; }
.statement { position: absolute; bottom: 13.4%; left: var(--gutter); font-size: var(--slogan-size); }
.slogan { margin: 0; font-size: inherit; line-height: .92; font-weight: 600; letter-spacing: -.05em; }
.slogan-line { display: block; white-space: nowrap; }
.glyph-slot { position: relative; display: inline-block; width: var(--glyph-slot-width, .28em); text-align: center; }
.glyph-u { display: inline-block; transform: scaleX(var(--glyph-width, .03)); opacity: var(--glyph-opacity, 0); }
.glyph-i {
  position: absolute; inset: 0; font-weight: 700;
  color: rgb(calc(178 + var(--glyph-near, 0) * 30) calc(227 + var(--glyph-near, 0) * 13) 255);
  transform-origin: center 15%;
  transform: translateX(var(--glyph-i-offset, 0em)) scale(var(--glyph-i-width, 1), var(--glyph-i-height, 1)); opacity: var(--glyph-i-opacity, 1);
  text-shadow: 0 0 calc(8px + var(--glyph-near, 0) * 3px) #47b6ff,
    0 0 calc(24px + var(--glyph-near, 0) * 10px) #128cff;
}
.glyph-trigger {
  display: none; position: absolute; bottom: .92em; left: .67em; width: .74em; height: 1em;
  min-height: 44px; min-width: 44px; padding: 0; border: 0;
  border-radius: 4px; background: transparent; cursor: pointer; font-size: inherit;
  touch-action: manipulation;
}
.motion-ready .glyph-trigger { display: block; }
.glyph-trigger:disabled { cursor: default; }
.status {
  position: absolute; bottom: 5.6%; left: var(--gutter); right: var(--gutter);
  display: flex; align-items: center; gap: 24px;
  color: #b5c9df; font: 12px/1.5 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  letter-spacing: .06em;
}
.status > * + * { border-left: 1px solid #6b829b; padding-left: 24px; }
.status a { padding-block: 8px; }
.contact-method { white-space: nowrap; }
.status .motion-toggle {
  margin-left: auto; padding: 8px 0; min-height: 34px; min-width: 44px;
  border: 0; background: none; color: inherit;
  font: inherit; letter-spacing: inherit; cursor: pointer;
}
.motion-toggle:hover { color: var(--blue); }
.capacity { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.capacity-bar {
  display: inline-block; flex: none; width: 84px; height: 9px; color: var(--blue);
  background: repeating-linear-gradient(90deg, currentColor 0 5px, transparent 5px 7px);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
@media (min-width: 1800px) { :root { --gutter: 4vw; } }
@media (max-width: 700px) {
  :root { --gutter: 24px; --slogan-size: clamp(36px, 9.1vw, 62px); }
  body { min-height: 660px; }
  .identity { top: 3%; font-size: 12px; letter-spacing: .035em; gap: 12px; flex-wrap: wrap; }
  .role { top: 14%; font-size: clamp(40px, 10.6vw, 72px); line-height: .99; }
  .statement { bottom: 17%; }
  .status { bottom: 5%; flex-wrap: wrap; gap: 7px 14px; max-width: 340px; font-size: 12px; }
  .status > * + * { padding-left: 14px; }
  .status a { padding-left: 0; border: 0; }
  .capacity { flex-basis: 100%; gap: 6px; }
  .capacity-bar { width: 60px; background-size: 5px 100%; background-image: linear-gradient(90deg, currentColor 80%, transparent 80%); }
  .scene-fallback { object-position: 61% center; }
}
@media (max-width: 360px) {
  :root { --gutter: 18px; --slogan-size: 9vw; }
  .identity { font-size: 12px; }
  .status { gap: 7px 10px; letter-spacing: .02em; }
  .status > * + * { padding-left: 10px; }
  .status a { padding-left: 0; }
  .capacity-bar { width: 48px; background-size: 4px 100%; background-image: linear-gradient(90deg, currentColor 75%, transparent 75%); }
}
@media (max-height: 600px) and (min-width: 701px) {
  body { min-height: 520px; }
  .role { font-size: 8.9vh; }
  :root { --slogan-size: 9.4vh; }
}
@media (prefers-reduced-motion: reduce) {
  .scene { animation: none; }
  .role { transform: none !important; }
  .glyph-trigger { display: none !important; }
}
