:root {
  --bg: #f4f8fb;
  --bg-soft: #edf5f5;
  --surface: rgba(255, 255, 255, .78);
  --surface-solid: #ffffff;
  --ink: #101827;
  --muted: #64727a;
  --line: rgba(17, 43, 55, .10);
  --green: #0f6e56;
  --emerald: #1d9e75;
  --teal: #18a6a0;
  --cyan: #44c8d4;
  --mint: #e1f5ee;
  --blue-soft: #e8f4f8;
  --orange: #f6a30a;
  --navy: #111a2d;
  --danger: #d74a45;
  --shadow: 0 24px 80px rgba(25, 76, 74, .12);
  --radius-lg: 38px;
  --radius-md: 25px;
  --radius-sm: 16px;
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 5%, rgba(29, 158, 117, .12), transparent 30rem),
    radial-gradient(circle at 91% 20%, rgba(68, 200, 212, .12), transparent 27rem),
    radial-gradient(circle at 60% 65%, rgba(246, 163, 10, .04), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.dialog-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

img {
  max-width: 100%;
}

::selection {
  color: #fff;
  background: var(--green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noscript {
  position: fixed;
  z-index: 9999;
  inset: 0 0 auto;
  padding: .8rem;
  color: white;
  background: var(--danger);
  text-align: center;
}

.page-loader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 1.2rem;
  text-align: center;
  color: var(--green);
  background: #f8fbfd;
  transition: opacity .65s ease, visibility .65s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.page-loader span {
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .22em;
}

.loader-cloud {
  position: relative;
  display: grid;
  width: 112px;
  height: 82px;
  margin-inline: auto;
  place-items: center;
}

.loader-cloud img {
  position: relative;
  z-index: 2;
  width: 72px;
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.loader-cloud i {
  position: absolute;
  border: 1px solid rgba(29, 158, 117, .22);
  border-radius: 50%;
  animation: loaderRing 2.2s linear infinite;
}

.loader-cloud i:nth-child(1) { inset: 4px 20px; }
.loader-cloud i:nth-child(2) { inset: -8px 8px; animation-direction: reverse; }
.loader-cloud i:nth-child(3) { inset: -18px -2px; animation-duration: 3s; }

@keyframes loaderFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-7px) rotate(3deg); }
}

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

.ambient-canvas,
.ambient-grid,
.cursor-glow {
  position: fixed;
  pointer-events: none;
}

.ambient-canvas {
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ambient-grid {
  z-index: -2;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(15, 110, 86, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 110, 86, .035) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.cursor-glow {
  z-index: -1;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  opacity: .38;
  background: radial-gradient(circle, rgba(40, 180, 166, .17), transparent 68%);
  transform: translate(-50%, -50%);
}

.section-shell,
.site-header {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(22, 70, 70, .10);
  background: rgba(249, 253, 253, .76);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .78rem;
}

.brand > img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.18rem;
  letter-spacing: -.045em;
  text-transform: lowercase;
}

.brand-copy strong span {
  color: var(--green);
}

.brand-copy small {
  margin-top: .33rem;
  color: var(--muted);
  font-size: .52rem;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.main-nav > a,
.nav-access {
  padding: .82rem 1.05rem;
  border: 0;
  border-radius: 14px;
  color: #46545b;
  background: transparent;
  font-size: .84rem;
  font-weight: 750;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.main-nav > a:hover {
  color: var(--green);
  background: rgba(29, 158, 117, .08);
}

.nav-access {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-left: .5rem;
  color: white;
  background: var(--navy);
}

.nav-access:hover {
  transform: translateY(-2px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(73, 224, 172, .12);
  background: #49e0ac;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  align-items: center;
  min-height: 100svh;
  padding-top: 145px;
  padding-bottom: 95px;
  gap: clamp(3rem, 6vw, 7rem);
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--green);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(29, 158, 117, .45); }
  70% { box-shadow: 0 0 0 10px rgba(29, 158, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(29, 158, 117, 0); }
}

.hero h1 {
  max-width: 850px;
  margin: 1.4rem 0 1.5rem;
  font-size: clamp(3.8rem, 7.1vw, 7.7rem);
  line-height: .91;
  letter-spacing: -.074em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 710px;
  margin: 0;
  color: #586970;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.hero-lead strong {
  color: var(--ink);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 56px;
  padding: .9rem 1.25rem .9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 17px;
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button span {
  font-size: 1.05rem;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: white;
  box-shadow: 0 15px 38px rgba(15, 110, 86, .22);
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.button-primary:hover {
  box-shadow: 0 21px 46px rgba(15, 110, 86, .30);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(12px);
}

.button-dark {
  color: white;
  background: var(--navy);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  max-width: 700px;
  margin-top: 2.2rem;
}

.hero-proof article {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(14px);
}

.proof-icon {
  display: grid;
  flex: 0 0 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--green);
  background: var(--mint);
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-proof div {
  display: grid;
}

.hero-proof strong {
  font-size: .77rem;
}

.hero-proof small {
  margin-top: .18rem;
  color: var(--muted);
  font-size: .62rem;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  perspective: 1200px;
}

.cloud-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 44% 56% 48% 52% / 55% 43% 57% 45%;
  box-shadow: inset 0 0 100px rgba(255, 255, 255, .94), var(--shadow);
  background:
    radial-gradient(circle at 50% 48%, rgba(27, 169, 156, .18), transparent 29%),
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(227, 246, 247, .55));
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.cloud-shell::before {
  position: absolute;
  content: "";
  inset: 12%;
  border: 1px solid rgba(15, 110, 86, .08);
  border-radius: 48%;
  background:
    linear-gradient(rgba(15, 110, 86, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 110, 86, .035) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cloud-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(20, 154, 142, .20);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.halo-a {
  width: 340px;
  height: 340px;
  animation: haloSpin 18s linear infinite;
}

.halo-b {
  width: 440px;
  height: 230px;
  border-style: dashed;
  animation: haloSpinReverse 13s linear infinite;
}

.halo-c {
  width: 250px;
  height: 500px;
  opacity: .55;
  animation: haloSpin 23s linear infinite;
}

@keyframes haloSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes haloSpinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0); }
}

.cloud-core {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: 225px;
  height: 225px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 45% 55% 50% 50% / 50% 47% 53% 50%;
  box-shadow:
    0 32px 70px rgba(16, 96, 83, .22),
    inset 0 0 45px rgba(255, 255, 255, .95),
    0 0 85px rgba(43, 189, 174, .21);
  background: rgba(255, 255, 255, .84);
  transform: translate(-50%, -50%) translateZ(45px);
  animation: coreFloat 4.2s ease-in-out infinite;
}

.cloud-core::after {
  position: absolute;
  content: "";
  inset: -12%;
  border: 1px solid rgba(29, 158, 117, .16);
  border-radius: inherit;
}

.cloud-core-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.cloud-core-inner img {
  width: 112px;
  filter: drop-shadow(0 16px 18px rgba(16, 24, 39, .14));
}

.cloud-core-inner span {
  margin-top: .65rem;
  color: var(--green);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.cloud-core-inner small {
  margin-top: .2rem;
  color: #879398;
  font-size: .46rem;
  font-weight: 800;
  letter-spacing: .12em;
}

@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) translateZ(45px) translateY(0) rotate(-1deg); }
  50% { transform: translate(-50%, -50%) translateZ(58px) translateY(-10px) rotate(1deg); }
}

.device-node {
  position: absolute;
  z-index: 6;
  display: grid;
  justify-items: center;
  min-width: 92px;
  padding: .65rem .72rem;
  border: 1px solid rgba(255, 255, 255, .93);
  border-radius: 17px;
  box-shadow: 0 15px 36px rgba(24, 85, 78, .12);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(15px);
  animation: deviceFloat 4.5s ease-in-out infinite;
}

.device-node::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  top: -4px;
  right: 10px;
  border: 2px solid white;
  border-radius: 50%;
  background: #35c99c;
}

.device-node span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
  color: var(--green);
  background: var(--mint);
  font-size: .62rem;
  font-weight: 900;
}

