:root {
  color-scheme: light;
  --ink: #11151d;
  --muted: #5b6573;
  --soft: #eef2f7;
  --line: #dce3ec;
  --paper: #ffffff;
  --blue: #4b72ff;
  --blue-strong: #345fed;
  --orange: #ff4a00;
  --dark: #07111e;
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f7f9fc;
}

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

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

.nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 48px);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 8px;
  padding: 9px 12px;
  color: rgb(255 255 255 / 82%);
  font-size: 0.9rem;
  font-weight: 650;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 11%);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgb(7 17 30 / 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: min(100%, 1280px);
  min-height: 92svh;
  margin: 0 auto;
  padding: 110px clamp(20px, 4vw, 48px) 64px;
}

.hero-copy {
  width: min(780px, 100%);
  animation: rise 700ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgb(255 255 255 / 62%);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-heading {
  margin: 0;
  font-size: clamp(4rem, 12vw, 9.5rem);
  font-weight: 780;
  line-height: 0.93;
}

.hero p.lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: clamp(1.1rem, 2.5vw, 1.38rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 0.94rem;
  font-weight: 720;
  transition:
    transform 180ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 42px rgb(75 114 255 / 32%);
}

.button-primary:hover {
  background: var(--blue-strong);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-secondary {
  border-color: rgb(255 255 255 / 26%);
  color: #fff;
}

.button-secondary:hover {
  background: rgb(255 255 255 / 11%);
  border-color: rgb(255 255 255 / 42%);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  color: rgb(255 255 255 / 66%);
  font-size: 0.92rem;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 4vw, 48px);
}

.section-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: #687284;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 760;
  line-height: 0.98;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(42px, 7vw, 82px) 0;
}

.product-band:last-child {
  border-bottom: 1px solid var(--line);
}

.product-band h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 760;
  line-height: 1;
}

.product-band p {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 1.04rem;
}

.product-media {
  overflow: hidden;
  border: 1px solid #d6deea;
  border-radius: 8px;
  background: #101722;
  box-shadow: 0 24px 80px rgb(15 23 42 / 18%);
  transition: transform 240ms ease;
}

.product-media:hover {
  transform: translateY(-4px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature {
  min-height: 180px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
}

.feature strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
}

.feature p {
  margin: 0;
  font-size: 0.96rem;
}

.download-panel {
  background: #10151f;
  color: #fff;
}

.download-panel .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.download-panel h2 {
  color: #fff;
}

.download-panel p {
  max-width: 620px;
  color: rgb(255 255 255 / 66%);
}

.page-note {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 48px);
  color: #687284;
  font-size: 0.92rem;
}

.page-note a {
  color: var(--blue-strong);
  font-weight: 700;
}

.footer {
  display: flex;
  width: min(100%, 1280px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 4vw, 48px);
  color: #697283;
  font-size: 0.92rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a:hover {
  color: var(--ink);
}

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

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .hero-content {
    min-height: 88svh;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-band,
  .download-panel .section-inner {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .download-panel .section-inner,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
