:root {
  color-scheme: dark light;
  font-family: ui-monospace, "SFMono-Regular", "Cascadia Code", monospace;
  background: #050505;
}

body {
  margin: 0;
}

[data-static-shell] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: clamp(1rem, 2.4vw, 2rem);
  color: #f4f0e6;
  background:
    radial-gradient(circle at 78% 34%, #182d16 0, transparent 28%),
    #050505;
}

[data-static-shell][data-theme="light"] {
  color: #11110f;
  background:
    radial-gradient(circle at 70% 40%, #dfe5ff 0, transparent 30%),
    #f3f0e8;
}

[data-static-shell] header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-static-shell] a {
  color: inherit;
  text-decoration: none;
}

[data-static-shell] > section {
  align-self: center;
  max-width: 72rem;
  padding: 5rem 0;
}

[data-static-shell] section > p:first-child,
[data-static-shell] nav span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}

[data-static-shell] h1 {
  max-width: 10ch;
  margin: 0.35rem 0 1rem;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(4.5rem, 14vw, 12rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

[data-static-shell] section > p:last-child {
  max-width: 43rem;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.12;
}

[data-static-shell] nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid currentColor;
}

[data-static-shell] nav a {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid color-mix(in srgb, currentColor 35%, transparent);
}

[data-static-shell] nav a:last-child {
  border-right: 0;
}

[data-static-shell] nav strong {
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 400;
}

@media (max-width: 680px) {
  [data-static-shell] {
    min-height: 100svh;
  }

  [data-static-shell] header span {
    text-align: right;
  }

  [data-static-shell] h1 {
    font-size: clamp(4rem, 24vw, 7.2rem);
  }

  [data-static-shell] nav {
    grid-template-columns: 1fr;
  }

  [data-static-shell] nav a {
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, currentColor 35%, transparent);
  }
}
