@font-face {
  font-family: "Archivo Black";
  src: url("/assets/archivo-black.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/ibm-plex-mono.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #e8e8e8;
  --ink: #191919;
  --muted: #666;
  --edge: clamp(24px, 3.15vw, 64px);
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}
* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
::selection { color: var(--paper); background: var(--ink); }
a { color: inherit; }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 8px; }
.page {
  --poster-left: 2.5%;
  --poster-right: 2.5%;
  height: 100svh;
  min-height: 540px;
  padding: 0 var(--edge);
  display: grid;
  grid-template-rows: 86px minmax(0, 1fr) 110px;
  max-width: 2600px;
  margin: 0 auto;
}
.header, .footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-left: var(--poster-left); padding-right: var(--poster-right); }
.wordmark { font-size: 27px; font-weight: 750; letter-spacing: -1.8px; line-height: 1; }
.wordmark-period { margin-left: 1px; }
.stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  isolation: isolate;
  overflow: hidden;
}
.optical-scene { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.optical-scene canvas { display: block; width: 100%; height: 100%; }
.stage.is-live .optical-scene { opacity: 1; }
.stage.is-live .type-fallback { opacity: 0; }
.type-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 14vw;
  letter-spacing: -.065em;
  transition: opacity .6s ease;
}
.type-fallback canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.type-fallback.is-painted > span { visibility: hidden; }
.intro { min-width: 0; }
.formation { font-family: var(--mono); font-size: 9px; line-height: 1.2; letter-spacing: .14em; margin: 0 0 9px; color: #666; }
.intro-copy { font-size: 20px; line-height: 1.3; letter-spacing: -.035em; margin: 0; color: var(--ink); }
.social-link { display: flex; align-items: center; gap: 8px; min-height: 44px; padding-top: 18px; flex-shrink: 0; text-decoration: none; font-family: var(--mono); font-size: 13px; letter-spacing: -.015em; }
.social-link span { border-bottom: 1px solid transparent; transition: border-color .2s; }
.social-link:hover span { border-color: currentColor; }
.social-link svg { fill: none; stroke: currentColor; stroke-width: 1.4; transition: transform .2s; }
.social-link:hover svg { transform: translate(2px, -2px); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
@media (min-width: 761px) and (max-height: 740px) {
  .page { grid-template-rows: 68px minmax(0, 1fr) 92px; }
}
@media (max-width: 760px) {
  :root { --edge: 22px; }
  .page { min-height: 540px; grid-template-rows: 76px minmax(0, 1fr) 108px; }
  .wordmark { font-size: 25px; }
  .footer { gap: 16px; }
  .formation { font-size: 8px; letter-spacing: .12em; margin-bottom: 8px; }
  .intro-copy { font-size: 16px; }
  .social-link { font-size: 12px; gap: 6px; }
  .social-link svg { width: 14px; height: 14px; }
}
@media (max-width: 360px) {
  :root { --edge: 18px; }
  .intro-copy { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
