:root {
  --ink: #061018;
  --ink-2: #0a1721;
  --ink-3: #0e1d29;
  --paper: #f4f8fb;
  --muted: #9badb9;
  --muted-2: #6f838f;
  --line: rgba(191, 229, 240, 0.14);
  --line-strong: rgba(191, 229, 240, 0.24);
  --cyan: #78e4ed;
  --cyan-bright: #c0fbff;
  --blue: #4b8bff;
  --amber: #f6b765;
  --glass: rgba(9, 24, 34, 0.62);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 12%, rgba(66, 132, 161, 0.08), transparent 28rem),
    var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.026;
  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='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

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

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

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

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cyan-bright);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 15, 22, 0.76);
  border-color: var(--line);
  backdrop-filter: blur(20px) saturate(130%);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 31px;
  color: var(--cyan-bright);
  filter: drop-shadow(0 0 12px rgba(120, 228, 237, 0.24));
}

.brand-os {
  color: var(--cyan);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #c2d0d7;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.02em;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.video-control:focus-visible,
.scroll-cue:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 4px;
}

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: #041216;
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
  box-shadow: 0 12px 34px rgba(53, 183, 196, 0.18), inset 0 1px rgba(255, 255, 255, 0.7);
}

.button-primary:hover {
  box-shadow: 0 17px 44px rgba(53, 183, 196, 0.27), inset 0 1px rgba(255, 255, 255, 0.7);
}

.button-secondary,
.button-quiet {
  color: #dbe9ef;
  background: rgba(14, 31, 42, 0.56);
  border-color: var(--line-strong);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-quiet:hover {
  background: rgba(20, 43, 57, 0.76);
  border-color: rgba(154, 237, 243, 0.4);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #071018 url("evanderos-poster.svg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -16vw;
  bottom: -55vh;
  z-index: -1;
  width: 72vw;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 139, 255, 0.16), rgba(75, 139, 255, 0) 67%);
  filter: blur(10px);
}

.hero-video,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -4;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.72;
  filter: saturate(0.86) contrast(1.08) brightness(0.72);
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 13, 19, 0.96) 0%, rgba(4, 13, 19, 0.84) 39%, rgba(4, 13, 19, 0.27) 72%, rgba(4, 13, 19, 0.56) 100%),
    linear-gradient(180deg, rgba(4, 13, 19, 0.42) 0%, transparent 22%, rgba(4, 13, 19, 0.2) 70%, #061018 100%);
}

.hero-grid {
  z-index: -2;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(133, 227, 235, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 227, 235, 0.12) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent 4%, black 45%, transparent 92%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.62fr);
  align-items: center;
  gap: clamp(50px, 8vw, 112px);
  padding-block: 144px 120px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: #c5f9fc;
  background: rgba(15, 40, 51, 0.45);
  border: 1px solid rgba(133, 227, 235, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(120, 228, 237, 0.08), 0 0 16px var(--cyan);
}

.hero h1,
.section-heading h2,
.security-copy h2,
.anywhere-copy h2,
.closing h2 {
  margin: 0;
  font-weight: 640;
  letter-spacing: -0.065em;
  line-height: 0.97;
  text-wrap: balance;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(4rem, 7.5vw, 7.8rem);
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(98deg, #f4fbff 8%, var(--cyan-bright) 45%, #7ea6ff 96%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 56px rgba(106, 223, 237, 0.12);
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #afbec6;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.72;
}

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

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 28px;
  color: #81939e;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-note span::before {
  width: 3px;
  height: 3px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--cyan);
}

.system-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(21, 45, 58, 0.68), rgba(7, 20, 29, 0.5)),
    rgba(8, 22, 31, 0.52);
  border: 1px solid rgba(173, 226, 235, 0.2);
  border-radius: 28px;
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px) saturate(120%);
}

.system-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 26%, transparent 74%, rgba(120, 228, 237, 0.05));
}

.system-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #a7bac4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ccfbef;
}

.live-pill i {
  width: 6px;
  height: 6px;
  background: #72f1c5;
  border-radius: 50%;
  box-shadow: 0 0 12px #72f1c5;
}

.system-orbit {
  position: relative;
  width: min(260px, 90%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 28px auto 22px;
}

.system-orbit::before {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(120, 228, 237, 0.12), transparent 66%);
  border-radius: 50%;
  filter: blur(12px);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(144, 228, 236, 0.22);
  border-radius: 50%;
}

