:root {
  --ink: #08183f;
  --ink-2: #102552;
  --paper: #f4f5f0;
  --white: #ffffff;
  --line: rgba(8, 24, 63, 0.14);
  --muted: #657086;
  --cyan: #5fe1db;
  --cyan-bright: #73f0e7;
  --blue: #3b6cff;
  --lavender: #aca7ff;
  --warm: #ff826e;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --shadow: 0 28px 80px rgba(4, 17, 48, 0.15);
  --content: min(1280px, calc(100vw - 80px));
  --display: "Ubuntu", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --body: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  --cursor-x: 68vw;
  --cursor-y: 34vh;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

main {
  position: relative;
  background:
    radial-gradient(ellipse 70% 14% at 8% 18%, rgba(95, 225, 219, 0.075), transparent 72%),
    radial-gradient(ellipse 64% 13% at 96% 43%, rgba(172, 167, 255, 0.075), transparent 74%),
    radial-gradient(ellipse 72% 12% at 4% 76%, rgba(59, 108, 255, 0.05), transparent 74%),
    var(--paper);
}

.ambient-field {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: clamp(360px, 42vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 225, 219, 0.135) 0%, rgba(95, 225, 219, 0.065) 31%, rgba(59, 108, 255, 0.025) 53%, transparent 72%);
  opacity: 0.9;
  pointer-events: none;
  transform: translate3d(calc(var(--cursor-x) - 50%), calc(var(--cursor-y) - 50%), 0);
  transition: opacity 500ms ease;
  will-change: transform;
}

.ambient-field.is-idle {
  opacity: 0.42;
}

.scroll-progress {
  position: fixed;
  z-index: 24;
  top: 50%;
  right: 18px;
  width: 2px;
  height: 116px;
  overflow: hidden;
  background: rgba(8, 24, 63, 0.12);
  border-radius: 999px;
  transform: translateY(-50%);
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, var(--cyan), var(--blue));
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(95, 225, 219, 0.72);
  transform: scaleY(var(--scroll-progress));
  transform-origin: top;
  will-change: transform;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-notice {
  position: relative;
  z-index: 30;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(95, 225, 219, 0.12), 0 0 18px rgba(95, 225, 219, 0.8);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.notice-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.24);
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  padding: 14px max(40px, calc((100vw - 1440px) / 2));
  background: rgba(244, 245, 240, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: min-height 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.scrolled {
  min-height: 66px;
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(8, 24, 63, 0.05);
}

.brand {
  width: 206px;
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 40px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #283754;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 100%;
  height: 1.5px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 220ms ease;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, color 200ms ease, background 200ms ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -60%;
  bottom: -60%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  opacity: 0;
  transform: skewX(-20deg);
  transition: left 650ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 180ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  left: 120%;
  opacity: 0.72;
}

.button > span {
  position: relative;
  z-index: 1;
}

.button span {
  font-size: 17px;
  transition: transform 200ms ease;
}

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

.button:hover span,
.button:focus-visible span {
  transform: translate(2px, -2px);
}

.button-small {
  min-height: 43px;
  padding: 0 19px;
  gap: 15px;
  font-size: 12px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(8, 24, 63, 0.16);
}

.button-dark:hover {
  background: var(--ink-2);
  box-shadow: 0 16px 34px rgba(8, 24, 63, 0.22);
}

.button-primary {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 14px 38px rgba(64, 205, 198, 0.23);
}

.button-primary:hover {
  background: var(--cyan-bright);
  box-shadow: 0 18px 42px rgba(64, 205, 198, 0.32);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline-light:hover {
  color: var(--ink);
  background: var(--white);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(70px, 9vh, 120px) max(40px, calc((100vw - 1360px) / 2)) 100px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(172, 167, 255, 0.12), transparent 31%),
    linear-gradient(135deg, #f7f8f4 0%, #f1f3ef 63%, #e7eeee 100%);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.23;
  background-image: linear-gradient(rgba(8, 24, 63, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 24, 63, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 62%);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 380px;
  height: 380px;
  top: 12%;
  right: 8%;
  border: 1px solid rgba(59, 108, 255, 0.16);
  animation: drift 14s ease-in-out infinite;
}

.hero-orb-two {
  width: 160px;
  height: 160px;
  right: 35%;
  bottom: 6%;
  background: rgba(172, 167, 255, 0.13);
  animation: drift 10s ease-in-out -3s infinite reverse;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 750px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #536079;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--blue);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.63);
}

.eyebrow-light span {
  color: var(--cyan);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(64px, 7.5vw, 112px);
  font-weight: 600;
  letter-spacing: -0.065em;
}

h1 em,
h2 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 38px;
  color: #4f5c74;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.play-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 9px;
  text-indent: 1px;
  transition: transform 200ms ease;
}

.text-link:hover .play-icon {
  transform: scale(1.08);
}

.duration {
  color: #838b9c;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.hero-proof {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding-right: 20px;
}

.hero-proof div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: #667188;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  z-index: 2;
  min-height: min(710px, 74vh);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-halo {
  position: absolute;
  width: min(600px, 42vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(95, 225, 219, 0.24), rgba(59, 108, 255, 0.08) 42%, transparent 70%);
  border-radius: 50%;
  animation: breathe 8s ease-in-out infinite;
}

.media-halo::before,
.media-halo::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(59, 108, 255, 0.19);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(12deg);
  animation: spatialOrbit 18s linear infinite;
}

.media-halo::after {
  inset: 23%;
  border-color: rgba(95, 225, 219, 0.28);
  transform: rotateY(64deg) rotateZ(-18deg);
  animation-name: spatialOrbitReverse;
  animation-duration: 13s;
}

.video-shell {
  position: relative;
  width: min(400px, 29vw);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--ink);
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 44px;
  box-shadow: 0 42px 100px rgba(8, 24, 63, 0.27), 0 0 0 1px rgba(8, 24, 63, 0.12);
  transform: perspective(1100px) translate3d(var(--depth-x, 0), var(--depth-y, 0), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform 280ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 280ms ease;
  will-change: transform;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 24, 63, 0.24), transparent 22%, transparent 65%, rgba(8, 24, 63, 0.74));
  pointer-events: none;
}

