@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #02040a;
  --bg-2: #060915;
  --panel: rgba(10, 15, 28, 0.68);
  --panel-strong: rgba(13, 20, 36, 0.88);
  --line: rgba(154, 196, 255, 0.16);
  --line-strong: rgba(154, 196, 255, 0.32);
  --text: #f8fbff;
  --muted: #aab4c4;
  --dim: #707b8f;
  --cyan: #30d9f4;
  --blue: #66a8ff;
  --violet: #a843ff;
  --magenta: #d05bff;
  --radius: 8px;
  --max: 1200px;
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
  width: 100vw;
  max-width: none;
  margin: 0 0 18px;
  margin-left: 50%;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  transform: translateX(-50%);
  border: 0;
  border-bottom: 1px solid rgba(154, 196, 255, 0.18);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 25, 0.86), rgba(8, 12, 22, 0.66)),
    rgba(0, 0, 0, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
}

.brand img {
  width: 48px;
  height: 40px;
  object-fit: contain;
  filter: none;
}

.site-header .brand img {
  mix-blend-mode: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 4vw, 54px);
  color: rgba(248, 251, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

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

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  padding: 12px 22px;
  border: 1px solid rgba(168, 67, 255, 0.76);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: inset 0 0 22px rgba(48, 217, 244, 0.05);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  min-height: calc(100vh - 132px);
  padding: 42px 0 68px;
  text-align: center;
}

.hero::before {
  position: absolute;
  top: -98px;
  bottom: -76px;
  left: 50%;
  z-index: -2;
  width: 100vw;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.84) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.44) 72%, #000 100%),
    url("/assets/hero.png?v=20260513-hero-artwork");
  background-position: center top;
  background-size: cover;
  opacity: 0.82;
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  inset: 14% 50% 20%;
  z-index: -1;
  width: min(100vw, 1120px);
  content: "";
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 68%);
  transform: translateX(-50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  max-width: 1120px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 0.95;
}

h1 .hero-line {
  display: block;
  white-space: nowrap;
}

h1 .hero-accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(95deg, var(--cyan), var(--blue) 44%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 780px;
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  border-color: rgba(48, 217, 244, 0.44);
  background: linear-gradient(100deg, rgba(48, 217, 244, 0.94), rgba(102, 168, 255, 0.9) 42%, rgba(168, 67, 255, 0.94));
  box-shadow: 0 18px 60px rgba(85, 101, 255, 0.24);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.035);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(208, 91, 255, 0.76);
  box-shadow: 0 20px 70px rgba(85, 101, 255, 0.25);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-row article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.signal-row article:first-child {
  padding-left: 0;
}

.signal-row article:last-child {
  border-right: 0;
  padding-right: 0;
}

.signal-row svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(48, 217, 244, 0.24));
}

.signal-row h2 {
  margin-bottom: 3px;
  font-size: 15px;
}

.signal-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 112px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.proof h2,
.feature-copy h2,
.cta-panel h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 1.02;
}

.section-head p,
.proof p,
.feature-copy p,
.cta-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.service-grid article {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 217, 244, 0.36);
  background:
    radial-gradient(circle at 20% 0%, rgba(48, 217, 244, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 68px;
  color: var(--cyan);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.service-grid h3 {
  margin-bottom: 18px;
  font-size: 26px;
  line-height: 1.12;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.78;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 8, 18, 0.72);
  box-shadow: var(--shadow);
}

.feature-image {
  min-height: 430px;
  border-right: 1px solid var(--line);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-copy {
  align-self: center;
  padding: clamp(32px, 6vw, 72px);
}

.feature-copy h2 {
  margin-bottom: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--cyan);
  font-weight: 800;
}

.products-main {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 18px;
  min-height: calc(100vh - 170px);
  padding: 64px 0 80px;
}

.products-main::before {
  position: absolute;
  top: -98px;
  bottom: -70px;
  left: 50%;
  z-index: -2;
  width: 100vw;
  content: "";
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.88) 82%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58) 64%, #000 100%),
    url("/assets/hero.png?v=20260513-hero-artwork");
  background-position: center top;
  background-size: cover;
  opacity: 0.82;
  transform: translateX(-50%);
}

