:root {
  --ink: #07111f;
  --ink-2: #0b1829;
  --panel: #101f33;
  --text: #eef5ff;
  --muted: #9fb0c7;
  --line: #20344d;
  --blue: #2a73ff;
  --cyan: #13d8d2;
  --lime: #9bed78;
  --paper: #f5f8fc;
  --dark: #101927;
  --radius: 22px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 16px/1.65 "DM Sans", sans-serif;
  overflow-x: hidden
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid transparent;
  transition: .25s ease
}

.site-header.is-scrolled {
  height: 66px;
  background: #07111eea;
  border-color: #ffffff12;
  backdrop-filter: blur(18px)
}

.brand img {
  width: 120px;
  height: 40px;
  object-fit: contain
}

.site-header nav {
  display: flex;
  gap: 32px;
  color: #c7d5e8;
  font-size: 14px;
  font-weight: 600
}

.site-header nav a:hover {
  color: #fff
}

.header-cta {
  justify-self: end;
  padding: 9px 15px;
  border: 1px solid #ffffff27;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700
}

.header-cta:hover {
  border-color: var(--cyan)
}

.menu-button {
  display: none
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 180px clamp(24px, 5vw, 76px) 100px;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(560px, 1.3fr);
  align-items: center;
  gap: 5vw;
  background: radial-gradient(circle at 78% 35%, #12458b55 0, transparent 38%), linear-gradient(180deg, #07111f, #091626)
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#ffffff05 1px, transparent 1px), linear-gradient(90deg, #ffffff05 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none
}

.hero-orbit {
  position: absolute;
  border: 1px solid #28cbd525;
  border-radius: 50%;
  pointer-events: none
}

.hero-orbit--one {
  width: 620px;
  height: 620px;
  right: -250px;
  top: 60px
}

.hero-orbit--two {
  width: 310px;
  height: 310px;
  right: -95px;
  top: 215px
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #b8c9df;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan)
}

h1,
h2 {
  font-family: Manrope, sans-serif;
  letter-spacing: -.05em
}

h1 {
  margin: 0;
  font-size: clamp(56px, 6.2vw, 94px);
  line-height: .98;
  font-weight: 800
}

h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, #3b82ff 10%, #16e1d1 78%);
  -webkit-background-clip: text;
  background-clip: text
}

.hero-copy>p {
  max-width: 610px;
  margin: 28px 0 34px;
  color: #afbdd0;
  font-size: 19px;
  line-height: 1.7
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: .2s
}

.button--primary {
  background: linear-gradient(135deg, #2876ff, #1762e4);
  box-shadow: 0 14px 34px #1264ef40
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px #1264ef60
}

.button--quiet {
  border: 1px solid #ffffff1b;
  color: #cfdaea
}

.button--quiet:hover {
  border-color: #ffffff42
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 38px
}

.avatars {
  display: flex
}

.avatars b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: -7px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #193250;
  color: #bce8ff;
  font-size: 11px
}

.avatars b:first-child {
  margin: 0
}

.avatars b:nth-child(2) {
  background: #184851
}

.avatars b:nth-child(3) {
  background: #3b315e
}

.avatars b:last-child {
  background: #f2f7ff;
  color: #122034
}

.hero-proof p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35
}

.hero-proof strong {
  font-size: 14px
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px
}

.hero-product {
  position: relative;
  z-index: 2;
  perspective: 1200px
}

.browser-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #ffffff25;
  border-radius: 18px;
  background: #edf3fa;
  box-shadow: 0 38px 100px #0009, 0 0 0 1px #63dcff12;
  transform: rotateY(-4deg) rotateX(2deg)
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #0c1929;
  color: #7387a1;
  font-size: 10px
}

.browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #30465f
}

.browser-bar i:first-child {
  background: #ff6c65
}

.browser-bar i:nth-child(2) {
  background: #ffc45d
}

.browser-bar i:nth-child(3) {
  background: #49d681
}

.browser-bar span {
  margin-left: 8px
}

.browser-bar b {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: 10px;
  background: #123d38;
  color: #77ebc7
}

.browser-frame img {
  width: 100%;
  min-height: 470px;
  object-fit: contain;
  object-position: top
}

.product-glow {
  position: absolute;
  inset: 8% 3%;
  background: #1b7cff;
  filter: blur(80px);
  opacity: .25
}

.float-card {
  position: absolute;
  border: 1px solid #ffffff22;
  border-radius: 14px;
  background: #0c1a2be8;
  box-shadow: 0 18px 45px #0008;
  backdrop-filter: blur(16px)
}

.float-card--stock {
  left: -42px;
  bottom: -42px;
  display: flex;
  flex-direction: column;
  padding: 17px 22px
}

.float-card--stock span,
.float-card small {
  color: #91a4bd;
  font-size: 11px
}

.float-card--stock strong {
  font: 800 29px/1.2 Manrope;
  color: var(--lime)
}

.float-card--sync {
  right: -20px;
  top: 72px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px
}

.float-card--sync i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #45e7aa;
  box-shadow: 0 0 12px #45e7aa
}

.float-card--sync div {
  display: flex;
  flex-direction: column
}

.float-card--sync strong {
  font-size: 12px
}

.trust-strip {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border-top: 1px solid #ffffff0e;
  border-bottom: 1px solid #ffffff0e;
  background: #091522;
  color: #778ba6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  white-space: nowrap
}

.trust-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan)
}

.section {
  padding: 120px clamp(24px, 7vw, 110px)
}

.intro {
  text-align: center;
  background: var(--paper);
  color: var(--dark)
}

.section-kicker {
  color: #1571e9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase
}

.intro h2 {
  max-width: 850px;
  margin: 12px auto 16px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08
}

.intro p {
  max-width: 670px;
  margin: auto;
  color: #65738a;
  font-size: 19px
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .7s .1s ease forwards
}

.hero-product.reveal {
  animation-delay: .24s
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:1040px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px
  }
  .hero-copy {
    text-align: center;
    margin: auto
  }
  .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center
  }
  .hero-product {
    max-width: 850px;
    margin: 20px auto 0
  }
  .site-header nav {
    display: none
  }
  .site-header {
    grid-template-columns: 1fr auto
  }
  .header-cta {
    display: none
  }
  .menu-button {
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid #ffffff22;
    border-radius: 10px;
    background: transparent
  }
  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #fff
  }
}

@media(max-width:640px) {
  .hero {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 90px;
    gap: 45px
  }
  .hero-copy>p {
    font-size: 17px
  }
  .button {
    width: 100%
  }
  .browser-frame {
    transform: none;
    border-radius: 12px
  }
  .browser-frame img {
    min-height: 310px
  }
  .float-card--stock {
    left: 10px;
    bottom: -52px
  }
  .float-card--sync {
    display: none
  }
  .trust-strip {
    justify-content: flex-start;
    overflow: hidden
  }
  .trust-strip span:nth-of-type(n+4),
  .trust-strip i:nth-of-type(n+4) {
    display: none
  }
  .section {
    padding: 88px 22px
  }
}