:root {
  color-scheme: dark;
  --bg: #091119;
  --panel: #101b25;
  --panel-2: #132330;
  --text: #f4f7fb;
  --muted: #a9bac8;
  --line: rgba(166, 193, 216, .22);
  --blue: #4fa6ff;
  --green: #67d6a0;
  --gold: #f3c75d;
  --rose: #f07b93;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(9, 17, 25, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #041015;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.site-nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.site-footer a,
.product-card a {
  text-decoration: none;
}

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

.nav-action,
.button,
.product-card a {
  border-radius: 8px;
  font-weight: 800;
}

.nav-action {
  padding: 10px 14px;
  color: #06131a;
  background: var(--green);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(40px, 7vw, 86px) clamp(20px, 4vw, 56px);
}

.eyebrow,
.product-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-lede,
.section-heading p,
.script-band p,
.product-card p,
.capability-grid p {
  color: var(--muted);
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: 19px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 17px;
  text-decoration: none;
}

.button-primary {
  color: #06131a;
  background: var(--blue);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.hero-visual {
  margin: 0;
  border: 1px solid rgba(121, 178, 224, .55);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .36);
  background: #061018;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.section {
  padding: clamp(54px, 7vw, 90px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.product-card,
.capability-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-card {
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: center;
}

.product-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.product-card a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--green);
}

.script-band {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #111721;
}

.code-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(243, 199, 93, .38);
  border-radius: 8px;
  background: #060b11;
}

.code-panel code {
  display: block;
  padding: 12px;
  color: #dff8ff;
  border: 1px solid rgba(79, 166, 255, .24);
  border-radius: 6px;
  background: #0d1822;
  white-space: nowrap;
  overflow-x: auto;
}

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

.capability-grid article {
  padding: 24px;
  background: var(--panel-2);
}

.site-footer {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero,
  .product-feature,
  .script-band,
  .product-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 40px;
  }
}
