:root {
  color-scheme: dark;
  font-family: "DM Sans", system-ui, sans-serif;
  background: #0f0f12;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #0f0f12;
}

body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 85% 10%, rgba(217, 70, 168, 0.12), transparent 32rem),
    #0f0f12;
}

a {
  color: #e8588c;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #ffffff;
}

a:focus-visible {
  outline: 2px solid #e8588c;
  outline-offset: 4px;
}

.static-shell {
  width: min(100% - 2rem, 760px);
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.static-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(4rem, 12vw, 8rem);
}

.static-logo {
  width: min(220px, 55vw);
  height: auto;
}

.static-back {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.static-eyebrow {
  margin: 0 0 1rem;
  color: #e8588c;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}

h1 {
  max-width: 12ch;
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 9vw, 4.75rem);
  line-height: 1.02;
}

h2 {
  margin: 3rem 0 0.75rem;
  font-size: 1.2rem;
}

p,
li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.static-lead {
  max-width: 60ch;
  margin: 0;
  font-size: 1.15rem;
}

ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.25rem;
}

.static-meta {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.error-shell {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.error-card {
  max-width: 520px;
}

.error-card h1 {
  max-width: none;
}

.static-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #e8588c;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.static-button:hover {
  transform: translateY(-2px);
  background: #d946a8;
  color: #ffffff;
}

.static-button:active {
  transform: translateY(0) scale(0.98);
}

@media (max-width: 520px) {
  .static-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
