:root {
  color-scheme: dark;
  --black: #0d0d0d;
  --black-soft: #151515;
  --white: #ffffff;
  --red: #89111c;
  --red-bright: #e11c2f;
  --silver: #c0c0c0;
  --silver-soft: #e6e6e6;
  --muted: #a8a8a8;
  --line: rgba(192, 192, 192, 0.24);
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(137, 17, 28, 0.2), transparent 34%),
    radial-gradient(circle at 50% 6%, rgba(225, 28, 47, 0.18), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(192, 192, 192, 0.08), transparent 34%),
    var(--black);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(20deg, transparent 0 7px, rgba(255, 255, 255, 0.04) 8px, transparent 9px),
    repeating-linear-gradient(100deg, transparent 0 11px, rgba(0, 0, 0, 0.4) 12px, transparent 13px);
  mix-blend-mode: overlay;
}

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

a {
  color: inherit;
}

.landing {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 40px 18px;
  position: relative;
  isolation: isolate;
}

.hero-shell {
  width: min(var(--max), 100%);
  min-height: min(760px, calc(100vh - 126px));
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(24px, 5vw, 70px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.96), rgba(13, 13, 13, 0.84)),
    linear-gradient(135deg, rgba(137, 17, 28, 0.22), rgba(255, 255, 255, 0.03));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-shell::before {
  width: 48vw;
  max-width: 640px;
  height: 48vw;
  max-height: 640px;
  left: -16vw;
  top: -22vw;
  border: 1px solid rgba(225, 28, 47, 0.42);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(225, 28, 47, 0.12), 0 0 60px rgba(225, 28, 47, 0.14);
}

.hero-shell::after {
  width: 42%;
  height: 2px;
  right: 0;
  top: 28%;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
}

.brand-mark {
  justify-self: center;
  width: min(360px, 72vw);
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  border: 1px solid rgba(192, 192, 192, 0.28);
  box-shadow: 0 0 70px rgba(225, 28, 47, 0.25);
}

.brand-mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(225, 28, 47, 0.36));
}

.landing-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--silver-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
  overflow-wrap: normal;
}

h1 span {
  display: block;
  margin-top: 8px;
  color: var(--red-bright);
  text-shadow: 0 0 22px rgba(225, 28, 47, 0.36);
}

.headline {
  margin: 28px 0 0;
  color: var(--silver-soft);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 800;
}

.description {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.launching {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin: 28px 0 0;
  padding: 9px 14px;
  border: 1px solid rgba(225, 28, 47, 0.52);
  color: var(--white);
  background: rgba(137, 17, 28, 0.18);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link {
  width: fit-content;
  min-height: 48px;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(192, 192, 192, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  font-weight: 850;
  text-decoration: none;
}

.contact-link:hover {
  border-color: var(--red-bright);
  box-shadow: 0 0 28px rgba(225, 28, 47, 0.22);
}

.signal-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
  z-index: 1;
}

.signal-grid div {
  min-height: 112px;
  padding: 20px;
  background: rgba(8, 8, 8, 0.82);
  min-width: 0;
}

.signal-grid strong {
  display: block;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 20px 18px 28px;
  color: var(--muted);
  text-align: center;
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.error-page {
  text-align: center;
}

.error-page .hero-shell {
  min-height: 560px;
  grid-template-columns: 1fr;
}

.error-page .brand-mark {
  width: 180px;
}

.error-page h1 {
  margin: 0 auto;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
}

@media (max-width: 880px) {
  .landing {
    padding: 18px 12px;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-mark {
    width: min(240px, 62vw);
  }

  .landing-copy,
  .description {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-link {
    width: 100%;
    max-width: 360px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.6rem, 14vw, 4.3rem);
    letter-spacing: 0.06em;
  }

  .hero-shell {
    padding: 24px 16px;
  }

  .launching {
    width: 100%;
    justify-content: center;
  }
}
