:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(8, 8, 10, 0.74);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --accent: #d86a1d;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.ambient {
  position: fixed;
  inset: -50px;
  z-index: -2;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.86)),
    url("assets/countersteered-hero.webp") center / cover no-repeat;
  filter: blur(28px) saturate(.72);
  transform: scale(1.08);
}

.landing::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 34% 45%, rgba(216,106,29,.12), transparent 32%),
    linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.08) 48%, rgba(0,0,0,.48));
}

.hero {
  min-height: 100svh;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(390px, 1.05fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.hero__art {
  display: block;
  width: min(100%, 560px);
  max-height: calc(100svh - 72px);
  object-fit: contain;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 32px 100px rgba(0,0,0,.72);
  animation: rise .65s ease-out both;
}

.hero__copy {
  width: 100%;
  max-width: 590px;
  padding: clamp(30px, 4.5vw, 58px);
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 32px 100px rgba(0,0,0,.45);
  animation: rise .65s .08s ease-out both;
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.25vw, 3.65rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.divider {
  width: min(100%, 360px);
  height: 2px;
  margin: 26px 0;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.tagline {
  margin: 0;
  max-width: 31ch;
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  line-height: 1.45;
  font-weight: 600;
}

.body-copy {
  margin: 20px 0 0;
  max-width: 50ch;
  color: var(--muted);
  line-height: 1.72;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 0;
  padding: 11px 14px;
  border: 1px solid var(--line);
  color: #e0e0e0;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.status:hover {
  border-color: rgba(216,106,29,.55);
  box-shadow: 0 0 24px rgba(216,106,29,.13);
  transform: translateY(-1px);
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(216,106,29,.85);
}

.domain {
  margin: 34px 0 0;
  color: #777;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  .hero {
    width: min(100% - 24px, 620px);
    padding: 12px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero__art {
    width: 100%;
    max-height: none;
    border: none;
  }

  .hero__copy {
    width: 100%;
    padding: clamp(26px, 8vw, 42px);
  }

  .kicker {
    margin-bottom: 10px;
  }

  h1 {
    font-size: clamp(1.45rem, 7.25vw, 2.7rem);
    letter-spacing: .055em;
    white-space: nowrap;
  }

  .divider {
    width: min(100%, 310px);
    margin: 24px 0;
  }

  .tagline {
    font-size: clamp(1.16rem, 5vw, 1.42rem);
  }

  .body-copy {
    line-height: 1.68;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.42rem;
    letter-spacing: .04em;
  }
}

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