:root {
  --orange: #f76e10;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --faint: rgba(255, 255, 255, 0.14);
  --glass: rgba(17, 20, 18, 0.3);
  --glass-strong: rgba(18, 20, 18, 0.46);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #070907;
  color: var(--ink);
}

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

.page-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #070907;
}

.page-shell::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    image-set(
      url("./bg.webp") type("image/webp"),
      url("./bg.png") type("image/png")
    )
    center / cover no-repeat;
}

.page-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.66)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.08) 54%),
    radial-gradient(circle at 18% 75%, rgba(247, 110, 16, 0.2), transparent 28%),
    linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.54));
  opacity: 0.92;
}

.topbar {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(100% - 48px, 1180px);
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  transform: translateX(-50%);
}

.nav-links,
.nav-cta,
.primary-action {
  border: 1px solid var(--faint);
  background: var(--glass);
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(120%);
}

.brand {
  display: inline-flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 34px;
}

.nav-links {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  padding: 5px;
}

.nav-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-cta,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
}

.nav-cta {
  margin-left: auto;
  height: 44px;
  padding: 0 17px;
  background: rgba(247, 110, 16, 0.18);
  line-height: 1;
  white-space: nowrap;
}

.nav-cta span,
.primary-action span {
  display: inline-flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 108px 64px 42px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
}

.lede {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.primary-action {
  min-height: 46px;
  padding: 0 18px;
  background: #fff;
  color: #141414;
}

.availability {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.bottom-rail {
  position: absolute;
  z-index: 1;
  right: 64px;
  bottom: 38px;
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.bottom-rail p {
  margin: 0;
}

@media (max-width: 860px) {
  .topbar {
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav-links {
    display: none;
  }

  .brand {
    width: fit-content;
    min-width: 0;
  }

  .nav-cta {
    height: 42px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .hero {
    padding: 96px 24px 28px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .bottom-rail {
    right: 24px;
    bottom: 22px;
    left: 24px;
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .page-shell::before {
    background-position: center top;
  }

  .topbar {
    gap: 8px;
  }

  .brand {
    height: 40px;
  }

  .brand img {
    width: auto;
    height: 29px;
  }

  .nav-cta {
    height: 40px;
    max-width: none;
    padding-inline: 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    padding-inline: 18px;
  }

  .lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .bottom-rail {
    display: none;
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  .topbar {
    top: 12px;
  }

  .nav-cta {
    height: 40px;
  }

  .brand img {
    height: 31px;
  }

  .nav-links {
    padding: 4px;
  }

  .nav-links a {
    min-height: 31px;
  }

  .hero {
    padding: 88px 64px 28px;
  }

  .eyebrow {
    margin-bottom: 12px;
    padding-block: 6px;
  }

  h1 {
    max-width: 650px;
    font-size: clamp(44px, 5.7vw, 78px);
  }

  .lede {
    margin-top: 16px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .primary-action {
    min-height: 42px;
  }

  .bottom-rail {
    bottom: 28px;
  }
}
