@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #318ce7;
  --ink: #101114;
  --paper: #f4f3ef;
  --white: #ffffff;
  --line: #d8d7d2;
  --muted: #63666d;
  --dark: #0d0e10;
  --dark-soft: #15171a;
  --dark-line: #303238;
  --font-display: "Manrope", Arial, Helvetica, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --shell: 82rem;
  --shell-narrow: 54rem;
  --gutter: clamp(1.15rem, 4vw, 4rem);
  --section-space: clamp(5rem, 10vw, 9rem);
  --radius: 1rem;
  --radius-sm: .55rem;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --accent: var(--brand);
  --accent-2: #8fc8ff;
  --accent-soft: #e6f2fd;
  --on-accent: #071019;
  --hero-bg: #0d1117;
  --hero-fg: #f8f8f4;
  --hero-muted: #b4bac3;
  --header-bg: rgba(13, 14, 16, .88);
  --header-fg: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 1rem; line-height: 1.6; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
p, h1, h2, h3, ul, ol, dl { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: var(--accent); color: var(--on-accent); }

.shell { width: min(100% - (2 * var(--gutter)), var(--shell)); margin-inline: auto; }
.shell--narrow { width: min(100% - (2 * var(--gutter)), var(--shell-narrow)); margin-inline: auto; }
.section { padding-block: clamp(4.5rem, 10vw, 9rem); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--dark { background: var(--dark); color: var(--white); }
.section-anchor { scroll-margin-top: 6rem; }

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font: 750 .72rem/1.2 var(--font-display);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.display-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 15vw, 4.8rem);
  font-weight: 480;
  letter-spacing: -.065em;
  line-height: .9;
}

.section-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.15rem, 5.2vw, 5rem);
  font-weight: 520;
  letter-spacing: -.055em;
  line-height: .98;
}

.card-title {
  margin-bottom: .8rem;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.lead { max-width: 43rem; font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.65; }
.muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

:focus-visible { outline: .18rem solid var(--accent); outline-offset: .24rem; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 1000; padding: .8rem 1rem; background: var(--white); color: var(--ink); font-weight: 700; transform: translateY(-180%); transition: transform 160ms ease; }
.skip-link:focus { transform: translateY(0); }

.js .reveal { opacity: 0; transform: translateY(1rem); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 36rem) {
  .display-title { font-size: clamp(3rem, 8.2vw, 8.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .universe-header, .menu-toggle, .button-row, .site-footer__other { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .universe-hero { padding-block: 2rem; }
}
