:root {
  --paper: #f2f3f5;
  --paper-deep: #e9ebee;
  --ink: #111214;
  --muted: #6f7278;
  --line: rgba(19, 21, 24, .11);
  --white-line: rgba(255, 255, 255, .78);
  --spring: cubic-bezier(.16, 1.38, .36, 1);
  --smooth: cubic-bezier(.76, 0, .24, 1);
  --page: min(94vw, 1600px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Archivo", Arial, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: var(--ink); color: var(--paper); }

.noise { position: fixed; inset: 0; pointer-events: none; opacity: .032; z-index: 99; 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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E"); }
.cursor-glow { position: fixed; width: 32rem; height: 32rem; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.92), transparent 66%); transform: translate3d(calc(var(--mouse-x, 50vw) - 50%), calc(var(--mouse-y, 50vh) - 50%), 0); pointer-events: none; z-index: 0; opacity: .58; transition: opacity .5s; }

.nav { width: var(--page); height: 104px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.brand { justify-self: start; display: flex; align-items: center; gap: 12px; text-transform: uppercase; font: 500 10px/1.25 "IBM Plex Mono", monospace; letter-spacing: .06em; }
.nav__status { display: flex; align-items: center; gap: 9px; color: var(--muted); font: 400 9px "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .1em; }
.nav__status i { width: 5px; height: 5px; border-radius: 50%; background: #657568; box-shadow: 0 0 0 4px rgba(101,117,104,.12); animation: breathe 2.8s ease-in-out infinite; }
.eyebrow { margin: 0; display: flex; align-items: center; gap: 13px; font: 500 9px "IBM Plex Mono", monospace; color: #61646a; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow span { width: 32px; height: 1px; background: currentColor; opacity: .4; }
em { font-family: inherit; font-style: normal; font-weight: 300; }
.volume-button { position: relative; isolation: isolate; border: 1px solid rgba(255,255,255,.74); background: #eceef0; box-shadow: 0 0 0 rgba(255,255,255,0), 0 0 0 rgba(25,28,33,0); border-radius: 12px; min-height: 61px; padding: 0 16px 0 24px; display: inline-flex; align-items: center; justify-content: space-between; gap: 40px; color: var(--ink); font-size: 12px; font-weight: 600; cursor: pointer; transform: translate3d(0,0,0) scale(1); transition: transform .65s var(--spring), box-shadow .65s var(--spring), background .4s ease, border-color .4s ease; }
.volume-button i { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-style: normal; line-height: 0; background: rgba(255,255,255,0); transition: transform .65s var(--spring), background .4s ease, border-color .4s ease; }
.volume-button svg { width: 14px; height: 14px; display: block; overflow: visible; stroke: currentColor; stroke-width: 1.7; stroke-linecap: square; stroke-linejoin: miter; transition: transform .65s var(--spring); }
.volume-button:hover { background: #eff0f2; border-color: rgba(255,255,255,.96); transform: translate3d(0,-6px,0) scale(1.015); box-shadow: -10px -10px 24px rgba(255,255,255,.95), 11px 15px 28px rgba(27,31,36,.15); }
.volume-button:hover i { transform: translate3d(1px,1px,0); background: rgba(255,255,255,.65); border-color: rgba(25,28,33,.15); }
.volume-button:hover svg { transform: translate3d(2px,2px,0); }
.volume-button:focus-visible { outline: 1px solid var(--ink); outline-offset: 5px; }
.volume-button:active { transform: translate3d(0,1px,0) scale(.985); transition-duration: .14s; box-shadow: inset 4px 4px 8px rgba(28,32,37,.1), inset -4px -4px 8px white; }
.volume-button:active i,.volume-button:active svg { transform: translate3d(0,0,0); transition-duration: .14s; }
.nav-button { justify-self: end; min-width: 206px; min-height: 52px; padding-left: 18px; gap: 22px; border-radius: 10px; font: 500 9px "IBM Plex Mono", monospace; text-transform: uppercase; }
.nav-button i { width: 30px; height: 30px; flex-basis: 30px; }

[data-assemble] { opacity: 0; transform: perspective(1000px) translateY(56px) scale(.94) rotateX(8deg); filter: blur(9px); transform-origin: center bottom; transition: opacity .7s ease var(--delay, 0ms), transform 1.15s var(--spring) var(--delay, 0ms), filter .8s ease var(--delay, 0ms); }
[data-assemble].is-visible { opacity: 1; transform: perspective(1000px) translateY(0) scale(1) rotateX(0); filter: blur(0); }

.footer { width: var(--page); min-height: 112px; margin: auto; padding: 28px 0 48px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; position:relative; color: var(--muted); font: 400 9px "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .07em; }
.footer span:nth-child(2) { text-align: center; }.footer a { justify-self: end; color: var(--ink); }.footer__generated{position:absolute;left:50%;bottom:17px;transform:translateX(-50%);color:#898d92;font-size:7px;letter-spacing:.14em;white-space:nowrap}
@keyframes breathe { 50% { transform: scale(1.5); opacity: .45; } }

@media (max-width: 800px) {
  :root { --page: calc(100vw - 32px); }
  .nav { height: 82px; grid-template-columns: 1fr auto; }.nav__status { display: none; }.nav-button { min-width: auto; padding-left: 15px; }.nav-button > span { display:none; }
  .cursor-glow { display: none; }
  .footer { grid-template-columns: 1fr auto; gap: 12px; }.footer span:nth-child(2) { 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; }
  [data-assemble] { opacity: 1; transform: none; filter: none; }
}