.video-topline,
.video-caption {
  position: absolute;
  right: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.video-topline {
  top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-topline > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.video-topline i {
  width: 6px;
  height: 6px;
  display: block;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--cyan);
}

.video-control {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(8, 24, 63, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.video-caption {
  bottom: 22px;
  align-items: flex-end;
}

.video-caption span,
.video-caption strong {
  display: block;
}

.video-caption span {
  font-size: 10px;
  font-weight: 700;
}

.video-caption strong {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.floating-card {
  position: absolute;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(8, 24, 63, 0.16);
  backdrop-filter: blur(16px);
}

.floating-card-route {
  z-index: 3;
  top: 14%;
  right: -3%;
  width: 230px;
  padding: 17px;
  transform: translate3d(var(--depth-x-reverse, 0), var(--depth-y-reverse, 0), 42px) rotate(-2deg);
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.micro-label {
  color: #7a8496;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-line {
  position: relative;
  height: 38px;
  margin: 6px 7px 0;
}

.route-path {
  position: absolute;
  top: 18px;
  right: 8px;
  left: 8px;
  border-top: 2px dashed rgba(8, 24, 63, 0.24);
}

.route-start,
.route-end {
  position: absolute;
  z-index: 2;
  top: 13px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.route-start {
  left: 2px;
}

.route-end {
  right: 2px;
  border-color: var(--cyan);
}

.route-bot {
  position: absolute;
  z-index: 3;
  top: 2px;
  left: 20%;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  animation: routeMove 6s ease-in-out infinite;
}

.route-bot img {
  width: 27px;
}

.route-labels {
  display: flex;
  justify-content: space-between;
  color: #647087;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-card-status {
  z-index: 3;
  right: auto;
  bottom: 15%;
  left: -3%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 14px 17px;
  transform: translate3d(var(--depth-x-small, 0), var(--depth-y-small, 0), 28px) rotate(1deg);
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.floating-card-status strong {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.status-ring {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(95, 225, 219, 0.2);
  border-top-color: #37cfc6;
  border-radius: 50%;
  animation: spin 4s linear infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: max(40px, calc((100vw - 1360px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: #788196;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 1px;
  height: 30px;
  display: block;
  overflow: hidden;
  background: rgba(8, 24, 63, 0.16);
}

.hero-scroll span::after {
  content: "";
  width: 100%;
  height: 12px;
  display: block;
  background: var(--blue);
  animation: scrollLine 2s ease-in-out infinite;
}

.trust-strip {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 24px max(40px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: linear-gradient(105deg, #071638 0%, var(--ink) 48%, #102552 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.trust-items span {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
}

.trust-items i {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--body);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-items b {
  color: var(--cyan);
  font-size: 16px;
}

.section {
  width: var(--content);
  margin: 0 auto;
}

.section-intro {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: clamp(60px, 10vw, 170px);
  align-items: end;
  padding: 150px 0 110px;
}

.section-intro::before,
.orchestra-section::before,
.deployment-section::before,
.principles-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  pointer-events: none;
  transform: translateX(-50%);
}

.section-intro::before {
  background:
    radial-gradient(ellipse 48% 70% at 7% 45%, rgba(95, 225, 219, 0.095), transparent 70%),
    linear-gradient(to bottom, rgba(244, 245, 240, 0), rgba(237, 244, 242, 0.66) 52%, rgba(244, 245, 240, 0));
}

.section-heading h2,
.gary-copy h2,
.orchestra-copy h2,
.platform-section h2,
.deployment-copy h2,
.faq-title h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.section-lead > p,
.large-copy {
  color: #566279;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
}

.section-lead > p {
  margin-bottom: 34px;
}

.signal-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #627087;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal-line span {
  position: relative;
  width: 38px;
  height: 2px;
  background: rgba(8, 24, 63, 0.14);
}

.signal-line span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--blue);
  animation: signal 2.5s ease-in-out infinite alternate;
}

.workflow-wrap {
  width: var(--content);
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(60px, 10vw, 160px);
  margin: 0 auto 150px;
}

.workflow-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 40px;
  background:
    radial-gradient(circle at 92% 8%, rgba(95, 225, 219, 0.18), transparent 34%),
    linear-gradient(145deg, #e9eeec, #e4e8ea);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(8, 24, 63, 0.06);
}

.section-index {
  display: block;
  margin-bottom: 58px;
  color: #6d778c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-sticky h3 {
  margin-bottom: 22px;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.workflow-sticky > p {
  color: #5e6a80;
  line-height: 1.7;
}

.support-note {
  display: flex;
  gap: 12px;
  margin-top: 42px;
  padding-top: 22px;
  color: #566279;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.55;
}

.support-note > span {
  color: var(--blue);
  font-size: 18px;
}

.workflow-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-step {
  min-height: 190px;
  display: grid;
  grid-template-columns: 42px 76px 1fr;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.workflow-step:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  align-self: start;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.step-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(8, 24, 63, 0.08);
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 320ms ease, background 320ms ease;
}

.workflow-step h4 {
  transition: color 260ms ease, transform 260ms ease;
}

.workflow-step:hover .step-icon {
  background: #f9ffff;
  box-shadow: 0 22px 46px rgba(39, 95, 178, 0.13);
  transform: translateY(-5px) rotate(-3deg);
}

.workflow-step:hover h4 {
  color: var(--blue);
  transform: translateX(4px);
}

.step-icon svg {
  width: 36px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-step h4 {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.workflow-step p {
  max-width: 470px;
  margin: 0;
  color: #687389;
  font-size: 14px;
  line-height: 1.65;
}

.gary-section {
  position: relative;
  min-height: 960px;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  padding: 130px max(40px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 42, 84, 0.78) 0%, rgba(8, 24, 63, 0) 18%, rgba(6, 20, 53, 0.36) 100%),
    var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.gary-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 28% 45%, rgba(59, 108, 255, 0.25), transparent 27%), radial-gradient(circle at 66% 92%, rgba(95, 225, 219, 0.13), transparent 38%);
  background-size: 115% 115%, 110% 110%;
  animation: meshShift 16s ease-in-out infinite alternate;
}

.gary-backdrop {
  position: absolute;
  z-index: -1;
  top: 30px;
  left: 50%;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: min(25vw, 360px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  transform: translateX(-50%);
  user-select: none;
}

.gary-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: min(440px, 35vw);
  aspect-ratio: 9 / 14;
  padding: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 220px 220px 34px 34px;
  transform: perspective(1100px) translate3d(var(--depth-x, 0), var(--depth-y, 0), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 300ms ease;
  will-change: transform;
}

.gary-visual:hover .portrait-frame {
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28), 0 0 70px rgba(95, 225, 219, 0.07);
}

.portrait-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(0.82) contrast(1.05);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(95, 225, 219, 0.28);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-scan {
  position: absolute;
  z-index: 2;
  right: 18px;
  left: 18px;
  height: 1px;
  top: 16%;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px var(--cyan);
  animation: scan 6s ease-in-out infinite;
}

.portrait-tag {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 24, 63, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1), border-color 260ms ease;
}

.portrait-tag span {
  color: var(--cyan);
}

.tag-top {
  top: 24%;
  right: -72px;
  transform: translate3d(var(--depth-x-reverse, 0), var(--depth-y-reverse, 0), 50px);
}

.tag-bottom {
  bottom: 18%;
  left: -60px;
  transform: translate3d(var(--depth-x-small, 0), var(--depth-y-small, 0), 34px);
}

.gary-copy {
  max-width: 660px;
}

.gary-copy h2 {
  margin-bottom: 30px;
}

.gary-copy h2 em,
.platform-section h2 em,
.contact-copy h2 em {
  color: var(--cyan);
}

.gary-copy .large-copy {
  color: rgba(255, 255, 255, 0.62);
}

.feature-list {
  padding: 0;
  margin: 46px 0 38px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list li > span {
  padding-top: 3px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.feature-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.verification-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  line-height: 1.55;
}

.orchestra-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.72fr 1.15fr;
  gap: clamp(60px, 7vw, 110px);
  align-items: center;
  padding: 160px 0;
}

.orchestra-section::before {
  background:
    radial-gradient(ellipse 52% 65% at 92% 48%, rgba(172, 167, 255, 0.12), transparent 72%),
    radial-gradient(ellipse 42% 56% at 8% 62%, rgba(95, 225, 219, 0.065), transparent 72%),
    linear-gradient(to bottom, rgba(244, 245, 240, 0), rgba(241, 242, 246, 0.74) 50%, rgba(244, 245, 240, 0));
}

.orchestra-copy h2 {
  margin-bottom: 30px;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-grid article {
  position: relative;
  min-height: 178px;
  padding: 28px;
  background: var(--paper);
  transition: transform 300ms cubic-bezier(0.2, 0.75, 0.25, 1), background 300ms ease, box-shadow 300ms ease;
}

.capability-grid article:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 55px rgba(8, 24, 63, 0.11);
  transform: perspective(700px) translateY(-5px) rotateX(1.5deg);
}

.capability-grid article > span {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--blue);
  font-size: 19px;
}

.capability-grid h3 {
  margin: 44px 0 8px;
  font-size: 19px;
}

.capability-grid p {
  margin: 0;
  color: #687389;
  font-size: 11px;
  line-height: 1.55;
}

.dashboard-wrap {
  position: relative;
  min-width: 0;
}

.concept-label {
  margin-bottom: 12px;
  color: #737f93;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: right;
  text-transform: uppercase;
}

.dashboard {
  min-height: 610px;
  display: grid;
  grid-template-columns: 58px 1fr;
  overflow: hidden;
  background: #e9edf2;
  border: 10px solid #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: perspective(1200px) translate3d(var(--depth-x, 0), var(--depth-y, 0), 0) rotateY(calc(-2deg + var(--tilt-y, 0deg))) rotateX(calc(1deg + var(--tilt-x, 0deg)));
  transform-style: preserve-3d;
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 320ms ease;
  will-change: transform;
}

.dashboard:hover {
  box-shadow: 0 42px 105px rgba(4, 17, 48, 0.2);
  transform: perspective(1200px) translate3d(var(--depth-x, 0), calc(var(--depth-y, 0) - 4px), 0) rotateY(var(--tilt-y, 0deg)) rotateX(var(--tilt-x, 0deg));
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.45);
  background: var(--ink);
}

.dash-sidebar img {
  width: 30px;
  margin-bottom: 20px;
}

.dash-nav {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 13px;
}

.dash-nav.active {
  color: var(--cyan);
  background: rgba(95, 225, 219, 0.12);
}

.dash-main {
  min-width: 0;
  padding: 25px;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dash-header small,
.dash-header strong {
  display: block;
}

.dash-header small {
  color: #7d8798;
  font-size: 9px;
}

.dash-header strong {
  margin-top: 2px;
  font-size: 17px;
}

.dash-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 12px;
}

.dash-stats > div {
  min-width: 0;
  padding: 15px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(8, 24, 63, 0.04);
}

.dash-stats small,
.dash-stats strong,
.dash-stats span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-stats small {
  color: #8b94a4;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-stats strong {
  margin: 5px 0 2px;
  font-size: 13px;
}

.dash-stats span {
  color: #778195;
  font-size: 7px;
}

.dash-stats .online {
  color: #1ea695;
}

.dash-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(155px, 0.62fr);
  gap: 12px;
}

.dash-map,
.dash-tasks {
  position: relative;
  min-height: 395px;
  overflow: hidden;
  background: var(--white);
  border-radius: 14px;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image: linear-gradient(#e4e8ed 1px, transparent 1px), linear-gradient(90deg, #e4e8ed 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  background: #e0e5eb;
  border: 3px solid #d4dae2;
  border-radius: 7px;
}

.map-grid::before {
  width: 33%;
  height: 25%;
  top: 15%;
  left: 7%;
}

.map-grid::after {
  width: 27%;
  height: 22%;
  right: 7%;
  bottom: 15%;
}

.room {
  position: absolute;
  z-index: 2;
  color: #7d8798;
  font-size: 7px;
  font-weight: 800;
}

.room-a {
  bottom: 21%;
  left: 12%;
}

.room-b {
  top: 21%;
  right: 15%;
}

.map-route {
  position: absolute;
  z-index: 3;
  inset: 65px 15px auto;
  width: calc(100% - 30px);
  overflow: visible;
}

.map-route path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 5 7;
  animation: routeDash 14s linear infinite;
}

.map-robot {
  position: absolute;
  z-index: 5;
  top: 48%;
  left: 48%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(59, 108, 255, 0.15);
  animation: mapBot 5s ease-in-out infinite;
}

.map-robot img {
  width: 28px;
}

.map-legend {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: #647087;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 7px;
  font-size: 7px;
  font-weight: 700;
}

.map-legend i {
  width: 6px;
  height: 6px;
  display: block;
  background: var(--cyan);
  border-radius: 50%;
}

.dash-tasks {
  padding: 17px;
}

.dash-panel-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 9px;
}

.dash-panel-title span {
  color: #a2a9b6;
}

.task {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  min-height: 58px;
}

.task::after {
  content: "";
  position: absolute;
  top: 17px;
  bottom: -4px;
  left: 6px;
  width: 1px;
  background: #e2e6eb;
}

.task:last-child::after {
  display: none;
}

.task i {
  z-index: 2;
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  background: #e3e7ec;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d5dbe3;
  font-size: 6px;
  font-style: normal;
}

.task.done i {
  color: var(--white);
  background: #2bb9aa;
  box-shadow: none;
}

.task.current i {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(59, 108, 255, 0.15);
}

.task strong,
.task span {
  display: block;
}

.task strong {
  font-size: 8px;
}

.task span {
  color: #9099a8;
  font-size: 7px;
}

.task.current span {
  color: var(--blue);
}

.platform-section {
  position: relative;
  padding: 150px max(40px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 12% 32%, rgba(59, 108, 255, 0.2), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(95, 225, 219, 0.1), transparent 31%),
    linear-gradient(180deg, #132550 0%, #0d1d42 58%, #0a193b 100%);
  overflow: hidden;
}

.platform-section::before {
  content: "";
  position: absolute;
  width: 750px;
  height: 750px;
  top: 20%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transform: translateX(-50%);
}

.platform-section .section-heading {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.system-orbit {
  position: relative;
  z-index: 2;
  min-height: 620px;
  margin: 100px 0 80px;
}

.orbit-lines {
  position: absolute;
  width: min(570px, 50vw);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(95, 225, 219, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-lines::before,
.orbit-lines::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-lines::before {
  inset: 13%;
  animation: spin 24s linear infinite;
}

.orbit-lines::after {
  inset: -10%;
  animation: spin 31s linear infinite reverse;
}

.system-card {
  position: absolute;
  z-index: 3;
  width: min(330px, 27vw);
  min-height: 220px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  transition: transform 250ms ease, background 250ms ease;
  will-change: translate, transform;
}

.system-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-5px);
}

.system-card > span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-card h3 {
  margin: 36px 0 12px;
  font-size: 38px;
  font-weight: 500;
}

.system-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.6;
}

.card-gary {
  top: 0;
  left: 0;
  translate: var(--depth-x-small, 0) var(--depth-y-small, 0);
}

.card-orchestra {
  top: 3%;
  right: 0;
  translate: var(--depth-x-reverse, 0) var(--depth-y-reverse, 0);
}

.card-raya {
  right: 13%;
  bottom: 0;
  translate: var(--depth-x, 0) var(--depth-y, 0);
}

.system-core {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 46%;
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--ink);
  background: var(--cyan);
  border: 12px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(95, 225, 219, 0.25);
  transform: translate(-50%, -50%);
  translate: var(--depth-x-reverse, 0) var(--depth-y-reverse, 0);
  transition: translate 320ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 320ms ease;
  will-change: translate;
}

.system-orbit:hover .system-core {
  box-shadow: 0 0 110px rgba(95, 225, 219, 0.38);
}

.system-core img {
  width: 42px;
}

.system-core span {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.roadmap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 50px 90px;
  padding: 45px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.roadmap:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(95, 225, 219, 0.22);
  transform: translateY(-4px);
}

.roadmap h3 {
  margin: 12px 0 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.roadmap > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.7;
}

.roadmap-tags {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.roadmap-tags span {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.roadmap-tags span.active {
  color: var(--ink);
  background: var(--cyan);
}

.roadmap-tags i {
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deployment-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
  padding: 160px 0;
}

.deployment-section::before {
  background:
    radial-gradient(ellipse 45% 65% at 12% 45%, rgba(59, 108, 255, 0.08), transparent 72%),
    radial-gradient(ellipse 38% 50% at 92% 58%, rgba(95, 225, 219, 0.075), transparent 70%),
    linear-gradient(to bottom, rgba(244, 245, 240, 0), rgba(238, 243, 243, 0.63) 52%, rgba(244, 245, 240, 0));
}

.deployment-image {
  position: relative;
  width: min(480px, 38vw);
  aspect-ratio: 9 / 13;
  justify-self: center;
  padding: 9px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
  transition: translate 300ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 300ms ease;
}

.deployment-image:hover {
  translate: 0 -7px;
  box-shadow: 0 42px 105px rgba(4, 17, 48, 0.2);
}

.deployment-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.image-location {
  position: absolute;
  top: 26px;
  right: 26px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.image-play {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.image-play span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 8px;
}

.deployment-copy h2 {
  margin-bottom: 30px;
}

.deployment-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 52px 0 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.deployment-status > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
}

.deployment-status > div + div {
  border-left: 1px solid var(--line);
}

.deployment-status small,
.deployment-status strong {
  display: block;
}

.deployment-status small {
  color: #7f899a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deployment-status strong {
  margin-top: 2px;
  font-size: 15px;
}

.status-pulse,
.status-outline {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.status-pulse {
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(95, 225, 219, 0.13);
  animation: statusPulse 2.2s ease-in-out infinite;
}

.status-outline {
  border: 2px dashed var(--blue);
  animation: spin 8s linear infinite;
}

.deployment-details {
  margin: 0;
}

.deployment-details > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.deployment-details dt {
  color: #8490a2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deployment-details dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.principles-section {
  position: relative;
  isolation: isolate;
  padding: 60px 0 150px;
}

.principles-section::before {
  background: radial-gradient(ellipse 52% 38% at 7% 78%, rgba(172, 167, 255, 0.08), transparent 74%);
}

.principles-section .section-heading {
  max-width: 950px;
  margin-bottom: 100px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(70px, 11vw, 170px);
}

.mission-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.mission-copy > p {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.mission-mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-top: 45px;
  background: var(--ink);
  border-radius: 50%;
}

.mission-mark img {
  width: 46px;
}

.principle-list article {
  display: grid;
  grid-template-columns: 42px 1fr 1.15fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  transition: padding 280ms ease, background 280ms ease;
}

.principle-list article:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(95, 225, 219, 0.1), rgba(255, 255, 255, 0));
}

.principle-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-list article > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.principle-list h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.principle-list p {
  margin: 0;
  color: #687389;
  font-size: 12px;
  line-height: 1.6;
}

.about-band {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 70px;
  align-items: end;
  margin-top: 120px;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(95, 225, 219, 0.13), transparent 30%),
    linear-gradient(120deg, var(--ink), #102653);
  border-radius: 30px;
}

.about-band > div:first-child p {
  max-width: 730px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.7;
}

.leader-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
}

.leader-monogram {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.leader-card strong,
.leader-card div > span {
  display: block;
}

.leader-card strong {
  font-size: 14px;
}

.leader-card div > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.faq-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(60px, 10vw, 160px);
  padding: 140px 0;
  border-top: 1px solid var(--line);
}

.faq-section::before {
  background: linear-gradient(to bottom, rgba(244, 245, 240, 0), rgba(238, 243, 243, 0.42) 58%, rgba(244, 245, 240, 0));
}

.faq-title h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 27px 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 16px;
  transition: transform 220ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 670px;
  margin: -5px 50px 28px 0;
  color: #667289;
  font-size: 13px;
  line-height: 1.7;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 0.72fr;
  gap: clamp(70px, 11vw, 170px);
  padding: 140px max(40px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 88% 82%, rgba(95, 225, 219, 0.09), transparent 34%),
    linear-gradient(140deg, #071536 0%, var(--ink) 52%, #102653 100%);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 740px;
  height: 740px;
  top: -50%;
  left: -15%;
  background: radial-gradient(circle, rgba(59, 108, 255, 0.27), transparent 68%);
  border-radius: 50%;
}

.contact-noise {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  margin-bottom: 32px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 15px;
  font-weight: 700;
}

.contact-email span {
  color: var(--cyan);
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: #5c687e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d5dae2;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-form select {
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--blue);
}

.contact-form .button {
  margin-top: 8px;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: #8a93a3;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.form-status:not(:empty) {
  color: #0c7d73;
  font-weight: 700;
}

.site-footer {
  padding: 50px max(40px, calc((100vw - 1280px) / 2)) 28px;
  color: var(--white);
  background: #05112f;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 45px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  width: 215px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
}

.back-top {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom a {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.65);
}

.film-modal {
  width: min(1100px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  color: var(--white);
  background: #061330;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.film-modal::backdrop {
  background: rgba(2, 9, 25, 0.78);
  backdrop-filter: blur(9px);
}

.film-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 45px;
  align-items: center;
  padding: 50px;
}

.film-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.film-copy h2 {
  margin: 15px 0 22px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.film-copy p {
  color: rgba(255, 255, 255, 0.53);
  font-size: 13px;
  line-height: 1.7;
}

.film-video-wrap {
  display: flex;
  justify-content: center;
}

.film-video-wrap video {
  width: min(430px, 42vw);
  max-height: calc(100vh - 100px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

[data-depth-scene] {
  --depth-x: 0px;
  --depth-y: 0px;
  --depth-x-small: 0px;
  --depth-y-small: 0px;
  --depth-x-reverse: 0px;
  --depth-y-reverse: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  perspective: 1200px;
}

.reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 34px, 0) scale(0.988);
  transition: opacity 780ms cubic-bezier(0.16, 1, 0.3, 1), filter 780ms cubic-bezier(0.16, 1, 0.3, 1), transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes statusPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.72; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(18px, -14px, 0) rotate(5deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.93); opacity: 0.65; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes spatialOrbit {
  to { transform: rotateX(68deg) rotateZ(372deg); }
}

@keyframes spatialOrbitReverse {
  to { transform: rotateY(64deg) rotateZ(-378deg); }
}

@keyframes meshShift {
  0% { background-position: 0% 0%, 100% 100%; }
  100% { background-position: 12% -5%, 88% 108%; }
}

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

@keyframes routeMove {
  0%, 10% { left: 9%; }
  45%, 55% { left: 43%; }
  90%, 100% { left: 77%; }
}

@keyframes scrollLine {
  0% { transform: translateY(-14px); }
  100% { transform: translateY(32px); }
}

@keyframes signal {
  from { width: 20%; }
  to { width: 100%; }
}

@keyframes scan {
  0%, 100% { top: 16%; opacity: 0; }
  15% { opacity: 1; }
  75% { opacity: 1; }
  90% { top: 84%; opacity: 0; }
}

@keyframes routeDash {
  to { stroke-dashoffset: -120; }
}

@keyframes mapBot {
  0%, 100% { transform: translate(-16px, 12px); }
  50% { transform: translate(18px, -16px); }
}

@media (max-width: 1180px) {
  :root {
    --content: min(1100px, calc(100vw - 60px));
  }

  .site-header {
    grid-template-columns: 220px 1fr 220px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .brand {
    width: 184px;
  }

  .site-nav {
    gap: 19px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    padding-right: 50px;
    padding-left: 50px;
  }

  .video-shell {
    width: min(370px, 32vw);
  }

  .floating-card-route {
    right: -8%;
  }

  .floating-card-status {
    left: -8%;
  }

  .gary-section {
    padding-right: 50px;
    padding-left: 50px;
  }

  .orchestra-section {
    grid-template-columns: 0.8fr 1fr;
  }

  .dashboard {
    min-height: 550px;
  }

  .dash-panels {
    grid-template-columns: 1fr;
  }

  .dash-tasks {
    display: none;
  }
}

@media (max-width: 960px) {
  :root {
    --content: calc(100vw - 44px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 12px 22px;
    backdrop-filter: none;
  }

  .scroll-progress {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    z-index: 3;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    color: var(--white);
    background: rgba(8, 24, 63, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    color: var(--white);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
  }

  .site-nav a::after {
    background: var(--cyan);
  }

  .menu-toggle[aria-expanded="true"] > span:not(.sr-only) {
    background: var(--white);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 90px 30px 120px;
  }

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

  .hero-media {
    min-height: 710px;
  }

  .video-shell {
    width: 370px;
  }

  .media-halo {
    width: 610px;
  }

  .floating-card-route {
    right: 9%;
  }

  .floating-card-status {
    left: 9%;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 30px;
  }

  .trust-items {
    width: 100%;
    justify-content: space-between;
  }

  .section-intro,
  .workflow-wrap,
  .orchestra-section,
  .deployment-section,
  .mission-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 55px;
    padding: 110px 0 90px;
  }

  .section-lead {
    max-width: 650px;
  }

  .workflow-wrap {
    gap: 40px;
    margin-bottom: 110px;
  }

  .workflow-sticky,
  .mission-copy {
    position: relative;
    top: auto;
  }

  .gary-section {
    min-height: auto;
    grid-template-columns: 0.8fr 1fr;
    gap: 60px;
    padding: 110px 30px;
  }

  .portrait-frame {
    width: min(390px, 40vw);
  }

  .tag-top {
    right: -30px;
  }

  .tag-bottom {
    left: -30px;
  }

  .orchestra-section,
  .deployment-section {
    gap: 90px;
    padding: 120px 0;
  }

  .orchestra-copy {
    max-width: 730px;
  }

  .dashboard {
    min-height: 630px;
    transform: none;
  }

  .dash-panels {
    grid-template-columns: minmax(0, 1.45fr) minmax(155px, 0.62fr);
  }

  .dash-tasks {
    display: block;
  }

  .system-orbit {
    min-height: 760px;
  }

  .system-card {
    width: min(340px, 40vw);
  }

  .card-raya {
    right: 3%;
  }

  .deployment-image {
    width: min(500px, 65vw);
  }

  .deployment-copy {
    max-width: 700px;
  }

  .mission-grid {
    gap: 80px;
  }

  .mission-copy {
    max-width: 780px;
  }

  .faq-section {
    gap: 70px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 110px 30px;
  }

  .contact-copy,
  .contact-form {
    max-width: 740px;
  }

  .footer-top {
    grid-template-columns: 230px 1fr;
  }

  .back-top {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --content: calc(100vw - 32px);
  }

  .site-notice {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
    font-size: 8px;
  }

  .notice-divider {
    display: none;
  }

  .site-notice span:last-child {
    display: none;
  }

  .brand {
    width: 170px;
  }

  .ambient-field {
    display: none;
  }

  .hero {
    padding: 72px 18px 100px;
  }

  h1 {
    font-size: clamp(46px, 13.2vw, 62px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-proof div,
  .hero-proof div + div {
    padding: 0;
    border: 0;
  }

  .hero-media {
    min-height: 650px;
  }

  .video-shell {
    width: min(340px, 82vw);
    border-width: 6px;
    border-radius: 36px;
  }

  .media-halo {
    width: 130vw;
  }

  .floating-card-route {
    top: 13%;
    right: -1%;
    width: 195px;
  }

  .floating-card-status {
    bottom: 12%;
    left: 0;
    min-width: 175px;
  }

  .hero-scroll {
    left: 20px;
  }

  .trust-strip {
    padding: 32px 20px;
  }

  .trust-items {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .trust-items b {
    display: none;
  }

  .section-heading h2,
  .gary-copy h2,
  .orchestra-copy h2,
  .platform-section h2,
  .deployment-copy h2,
  .faq-title h2,
  .contact-copy h2 {
    font-size: clamp(43px, 14vw, 61px);
  }

  .section-intro {
    padding: 90px 0 70px;
  }

  .workflow-sticky {
    padding: 28px;
    border-radius: 25px;
  }

  .section-index {
    margin-bottom: 40px;
  }

  .workflow-step {
    grid-template-columns: 26px 58px 1fr;
    gap: 13px;
  }

  .step-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .step-icon svg {
    width: 30px;
  }

  .workflow-step h4 {
    font-size: 22px;
  }

  .gary-section {
    grid-template-columns: 1fr;
    padding: 90px 18px;
  }

  .gary-visual {
    margin: 30px 0 45px;
  }

  .portrait-frame {
    width: min(370px, 82vw);
  }

  .tag-top {
    right: -10px;
  }

  .tag-bottom {
    left: -10px;
  }

  .feature-list li {
    grid-template-columns: 30px 1fr;
  }

  .orchestra-section,
  .deployment-section {
    padding: 90px 0;
  }

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

  .dashboard {
    min-height: 490px;
    grid-template-columns: 42px 1fr;
    border-width: 6px;
    border-radius: 20px;
  }

  .dash-sidebar {
    gap: 18px;
  }

  .dash-sidebar img {
    width: 24px;
  }

  .dash-main {
    padding: 14px;
  }

  .dash-stats {
    grid-template-columns: 1fr 1fr;
  }

  .dash-stats > div:last-child {
    display: none;
  }

  .dash-panels {
    grid-template-columns: 1fr;
  }

  .dash-tasks {
    display: none;
  }

  .dash-map {
    min-height: 325px;
  }

  .platform-section {
    padding: 100px 18px;
  }

  .platform-section::before {
    display: none;
  }

  .system-orbit {
    min-height: auto;
    display: grid;
    gap: 14px;
    margin: 70px 0;
  }

  .orbit-lines,
  .system-core {
    display: none;
  }

  .system-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 190px;
  }

  .roadmap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }

  .roadmap-tags {
    grid-template-columns: 1fr;
  }

  .deployment-image {
    width: min(440px, 85vw);
  }

  .deployment-status {
    grid-template-columns: 1fr;
  }

  .deployment-status > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles-section {
    padding-bottom: 100px;
  }

  .principles-section .section-heading {
    margin-bottom: 70px;
  }

  .mission-grid {
    gap: 65px;
  }

  .principle-list article {
    grid-template-columns: 28px 1fr;
  }

  .principle-list p {
    grid-column: 2;
  }

  .about-band {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 80px;
    padding: 28px;
  }

  .faq-section {
    padding: 100px 0;
  }

  .accordion summary {
    font-size: 16px;
  }

  .contact-section {
    padding: 90px 18px;
  }

  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .contact-email {
    font-size: 13px;
  }

  .contact-form {
    padding: 25px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .back-top {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom a {
    margin-left: 0;
  }

  .film-inner {
    grid-template-columns: 1fr;
    padding: 64px 24px 30px;
  }

  .film-copy {
    max-width: 520px;
  }

  .film-video-wrap video {
    width: min(390px, 82vw);
    max-height: none;
  }
}

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

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

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

  .ambient-field,
  .scroll-progress {
    display: none;
  }

  [data-depth-scene] {
    --depth-x: 0px !important;
    --depth-y: 0px !important;
    --depth-x-small: 0px !important;
    --depth-y-small: 0px !important;
    --depth-x-reverse: 0px !important;
    --depth-y-reverse: 0px !important;
    --tilt-x: 0deg !important;
    --tilt-y: 0deg !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .ambient-field {
    display: none;
  }
}
