: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;
}

.login-link-authenticated {
  color: #8ff7f7 !important;
}

.session-bridge {
  border: 0;
  height: 0;
  position: absolute;
  width: 0;
}

.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,
.contact-copy 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;
}

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

.button-primary:hover {
  background: #ff7f24;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.hero-actions .button {
  margin-top: 0;
}

.section {
  scroll-margin-top: 84px;
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px 0;
  text-align: center;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  color: var(--accent);
  fill: currentColor;
}

.benefit h3 {
  max-width: 360px;
  margin-inline: auto;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.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;
}

.launcher-section {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  margin-inline: auto;
}

.launcher-copy p:not(.eyebrow),
.launcher-panel p {
  color: var(--muted);
}

.launcher-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--accent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.18), rgba(162, 65, 207, 0.14)),
    var(--panel-strong);
  box-shadow: 0 0 34px rgba(255, 106, 0, 0.16);
}

.launcher-panel h3 {
  text-transform: none;
}

.launcher-panel p {
  margin-bottom: 0;
}

.launcher-panel .button {
  flex: 0 0 auto;
  margin-top: 0;
}

.contact-section {
  scroll-margin-top: 84px;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  align-items: start;
  gap: clamp(36px, 7vw, 90px);
  padding: clamp(72px, 9vw, 120px) clamp(20px, 8vw, 120px);
  background:
    linear-gradient(90deg, rgba(11, 11, 15, 0.88) 0%, rgba(11, 11, 15, 0.34) 50%, rgba(11, 11, 15, 0.9) 100%),
    linear-gradient(180deg, rgba(11, 11, 15, 0.08) 0%, rgba(11, 11, 15, 0.92) 100%),
    url("./assets/background.png") center / cover no-repeat;
}

.contact-copy {
  padding-top: 18px;
}

.contact-copy h2 {
  margin-bottom: 26px;
  color: var(--text);
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
}

.contact-copy p {
  max-width: 560px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 26px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field label {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.form-field span {
  color: var(--accent);
}

.form-field input,
.form-field textarea {
  width: 100%;
  color: #111216;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  font: inherit;
}

.form-field input {
  min-height: 64px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 210px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(255, 106, 0, 0.38);
  outline-offset: 2px;
}

.submit-button {
  justify-self: start;
  min-height: 56px;
  padding: 0 24px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 3px;
  font: inherit;
  font-size: 1.12rem;
  font-weight: 800;
  cursor: pointer;
}

.submit-button:hover {
  background: #ff7f24;
}

.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,
  .launcher-section,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .launcher-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-section {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(11, 11, 15, 0.76) 0%, rgba(11, 11, 15, 0.95) 74%),
      url("./assets/background.png") center / cover no-repeat;
  }

  .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;
  }

  .contact-section {
    padding: 64px 20px;
  }

  .contact-copy p {
    font-size: 1.45rem;
  }

  .form-field input {
    min-height: 54px;
  }

  .form-field textarea {
    min-height: 180px;
  }

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