:root {
  color-scheme: dark;
  --bg: #08111f;
  --bg-soft: #0d1b2f;
  --line: rgba(255, 255, 255, 0.12);
  --text: #edf5ff;
  --muted: #9db0c6;
  --blue: #6ea8ff;
  --green: #3fe6b4;
  --ink: #050912;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(110, 168, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 80% 0%, rgba(63, 230, 180, 0.18), transparent 26rem),
    var(--bg);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 17, 31, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand img {
  width: 38px;
  height: 38px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--text);
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  min-height: calc(100vh - 76px);
  padding: 72px clamp(20px, 7vw, 96px);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  max-width: 880px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-text,
.section-heading p,
.card p,
.timeline p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions,
.contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--ink);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.signal-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(13, 27, 47, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.panel-top,
.pipeline,
.data-grid {
  position: relative;
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  color: var(--muted);
}

.panel-top strong {
  color: var(--green);
  font-size: 42px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 42px;
}

.data-grid span {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.data-grid span:nth-child(3n + 1) {
  background: rgba(110, 168, 255, 0.26);
}

.data-grid span:nth-child(4n) {
  background: rgba(63, 230, 180, 0.28);
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pipeline div,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.pipeline div {
  padding: 16px;
}

.pipeline small {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.pipeline b {
  font-size: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  padding: 28px clamp(20px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.stats span {
  color: var(--muted);
}

.section,
.split,
.contact {
  padding: 96px clamp(20px, 7vw, 96px);
}

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

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

.card {
  padding: 28px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(63, 230, 180, 0.14);
  color: var(--green);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  background: #eef5ff;
  color: #08111f;
}

.split .eyebrow {
  color: #116d5c;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline div {
  padding-left: 24px;
  border-left: 3px solid #1c7dff;
}

.timeline p {
  color: #4d5e70;
}

.company {
  background: var(--bg-soft);
}

.contact {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact h2 {
  max-width: 780px;
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 7vw, 96px);
  color: var(--muted);
  font-size: 14px;
}

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

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats div:nth-child(2) {
    border-right: 0;
  }

  .stats div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .stats,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .signal-panel {
    padding: 20px;
  }
}
