/* Standalone export of the final Axes Labs slate theme. */
@font-face {
  font-family: 'Geist';
  src: url('./fonts/geist-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root { --font-geist-sans: 'Geist'; }
*, ::before, ::after { box-sizing: border-box; border: 0 solid; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; }
body { -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; vertical-align: middle; }

:root {
  color-scheme: dark;
  --background: #151923;
  --foreground: #edeff5;
  --secondary: #262d3b;
  --muted-foreground: #a3adbf;
  --accent: #9baed0;
  --glow-color: #425574;
  --ambient-start: #1b2230;
  --ambient-end: #11141d;
  --logo-filter: grayscale(1) invert(1);
  --primary: var(--foreground);
  --primary-foreground: var(--background);
  --secondary-foreground: var(--foreground);
  --muted: var(--secondary);
  --border: color-mix(in srgb, var(--foreground) 14%, transparent);
  --ring: var(--accent);
  --accent-foreground: var(--background);
  --radius: 0.25rem;
}

* { box-sizing: border-box; }
html { background: var(--background); }
body {
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 2px solid var(--ring); outline-offset: 7px; }
::selection { background: var(--accent); color: var(--background); }
.page-width { width: min(1440px, calc(100% - 112px)); margin-inline: auto; }
.stealth-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: clip;
}
.ambient, .precision-grid { position: absolute; z-index: -1; inset: 0; pointer-events: none; }
.ambient {
  background:
    radial-gradient(ellipse at 83% 44%, color-mix(in srgb, var(--glow-color) 14%, transparent), transparent 54%),
    radial-gradient(ellipse at 45% 110%, color-mix(in srgb, var(--glow-color) 8%, transparent), transparent 65%),
    linear-gradient(135deg, var(--ambient-start) 0%, var(--background) 56%, var(--ambient-end) 100%);
}
.precision-grid {
  background-image: linear-gradient(color-mix(in srgb, var(--accent) 5%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--accent) 5%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 81% 47%, black 3%, transparent 69%);
  mask-image: radial-gradient(ellipse at 81% 47%, black 3%, transparent 69%);
}
.skip-link { position: fixed; z-index: 10; top: -100px; left: 20px; padding: 12px 20px; background: var(--foreground); color: var(--background); }
.skip-link:focus { top: 12px; }
.site-header { min-height: 106px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; font-size: 28px; font-weight: 600; letter-spacing: -1.6px; }
.brand-labs { font-weight: 400; margin-left: 5px; }
.logo-mark { position: relative; display: block; width: 43px; aspect-ratio: 1.493; overflow: hidden; flex-shrink: 0; filter: var(--logo-filter); }
.logo-mark img { display: block; position: absolute; width: 133.8%; height: auto; max-width: none; left: -17.07%; top: -16.14%; }

.hero { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 48px; padding-block: 40px 70px; }
.hero-copy { position: relative; z-index: 1; min-width: 0; }
h1 { margin: 0; font-size: clamp(44px, 6.2vw, 96px); line-height: 1.055; letter-spacing: -0.065em; font-weight: 400; }
h1 > span { color: var(--accent); }
.email-link { display: inline-flex; align-items: center; gap: 45px; min-height: 44px; margin-top: 39px; padding-block: 10px; border-bottom: 1px solid color-mix(in srgb, var(--accent) 34%, transparent); font-size: 14px; color: color-mix(in srgb, var(--foreground) 82%, var(--accent)); transition: color 180ms ease, border-color 180ms ease; }
.email-link svg { transition: transform 180ms ease; }
.email-link:hover { color: var(--foreground); border-color: var(--accent); }
.email-link:hover svg { transform: translate(2px, -2px); }
.hero-art { min-width: 0; }
.registration-frame { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1.2; border: 1px solid color-mix(in srgb, var(--accent) 9%, transparent); }
.registration { position: absolute; color: color-mix(in srgb, var(--accent) 45%, transparent); }
.top-left { left: -8px; top: -8px; }
.top-right { right: -8px; top: -8px; }
.bottom-left { left: -8px; bottom: -8px; }
.bottom-right { right: -8px; bottom: -8px; }
.hero-logo { width: 85%; opacity: 0.76; }
.site-footer { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--border); }
.site-footer p { margin: 0; color: var(--muted-foreground); font-size: 11px; line-height: 1.6; }

@media (max-width: 1000px) {
  .page-width { width: calc(100% - 64px); }
  .site-header { min-height: 88px; }
  .hero { gap: 26px; grid-template-columns: 1.2fr 0.8fr; }
  h1 { font-size: clamp(40px, 6.2vw, 62px); }
}

@media (max-width: 700px) {
  .page-width { width: calc(100% - 40px); }
  .site-header { min-height: 80px; gap: 16px; }
  .brand { font-size: 25px; gap: 9px; }
  .brand .logo-mark { width: 35px; }
  .hero { position: relative; grid-template-columns: 1fr; padding-block: 32px 54px; }
  h1 { font-size: clamp(37px, 10.5vw, 66px); line-height: 1.08; }
  .hero-art { position: absolute; z-index: 0; width: min(74vw, 340px); right: -14%; top: 50%; transform: translateY(-45%); opacity: 0.085; pointer-events: none; }
  .registration-frame { border: none; }
  .registration { display: none; }
  .email-link { margin-top: 30px; font-size: 14px; gap: 36px; }
  .site-footer { min-height: 74px; gap: 12px; }
  .site-footer p { font-size: 10px; }
  .precision-grid { background-size: 48px 48px; }
}

@media (max-height: 560px) and (min-width: 701px) {
  .site-header { min-height: 72px; }
  .hero { padding-block: 20px 28px; }
  h1 { font-size: clamp(40px, 5vw, 64px); }
  .hero-art { max-width: 310px; justify-self: end; }
  .email-link { margin-top: 20px; }
  .site-footer { min-height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
