:root {
  color-scheme: dark;
  --bg: #05070b;
  --panel: #0d121a;
  --panel-2: #111822;
  --text: #f4f7fb;
  --muted: #a8b2c1;
  --line: rgba(223, 232, 244, 0.14);
  --red: #ff341f;
  --red-2: #ff6b58;
  --steel: #c9d1dc;
  --shadow: rgba(255, 52, 31, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 52, 31, 0.14), transparent 34rem),
    linear-gradient(180deg, #05070b 0%, #080c12 52%, #05070b 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(5, 7, 11, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 2.6rem;
  height: 2.1rem;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

nav a {
  padding: 0.45rem 0.7rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

nav a:hover {
  color: var(--text);
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2.5rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 8vw, 6rem);
}

.hero-media {
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 10% -1.5rem;
  height: 0.1rem;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 2.2rem var(--shadow);
}

.hero video {
  width: 100%;
  display: block;
  border-radius: 1rem;
  background: #030508;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.45), 0 0 4rem rgba(255, 52, 31, 0.12);
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--red-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-copy p {
  max-width: 36rem;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.15rem;
  border-radius: 0.35rem;
  border: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  border-color: rgba(255, 104, 82, 0.8);
  box-shadow: 0 0 1.8rem rgba(255, 52, 31, 0.28);
}

.button.secondary {
  color: var(--steel);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.section-head {
  max-width: 52rem;
  margin-bottom: 1.4rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.panel,
.press-row,
.contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 0.7rem;
}

.panel {
  min-height: 16rem;
  padding: 1.25rem;
}

.status {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(255, 52, 31, 0.42);
  border-radius: 999px;
  color: var(--red-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-row {
  padding: 1.25rem;
}

.press-row p,
.contact p {
  margin-bottom: 0;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
  color: #738093;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 680px) {
  .site-header,
  .contact,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.6rem, 18vw, 4.5rem);
  }
}
