:root {
  color-scheme: dark;
  --ink: #06111f;
  --ink-2: #0b1c30;
  --navy: #102d4b;
  --navy-bright: #1b4670;
  --red: #d7302d;
  --red-bright: #ff4b44;
  --paper: #f7f7f4;
  --smoke: #b9bdc1;
  --muted: #c8d0d6;
  --line: rgba(247, 247, 244, 0.2);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  font-family:
    "Arial Narrow",
    "Roboto Condensed",
    "Helvetica Neue",
    Arial,
    sans-serif;
  background:
    linear-gradient(110deg, rgba(6, 17, 31, 0.96), rgba(13, 26, 42, 0.94)),
    url("assets/logo.jpg") center / min(1120px, 115vw) no-repeat,
    #06111f;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(90deg, rgba(215, 48, 45, 0.16), transparent 28% 72%, rgba(16, 45, 75, 0.32)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 72px
    );
  mix-blend-mode: screen;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 17, 31, 0.12), rgba(6, 17, 31, 0.92)),
    linear-gradient(115deg, transparent 0 44%, rgba(215, 48, 45, 0.2) 44% 46%, transparent 46% 100%);
}

.site-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 68px);
  place-items: center;
}

.brand-watermark {
  position: fixed;
  right: -18vmin;
  bottom: -20vmin;
  width: min(58vw, 620px);
  aspect-ratio: 1;
  background: url("assets/logo.jpg") center / contain no-repeat;
  filter: grayscale(0.2);
  opacity: 0.08;
  transform: rotate(-5deg);
}

.hero {
  width: min(1120px, 100%);
  min-height: calc(100vh - clamp(48px, 10vw, 136px));
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "logo copy"
    "categories panel";
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
}

.eyebrow {
  grid-area: eyebrow;
  justify-self: start;
  margin: 0;
  padding: 9px 0 9px 18px;
  border-left: 4px solid var(--red);
  color: var(--muted);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo {
  grid-area: logo;
  width: min(100%, 500px);
  justify-self: center;
  border-radius: 22px;
  filter:
    drop-shadow(0 22px 45px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 30px rgba(215, 48, 45, 0.18));
}

.hero-copy {
  grid-area: copy;
  max-width: 600px;
  min-width: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--red-bright);
  font-size: clamp(0.85rem, 1vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status::before,
.status::after {
  display: block;
  width: clamp(26px, 4vw, 54px);
  height: 2px;
  background: currentColor;
  content: "";
}

h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(4.1rem, 10vw, 9.2rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 var(--navy),
    0 6px 0 rgba(215, 48, 45, 0.42),
    0 24px 45px rgba(0, 0, 0, 0.38);
}

h1 span {
  display: block;
}

.lead {
  width: min(100%, 540px);
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  line-height: 1.55;
}

.category-strip {
  grid-area: categories;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-self: start;
}

.category-strip span {
  min-width: 88px;
  padding: 11px 14px;
  border: 1px solid rgba(247, 247, 244, 0.22);
  color: var(--paper);
  background: rgba(6, 17, 31, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.category-strip span:nth-child(even) {
  border-color: rgba(215, 48, 45, 0.48);
}

.launch-panel {
  grid-area: panel;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 31, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.launch-panel div {
  min-height: 110px;
  display: grid;
  align-content: center;
  padding: clamp(16px, 2vw, 26px);
  border-right: 1px solid var(--line);
}

.launch-panel div:last-child {
  border-right: 0;
}

.panel-label {
  color: var(--smoke);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-panel strong {
  margin-top: 8px;
  color: var(--paper);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  body {
    background:
      linear-gradient(180deg, rgba(6, 17, 31, 0.96), rgba(10, 23, 38, 0.98)),
      url("assets/logo.jpg") center top 20px / min(760px, 145vw) no-repeat,
      #06111f;
  }

  .site-shell {
    padding: 22px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "logo"
      "copy"
      "categories"
      "panel";
    gap: 24px;
    text-align: center;
  }

  .eyebrow {
    justify-self: center;
  }

  .logo {
    width: min(78vw, 380px);
    margin-top: 8px;
  }

  .hero-copy {
    max-width: none;
  }

  .status {
    justify-content: center;
  }

  h1 {
    max-width: none;
    overflow-wrap: anywhere;
    font-size: clamp(3.1rem, 14.5vw, 4.65rem);
  }

  .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .launch-panel {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding: 18px;
  }

  .eyebrow {
    padding-left: 12px;
    font-size: 0.72rem;
  }

  .status {
    gap: 8px;
    font-size: 0.76rem;
  }

  .status::before,
  .status::after {
    width: 22px;
  }

  h1 {
    font-size: clamp(2.45rem, 10.8vw, 3.2rem);
    line-height: 0.88;
  }

  .lead {
    width: min(100%, 32ch);
  }

  .category-strip {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .category-strip span:last-child {
    grid-column: auto;
  }

  .launch-panel {
    grid-template-columns: 1fr;
  }

  .launch-panel div {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .launch-panel div:last-child {
    border-bottom: 0;
  }
}
