:root {
  --bg: #0b0b0f;
  --panel: #12121a;
  --panel-strong: #181820;
  --text: #fafbfc;
  --muted: #a0a0a8;
  --accent: #ff6a00;
  --line: rgba(255, 255, 255, 0.14);
  --violet: #a241cf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(11, 11, 15, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #09090c;
  background: var(--accent);
  border-radius: 6px;
  font-weight: 900;
}

.site-header nav a,
.footer a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header nav a:hover,
.footer a:hover {
  color: var(--text);
}

.login-link {
  color: var(--text) !important;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 130px clamp(20px, 5vw, 72px) 80px;
  background:
    linear-gradient(90deg, rgba(11, 11, 15, 0.95) 0%, rgba(11, 11, 15, 0.72) 44%, rgba(11, 11, 15, 0.12) 100%),
    url("./assets/background.png") center / cover no-repeat;
}

.hero-copy {
  width: min(620px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  text-transform: lowercase;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  text-transform: lowercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  text-transform: lowercase;
}

h4 {
  margin: 24px 0 8px;
  color: var(--accent);
  text-transform: lowercase;
}

.hero-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.trailer-copy p,
.venue-copy p,
.benefit p,
.model p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  margin-top: 16px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--panel);
  border: 1px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.28);
  font-weight: 800;
}

.button:hover {
  background: var(--accent);
  color: #09090c;
}

.section {
  padding: clamp(56px, 8vw, 94px) clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.benefit-grid,
.model-grid,
.trailer-section,
.venue {
  width: min(1200px, 100%);
  margin-inline: auto;
}

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

.benefit {
  min-height: 250px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 900;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.model {
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
}

.model-free {
  background-image: linear-gradient(180deg, rgba(11, 11, 15, 0.08), rgba(11, 11, 15, 0.88)), url("./assets/free-roam.png");
}

.model-box {
  background-image: linear-gradient(180deg, rgba(11, 11, 15, 0.08), rgba(11, 11, 15, 0.88)), url("./assets/box.png");
}

.model-copy {
  width: 100%;
  padding: 30px;
  background: linear-gradient(180deg, rgba(18, 18, 26, 0), rgba(18, 18, 26, 0.92) 34%);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin-top: 8px;
  padding-left: 22px;
  color: var(--text);
}

li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
}

.trailer-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 28px;
}

.trailer {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.venue {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 26px;
  padding: 24px;
  border: 1px solid var(--violet);
  border-radius: 8px;
  background: var(--panel-strong);
}

.venue-logo {
  width: min(310px, 100%);
  margin-inline: auto;
}

.venue-image {
  border-radius: 6px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--text);
  font-weight: 800;
}

.footer p {
  margin: 0;
  text-align: center;
}

.socials {
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  .benefit-grid,
  .model-grid,
  .trailer-section,
  .venue,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer,
  .footer p,
  .socials {
    justify-items: start;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    display: grid;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 88vh;
    background:
      linear-gradient(180deg, rgba(11, 11, 15, 0.72) 0%, rgba(11, 11, 15, 0.96) 72%),
      url("./assets/background.png") center / cover no-repeat;
  }

  .benefit,
  .model-copy,
  .venue {
    padding: 22px;
  }

  .model {
    min-height: 460px;
  }
}