.orbit-one {
  width: 87%;
  height: 55%;
  transform: rotate(-17deg);
  animation: orbit-tilt 10s ease-in-out infinite alternate;
}

.orbit-two {
  width: 57%;
  height: 91%;
  transform: rotate(30deg);
  animation: orbit-tilt-two 12s ease-in-out infinite alternate;
}

.orbit-core {
  position: relative;
  z-index: 2;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--cyan-bright);
  background: radial-gradient(circle at 34% 28%, rgba(126, 230, 239, 0.22), rgba(12, 37, 47, 0.84) 58%, rgba(5, 17, 24, 0.9));
  border: 1px solid rgba(153, 239, 245, 0.34);
  border-radius: 28px;
  box-shadow: 0 0 60px rgba(51, 179, 193, 0.17), inset 0 1px rgba(255, 255, 255, 0.12);
  transform: rotate(45deg);
}

.orbit-core svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-45deg);
}

.orbit-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cyan-bright);
  border: 2px solid #183c48;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(120, 228, 237, 0.9);
}

.node-one { top: 26%; right: 9%; }
.node-two { bottom: 13%; left: 29%; }
.node-three { top: 6%; left: 40%; }

.system-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(176, 224, 233, 0.12);
  border-radius: 16px;
}

.system-list div {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  background: rgba(5, 16, 23, 0.5);
}

.system-list span {
  color: #718793;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-list strong {
  color: #d6e4e9;
  font-size: 11px;
  font-weight: 620;
  text-align: right;
}

.video-control {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 36px;
  z-index: 4;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: #899ca6;
  background: rgba(6, 19, 27, 0.55);
  border: 1px solid rgba(178, 223, 232, 0.14);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: color 160ms ease, border-color 160ms ease;
}

.video-control:hover {
  color: #d4e6ec;
  border-color: rgba(178, 223, 232, 0.3);
}

.video-control svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-control span {
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.play-icon { display: none; }
.video-control[aria-pressed="true"] .pause-icon { display: none; }
.video-control[aria-pressed="true"] .play-icon { display: block; }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 8px;
  color: #667c87;
  transform: translateX(-50%);
}

.scroll-cue span {
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 28px;
  overflow: hidden;
  background: rgba(148, 202, 211, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  content: "";
  background: var(--cyan);
  animation: scroll-line 2s ease-in-out infinite;
}

.signal-strip {
  position: relative;
  z-index: 2;
  background: #07121a;
  border-block: 1px solid var(--line);
}

.signal-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.signal-grid span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8fa3ad;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-grid span::before {
  width: 5px;
  height: 5px;
  content: "";
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
}

.signal-grid span + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 24px;
  content: "";
  background: var(--line);
  transform: translateY(-50%);
}

.section {
  position: relative;
  padding-block: clamp(100px, 12vw, 168px);
}

.platform {
  overflow: hidden;
}

.platform::before {
  position: absolute;
  top: 8%;
  left: -260px;
  width: 520px;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(75, 139, 255, 0.1), transparent 68%);
  border-radius: 50%;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-heading h2,
.security-copy h2,
.anywhere-copy h2,
.closing h2 {
  font-size: clamp(2.65rem, 5vw, 5.5rem);
}

.section-heading > p:last-child,
.section-copy,
.anywhere-copy > p,
.closing-inner > p:not(.section-kicker) {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(16, 39, 51, 0.58), rgba(7, 21, 29, 0.72)),
    var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(130, 227, 235, 0.26);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.feature-card::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 180px;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(120, 228, 237, 0.1), transparent 68%);
  border-radius: 50%;
  transition: transform 240ms ease;
}

.feature-card:hover::after {
  transform: scale(1.3);
}

.feature-card-wide {
  grid-column: span 2;
  padding-right: min(42%, 380px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(103, 219, 229, 0.07);
  border: 1px solid rgba(120, 228, 237, 0.17);
  border-radius: 14px;
}

.feature-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 25px;
  margin: 0;
  color: #536873;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  max-width: 360px;
  margin: 78px 0 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.feature-card > p:last-of-type {
  max-width: 390px;
  margin: 16px 0 0;
  color: #8497a1;
  font-size: 14px;
  line-height: 1.65;
}

.mini-window {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 44%;
  min-width: 270px;
  overflow: hidden;
  background: rgba(5, 17, 24, 0.8);
  border: 1px solid rgba(158, 224, 233, 0.18);
  border-radius: 18px 0 0;
  box-shadow: -18px -18px 70px rgba(0, 0, 0, 0.22);
  transform: perspective(700px) rotateY(-7deg) rotateX(4deg);
}

.mini-window-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: rgba(16, 38, 50, 0.8);
  border-bottom: 1px solid var(--line);
}