.products-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  min-height: 310px;
  padding: clamp(30px, 5vw, 60px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(10, 15, 28, 0.9), rgba(6, 9, 18, 0.62)),
    rgba(0, 0, 0, 0.36);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.products-section::after {
  position: absolute;
  right: -14%;
  bottom: -64%;
  width: 44%;
  min-width: 280px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(102, 168, 255, 0.14);
  border-radius: 999px;
}

.products-section-primary::after {
  top: -58%;
  right: -10%;
  bottom: auto;
}

.products-section > * {
  position: relative;
  z-index: 1;
}

.products-section h1,
.products-section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 0.95;
}

.products-section h2 {
  max-width: 620px;
  font-size: clamp(44px, 5vw, 72px);
}

.products-section p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.72;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: 60px;
  align-items: start;
}

.proof h2 {
  margin-bottom: 24px;
}

.metrics {
  display: grid;
  gap: 12px;
}

.metrics article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.metrics strong {
  color: var(--cyan);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.metrics span {
  color: var(--muted);
  line-height: 1.65;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  margin-bottom: 62px;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 42%, rgba(168, 67, 255, 0.24), transparent 24rem),
    linear-gradient(130deg, rgba(48, 217, 244, 0.12), rgba(255, 255, 255, 0.025) 36%, rgba(168, 67, 255, 0.1)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  position: absolute;
  right: -12%;
  bottom: -48%;
  width: 54%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(102, 168, 255, 0.14);
  border-radius: 999px;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin-bottom: 18px;
  max-width: 760px;
}

.cta-panel p {
  max-width: 660px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
}

.site-footer .brand {
  color: var(--text);
  font-size: 16px;
}

.site-footer .brand img {
  width: 38px;
  height: 32px;
}

.site-footer p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.04);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .page-shell {
    width: min(calc(100% - 30px), var(--max));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 28px;
  }

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

  .signal-row article {
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-row article:first-child {
    padding-left: 20px;
  }

  .signal-row article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-head,
  .proof-layout,
  .feature-band,
  .products-section {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .page-shell {
    --mobile-status-bar: max(env(safe-area-inset-top, 0px), 44px);
    padding-top: calc(70px + var(--mobile-status-bar));
  }

  body::before {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 21;
    height: max(env(safe-area-inset-top, 0px), 44px);
    content: "";
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(8, 14, 25, 0.94), rgba(8, 12, 22, 0.82)),
      rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(26px) saturate(1.2);
    -webkit-backdrop-filter: blur(26px) saturate(1.2);
  }

  .site-header {
    --mobile-status-bar: max(env(safe-area-inset-top, 0px), 44px);
    position: fixed;
    top: var(--mobile-status-bar);
    left: 0;
    height: 70px;
    margin: 0;
    margin-top: 0;
    margin-left: 0;
    padding: 0 max(14px, env(safe-area-inset-right, 0px)) 0 max(14px, env(safe-area-inset-left, 0px));
    transform: none;
    background:
      linear-gradient(90deg, rgba(8, 14, 25, 0.94), rgba(8, 12, 22, 0.82)),
      rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(26px) saturate(1.2);
    -webkit-backdrop-filter: blur(26px) saturate(1.2);
  }

  .brand {
    font-size: 17px;
  }

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

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: calc(70px + max(env(safe-area-inset-top, 0px), 44px));
    right: 15px;
    left: 15px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(4, 7, 15, 0.94);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  h1 .hero-line {
    white-space: normal;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .signal-row,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .signal-row article,
  .signal-row article:first-child,
  .signal-row article:last-child {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-row article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  .service-grid article {
    min-height: 0;
    padding: 24px;
  }

  .service-grid span {
    margin-bottom: 42px;
  }

  .feature-image {
    min-height: 250px;
  }

  .products-main {
    padding: 34px 0 58px;
  }

  .products-section {
    min-height: 280px;
    padding: 26px;
  }

  .products-section h1,
  .products-section h2 {
    font-size: clamp(42px, 15vw, 70px);
  }

  .proof-layout {
    gap: 30px;
  }

  .metrics article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
