:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #02040a;
  color: #f7f8ff;
}

* { box-sizing: border-box; }
body { margin: 0; background: #02040a; color: #f7f8ff; }
a { color: #b7a8ff; }

.press-static { min-height: 100vh; }
.press-static-header,
.press-static main,
.press-static footer { width: min(100% - 2rem, 78rem); margin: 0 auto; }
.press-static-header { display: flex; min-height: 5rem; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid rgba(190, 204, 255, .14); }
.press-static-header img { display: block; width: auto; height: 2rem; }
.press-static-header nav,
.press-static footer { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.press-static-header a,
.press-static footer a { color: rgba(226, 230, 255, .72); font-size: .8rem; text-decoration: none; }
.press-static-header a[aria-current="page"] { color: #fff; }
.press-static main { padding: 4rem 0 6rem; }
.press-static-breadcrumb { display: flex; gap: .6rem; color: rgba(184, 193, 220, .55); font-size: .7rem; }
.press-static-hero { padding: 5rem 0; }
.press-static-hero h1 { max-width: 48rem; margin: 0; font-size: clamp(3.5rem, 8vw, 7rem); letter-spacing: -.075em; line-height: .9; }
.press-static-hero > p { max-width: 46rem; color: rgba(211, 217, 239, .72); line-height: 1.7; }
.press-static-hero > p:first-of-type { margin-top: 1.7rem; font-size: 1.1rem; }
.press-static-button { display: inline-block; margin: 1rem .5rem 0 0; border: 1px solid rgba(170, 174, 255, .35); border-radius: .8rem; padding: .75rem 1rem; color: #fff; font-size: .78rem; font-weight: 680; text-decoration: none; }
.press-static-button--primary { border-color: #9799ff; background: #9799ff; color: #090b18; }
.press-static section:not(.press-static-hero) { border-top: 1px solid rgba(190, 204, 255, .14); padding: 3rem 0; }
.press-static h2 { margin: 0 0 1.4rem; font-size: clamp(1.8rem, 4vw, 2.7rem); letter-spacing: -.05em; }
.press-static-grid,
.press-static-assets,
.press-static-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
.press-static-card,
.press-static-asset,
.press-static-empty,
.press-static-founder > div,
.press-static-links a { border: 1px solid rgba(190, 204, 255, .14); border-radius: .9rem; background: rgba(255, 255, 255, .035); padding: 1rem; }
.press-static-card h3,
.press-static-asset h3,
.press-static-empty strong { margin: 0; font-size: .82rem; }
.press-static-card p,
.press-static-asset p,
.press-static-empty p,
.press-static-founder p,
.press-static section li,
.press-static section > p { color: rgba(184, 193, 220, .62); font-size: .78rem; line-height: 1.6; }
.press-static-founder { display: grid; gap: .8rem; }
.press-static-founder h3 { margin: 0 0 .8rem; }
.press-static-founder h4 { margin: 0 0 .55rem; color: rgba(184, 193, 220, .62); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.press-static-facts { overflow: hidden; margin: 0; border: 1px solid rgba(190, 204, 255, .14); border-radius: .9rem; }
.press-static-facts div { display: grid; grid-template-columns: 12rem minmax(0, 1fr); border-bottom: 1px solid rgba(190, 204, 255, .14); }
.press-static-facts div:last-child { border-bottom: 0; }
.press-static-facts dt,
.press-static-facts dd { margin: 0; padding: .75rem; font-size: .75rem; }
.press-static-facts dt { border-right: 1px solid rgba(190, 204, 255, .14); font-weight: 680; }
.press-static-facts dd { color: rgba(211, 217, 239, .72); }
.press-static-asset img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }
.press-static-asset span { display: block; color: rgba(184, 193, 220, .5); font-size: .65rem; }
.press-static-asset a { display: inline-block; margin-top: .8rem; }
.press-static-links a { display: grid; color: #f7f8ff; text-decoration: none; }
.press-static-links span { margin-top: .25rem; color: rgba(184, 193, 220, .5); font-size: .68rem; }
.press-static footer { justify-content: flex-end; border-top: 1px solid rgba(190, 204, 255, .14); padding: 2rem 0 3rem; }

@media (max-width: 720px) {
  .press-static-header { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
  .press-static main { padding-top: 2.5rem; }
  .press-static-hero { padding: 3.5rem 0; }
  .press-static-grid,
  .press-static-assets,
  .press-static-links { grid-template-columns: 1fr; }
  .press-static-facts div { grid-template-columns: 8rem minmax(0, 1fr); }
  .press-static footer { justify-content: flex-start; }
}

@media (prefers-color-scheme: light) {
  :root,
  body { color-scheme: light; background: #f5f7fc; color: #151a2d; }
  .press-static-header a,
  .press-static footer a { color: rgba(37, 44, 68, .68); }
  .press-static-header a[aria-current="page"] { color: #151a2d; }
  .press-static-hero > p,
  .press-static-card p,
  .press-static-asset p,
  .press-static-empty p,
  .press-static-founder p,
  .press-static section li,
  .press-static section > p,
  .press-static-facts dd { color: rgba(48, 57, 84, .7); }
  .press-static-card,
  .press-static-asset,
  .press-static-empty,
  .press-static-founder > div,
  .press-static-links a { background: rgba(255, 255, 255, .76); }
  .press-static-links a { color: #151a2d; }
  .press-static-header img { filter: brightness(.19) saturate(1.2); }
}