.mini-window-bar i {
  width: 5px;
  height: 5px;
  background: #556b75;
  border-radius: 50%;
}

.mini-window-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px;
}

.mini-window-body span:first-child {
  grid-column: 1 / -1;
  height: 10px;
  background: linear-gradient(90deg, rgba(120, 228, 237, 0.3), rgba(120, 228, 237, 0.02));
  border-radius: 10px;
}

.mini-window-body span:nth-child(2),
.mini-window-body span:nth-child(3) {
  height: 72px;
  background: linear-gradient(145deg, rgba(80, 139, 255, 0.13), rgba(120, 228, 237, 0.05));
  border: 1px solid rgba(126, 207, 220, 0.1);
  border-radius: 10px;
}

.mini-window-body b {
  height: 8px;
  margin-top: 5px;
  background: rgba(153, 187, 198, 0.12);
  border-radius: 8px;
}

.security {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 29, 39, 0.25), rgba(3, 12, 18, 0.08)),
    #07131b;
  border-block: 1px solid var(--line);
}

.security::after {
  position: absolute;
  right: -20%;
  bottom: -48%;
  width: 70%;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(120, 228, 237, 0.08), transparent 65%);
  border-radius: 50%;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 11vw, 150px);
}

.security-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.security-visual::before,
.security-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(121, 223, 232, 0.11);
  border-radius: 50%;
}

.security-visual::before {
  width: 460px;
  max-width: 100%;
  aspect-ratio: 1;
}

.security-visual::after {
  width: 340px;
  max-width: 76%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: rotate 30s linear infinite;
}

.security-halo {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(76, 156, 173, 0.22), rgba(76, 156, 173, 0) 66%);
  border-radius: 50%;
  filter: blur(10px);
}

.shield-shell {
  position: relative;
  z-index: 2;
  width: 188px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(24, 55, 68, 0.72), rgba(6, 19, 27, 0.84));
  border: 1px solid rgba(164, 232, 240, 0.24);
  border-radius: 40px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3), 0 0 70px rgba(82, 196, 207, 0.08), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(2deg);
}

.shield-shell svg {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shield-outline {
  stroke: rgba(190, 244, 248, 0.25);
  stroke-width: 2;
}

.shield-inner {
  fill: rgba(102, 224, 234, 0.06);
  stroke: var(--cyan);
  stroke-width: 2;
}

.shield-check {
  stroke: var(--cyan-bright);
  stroke-width: 5;
  filter: drop-shadow(0 0 8px rgba(120, 228, 237, 0.6));
}

.security-chip {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  color: #bdd1d9;
  background: rgba(8, 24, 33, 0.72);
  border: 1px solid rgba(151, 224, 233, 0.15);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.chip-one { top: 17%; right: 3%; }
.chip-two { bottom: 18%; left: 0; }
.chip-three { right: 8%; bottom: 6%; }

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

.check-list {
  display: grid;
  gap: 2px;
  margin-top: 38px;
  border-block: 1px solid var(--line);
}

.check-list div {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #c1d0d6;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.check-list div:last-child {
  border-bottom: 0;
}

.check-list i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(120, 228, 237, 0.34);
  border-radius: 50%;
}

.check-list i::after {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 5px;
  height: 8px;
  content: "";
  border-right: 1.5px solid var(--cyan);
  border-bottom: 1.5px solid var(--cyan);
  transform: rotate(45deg);
}

.anywhere {
  overflow: hidden;
}

.anywhere-panel {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px);
  background:
    linear-gradient(125deg, rgba(15, 41, 53, 0.8), rgba(7, 22, 30, 0.82)),
    var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.anywhere-panel::before {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(75, 139, 255, 0.15), transparent 65%);
  border-radius: 50%;
}

.anywhere-copy,
.device-scene {
  position: relative;
  z-index: 2;
}

.anywhere-copy h2 {
  font-size: clamp(2.65rem, 4.5vw, 5rem);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--cyan-bright);
  font-size: 13px;
  font-weight: 720;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.device-scene {
  min-height: 390px;
  perspective: 1000px;
}

.device {
  position: absolute;
}

