:root {
  color-scheme: dark;
  --bg: #02070b;
  --panel: #07131a;
  --panel-2: #0b202b;
  --ice: #f1fbff;
  --steel: #9fb5c0;
  --muted: #718893;
  --cyan: #74ffe7;
  --atlas: #88ddff;
  --blue: #1c789a;
  --line: rgba(241, 251, 255, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ice);
  background: var(--bg);
  overflow-x: hidden;
}

main {
  max-width: 100%;
  overflow-x: hidden;
}

a { color: inherit; }

.notice {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 18px;
  color: var(--ice);
  background: linear-gradient(90deg, #07131a, #114a5c, #07131a);
  font-size: 14px;
  font-weight: 850;
}

.notice span { justify-self: center; }

.notice button {
  width: 30px;
  height: 30px;
  border: 0;
  color: var(--ice);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.nav {
  position: fixed;
  top: 50px;
  left: 24px;
  right: 24px;
  z-index: 25;
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(3, 8, 13, .78);
  backdrop-filter: blur(22px);
}

.notice-closed .nav { top: 18px; }

.logo,
.nav-menu a,
.nav-start,
.hero-actions a,
.scroll-cue,
.operator-grid a,
.final a {
  text-decoration: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 950;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #061018;
  background: var(--cyan);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.nav-menu a {
  padding: 11px 13px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 850;
}

.nav-menu a:hover {
  color: var(--ice);
  background: rgba(255,255,255,.07);
}

.nav-start {
  justify-self: end;
  padding: 13px 16px;
  color: #061018;
  background: linear-gradient(135deg, var(--cyan), var(--atlas));
  font-weight: 950;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding: 142px clamp(18px, 4vw, 70px) 64px;
  background:
    radial-gradient(circle at 72% 42%, rgba(116,255,231,.18), transparent 24%),
    radial-gradient(circle at 28% 55%, rgba(136,221,255,.14), transparent 28%),
    linear-gradient(180deg, #02070b 0%, #061824 58%, #0d3443 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(241,251,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,251,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0 70%, transparent);
  pointer-events: none;
}

.hero-copy,
.console,
.scroll-cue {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.lede {
  max-width: 650px;
  color: var(--steel);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 950;
}

.hero-actions .primary {
  color: #061018;
  background: var(--cyan);
}

.hero-actions .secondary {
  border: 1px solid var(--line);
  color: var(--ice);
  background: rgba(255,255,255,.06);
}

.console {
  min-height: min(620px, calc(100svh - 220px));
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, rgba(116,255,231,.17), transparent 23%),
    linear-gradient(145deg, rgba(7,19,26,.88), rgba(2,7,11,.96));
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
  overflow: hidden;
}

.console-top {
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 13px;
  font-weight: 850;
}

.console-top strong {
  color: var(--cyan);
  text-transform: uppercase;
  white-space: nowrap;
}

.console-screen {
  position: relative;
  height: 430px;
}

.console-screen::before,
.console-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(116,255,231,.18);
  border-radius: 50%;
}

.console-screen::before {
  width: 72%;
  height: 38%;
  rotate: -12deg;
}

.console-screen::after {
  width: 54%;
  height: 54%;
}

.core-orb {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 3;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  translate: -50% -50%;
  border: 1px solid rgba(241,251,255,.22);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.18), transparent 30%), #061018;
  box-shadow: 0 0 72px rgba(116,255,231,.2);
}

.core-orb span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.core-orb strong {
  font-size: 24px;
  text-transform: uppercase;
}

.module {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 5;
  min-width: 124px;
  min-height: 44px;
  border: 1px solid rgba(241,251,255,.18);
  color: var(--ice);
  background: rgba(241,251,255,.08);
  backdrop-filter: blur(16px);
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.module:hover,
.module.active {
  transform: translateY(-3px);
  border-color: rgba(116,255,231,.8);
  color: #061018;
  background: var(--cyan);
}

.beam {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: .42;
  filter: drop-shadow(0 0 8px rgba(116,255,231,.75));
  animation: pulse 3.6s ease-in-out infinite;
}

.beam-a { left: 17%; top: 42%; width: 58%; rotate: 12deg; }
.beam-b { left: 20%; top: 62%; width: 62%; rotate: -16deg; animation-delay: .8s; }
.beam-c { left: 27%; top: 76%; width: 46%; animation-delay: 1.4s; }

.console-detail {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.console-detail span {
  color: var(--cyan);
  font-size: 24px;
  font-weight: 950;
  text-transform: uppercase;
}

.console-detail p {
  margin: 0;
  color: var(--steel);
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  translate: -50% 0;
  color: var(--steel);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 2px;
  height: 38px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

.platform,
.solutions,
.operators,
.final {
  padding: clamp(64px, 8vw, 120px) clamp(18px, 6vw, 92px);
}

.platform {
  background: linear-gradient(180deg, #0d3443, #f3fbff 20%, #fff);
  color: #061018;
}

h2 {
  max-width: 1020px;
  margin-bottom: 30px;
  font-size: clamp(44px, 6.8vw, 104px);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(7,17,22,.14);
}

.flow article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid rgba(7,17,22,.14);
}

.flow article:last-child { border-right: 0; }

.flow span,
.starter span {
  color: var(--blue);
  font-weight: 950;
}

.flow strong {
  display: block;
  font-size: 34px;
  text-transform: uppercase;
}

.flow p,
.operator-grid span {
  color: #53656e;
  line-height: 1.45;
}

.solutions {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 44px;
  background: linear-gradient(135deg, #061018, #0b202b);
}

.solution-list {
  display: grid;
  gap: 10px;
  align-content: end;
}

.solution-list button {
  min-height: 68px;
  border: 1px solid var(--line);
  color: var(--ice);
  background: rgba(255,255,255,.05);
  text-align: left;
  padding: 0 20px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.solution-list button:hover {
  color: #061018;
  background: var(--cyan);
}

.operators {
  background: #fff;
  color: #061018;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(7,17,22,.14);
}

.operator-grid a {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid rgba(7,17,22,.14);
}

.operator-grid a:last-child { border-right: 0; }

.operator-grid a:hover {
  color: var(--ice);
  background: #061018;
}

.operator-grid strong {
  font-size: 30px;
  line-height: .96;
  text-transform: uppercase;
}

.operator-grid a:hover span { color: var(--steel); }

.final {
  min-height: 80vh;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(116,255,231,.14), transparent 28%),
    linear-gradient(180deg, #061018, #0d3443);
}

.final p {
  max-width: 640px;
  color: var(--steel);
  font-size: 20px;
  line-height: 1.5;
}

.final a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 24px;
  color: #061018;
  background: var(--cyan);
  font-weight: 950;
}

@keyframes pulse {
  0%, 100% { opacity: .18; transform: translateX(-16px); }
  50% { opacity: .78; transform: translateX(16px); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.45); opacity: .35; }
  50% { transform: scaleY(1); opacity: 1; }
}

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

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-menu { display: none; }

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

  .console {
    min-height: 560px;
  }

  .flow,
  .operator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .notice { font-size: 12px; }

  .nav {
    top: 46px;
    left: 10px;
    right: 10px;
  }

  .logo strong { display: none; }

  .nav-start { display: none; }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 126px;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 58px);
    line-height: .88;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .flow,
  .operator-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .console-screen {
    height: 390px;
    overflow: hidden;
  }

  .module {
    min-width: 104px;
    font-size: 12px;
  }

  .module[data-module="Leads"] { --x: 58% !important; }
  .module[data-module="Sales"] { --x: 58% !important; }
  .module[data-module="Ops"] { --x: 36% !important; }

  .lede {
    max-width: 100%;
  }

  .core-orb {
    width: 138px;
    height: 138px;
  }

  .console-detail {
    grid-template-columns: 1fr;
  }

  .console-top {
    align-items: start;
    min-height: 70px;
    padding-block: 12px;
    flex-direction: column;
  }

  .flow article,
  .operator-grid a {
    border-right: 0;
    border-bottom: 1px solid rgba(7,17,22,.14);
  }
}
