:root {
  --bg: #07080a;
  --panel: #0e1114;
  --text: #f3f6f7;
  --muted: #838b93;
  --line: rgba(255,255,255,.13);
  --cyan: #a7f3ff;
  --blue: #6f9aff;
  --x: 75vw;
  --y: 15vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter,"Segoe UI",Arial,sans-serif;
  overflow-x: hidden;
}

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

::selection {
  color: #050709;
  background: var(--cyan);
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  box-shadow: inset 0 0 160px rgba(0,0,0,.55);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.light {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(430px circle at var(--x) var(--y),rgba(140,239,255,.075),transparent 63%);
}

main {
  position: relative;
  isolation: isolate;
  background: radial-gradient(circle at 82% 8%,rgba(82,223,243,.08),transparent 24%),radial-gradient(circle at 18% 35%,rgba(168,139,255,.045),transparent 26%),linear-gradient(#07080a,#090b0e 48%,#060708);
}

.shell,header {
  width: min(1200px,calc(100% - 56px));
  margin: auto;
}

header {
  position: relative;
  z-index: 5;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.03);
  transition: .3s;
}

.brand:hover .brand-mark {
  transform: rotate(-6deg);
  border-color: var(--cyan);
  box-shadow: 0 0 26px rgba(82,223,243,.2);
}

.plane {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.plane .fold {
  fill: #52dff3;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.brand-name b {
  color: #858d94;
  font-weight: 400;
}

.site-icon {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 11px rgba(82, 223, 243, 0.62));
}

.site-icon-small {
  width: 25px;
  height: 25px;
}

.site-icon-large {
  width: 72px;
  height: 72px;
}

.site-icon-orb {
  width: 82px;
  height: 82px;
}

nav {
  display: flex;
  gap: 32px;
  color: #a2a9af;
  font-size: 13px;
}

nav a {
  position: relative;
}

nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--cyan);
  transition: .25s;
}

nav a:hover {
  color: #fff;
}

nav a:hover:after {
  right: 0;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 650;
  transition: .25s;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 14px 42px rgba(82,223,243,.14);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button-small {
  justify-self: end;
  min-height: 41px;
  padding: 0 16px;
  font-size: 12px;
  background: rgba(255,255,255,.035);
}

.button-primary {
  color: #050709;
  border: 0;
  background: linear-gradient(135deg,#f7fafb,#c2f7ff);
  box-shadow: 0 9px 42px rgba(126,237,255,.17);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 690px;
  padding: 66px 0 74px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 45px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,.kicker {
  font-family: ui-monospace,monospace;
  color: #8c959d;
  font-size: 9px;
  letter-spacing: .19em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
}

.eyebrow i,.live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #73eb91;
  box-shadow: 0 0 13px #73eb91;
  animation: pulse 1.8s infinite;
}

h1,h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -.068em;
  line-height: .96;
}

h1 {
  font-size: clamp(63px,6.4vw,92px);
}

h1 em,h2 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(226,247,250,.7);
  text-shadow: 0 0 35px rgba(82,223,243,.08);
}

.lead {
  max-width: 540px;
  margin: 27px 0 0;
  color: #949ca4;
  font-size: 16px;
  line-height: 1.7;
}

.actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 34px;
}

.text-link {
  color: #aeb5bb;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: 9px 0;
}

.text-link span {
  color: var(--cyan);
  margin-left: 7px;
}

.proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.avatars {
  display: flex;
}

.avatars i {
  width: 31px;
  height: 31px;
  margin-left: -7px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #101316;
  background: linear-gradient(135deg,#f5f7f8,#8fd9e5);
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
}

.avatars i:first-child {
  margin: 0;
}

.proof div:last-child {
  display: flex;
  flex-direction: column;
}

.proof strong {
  font-family: ui-monospace,monospace;
  font-size: 10px;
  letter-spacing: .13em;
}

.proof small {
  color: #687078;
  font-size: 9px;
  margin-top: 3px;
}

.visual {
  position: relative;
  width: min(500px,42vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(82,223,243,.2),rgba(111,154,255,.05) 45%,transparent 70%);
  filter: blur(18px);
  animation: breathe 4s infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(188,238,246,.14);
  border-radius: 50%;
}

.orbit:before,.orbit:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(174,237,247,.1);
}