.laptop {
  top: 50%;
  left: 50%;
  width: min(560px, 100%);
  transform: translate(-47%, -48%) rotateY(-8deg) rotateX(3deg);
}

.device-screen {
  aspect-ratio: 16 / 10;
  display: flex;
  overflow: hidden;
  padding: 8px;
  background: #142832;
  border: 1px solid rgba(203, 239, 244, 0.27);
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.34), 0 0 70px rgba(74, 153, 170, 0.1);
}

.screen-sidebar {
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
  background: rgba(5, 16, 23, 0.76);
  border-radius: 11px 0 0 11px;
}

.screen-sidebar i {
  width: 22px;
  height: 22px;
  background: rgba(154, 205, 215, 0.08);
  border: 1px solid rgba(154, 205, 215, 0.08);
  border-radius: 7px;
}

.screen-sidebar i:first-child {
  background: rgba(120, 228, 237, 0.14);
  border-color: rgba(120, 228, 237, 0.25);
}

.screen-main {
  width: 85%;
  padding: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(75, 139, 255, 0.12), transparent 38%),
    #091a23;
  border-radius: 0 11px 11px 0;
}

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

.screen-header span {
  width: 32%;
  height: 10px;
  background: rgba(208, 233, 238, 0.22);
  border-radius: 10px;
}

.screen-header b {
  width: 28px;
  height: 28px;
  background: rgba(120, 228, 237, 0.15);
  border: 1px solid rgba(120, 228, 237, 0.18);
  border-radius: 9px;
}

.screen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.screen-cards i {
  height: 82px;
  background: linear-gradient(145deg, rgba(120, 228, 237, 0.11), rgba(75, 139, 255, 0.04));
  border: 1px solid rgba(142, 218, 228, 0.08);
  border-radius: 11px;
}

.screen-lines {
  display: grid;
  gap: 11px;
  margin-top: 26px;
}

.screen-lines span {
  height: 9px;
  background: linear-gradient(90deg, rgba(164, 201, 210, 0.16), rgba(164, 201, 210, 0.02));
  border-radius: 9px;
}

.screen-lines span:nth-child(2) { width: 81%; }
.screen-lines span:nth-child(3) { width: 63%; }

.laptop-base {
  position: relative;
  width: 107%;
  height: 13px;
  margin-left: -3.5%;
  background: linear-gradient(180deg, #455b65, #1c3039);
  border-radius: 2px 2px 30px 30px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.phone {
  right: -2%;
  bottom: -1%;
  z-index: 3;
  width: 122px;
  aspect-ratio: 0.51;
  overflow: hidden;
  padding: 7px;
  background: #162c36;
  border: 1px solid rgba(203, 239, 244, 0.27);
  border-radius: 25px;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.38);
  transform: rotate(4deg);
}

.phone::before {
  position: absolute;
  inset: 7px;
  content: "";
  background: linear-gradient(160deg, #0b2631, #06141c);
  border-radius: 19px;
}

.phone-notch {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 10px;
  margin: 3px auto 0;
  background: #162c36;
  border-radius: 0 0 8px 8px;
}

.phone-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  padding: 28px 12px 0;
}

.phone-content i {
  width: 31px;
  height: 31px;
  background: rgba(120, 228, 237, 0.15);
  border: 1px solid rgba(120, 228, 237, 0.21);
  border-radius: 10px;
}

.phone-content span {
  width: 100%;
  height: 8px;
  background: rgba(181, 218, 225, 0.12);
  border-radius: 8px;
}

.phone-content span:nth-child(3) { width: 72%; }
.phone-content b {
  height: 70px;
  margin-top: 12px;
  background: linear-gradient(145deg, rgba(75, 139, 255, 0.12), rgba(120, 228, 237, 0.04));
  border: 1px solid rgba(120, 228, 237, 0.08);
  border-radius: 12px;
}

.connection-line {
  position: absolute;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 228, 237, 0.36), transparent);
  transform-origin: left;
}

.line-one {
  top: 29%;
  left: 2%;
  width: 86%;
  transform: rotate(-17deg);
}

.line-two {
  top: 66%;
  left: 8%;
  width: 82%;
  transform: rotate(12deg);
}

.closing {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 14vw, 190px);
  background: #050e14;
  border-top: 1px solid var(--line);
  text-align: center;
}

.closing::before,
.closing::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, var(--line), transparent);
}

.closing::before { left: 18%; }
.closing::after { right: 18%; }