.device-node small {
  margin-top: .34rem;
  color: #64737a;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.node-a { top: 11%; left: 7%; }
.node-b { top: 10%; right: 6%; animation-delay: .5s; }
.node-c { left: 3%; bottom: 18%; animation-delay: 1s; }
.node-d { right: 2%; bottom: 15%; animation-delay: 1.5s; }
.node-e { left: 55%; bottom: 4%; animation-delay: 2s; }

@keyframes deviceFloat {
  50% { transform: translateY(-11px); }
}

.cloud-lines {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cloud-lines path {
  fill: none;
  stroke: rgba(19, 143, 130, .20);
  stroke-width: 1.4;
  stroke-dasharray: 5 8;
  animation: lineDash 7s linear infinite;
}

@keyframes lineDash {
  to { stroke-dashoffset: -80; }
}

.data-packet {
  position: absolute;
  z-index: 4;
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(29, 158, 117, .75);
  background: var(--emerald);
}

.packet-1 { animation: packetA 4.4s linear infinite; }
.packet-2 { animation: packetB 5.2s .8s linear infinite; }
.packet-3 { animation: packetC 4.8s 1.2s linear infinite; }
.packet-4 { animation: packetD 5.4s 1.8s linear infinite; }
.packet-5 { animation: packetE 5.8s 2.2s linear infinite; }

@keyframes packetA {
  0% { left: 13%; top: 18%; opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { left: 49%; top: 48%; opacity: 0; }
}

@keyframes packetB {
  0% { right: 14%; top: 17%; opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { right: 49%; top: 48%; opacity: 0; }
}

@keyframes packetC {
  0% { left: 10%; bottom: 24%; opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { left: 49%; bottom: 49%; opacity: 0; }
}

@keyframes packetD {
  0% { right: 9%; bottom: 22%; opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { right: 49%; bottom: 49%; opacity: 0; }
}

@keyframes packetE {
  0% { left: 60%; bottom: 11%; opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { left: 50%; bottom: 47%; opacity: 0; }
}

.telemetry-card {
  position: absolute;
  z-index: 8;
  width: 170px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(27, 77, 76, .11);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
}

.telemetry-card > span {
  display: block;
  color: #839096;
  font-size: .53rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.telemetry-card strong {
  display: block;
  margin-top: .34rem;
  color: var(--green);
  font-size: .9rem;
}

.telemetry-card strong i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: .45rem;
  border-radius: 50%;
  background: #35c99c;
}

.telemetry-card small {
  color: #879398;
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.telemetry-top { top: 38%; left: 2%; }
.telemetry-bottom { right: 3%; top: 43%; }

.telemetry-bottom strong {
  font-size: 1.3rem;
}

.telemetry-bars {
  display: flex;
  align-items: end;
  height: 34px;
  gap: 4px;
  margin-top: .6rem;
}

.telemetry-bars b {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(to top, var(--green), var(--cyan));
}

.visual-caption {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: -1.8rem;
  display: grid;
  text-align: center;
  transform: translateX(-50%);
}

.visual-caption span {
  color: var(--green);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .15em;
}

.visual-caption small {
  margin-top: .3rem;
  color: #849096;
  font-size: .62rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #7c898e;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 24px;
  height: 36px;
  border: 1px solid rgba(15, 110, 86, .25);
  border-radius: 999px;
}

.scroll-cue i::after {
  display: block;
  width: 4px;
  height: 7px;
  margin: 7px auto;
  content: "";
  border-radius: 3px;
  background: var(--green);
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  to { transform: translateY(13px); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

body.ready .reveal {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

.system-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-bottom: 115px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(27, 77, 76, .07);
  background: var(--line);
}

.system-strip article {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.25rem 1.15rem;
  background: rgba(255, 255, 255, .82);
}

.system-strip article > span {
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: var(--mint);
  font-size: .57rem;
  font-weight: 900;
}

.system-strip article div {
  display: grid;
}

.system-strip strong {
  font-size: .78rem;
}

.system-strip small {
  margin-top: .18rem;
  color: var(--muted);
  font-size: .59rem;
}

.platform,
.network,
.architecture,
.ecosystem,
.security,
.closing {
  padding-block: 105px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.2rem;
}

.section-heading h2,
.network h2,
.architecture h2,
.security h2,
.closing h2 {
  margin: .9rem 0 0;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.section-heading > p,
.architecture-head > p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.capability-card {
  position: relative;
  min-height: 340px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(27, 77, 76, .08);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
  transition: transform .3s ease, box-shadow .3s ease;
}

.capability-card::before {
  position: absolute;
  content: "";
  inset: auto -20% -36% 20%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 158, 117, .12), transparent 70%);
}

.capability-card:hover {
  z-index: 2;
  box-shadow: 0 28px 70px rgba(27, 77, 76, .14);
  transform: translateY(-9px);
}

.capability-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.capability-number {
  color: #b8c2c5;
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .15em;
}

.capability-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 19px;
  color: var(--green);
  background: var(--mint);
}

.capability-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.capability-card h3 {
  margin: 5.5rem 0 .75rem;
  font-size: 1.22rem;
  letter-spacing: -.03em;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.7;
}

.capability-tag {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  color: var(--green);
  font-size: .55rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.network {
  display: grid;
  grid-template-columns: .73fr 1.27fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.network-copy > p {
  max-width: 560px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.network-progress {
  max-width: 540px;
  margin-top: 2.4rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
}

.network-progress > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.network-progress span {
  color: #849096;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.network-progress strong {
  font-size: .8rem;
}

.network-progress b {
  color: var(--green);
  font-size: 1rem;
}

.progress-track {
  height: 8px;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe9e8;
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--cyan));
  transition: width .5s ease;
}

.network-progress p {
  min-height: 3em;
  margin: 1rem 0 .5rem;
  color: var(--muted);
  font-size: .76rem;
}

.text-button {
  padding: 0;
  border: 0;
  color: var(--green);
  background: none;
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
}

.network-console {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(17, 26, 45, .19);
  background:
    radial-gradient(circle at 50% 50%, rgba(54, 207, 184, .20), transparent 34%),
    linear-gradient(145deg, #111a2d, #173142);
}

.network-console::before {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
  pointer-events: none;
  opacity: .25;
  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: 32px 32px;
}

.console-topbar,
.console-footer {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .55);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.console-topbar {
  top: 0;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.console-topbar i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: .5rem;
  border-radius: 50%;
  box-shadow: 0 0 11px #4fe5b8;
  background: #4fe5b8;
}

.console-footer {
  bottom: 0;
  padding: 1rem 1.2rem;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

#networkCanvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}

.architecture-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(27, 77, 76, .11);
  background:
    radial-gradient(circle at 12% 20%, rgba(29, 158, 117, .12), transparent 27%),
    radial-gradient(circle at 88% 85%, rgba(68, 200, 212, .10), transparent 28%),
    rgba(255, 255, 255, .75);
  backdrop-filter: blur(18px);
}

.architecture-panel::after {
  position: absolute;
  content: "CLOUD";
  right: -1rem;
  bottom: -4rem;
  color: rgba(15, 110, 86, .03);
  font-size: clamp(8rem, 17vw, 17rem);
  font-weight: 950;
  letter-spacing: -.09em;
}

.architecture-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: end;
  gap: 4rem;
}

.architecture-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}

.architecture-flow article {
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}

.flow-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: var(--mint);
  font-size: .62rem;
  font-weight: 900;
}

.architecture-flow h3 {
  margin: 2.5rem 0 .55rem;
  font-size: .98rem;
}

.architecture-flow p {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.65;
}

.flow-arrow {
  color: var(--green);
  font-size: 1.2rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.ecosystem-card {
  position: relative;
  grid-column: span 2;
  min-height: 360px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(27, 77, 76, .08);
  background: rgba(255, 255, 255, .74);
  transition: transform .3s ease, box-shadow .3s ease;
}

.ecosystem-card::before {
  position: absolute;
  content: "";
  inset: auto -20% -40% 35%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 158, 117, .12), transparent 70%);
}

.ecosystem-card:hover {
  z-index: 2;
  box-shadow: 0 29px 72px rgba(27, 77, 76, .15);
  transform: translateY(-9px);
}

.ecosystem-card.featured,
.ecosystem-card.research-card {
  grid-column: span 3;
}

.ecosystem-card.featured {
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(79, 229, 184, .21), transparent 28%),
    linear-gradient(145deg, #111a2d, #173344);
}

.ecosystem-card.featured p,
.ecosystem-card.featured .app-features span {
  color: rgba(255, 255, 255, .60);
}

.ecosystem-card.featured .app-badge {
  color: white;
  background: rgba(79, 229, 184, .15);
}

.ecosystem-card.research-card {
  background:
    radial-gradient(circle at 80% 20%, rgba(246, 163, 10, .11), transparent 28%),
    rgba(255, 255, 255, .78);
}

.ecosystem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-badge {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  color: var(--green);
  background: var(--mint);
  font-size: .65rem;
  font-weight: 900;
}

.app-state {
  color: #879398;
  font-size: .52rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.app-state i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: .35rem;
  border-radius: 50%;
  background: #35c99c;
}

.ecosystem-card h3 {
  margin: 3.8rem 0 .7rem;
  font-size: 1.5rem;
  letter-spacing: -.04em;
}

.ecosystem-card p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.25rem;
}

.app-features span {
  padding: .38rem .55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #6e7a80;
  font-size: .54rem;
  font-weight: 750;
}

.ecosystem-card.featured .app-features span {
  border-color: rgba(255, 255, 255, .11);
}

.ecosystem-card > strong {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  color: var(--green);
  font-size: .7rem;
}

.ecosystem-card.featured > strong {
  color: #58e4bd;
}

.ecosystem-card > strong b {
  margin-left: .35rem;
}

.security-panel {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr 250px;
  align-items: center;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-lg);
  box-shadow: 0 38px 100px rgba(17, 26, 45, .21);
  color: white;
  background:
    radial-gradient(circle at 10% 20%, rgba(29, 158, 117, .25), transparent 28%),
    linear-gradient(145deg, #111a2d, #162c3b);
}

.security-panel::after {
  position: absolute;
  content: "SECURE";
  right: -2rem;
  bottom: -3rem;
  color: rgba(255, 255, 255, .025);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 950;
  letter-spacing: -.08em;
}

.security-visual {
  position: relative;
  display: grid;
  width: 155px;
  height: 155px;
  place-items: center;
  border: 1px solid rgba(79, 229, 184, .17);
  border-radius: 50%;
  background: rgba(79, 229, 184, .06);
}

.security-core {
  display: grid;
  width: 85px;
  height: 85px;
  place-items: center;
  border-radius: 25px;
  background: rgba(79, 229, 184, .10);
}

.security-core svg {
  width: 50px;
  fill: none;
  stroke: #4fe5b8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.security-orbit {
  position: absolute;
  inset: -13px;
  border: 1px dashed rgba(79, 229, 184, .3);
  border-radius: 50%;
  animation: securitySpin 18s linear infinite;
}

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

.section-kicker.danger {
  color: #ff928d;
}

.security-copy {
  position: relative;
  z-index: 2;
}

.security-copy h2 {
  max-width: 780px;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
}

.security-copy > p {
  max-width: 770px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
}

.security-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.4rem;
}

.security-points span {
  padding: .5rem .65rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  color: rgba(255, 255, 255, .64);
  background: rgba(255, 255, 255, .04);
  font-size: .58rem;
  font-weight: 750;
}

.security-points i {
  margin-right: .3rem;
  color: #4fe5b8;
  font-style: normal;
}

.security-copy .button {
  margin-top: 1.6rem;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
}

.security-code {
  position: relative;
  z-index: 2;
  display: grid;
  gap: .3rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.security-code span {
  margin-top: .5rem;
  color: rgba(255, 255, 255, .34);
  font-size: .5rem;
  font-weight: 850;
  letter-spacing: .15em;
}

.security-code strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .7rem;
}

.security-code .green {
  color: #4fe5b8;
}

.closing {
  text-align: center;
}

.closing-brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.closing-brand img {
  width: 40px;
}

.closing h2 {
  margin: 1.8rem auto 0;
}

.closing h2 em {
  color: var(--green);
  font-style: normal;
}

.closing > p {
  color: var(--muted);
}

.closing-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 25px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-block;
}

.footer-brand img {
  width: 185px;
  max-height: 45px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: .7rem 0 0;
  color: #89959a;
  font-size: .64rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-links a {
  color: #69757b;
  font-size: .7rem;
  font-weight: 700;
}

.portal-dialog {
  width: min(680px, calc(100% - 28px));
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 30px;
  color: var(--ink);
  background: transparent;
}

.portal-dialog::backdrop {
  background: rgba(9, 16, 29, .54);
  backdrop-filter: blur(12px);
}

.dialog-shell {
  position: relative;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .23);
  background: rgba(250, 253, 253, .96);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.dialog-heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-right: 2.3rem;
}

.dialog-icon {
  display: grid;
  flex: 0 0 72px;
  height: 72px;
  place-items: center;
  border-radius: 22px;
  background: var(--mint);
}

.dialog-icon img {
  width: 53px;
}

.dialog-shell h2 {
  margin: .45rem 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.dialog-shell > p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.portal-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
  margin-top: 1.5rem;
}

.portal-option {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: .8rem;
  padding: .95rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  transition: border-color .25s ease, transform .25s ease;
}

.portal-option:hover {
  border-color: rgba(15, 110, 86, .35);
  transform: translateY(-3px);
}

.portal-code {
  display: grid;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: var(--mint);
  font-size: .63rem;
  font-weight: 900;
}

.portal-option > span:nth-child(2) {
  display: grid;
}

.portal-option strong {
  font-size: .78rem;
}

.portal-option small {
  margin-top: .2rem;
  color: var(--muted);
  font-size: .58rem;
  line-height: 1.35;
}

.portal-option b {
  color: var(--green);
}

.dialog-warning {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.2rem;
  color: #8a5c5a;
  font-size: .65rem;
}

.dialog-warning i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 7vw, 5.8rem);
  }

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

  .ecosystem-card,
  .ecosystem-card.featured,
  .ecosystem-card.research-card {
    grid-column: span 3;
  }

  .security-panel {
    grid-template-columns: 150px 1fr;
  }

  .security-code {
    display: none;
  }

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

  .flow-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .section-shell,
  .site-header {
    width: min(calc(100% - 30px), var(--max));
  }

  .site-header {
    top: 12px;
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    padding: .6rem;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(22, 70, 70, .16);
    background: rgba(250, 253, 253, .97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a,
  .nav-access {
    width: 100%;
    justify-content: center;
    margin: 0;
    text-align: center;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-lead,
  .hero-proof {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 610px;
  }

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

  .system-strip article:last-child {
    grid-column: 1 / -1;
  }

  .section-heading,
  .network,
  .architecture-head {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .architecture-head {
    gap: 1.5rem;
  }

  .network-progress {
    max-width: none;
  }

  .network-console {
    min-height: 510px;
  }

  .security-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .security-visual {
    margin-inline: auto;
  }

  .security-points {
    justify-content: center;
  }
}

@media (max-width: 660px) {
  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-actions,
  .closing-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero-proof article {
    text-align: left;
  }

  .hero-visual {
    min-height: 500px;
  }

  .cloud-core {
    width: 170px;
    height: 170px;
  }

  .cloud-core-inner img {
    width: 82px;
  }

  .device-node {
    min-width: 70px;
    padding: .5rem;
  }

  .device-node span {
    width: 30px;
    height: 30px;
  }

  .device-node small {
    display: none;
  }

  .telemetry-card {
    width: 130px;
    padding: .75rem;
  }

  .telemetry-top {
    top: 38%;
    left: 1%;
  }

  .telemetry-bottom {
    right: 1%;
  }

  .visual-caption {
    bottom: -2.1rem;
  }

  .scroll-cue {
    display: none;
  }

  .system-strip,
  .capability-grid,
  .ecosystem-grid,
  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .ecosystem-card,
  .ecosystem-card.featured,
  .ecosystem-card.research-card {
    grid-column: auto;
  }

  .system-strip article:last-child {
    grid-column: auto;
  }

  .system-strip {
    margin-bottom: 70px;
  }

  .platform,
  .network,
  .architecture,
  .ecosystem,
  .security,
  .closing {
    padding-block: 70px;
  }

  .network-console {
    min-height: 440px;
  }

  .architecture-panel,
  .security-panel {
    padding: 2rem 1.25rem;
  }

  .architecture-flow article {
    min-height: 170px;
  }

  .security-visual {
    width: 130px;
    height: 130px;
  }

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

  .portal-options {
    grid-template-columns: 1fr;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

  .cursor-glow {
    display: none;
  }
}