.orbit:before {
  width: 1px;
  height: 100%;
  transform: translate(-50%,-50%);
}

.orbit:after {
  width: 100%;
  height: 1px;
  transform: translate(-50%,-50%);
}

.o1 {
  width: 94%;
  height: 62%;
  transform: rotate(-18deg);
  animation: orbit1 8s infinite;
}

.o2 {
  width: 64%;
  height: 96%;
  transform: rotate(31deg);
  animation: orbit2 9s infinite;
}

.o3 {
  width: 77%;
  height: 77%;
  border-style: dashed;
  animation: spin 25s linear infinite;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #e3fcff;
  border-radius: 50%;
  background: #52dff3;
  box-shadow: 0 0 15px #52dff3;
}

.o1 .dot {
  top: 14%;
  left: 12%;
}

.o2 .dot {
  right: 28%;
  bottom: 8%;
}

.core {
  position: relative;
  z-index: 3;
  width: 224px;
  height: 224px;
  border: 1px solid rgba(213,248,253,.27);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg,rgba(28,34,40,.94),rgba(8,10,13,.98));
  box-shadow: 0 0 0 10px rgba(255,255,255,.012),0 0 80px rgba(82,223,243,.12),inset 0 0 35px rgba(168,245,255,.035);
}

.core:before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(190,241,249,.13);
  border-radius: 50%;
  animation: spin 28s linear infinite reverse;
}

.core-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg,rgba(255,255,255,.1),transparent);
  box-shadow: 0 0 28px rgba(82,223,243,.12);
}

.core-icon .plane {
  width: 48px;
  height: 48px;
}

.status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: #b8efc0;
  font: 8px ui-monospace,monospace;
  letter-spacing: .16em;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #75ef93;
  box-shadow: 0 0 10px #75ef93;
}

.core strong {
  margin-top: 7px;
  font-size: 15px;
}

.core small {
  margin-top: 4px;
  color: #6f7880;
  font-size: 9px;
}

.tag {
  position: absolute;
  z-index: 4;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #646d75;
  background: rgba(8,10,12,.78);
  font: 7px ui-monospace,monospace;
  letter-spacing: .12em;
}

.tag:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #52dff3;
  box-shadow: 0 0 12px #52dff3;
}

.t1 {
  top: 18%;
  right: 2%;
}

.t1:before {
  left: -20px;
  top: 11px;
}

.t2 {
  left: 2%;
  bottom: 25%;
}

.t2:before {
  right: -21px;
  top: 11px;
}

.t3 {
  right: 21%;
  bottom: 6%;
}

.t3:before {
  left: 50%;
  top: -17px;
}

.stats {
  position: relative;
  z-index: 2;
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(3,1fr) 1.2fr;
  border-block: 1px solid var(--line);
}

.stats>div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 23px 28px;
  border-left: 1px solid var(--line);
}

.stats>div:first-child {
  border-left: 0;
  padding-left: 3px;
}

.stats strong {
  font-size: 30px;
  font-weight: 430;
  letter-spacing: -.06em;
}

.stats span {
  color: #727a82;
  font-size: 10px;
  line-height: 1.45;
}

.stats .live {
  justify-content: flex-end;
  color: #858e96;
  font: 8px ui-monospace,monospace;
  letter-spacing: .12em;
}

.section {
  position: relative;
  z-index: 2;
  padding: 145px 0;
}

.heading {
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: end;
  gap: 50px;
  margin-bottom: 62px;
}

.kicker {
  display: block;
  margin-bottom: 19px;
  color: #6e7780;
}

.heading h2,.faq h2 {
  font-size: clamp(52px,5.5vw,76px);
}

.heading p,.faq-intro>p {
  margin: 0 0 8px;
  color: #899199;
  font-size: 14px;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.card {
  position: relative;
  min-height: 360px;
  padding: 31px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(145deg,rgba(255,255,255,.025),transparent 60%),rgba(10,12,15,.68);
  transition: .35s;
}

.card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(350px circle at 16% 10%,rgba(141,239,255,.08),transparent 58%);
  opacity: 0;
  transition: .35s;
}

.card:hover:before {
  opacity: 1;
}