.closing-glow {
  position: absolute;
  top: -68%;
  left: 50%;
  width: min(1000px, 90vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(72, 151, 169, 0.18), transparent 63%);
  border-radius: 50%;
  transform: translateX(-50%);
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-mark {
  width: 58px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--cyan-bright);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 20px rgba(120, 228, 237, 0.28));
}

.closing h2 {
  max-width: 900px;
}

.closing .button {
  margin-top: 38px;
}

.site-footer {
  background: #040b10;
  border-top: 1px solid rgba(191, 229, 240, 0.08);
}

.footer-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.brand-footer {
  font-size: 16px;
}

.brand-footer .brand-mark {
  width: 27px;
}

.footer-inner p {
  margin: 0;
  color: #667983;
  font-size: 11px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2, .7, .2, 1), transform 700ms cubic-bezier(.2, .7, .2, 1);
}

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

.feature-grid .reveal:nth-child(2) { transition-delay: 70ms; }
.feature-grid .reveal:nth-child(3) { transition-delay: 140ms; }
.feature-grid .reveal:nth-child(4) { transition-delay: 70ms; }
.feature-grid .reveal:nth-child(5) { transition-delay: 140ms; }

@keyframes orbit-tilt {
  from { transform: rotate(-17deg) scaleX(1); }
  to { transform: rotate(-9deg) scaleX(.96); }
}

@keyframes orbit-tilt-two {
  from { transform: rotate(30deg) scaleY(1); }
  to { transform: rotate(37deg) scaleY(.96); }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  55%, 100% { transform: translateY(200%); }
}

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

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .main-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-block: 145px 130px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .system-card {
    width: min(430px, 100%);
    margin-left: auto;
  }

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

  .feature-card-wide {
    grid-column: span 2;
  }

  .security-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .security-visual {
    min-height: 450px;
  }

  .anywhere-panel {
    grid-template-columns: 1fr;
    min-height: 920px;
  }

  .device-scene {
    min-height: 430px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .header-inner {
    min-height: 68px;
  }

  .button-small {
    min-height: 37px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 860px;
    align-items: flex-start;
  }

  .hero-video {
    object-position: 64% center;
    opacity: 0.58;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(4, 13, 19, 0.9) 0%, rgba(4, 13, 19, 0.78) 51%, rgba(4, 13, 19, 0.94) 100%),
      linear-gradient(90deg, rgba(4, 13, 19, 0.85), rgba(4, 13, 19, 0.32));
  }

  .hero-inner {
    gap: 50px;
    padding-block: 124px 118px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17.5vw, 5.2rem);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-note {
    gap: 10px 14px;
  }

  .system-card {
    width: 100%;
    padding: 17px;
  }

  .system-orbit {
    width: 220px;
    margin-block: 22px 18px;
  }

  .system-list div {
    min-height: 48px;
  }

  .video-control {
    right: 14px;
    bottom: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .signal-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 16px;
  }

  .signal-grid span {
    min-height: 42px;
    justify-content: flex-start;
    padding-left: 12px;
    font-size: 8px;
  }

  .signal-grid span + span::after {
    display: none;
  }

  .section {
    padding-block: 96px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .security-copy h2,
  .anywhere-copy h2,
  .closing h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    letter-spacing: -0.06em;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: span 1;
    min-height: 330px;
    padding: 24px;
  }

  .feature-card-wide {
    min-height: 490px;
    padding-right: 24px;
  }

  .feature-card h3 {
    margin-top: 64px;
  }

  .mini-window {
    right: -7px;
    bottom: -14px;
    width: 86%;
    min-width: 0;
  }

  .security-visual {
    min-height: 380px;
  }

  .security-chip {
    font-size: 7.5px;
  }

  .chip-one { right: 0; }
  .chip-two { left: 0; }
  .chip-three { right: 0; }

  .anywhere-panel {
    min-height: 820px;
    gap: 26px;
    padding: 34px 24px 24px;
    border-radius: 25px;
  }

  .device-scene {
    min-height: 350px;
  }

  .laptop {
    width: 390px;
    max-width: 105%;
  }

  .phone {
    right: -5%;
    width: 94px;
  }

  .screen-main {
    padding: 13px;
  }

  .screen-cards {
    gap: 6px;
    margin-top: 18px;
  }

  .screen-cards i {
    height: 58px;
  }

  .closing::before,
  .closing::after {
    display: none;
  }

  .footer-inner {
    min-height: 120px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  .video-control {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
