:root {
  --ink: #f7f4ec;
  --muted: #b9c0c2;
  --dim: #768186;
  --void: #050708;
  --panel: rgba(9, 13, 15, 0.78);
  --steel: #132128;
  --water: #77d8e8;
  --acid: #ccff44;
  --strike: #f04435;
  --strike-dark: #7f1617;
  --line: rgba(255, 255, 255, 0.28);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.52);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  color: var(--void);
  background: var(--acid);
  border-radius: 6px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  margin: 0 auto;
  padding: 22px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 238px;
  min-width: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(240, 68, 53, 0.22));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(5, 7, 8, 0.46);
  border: 1px solid var(--border);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 5px;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.09);
  outline: 0;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  isolation: isolate;
  background: #061012;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.82) 30%, rgba(5, 7, 8, 0.34) 63%, rgba(5, 7, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.52) 0%, rgba(5, 7, 8, 0.12) 42%, rgba(5, 7, 8, 0.9) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(220px, 330px);
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  width: var(--shell);
  min-height: 86svh;
  margin: 0 auto;
  padding: 112px 0 48px;
}

.hero-copy-block {
  max-width: 680px;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 92px;
  line-height: 0.88;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(240, 68, 53, 0.72),
    0 22px 60px rgba(0, 0, 0, 0.78);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: #e4e8e7;
  font-size: 21px;
  line-height: 1.55;
}

.notify-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
  width: min(100%, 580px);
}

.notify-form input,
.notify-form button {
  min-height: 54px;
  border-radius: 6px;
}

.notify-form input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: rgba(7, 11, 13, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 16px;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.notify-form input::placeholder {
  color: #899498;
}

.notify-form input:focus {
  border-color: rgba(204, 255, 68, 0.75);
  box-shadow:
    0 0 0 3px rgba(204, 255, 68, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.notify-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 142px;
  color: white;
  font-weight: 950;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    var(--strike);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 42px rgba(240, 68, 53, 0.26),
    inset 0 -2px 0 rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.notify-form button:hover,
.notify-form button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    0 22px 52px rgba(240, 68, 53, 0.34),
    inset 0 -2px 0 rgba(0, 0, 0, 0.24);
  outline: 0;
}

.button-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--void);
  background: var(--ink);
  border-radius: 50%;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--water);
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-error {
  color: #ff9b8f;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-tags li {
  padding: 8px 10px;
  color: #dfe8e6;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.strike-panel {
  align-self: end;
  max-width: 330px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(240, 68, 53, 0.2), rgba(119, 216, 232, 0.07)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.strike-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.04;
  text-transform: uppercase;
}

.panel-line {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.gear-section,
.mission-section {
  background:
    linear-gradient(180deg, #050708 0%, #0a1114 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 70px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(260px, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p:last-child,
.mission-copy p {
  color: var(--muted);
  font-size: 17px;
}

h2 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.02;
  text-transform: uppercase;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gear-card {
  min-height: 210px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    #081014;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.gear-card span {
  display: block;
  margin-bottom: 36px;
  color: var(--strike);
  font-size: 13px;
  font-weight: 950;
}

.gear-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
  text-transform: uppercase;
}

.gear-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.mission-shell {
  display: grid;
  grid-template-columns: minmax(220px, 390px) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}

.mission-copy {
  display: grid;
  gap: 18px;
}

.mission-copy p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: var(--shell);
  margin: 0 auto;
  padding: 28px 0 34px;
  color: var(--dim);
  font-size: 13px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 950;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 84svh;
    padding-top: 118px;
  }

  .strike-panel {
    align-self: start;
    max-width: 470px;
  }

  .section-heading,
  .mission-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gear-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .site-header {
    align-items: flex-start;
    padding-top: 16px;
  }

  .brand-mark {
    width: 178px;
  }

  .site-nav {
    gap: 2px;
    max-width: 210px;
    overflow-x: auto;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 12px;
  }

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

  .hero-shell {
    min-height: 82svh;
    padding: 112px 0 34px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.95), rgba(5, 7, 8, 0.72), rgba(5, 7, 8, 0.44)),
      linear-gradient(180deg, rgba(5, 7, 8, 0.48), rgba(5, 7, 8, 0.2), rgba(5, 7, 8, 0.92));
  }

  h1 {
    font-size: 54px;
    line-height: 0.94;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .notify-form {
    grid-template-columns: 1fr;
  }

  .notify-form button {
    width: 100%;
  }

  .gear-grid {
    grid-template-columns: 1fr;
  }

  .gear-card {
    min-height: auto;
  }

  .gear-card span {
    margin-bottom: 20px;
  }

  .section-shell {
    padding: 48px 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .site-header {
    position: relative;
    background: #050708;
    width: 100%;
    padding: 14px;
  }

  .site-nav {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-tags {
    gap: 6px;
    margin-top: 18px;
  }

  .hero-tags li {
    padding: 7px 9px;
  }

  .strike-panel {
    padding: 14px;
  }

  .strike-panel strong {
    margin-bottom: 0;
    font-size: 22px;
  }

  .panel-kicker {
    margin-bottom: 8px;
  }

  .panel-line {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