.card-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #aeb7be;
  font: 8px ui-monospace,monospace;
  letter-spacing: .16em;
}

.card-top b {
  color: #4d555d;
  font-weight: 400;
}

.symbol {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 40px 0 24px;
  color: var(--cyan);
}

.bars i {
  position: absolute;
  width: 25px;
  height: 57px;
  border: 1px solid currentColor;
  transform: skew(-18deg);
}

.bars i:nth-child(1) {
  left: 4px;
  top: 11px;
}

.bars i:nth-child(2) {
  left: 28px;
  top: 3px;
  opacity: .65;
}

.bars i:nth-child(3) {
  left: 52px;
  top: -5px;
  opacity: .3;
}

.radar:before,.radar:after {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.radar:before {
  inset: 7px;
}

.radar:after {
  inset: 21px;
  opacity: .45;
}

.radar i {
  position: absolute;
  left: 44px;
  top: 24px;
  width: 1px;
  height: 42px;
  background: currentColor;
  transform: rotate(45deg);
}

.devices i {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 5px;
}

.devices i:first-child {
  width: 31px;
  height: 50px;
  left: 2px;
  bottom: 9px;
}

.devices i:nth-child(2) {
  width: 55px;
  height: 35px;
  right: 1px;
  top: 4px;
}

.devices i:last-child {
  width: 65px;
  height: 1px;
  left: 14px;
  top: 46px;
  background: currentColor;
  border: 0;
  transform: rotate(-28deg);
  opacity: .4;
}

.support:before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  left: 12px;
  top: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  clip-path: inset(0 0 48%);
}

.support i {
  position: absolute;
  top: 29px;
  width: 13px;
  height: 31px;
  border: 1px solid currentColor;
  border-radius: 5px;
}

.support i:first-child {
  left: 7px;
}

.support i:last-child {
  right: 7px;
}

.card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 520;
  letter-spacing: -.04em;
}

.card p {
  position: relative;
  max-width: 420px;
  margin: 0;
  color: #7a828a;
  font-size: 13px;
  line-height: 1.65;
}

.card-line {
  position: absolute;
  left: 34px;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg,var(--cyan),transparent);
  transition: .4s;
}

.card:hover .card-line {
  width: calc(100% - 68px);
}

.asset-icon {
  position: relative;
  z-index: 2;
  display: block;
  width: 94px;
  height: 94px;
  margin: 37px 0 23px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(82,223,243,.58));
  transition: transform .35s ease,filter .35s ease;
}

.card:hover .asset-icon {
  transform: translateY(-4px) scale(1.035);
  filter: drop-shadow(0 0 21px rgba(82,223,243,.84));
}

.ticker {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 40px;
  animation: ticker 23s linear infinite;
}

.ticker span {
  color: #596169;
  font: 9px ui-monospace,monospace;
  letter-spacing: .22em;
}

.ticker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #52dff3;
  box-shadow: 0 0 12px #52dff3;
}

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

.step {
  position: relative;
  min-height: 280px;
  padding: 30px 40px 30px 0;
}

