:root {
  color-scheme: dark;
  --ink: #fffaf0;
  --muted: #c9d7e8;
  --gold: #ffc45a;
  --line: rgb(255 255 255 / 24%);
  --night: #061638;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--night);
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--night);
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: max(1.5rem, env(safe-area-inset-top)) max(1.5rem, env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) max(1.5rem, env(safe-area-inset-left));
}

.site-shell::before,
.site-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.site-shell::before {
  background:
    linear-gradient(90deg, rgb(2 12 36 / 36%) 0%, rgb(2 12 36 / 4%) 67%, rgb(2 12 36 / 22%) 100%),
    linear-gradient(180deg, rgb(2 12 36 / 34%) 0%, transparent 24%, transparent 72%, rgb(2 12 36 / 60%) 100%);
}

.site-shell::after {
  background: radial-gradient(circle at 34% 50%, transparent 0 23%, rgb(1 10 31 / 10%) 54%, rgb(1 10 31 / 30%) 100%);
  box-shadow: inset 0 0 12rem rgb(0 7 26 / 30%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--night);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 50%;
}

.site-header,
.site-footer,
.hero {
  width: 100%;
  max-width: 112rem;
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
}

.wordmark {
  color: var(--ink);
  font-family: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  font-size: clamp(1.2rem, 1rem + 0.45vw, 1.6rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1;
  text-decoration: none;
}

.wordmark:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 0.4rem;
  border-radius: 0.15rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 68%) 1fr;
  align-items: center;
  padding-block: clamp(3rem, 8vh, 7rem);
}

.hero-copy {
  justify-self: stretch;
  max-width: 58rem;
  text-align: center;
  text-wrap: balance;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: clamp(0.7rem, 0.64rem + 0.2vw, 0.82rem);
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-family: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  font-size: clamp(3.2rem, 2.15rem + 4.7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.88;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.dek {
  max-width: 39rem;
  margin: clamp(1.6rem, 3.4vh, 2.7rem) auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 0.9rem + 0.42vw, 1.28rem);
  line-height: 1.6;
  text-shadow: 0 1px 1rem rgb(0 5 24 / 45%);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: clamp(2rem, 4.8vh, 3.75rem) auto 0;
  padding: 0.72rem 1.05rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgb(4 20 55 / 48%);
  box-shadow: 0 0.65rem 2rem rgb(0 5 25 / 20%);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.status span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0.85rem rgb(255 196 90 / 82%);
}

.site-footer {
  color: rgb(220 230 242 / 72%);
  font-size: clamp(0.68rem, 0.63rem + 0.14vw, 0.76rem);
  letter-spacing: 0.015em;
  line-height: 1.5;
}

.site-footer p {
  max-width: 46rem;
  margin: 0;
}

.channel-link {
  color: inherit;
  text-decoration-color: rgb(255 196 90 / 65%);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.channel-link:hover {
  color: var(--ink);
  text-decoration-color: var(--gold);
}

.channel-link:focus-visible {
  border-radius: 0.12rem;
  outline: 2px solid var(--gold);
  outline-offset: 0.2rem;
}

@media (max-width: 720px) {
  .site-shell {
    padding-top: max(1.25rem, env(safe-area-inset-top));
    padding-right: max(1.1rem, env(safe-area-inset-right));
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    padding-left: max(1.1rem, env(safe-area-inset-left));
  }

  .hero-media img {
    object-position: 70% 50%;
  }

  .site-shell::before {
    background:
      linear-gradient(180deg, rgb(1 10 31 / 38%) 0%, rgb(1 10 31 / 10%) 22%, rgb(1 10 31 / 22%) 68%, rgb(1 10 31 / 76%) 100%),
      linear-gradient(90deg, rgb(1 10 31 / 25%), transparent 50%, rgb(1 10 31 / 25%));
  }

  .site-shell::after {
    background: radial-gradient(circle at 50% 49%, rgb(4 19 51 / 7%) 0 20%, rgb(1 10 31 / 34%) 82%);
    box-shadow: inset 0 0 8rem rgb(0 7 26 / 28%);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: clamp(2.8rem, 8vh, 5rem);
  }

  .hero-copy {
    width: 100%;
    max-width: 35rem;
    margin-inline: auto;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.15rem, 15vw, 5.15rem);
    line-height: 0.9;
  }

  .dek {
    max-width: 31rem;
    line-height: 1.52;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer p {
    max-width: 36rem;
    margin-inline: auto;
  }
}

@media (max-height: 650px) and (min-width: 721px) {
  .hero {
    padding-block: 1.5rem;
  }

  h1 {
    font-size: clamp(3.4rem, 9.2vh, 5.3rem);
  }

  .dek {
    margin-top: 1.25rem;
  }

  .status {
    margin-top: 1.5rem;
  }
}

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

@supports not (backdrop-filter: blur(10px)) {
  .status {
    background: rgb(4 20 55 / 88%);
  }
}