.step+.step {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.num {
  color: #4e575f;
  font: 9px ui-monospace,monospace;
}

.node {
  width: 44px;
  height: 44px;
  margin: 43px 0 34px;
  border: 1px solid rgba(200,241,247,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.node:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.step h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 520;
  letter-spacing: -.035em;
}

.step p {
  max-width: 300px;
  margin: 12px 0 0;
  color: #778088;
  font-size: 12px;
  line-height: 1.7;
}

.device {
  position: relative;
  z-index: 2;
  min-height: 540px;
  padding: 76px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  border: 1px solid var(--line);
  overflow: hidden;
  background: radial-gradient(circle at 82% 45%,rgba(82,223,243,.12),transparent 35%),linear-gradient(90deg,#0b0d10,rgba(12,16,20,.78));
}

.device:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg,transparent 20%,#000);
}

.device-copy {
  position: relative;
  z-index: 4;
}

.device h2 {
  font-size: clamp(50px,5vw,72px);
}

.device-copy p {
  max-width: 410px;
  color: #879098;
  font-size: 14px;
  line-height: 1.7;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 31px;
}

.platforms span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #89929a;
  background: rgba(255,255,255,.02);
  font: 8px ui-monospace,monospace;
}

.device-art {
  position: relative;
  z-index: 3;
  height: 390px;
}

.laptop {
  position: absolute;
  right: 0;
  top: 32px;
  width: 420px;
  height: 270px;
  padding: 10px;
  border: 1px solid rgba(235,251,253,.3);
  border-radius: 17px 17px 6px 6px;
  background: #07090b;
  box-shadow: 0 0 70px rgba(82,223,243,.08);
  transform: perspective(900px) rotateY(-10deg);
}

.laptop:after {
  content: "";
  position: absolute;
  left: -27px;
  bottom: -18px;
  width: calc(100% + 54px);
  height: 15px;
  border: 1px solid rgba(235,251,253,.22);
  border-radius: 3px 3px 16px 16px;
  background: linear-gradient(#171b1f,#07090b);
}

.screen {
  height: 100%;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle,rgba(78,220,240,.17),transparent 30%),#090c0f;
}

.screen .plane {
  width: 66px;
  height: 66px;
  filter: drop-shadow(0 0 18px rgba(82,223,243,.3));
}

.phone {
  position: absolute;
  z-index: 5;
  right: 320px;
  bottom: 9px;
  width: 122px;
  height: 246px;
  padding: 7px;
  border: 1px solid rgba(235,251,253,.42);
  border-radius: 25px;
  background: #080a0c;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: phone 5s infinite;
}

.phone div {
  position: relative;
  height: 100%;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle,rgba(82,223,243,.14),transparent 43%),#0b0e11;
}

.phone i {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(168,245,255,.18);
  border-radius: 50%;
}

.phone strong {
  margin-top: 90px;
  font-size: 15px;
  letter-spacing: .12em;
}

.phone small {
  margin-top: 3px;
  color: #75b27f;
  font: 5px ui-monospace,monospace;
  letter-spacing: .15em;
}

.faq {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 95px;
}

.faq-intro>p {
  max-width: 350px;
  margin-top: 27px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  min-height: 87px;
  padding-right: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  letter-spacing: -.025em;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: #4f5860;
  font: 8px ui-monospace,monospace;
}

summary i {
  position: absolute;
  right: 4px;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

summary i:before,summary i:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 1px;
  background: #aab2b9;
  transform: translate(-50%,-50%);
}

summary i:after {
  transform: translate(-50%,-50%) rotate(90deg);
  transition: .25s;
}

details[open] summary i:after {
  transform: translate(-50%,-50%);
}

details p {
  max-width: 560px;
  margin: -5px 50px 25px 33px;
  color: #7d858d;
  font-size: 13px;
  line-height: 1.7;
}

.connect {
  position: relative;
  z-index: 2;
  min-height: 590px;
  padding: 88px 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgba(216,249,253,.18);
  overflow: hidden;
  background: radial-gradient(circle at 76% 50%,rgba(113,156,255,.14),transparent 27%),radial-gradient(circle at 76% 50%,rgba(82,223,243,.1),transparent 47%),linear-gradient(135deg,#101419,#090b0e 68%);
}

.connect:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  border: 1px solid rgba(184,239,247,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(168,245,255,.018),0 0 0 116px rgba(168,245,255,.01);
}

.connect>* {
  position: relative;
  z-index: 3;
}

.orb {
  position: absolute;
  z-index: 4;
  right: 170px;
  top: 50%;
  width: 195px;
  height: 195px;
  transform: translateY(-50%);
  border: 1px solid rgba(201,245,252,.27);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle,rgba(112,224,241,.12),rgba(6,8,10,.9));
  box-shadow: 0 0 90px rgba(82,223,243,.13);
  animation: breathe 4s infinite;
}

.orb .plane {
  width: 74px;
  height: 74px;
}

.connect h2 {
  max-width: 700px;
  font-size: clamp(53px,5.3vw,76px);
}

.connect p {
  max-width: 490px;
  margin: 25px 0 28px;
  color: #89929a;
  font-size: 14px;
}

.button-light {
  color: #050709;
  background: #f0f5f6;
  border-color: #f0f5f6;
}

.connect>small {
  margin: 12px 0 0 9px;
  color: #5d666e;
  font-size: 9px;
}

footer {
  position: relative;
  z-index: 2;
  min-height: 145px;
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  align-items: center;
  gap: 45px;
  color: #626b73;
  font-size: 10px;
}

footer div {
  display: flex;
  gap: 25px;
  color: #858d94;
}

footer .brand {
  color: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1),transform .8s cubic-bezier(.2,.7,.2,1);
}

[data-reveal].show {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  50% {
    opacity: .55;
    transform: scale(.82);
  }
}

@keyframes breathe {
  50% {
    transform: scale(1.05);
    opacity: .85;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit1 {
  50% {
    transform: rotate(-14deg) translateY(-8px);
  }
}

@keyframes orbit2 {
  50% {
    transform: rotate(27deg) translateX(7px);
  }
}

@keyframes phone {
  50% {
    transform: rotate(2deg) translateY(-9px);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media(max-width:900px) {
  .shell,header {
    width: min(680px,calc(100% - 36px));
  }
  header {
    grid-template-columns: 1fr auto;
  }
  nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }
  .visual {
    width: min(590px,90vw);
    margin: 20px auto;
  }
  .stats {
    grid-template-columns: repeat(3,1fr);
  }
  .stats .live {
    display: none;
  }
  .heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .heading p {
    max-width: 510px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step,.step+.step {
    min-height: 215px;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .node {
    margin: 26px 0;
  }
  .device {
    min-height: 820px;
    padding: 65px 42px;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .device-art {
    transform: scale(.9);
    transform-origin: center;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .connect {
    min-height: 700px;
    padding: 62px 42px 285px;
    justify-content: flex-start;
  }
  .orb {
    right: 50%;
    top: auto;
    bottom: 55px;
    transform: translateX(50%);
  }
  .connect:after {
    right: 50%;
    top: auto;
    bottom: -65px;
    transform: translateX(50%);
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 38px 0;
  }
  footer>*:nth-child(even) {
    justify-self: end;
  }
}

@media(max-width:560px) {
  .shell,header {
    width: calc(100% - 28px);
  }
  .button-small {
    min-height: 38px;
    padding: 0 12px;
  }
  .hero {
    padding-top: 60px;
    min-width: 0;
  }
  .hero-copy,
  .actions {
    min-width: 0;
    width: 100%;
  }
  h1 {
    font-size: clamp(47px,15vw,66px);
  }
  .lead {
    font-size: 14px;
  }
  .actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }
  .actions .button {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
    text-align: center;
    white-space: normal;
  }
  .actions .button span {
    flex: 0 0 auto;
  }
  .text-link {
    align-self: flex-start;
  }
  .visual {
    width: min(100%,calc(100vw - 28px));
    max-width: 420px;
    margin: 20px auto;
  }
  .o1 {
    width: 88%;
    height: 58%;
  }
  .o2 {
    width: 58%;
    height: 88%;
  }
  .o3 {
    width: 72%;
    height: 72%;
  }
  .core {
    width: 172px;
    height: 172px;
  }
  .core-icon {
    width: 53px;
    height: 53px;
  }
  .core-icon .plane {
    width: 40px;
    height: 40px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stats>div,.stats>div:first-child {
    padding: 18px 3px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 90px 0;
  }
  .heading h2,.faq h2 {
    font-size: clamp(43px,14vw,62px);
  }
  .card {
    min-height: 335px;
    padding: 27px 23px;
  }
  .device {
    min-height: 735px;
    padding: 52px 25px;
  }
  .device h2 {
    font-size: clamp(43px,13vw,60px);
  }
  .device-art {
    height: 340px;
    margin: 0 -70px;
    transform: scale(.68);
  }
  summary {
    min-height: 79px;
    gap: 14px;
    padding-right: 40px;
    font-size: 15px;
  }
  details p {
    margin-left: 23px;
  }
  .connect {
    min-height: 675px;
    padding: 52px 25px 270px;
  }
  .connect h2 {
    font-size: clamp(44px,13vw,60px);
  }
  .connect .button {
    width: 100%;
  }
  .orb {
    width: 165px;
    height: 165px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  footer>*:nth-child(even) {
    justify-self: start;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation-duration: .001ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .001ms!important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
