:root {
  --ink: #f7f8fb;
  --muted: #a5adbd;
  --blue: #4b7cff;
  --cyan: #56e8ff;
  --violet: #9a67ff;
  --surface: #0a0e18;
  --line: rgba(255,255,255,.12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: #05070d;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 80% 5%, rgba(60,94,255,.14), transparent 30%),
    linear-gradient(#05070d, #070a11 40%, #05070d);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:where(video, iframe, svg, canvas) { max-width: 100%; }
:where(p, li, dt, dd, figcaption, blockquote, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
button, input, select { font: inherit; }
.noise {
  position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 99; padding: 12px; background: white; color: black; }
.skip-link:focus { top: 16px; }
.site-header {
  position: fixed; z-index: 15; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px)); height: 66px; padding: 0 14px 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px;
  background: rgba(6,8,14,.72); backdrop-filter: blur(24px); box-shadow: 0 12px 40px rgba(0,0,0,.25);
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { background: rgba(6,8,14,.9); }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 24px; font-weight: 800; letter-spacing: -.06em; }
.brand-mark {
  width: 32px; height: 32px; flex: 0 0 auto; object-fit: cover;
  border-radius: 7px; background: #000;
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 5px 14px rgba(0,0,0,.34);
}
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; color: #bdc4d0; }
.desktop-nav a:hover, .text-link:hover { color: white; }
.nav-dropdown { position: relative; display: flex; align-items: center; min-height: 66px; }
.nav-dropdown-trigger::after { content: "⌄"; margin-left: 6px; color: var(--cyan); font-size: 11px; }
.nav-dropdown::after {
  content: ""; position: absolute; left: -20px; right: -20px; top: 100%; height: 14px;
}
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 6px); left: 50%; width: min(760px, calc(100vw - 40px));
  padding: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  border: 1px solid rgba(255,255,255,.13); border-radius: 18px;
  background: rgba(7,10,18,.98); box-shadow: 0 28px 70px rgba(0,0,0,.48); backdrop-filter: blur(24px);
  opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav-dropdown-group { display: grid; align-content: start; gap: 9px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.035); }
.nav-dropdown-group strong { color: var(--cyan); font: 10px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .12em; }
.nav-dropdown-group a { color: #d8deea; font-weight: 650; line-height: 1.35; }
.nav-dropdown-group a:hover, .nav-dropdown-group a:focus-visible { color: white; }
.nav-actions { display: flex; align-items: center; gap: 16px; font-size: 13px; }
.menu-toggle, .mobile-nav { display: none; }
.menu-toggle {
  width: 44px; height: 44px; padding: 0; place-content: center; gap: 5px;
  color: white; border: 1px solid rgba(255,255,255,.16); border-radius: 10px;
  background: rgba(255,255,255,.045); cursor: pointer;
}
.menu-toggle span {
  display: block; width: 19px; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: absolute; top: calc(100% + 10px); right: 0; left: 0; padding: 10px;
  max-height: calc(100svh - 100px); overflow-y: auto;
  border: 1px solid rgba(255,255,255,.13); border-radius: 16px;
  background: #070a12; backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0,0,0,.48);
}
.mobile-nav a {
  min-height: 48px; padding: 0 14px; display: flex; align-items: center;
  border-radius: 10px; color: #dfe3ec; font-size: 14px; font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus-visible { background: rgba(255,255,255,.07); color: white; }
.mobile-nav .nav-dropdown { display: grid; gap: 10px; min-height: auto; padding: 8px 0; }
.mobile-nav .nav-dropdown-trigger::after { content: ""; }
.mobile-nav .nav-dropdown::after { display: none; }
.mobile-nav .nav-dropdown-panel {
  position: static; width: auto; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px;
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
  border: 0; box-shadow: none; background: transparent;
}
.mobile-nav .nav-dropdown-group { padding: 10px; }
.mobile-nav .nav-dropdown-group a { min-height: 38px; padding: 0 10px; font-size: 13px; }
.button {
  min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  color: white; font-weight: 700; border: 1px solid rgba(255,255,255,.16); border-radius: 12px;
  background: linear-gradient(135deg, #315cff, #773dff); box-shadow: 0 14px 40px rgba(56,70,255,.24);
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(72,79,255,.38); }
.button-small { min-height: 40px; padding: 0 17px; border-radius: 10px; }
.button-ghost { background: rgba(255,255,255,.045); box-shadow: none; color: #dfe3ec; }
.button-ghost:hover { background: rgba(255,255,255,.09); box-shadow: none; }
.button-text { min-height: 52px; padding-inline: 8px; border-color: transparent; background: transparent; box-shadow: none; color: #dbe7ff; }
.button-text:hover { background: transparent; box-shadow: none; color: white; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.hero {
  position: relative; min-height: min(100svh, 930px); padding: 130px max(5vw, 24px) 58px;
  display: grid; grid-template-columns: minmax(520px, .92fr) minmax(390px, 1fr); align-items: center; gap: clamp(28px, 4vw, 60px);
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, #05070d 4%, rgba(5,7,13,.96) 32%, rgba(5,7,13,.16) 72%, #05070d 100%);
}
.hero-glow { position: absolute; width: 38vw; height: 38vw; right: 12%; top: 22%; border-radius: 50%; background: rgba(67,75,255,.17); filter: blur(100px); z-index: -1; }
.hero-copy { max-width: 760px; z-index: 2; }
.eyebrow {
  margin: 0 0 24px; color: #9ca8bd; font-family: "DM Mono", monospace; text-transform: uppercase;
  letter-spacing: .13em; font-size: 11px; font-weight: 500;
}
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #51f3ad; box-shadow: 0 0 12px #51f3ad; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 26px; font-size: clamp(58px, 6.3vw, 104px); line-height: .9; letter-spacing: -.065em; font-weight: 700; }
h1 span, h2 span { color: #dce4f4; -webkit-text-stroke: 0; }
.hero-copy h1 span { white-space: nowrap; }
.hero-lede { max-width: 610px; color: #b8bfcc; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-action-note { max-width: 570px; margin: 16px 0 0; color: #838da0; font-size: 13px; line-height: 1.6; }
.hero-setup-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.hero-setup-strip span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px 0 28px;
  border: 1px solid rgba(121,158,255,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: #aeb8c9;
  font-size: 12px;
  font-weight: 700;
}
.hero-setup-strip span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(86,232,255,.55);
}
.play-icon { font-size: 10px; }
.hero-proof { display: flex; gap: 36px; margin-top: 48px; }
.hero-proof div { display: grid; gap: 4px; }
.hero-proof strong { font-size: 19px; letter-spacing: -.04em; }
.hero-proof span { color: #747e91; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.hero-use-cues { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-use-cues a { display: inline-flex; align-items: center; min-height: 36px; padding: 0 14px; border: 1px solid rgba(121,158,255,.24); border-radius: 999px; background: rgba(255,255,255,.045); color: #dbe7ff; font-size: 13px; font-weight: 700; }
.hero-use-cues a:hover { border-color: rgba(86,232,255,.55); background: rgba(86,232,255,.08); }
.hero-visual { position: relative; width: min(58vw, 820px); margin-left: 4vw; z-index: 0; }
.hero-media-visual { width: min(52vw, 780px); margin-left: 0; justify-self: end; }
.hero-visual img { width: 100%; filter: saturate(.95) contrast(1.05); mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 82%, transparent 100%); }
.hero-proof-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(12px, 1.5vw, 18px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 74% 18%, rgba(86,232,255,.18), transparent 24%),
    radial-gradient(circle at 18% 84%, rgba(154,103,255,.2), transparent 30%),
    linear-gradient(145deg, rgba(12,18,32,.96), rgba(3,6,12,.98));
  box-shadow: 0 50px 120px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-proof-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.11), transparent 28%, transparent 68%, rgba(86,232,255,.08));
}
.hero-video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(173,210,255,.18);
  border-radius: 20px;
  background: #070b14;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.video-status-bar {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(5,8,15,.72);
  backdrop-filter: blur(14px);
  color: #dbe7ff;
  font-size: 12px;
}
.video-status-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.video-status-bar i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #51f3ad;
  box-shadow: 0 0 14px rgba(81,243,173,.8);
}
.video-status-bar strong {
  color: #9ca8bd;
  font: 700 10px "DM Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-proof-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.hero-proof-flow div {
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
.hero-proof-flow span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font: 700 10px "DM Mono", monospace;
  letter-spacing: .14em;
}
.hero-proof-flow strong {
  display: block;
  color: #f4f7ff;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.22;
}
.hero-proof-flow small {
  display: block;
  margin-top: 8px;
  color: #9aa5b6;
  font-size: 12px;
  line-height: 1.45;
}
.hero-proof-panel,
.lola-product-visual,
.product-flow-panel,
.workflow-proof-board,
.connection-demo {
  --ink: #f8f6ff;
  --muted: #b8c2d3;
  --cyan: #8cecff;
  --violet: #cbbcff;
  color: var(--ink);
  color-scheme: dark;
}
.lola-product-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 22%, rgba(86,232,255,.18), transparent 24%),
    radial-gradient(circle at 16% 78%, rgba(78,93,255,.2), transparent 28%),
    linear-gradient(145deg, rgba(15,22,38,.96), rgba(3,6,12,.98));
  box-shadow: 0 50px 120px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
}
.visual-grid {
  position: absolute; inset: 0; opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 48%, #000, transparent 76%);
}
.visual-path {
  position: absolute; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(86,232,255,.95), rgba(154,103,255,.85), transparent);
  box-shadow: 0 0 22px rgba(86,232,255,.45);
}
.visual-path-one, .path-one { left: 17%; right: 14%; top: 47%; transform: rotate(-12deg); }
.visual-path-two, .path-two { left: 22%; right: 17%; top: 57%; transform: rotate(12deg); opacity: .58; }
.lola-product-visual-map .visual-grid,
.lola-product-visual-map .visual-path { display: none; }
.host-node, .client-device, .visual-chip, .cloud-spec, .workflow-map-node, .compare-lane, .compare-device {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,12,23,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 54px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.host-node {
  left: 9%; top: 30%; width: 240px; min-height: 178px; padding: 24px;
  display: grid; align-content: center; gap: 8px; border-radius: 26px;
}
.host-node span, .cloud-spec span, .workflow-map-node span, .compare-lane span, .workflow-host span, .workflow-client span, .workflow-proof-step span {
  color: var(--cyan); font: 700 10px "DM Mono", monospace; letter-spacing: .15em; text-transform: uppercase;
}
.host-node strong { font-size: 34px; letter-spacing: -.055em; }
.host-node small, .cloud-spec strong, .compare-lane small, .workflow-host small, .workflow-client small { color: var(--muted); line-height: 1.45; }
.node-icon, .solution-icon, .path-card svg, .mini-icon {
  width: 34px; height: 34px; fill: none; stroke: var(--cyan); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 12px rgba(86,232,255,.22));
}
.node-icon { margin-bottom: 4px; }
.mini-icon { width: 24px; height: 24px; }
.client-device { right: 9%; top: 25%; width: 300px; padding: 18px; border-radius: 24px; }
.device-ipad { top: 18%; }
.device-mac { bottom: 17%; }
.client-device > span, .compare-device span { color: #e8f4ff; font-size: 13px; font-weight: 800; }
.device-screen {
  position: relative; height: 126px; margin-top: 14px; overflow: hidden; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.13);
  background: radial-gradient(circle at 28% 42%, rgba(86,232,255,.28), transparent 22%), linear-gradient(135deg, #111b34, #04070e);
}
.device-screen i { position: absolute; display: block; height: 8px; border-radius: 999px; background: rgba(255,255,255,.38); }
.device-screen i:nth-child(1) { left: 18px; top: 22px; width: 44px; background: var(--cyan); }
.device-screen i:nth-child(2) { left: 18px; top: 52px; width: 150px; }
.device-screen i:nth-child(3) { left: 18px; bottom: 25px; width: 92px; background: rgba(154,103,255,.65); }
.device-screen-cad { background: linear-gradient(135deg, #07101d, #11172a); }
.device-screen-cad::before {
  content: ""; position: absolute; inset: 28px 42px; border: 1px solid rgba(86,232,255,.7);
  transform: skew(-18deg) rotate(-8deg); box-shadow: 26px 22px 0 rgba(154,103,255,.18);
}
.visual-chip {
  min-width: 78px; min-height: 34px; display: grid; place-items: center; padding: 0 14px;
  border-radius: 999px; color: #dce8ff; font-size: 12px; font-weight: 800;
}
.chip-game { left: 45%; top: 24%; }
.chip-cad { left: 39%; bottom: 24%; }
.chip-edit { right: 34%; bottom: 36%; }
.chip-a { left: 48%; top: 18%; }
.chip-b { left: 43%; bottom: 24%; }
.chip-c { right: 35%; bottom: 32%; }
.cloud-stack { position: absolute; inset: 13% 9% auto auto; width: 300px; height: 235px; }
.cloud-stack i {
  position: absolute; inset-inline: 0; height: 70px; border: 1px solid rgba(86,232,255,.25); border-radius: 18px;
  background: linear-gradient(135deg, rgba(86,232,255,.16), rgba(154,103,255,.08));
}
.cloud-stack i:nth-child(1) { top: 0; }
.cloud-stack i:nth-child(2) { top: 82px; transform: translateX(-28px); }
.cloud-stack i:nth-child(3) { top: 164px; transform: translateX(-56px); }
.cloud-node { left: 10%; top: 22%; }
.cloud-spec { right: 12%; min-width: 230px; padding: 18px; border-radius: 18px; display: grid; grid-template-columns: auto 1fr; gap: 5px 12px; align-items: center; }
.cloud-spec span, .cloud-spec strong { grid-column: 2; }
.cloud-spec .mini-icon { grid-row: 1 / span 2; }
.spec-one { top: 47%; }.spec-two { top: 60%; }.spec-three { top: 73%; }
.workflow-map-node { display: grid; gap: 8px; min-width: 158px; padding: 20px; border-radius: 20px; }
.workflow-map-node strong, .compare-lane strong { font-size: 20px; letter-spacing: -.04em; }
.node-main { left: 38%; top: 38%; min-width: 220px; min-height: 132px; border-color: rgba(86,232,255,.36); }
.node-a { left: 10%; top: 20%; }.node-b { right: 12%; top: 20%; }.node-c { left: 12%; bottom: 18%; }.node-d { right: 10%; bottom: 18%; }
.product-flow-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 18%, rgba(86,232,255,.16), transparent 26%),
    radial-gradient(circle at 15% 90%, rgba(78,93,255,.2), transparent 30%),
    linear-gradient(145deg, rgba(15,22,38,.96), rgba(3,6,12,.98));
  box-shadow: 0 50px 120px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
}
.product-flow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 46%, #000, transparent 80%);
}
.product-flow-panel > * { position: relative; z-index: 1; }
.product-panel-header {
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.product-panel-header span,
.machine-preview span,
.route-preview-list span,
.rollout-card span {
  color: var(--cyan);
  font: 700 10px "DM Mono", monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.product-panel-header strong {
  color: #f4f7ff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.machine-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .74fr);
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(86,232,255,.24);
  border-radius: 24px;
  background: rgba(7,12,23,.72);
  backdrop-filter: blur(16px);
}
.machine-preview > div { display: grid; align-content: center; gap: 10px; }
.machine-preview strong {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.055em;
}
.machine-preview small,
.route-preview-list small,
.rollout-card small,
.rollout-status small {
  color: #9aa5b6;
  line-height: 1.45;
}
.machine-preview ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.machine-preview li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}
.machine-preview li strong {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.route-preview-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.route-preview-list div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.route-preview-list div.is-active {
  border-color: rgba(86,232,255,.36);
  background: rgba(86,232,255,.08);
}
.route-preview-list strong {
  color: #f5f8ff;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.rollout-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.rollout-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(7,12,23,.72);
  backdrop-filter: blur(16px);
}
.rollout-card strong {
  color: #f5f8ff;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.rollout-primary {
  grid-column: 1 / -1;
  min-height: 132px;
  border-color: rgba(86,232,255,.34);
  background: linear-gradient(145deg, rgba(86,232,255,.1), rgba(154,103,255,.08));
}
.rollout-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(8,12,22,.72);
}
.rollout-status strong {
  color: #f5f8ff;
  font-size: 16px;
  line-height: 1.2;
}
.compare-lane { width: 280px; min-height: 150px; padding: 24px; border-radius: 24px; display: grid; gap: 8px; align-content: center; }
.lane-primary { left: 12%; top: 25%; border-color: rgba(86,232,255,.34); }
.lane-secondary { right: 12%; top: 25%; }
.compare-device { left: 50%; bottom: 18%; transform: translateX(-50%); min-width: 240px; min-height: 76px; display: grid; place-items: center; border-radius: 18px; }
.workflow-proof-board {
  position: relative; min-height: 430px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 28px;
  background: radial-gradient(circle at 72% 22%, rgba(86,232,255,.16), transparent 28%), linear-gradient(145deg, #0c1221, #04070e);
  box-shadow: 0 34px 90px rgba(0,0,0,.42), 0 0 56px rgba(86,232,255,.08);
}
.workflow-proof-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 44px 44px; }
.workflow-host, .workflow-client { position: absolute; display: grid; gap: 7px; padding: 20px 22px 20px 76px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(5,9,18,.74); backdrop-filter: blur(14px); }
.workflow-host { left: 8%; top: 16%; width: 250px; }
.workflow-client { right: 8%; top: 16%; width: 250px; }
.workflow-host strong, .workflow-client strong { font-size: 24px; letter-spacing: -.045em; }
.workflow-glyph, .workflow-device-glyph { position: absolute; left: 18px; top: 50%; width: 42px; height: 42px; transform: translateY(-50%); display: grid; place-items: center; border: 1px solid rgba(86,232,255,.3); border-radius: 12px; color: var(--cyan); background: rgba(86,232,255,.08); }
.workflow-glyph svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.workflow-device-glyph { border-color: rgba(203,188,255,.34); color: #cbbcff; background: rgba(163,118,255,.1); }
.workflow-device-glyph::before { content: ""; width: 24px; height: 18px; border: 2px solid currentColor; border-radius: 3px; }
.workflow-device-glyph::after { content: ""; position: absolute; bottom: 8px; width: 14px; height: 2px; border-radius: 2px; background: currentColor; }
.workflow-architecture { background: radial-gradient(circle at 72% 22%, rgba(86,232,255,.18), transparent 28%), linear-gradient(145deg, #0b1721, #04070e); }
.workflow-animation { background: radial-gradient(circle at 72% 22%, rgba(179,112,255,.2), transparent 30%), linear-gradient(145deg, #171126, #05070e); }
.workflow-vfx { background: radial-gradient(circle at 72% 22%, rgba(255,80,153,.17), transparent 30%), linear-gradient(145deg, #190d1b, #05070e); }
.workflow-production { background: radial-gradient(circle at 72% 22%, rgba(255,178,74,.16), transparent 30%), linear-gradient(145deg, #19140d, #05070e); }
.workflow-game { background: radial-gradient(circle at 72% 22%, rgba(65,237,153,.16), transparent 30%), linear-gradient(145deg, #091a18, #04070e); }
.workflow-signal { position: absolute; left: 26%; right: 26%; top: 50%; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent); box-shadow: 0 0 24px rgba(86,232,255,.55); transform: rotate(-10deg); }
.workflow-proof-steps { position: absolute; left: 8%; right: 8%; bottom: 7%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.workflow-proof-step { display: grid; gap: 8px; min-height: 92px; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.045); }
.workflow-proof-step strong { color: #f8f6ff; font-size: 14px; line-height: 1.35; }
.workflow-proof-step span { color: #cbbcff; }
.glass-card {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 13px 16px; z-index: 3;
  background: rgba(8,12,22,.64); border: 1px solid rgba(255,255,255,.15); border-radius: 13px; backdrop-filter: blur(15px);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.latency-card { left: 39%; bottom: 18%; }
.glass-card div { display: grid; gap: 2px; }
.glass-card strong { font-size: 14px; }
.glass-card small, .glass-card span { color: #8f99aa; font-size: 10px; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #51f3ad; box-shadow: 0 0 0 7px rgba(81,243,173,.1), 0 0 14px rgba(81,243,173,.8); }
.device-card { right: 19%; top: 22%; display: grid; gap: 2px; }
.connection-demo {
  min-height: 520px;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(92px, .34fr) minmax(180px, 1fr);
  grid-template-rows: 1fr auto;
  gap: 22px;
  align-items: center;
}
.connection-demo .visual-grid { opacity: .14; }
.demo-device { position: relative; z-index: 1; display: grid; gap: 14px; min-width: 0; }
.demo-label { display: grid; gap: 5px; }
.demo-label span,
.panel-kicker,
.mini-host span,
.mini-client span,
.hardware-choice span {
  color: var(--cyan);
  font: 700 10px "DM Mono", monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.demo-label strong { font-size: clamp(16px, 1.7vw, 22px); line-height: 1.2; letter-spacing: 0; }
.demo-monitor,
.demo-laptop {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(173,210,255,.22);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    radial-gradient(circle at 68% 30%, rgba(86,232,255,.22), transparent 24%),
    linear-gradient(135deg, #111b34, #04070e);
  background-size: 36px 36px, 36px 36px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 28px 60px rgba(0,0,0,.35);
}
.demo-monitor::before,
.demo-laptop::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(255,255,255,.22) 34%, rgba(255,255,255,.12));
}
.demo-laptop { border-radius: 16px 16px 10px 10px; }
.demo-stand {
  width: 88px;
  height: 16px;
  margin: -4px auto 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(90deg, transparent, rgba(200,222,255,.38), transparent);
}
.demo-base {
  height: 14px;
  margin-top: -8px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(90deg, transparent, rgba(210,226,255,.45), transparent);
}
.demo-app {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}
.app-primary { left: 11%; top: 25%; width: 44%; height: 42%; }
.app-secondary { right: 12%; top: 31%; width: 26%; height: 27%; background: rgba(86,232,255,.12); }
.demo-cursor,
.mini-cursor {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 13px solid white;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.55));
}
.host-cursor,
.client-cursor {
  left: 22%;
  top: 62%;
  animation: mirrored-cursor 3.6s cubic-bezier(.65,0,.25,1) infinite;
}
.client-cursor { animation-delay: .08s; }
@keyframes mirrored-cursor {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-24deg); }
  34% { transform: translate3d(72px, -52px, 0) rotate(-24deg); }
  66% { transform: translate3d(130px, -6px, 0) rotate(-24deg); }
}
.demo-link {
  position: relative;
  z-index: 1;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.demo-link span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(86,232,255,.42);
  animation: link-pulse 1.4s ease-in-out infinite;
}
.demo-link span:nth-child(2) { animation-delay: .12s; }
.demo-link span:nth-child(3) { animation-delay: .24s; }
.demo-link span:nth-child(4) { animation-delay: .36s; }
.demo-link span:nth-child(5) { animation-delay: .48s; }
.demo-link i {
  position: absolute;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(86,232,255,.32);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(86,232,255,.16);
}
@keyframes link-pulse {
  50% { transform: translateY(-7px); background: var(--cyan); box-shadow: 0 0 18px rgba(86,232,255,.7); }
}
.demo-caption {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
}
.demo-caption strong { font-size: 13px; }
.demo-caption span { color: var(--muted); font-size: 13px; }
.scroll-cue { position: absolute; bottom: 25px; left: 50%; display: flex; align-items: center; gap: 12px; color: #667186; font: 10px "DM Mono"; text-transform: uppercase; letter-spacing: .1em; }
.scroll-cue i { width: 42px; height: 1px; background: #556072; position: relative; }
.scroll-cue i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; animation: scan 2s ease-in-out infinite; }
@keyframes scan { 50% { transform: translateX(-38px); } }
.logo-strip { padding: 27px max(5vw, 24px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: #626c7d; font: 10px "DM Mono"; text-transform: uppercase; letter-spacing: .12em; }
.logo-cloud { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 34px); flex-wrap: wrap; }
.logo-cloud b, .logo-cloud a { color: #8c94a2; font: 700 13px "Inter", system-ui, sans-serif; text-transform: none; letter-spacing: 0; }
.route-strip .logo-cloud a { min-height: 34px; display: inline-flex; align-items: center; padding: 0 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; background: rgba(255,255,255,.035); color: #cbd5e7; }
.route-strip .logo-cloud a:hover { border-color: rgba(86,232,255,.45); color: white; background: rgba(86,232,255,.08); }
.conversion-router {
  padding: clamp(44px, 5vw, 72px) max(5vw, 24px);
  display: grid;
  grid-template-columns: minmax(280px, .64fr) 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  background: #060913;
}
.conversion-router .eyebrow { margin-bottom: 16px; }
.conversion-router h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: -.056em;
}
.route-decision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.route-decision-card {
  min-height: 210px;
  padding: 25px;
  display: grid;
  align-content: start;
  gap: 13px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.route-decision-card:hover {
  transform: translateY(-4px);
  border-color: rgba(86,232,255,.44);
  background: rgba(86,232,255,.07);
  box-shadow: 0 24px 50px rgba(0,0,0,.24);
}
.route-decision-card span {
  color: var(--cyan);
  font: 700 10px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.route-decision-card strong { color: #fff; font-size: clamp(22px, 2.2vw, 31px); line-height: 1.08; letter-spacing: -.042em; }
.route-decision-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.route-primary {
  border-color: rgba(86,232,255,.34);
  background: linear-gradient(145deg, rgba(49,92,255,.22), rgba(255,255,255,.045));
}

/* Keep the Cloud PC chooser within the professional light journey. */
.lola-mode-professional .conversion-router {
  border-color: rgba(70,52,105,.15);
  background: linear-gradient(135deg, rgba(244,240,255,.96), rgba(255,255,255,.94));
}
.lola-mode-professional .route-decision-card {
  color: #292139;
  border-color: rgba(70,52,105,.16);
  background: rgba(255,255,255,.86);
  box-shadow: 0 20px 55px rgba(67,45,108,.07);
}
.lola-mode-professional .route-decision-card:hover {
  border-color: rgba(108,72,210,.38);
  background: #fff;
  box-shadow: 0 24px 60px rgba(67,45,108,.14);
}
.lola-mode-professional .route-decision-card span { color: #6846ce; }
.lola-mode-professional .route-decision-card strong { color: #292139; }
.lola-mode-professional .route-decision-card p { color: #51495d; }
.lola-mode-professional .route-primary {
  border-color: rgba(108,72,210,.34);
  background: linear-gradient(145deg, rgba(121,87,220,.14), rgba(255,255,255,.94));
}
.proof, .pricing, .faq { padding: clamp(72px, 8vw, 125px) max(5vw, 24px); }
.section-heading { margin-bottom: 54px; }
.section-heading h2, .proof-intro h2, .pricing-copy h2, .final-cta h2 { margin-bottom: 20px; max-width: 880px; font-size: clamp(36px, 4.6vw, 68px); line-height: 1.04; letter-spacing: -.05em; }
.experience-stage { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; }
.sticky-device { position: sticky; top: 130px; align-self: start; perspective: 1200px; }
.screen-shell { padding: 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: linear-gradient(145deg, #222936, #080b11 65%); box-shadow: 0 60px 120px rgba(0,0,0,.55); transform: rotateY(3deg) rotateX(2deg); }
.screen-toolbar { height: 44px; padding: 0 14px; display: flex; align-items: center; gap: 7px; color: #758096; font: 9px "DM Mono"; }
.screen-dot { width: 6px; height: 6px; border-radius: 50%; background: #3a4250; }
.screen-title { margin-left: 10px; }
.screen-live { margin-left: auto; color: #51f3ad; }
.screen-content { position: relative; aspect-ratio: 16/10; display: grid; place-items: center; overflow: hidden; border-radius: 17px; background: radial-gradient(circle at 50% 40%, #162f74, #0a1025 37%, #05070c 75%); }
.screen-content::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 38px 38px; }
.screen-orbit { position: absolute; width: 54%; aspect-ratio: 1; border: 1px solid rgba(85,222,255,.25); border-radius: 50%; }
.orbit-one { animation: orbit 10s linear infinite; }
.orbit-two { width: 74%; border-color: rgba(151,89,255,.2); animation: orbit 16s linear reverse infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.workstation-core { position: relative; z-index: 2; width: 130px; height: 130px; display: grid; place-content: center; text-align: center; border-radius: 32px; background: linear-gradient(145deg, rgba(77,139,255,.4), rgba(77,43,180,.38)); border: 1px solid rgba(129,224,255,.4); box-shadow: 0 0 70px rgba(41,104,255,.35); transform: rotate(45deg); }
.workstation-core span, .workstation-core strong { transform: rotate(-45deg); }
.workstation-core span { color: #8dcfff; font: 10px "DM Mono"; letter-spacing: .18em; }
.workstation-core strong { font-size: 22px; }
.metric { position: absolute; display: grid; gap: 3px; min-width: 100px; padding: 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 11px; background: rgba(3,6,13,.6); backdrop-filter: blur(8px); }
.metric small { color: #778298; font: 9px "DM Mono"; text-transform: uppercase; }
.metric strong { font-size: 14px; }
.metric-a { left: 8%; top: 12%; }.metric-b { right: 7%; top: 18%; }.metric-c { right: 12%; bottom: 10%; }
.scroll-visual { isolation: isolate; background: radial-gradient(circle at 50% 40%, #102450, #081125 48%, #05070c 80%); }
.scroll-panel {
  position: absolute;
  inset: 26px;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(6,10,19,.72);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.scroll-visual[data-state="response"] .panel-response,
.scroll-visual[data-state="hardware"] .panel-hardware,
.scroll-visual[data-state="anywhere"] .panel-anywhere {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.scroll-panel p { margin: 0; max-width: 520px; color: #aab4c6; line-height: 1.65; }
.mini-session {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.mini-host,
.mini-client,
.hardware-choice div,
.device-fan span {
  min-height: 92px;
  padding: 16px;
  display: grid;
  gap: 8px;
  align-content: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}
.mini-host strong,
.mini-client strong,
.hardware-choice strong { font-size: clamp(15px, 1.7vw, 20px); line-height: 1.1; }
.mini-stream { display: flex; justify-content: center; gap: 7px; }
.mini-stream i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: link-pulse 1.3s ease-in-out infinite;
}
.mini-stream i:nth-child(2) { animation-delay: .16s; }
.mini-stream i:nth-child(3) { animation-delay: .32s; }
.mini-cursor { left: 17%; top: 58%; animation: mini-cursor 3s ease-in-out infinite; }
@keyframes mini-cursor {
  0%, 100% { transform: translate3d(0,0,0) rotate(-24deg); }
  50% { transform: translate3d(220px,-34px,0) rotate(-24deg); }
}
.hardware-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hardware-choice div:first-child { border-color: rgba(86,232,255,.36); }
.hardware-choice div:last-child { border-color: rgba(154,103,255,.36); }
.device-fan {
  min-height: 190px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 14px;
}
.device-fan span {
  min-height: 122px;
  text-align: center;
  color: #e8f4ff;
  font-weight: 800;
}
.device-fan span:nth-child(1) { transform: translateY(24px) rotate(-8deg); }
.device-fan span:nth-child(2) { transform: translateY(-8px); border-color: rgba(86,232,255,.34); }
.device-fan span:nth-child(3) { transform: translateY(24px) rotate(8deg); }
.feature-step.is-active { border-color: rgba(86,232,255,.55); }
.feature-step.is-active h3 { color: white; }
.experience-copy { display: grid; gap: 32vh; padding: 6vh 0 24vh; }
.feature-step { border-top: 1px solid var(--line); padding-top: 24px; }
.feature-step > span { color: var(--cyan); font: 11px "DM Mono"; }
.feature-step h3 { margin: 44px 0 15px; font-size: clamp(30px, 3vw, 46px); letter-spacing: -.045em; }
.feature-step p { color: #9ca5b5; line-height: 1.75; }
.mid-page-cta {
  padding: clamp(64px, 7vw, 106px) max(5vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 22%, rgba(86,232,255,.13), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(119,61,255,.14), transparent 34%),
    #080b13;
}
.mid-page-cta .eyebrow { margin-bottom: 14px; }
.mid-page-cta h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -.06em;
}
.mid-page-cta p:not(.eyebrow) { max-width: 720px; margin: 0; color: var(--muted); line-height: 1.7; }
.mid-page-actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.use-cases { border-top: 1px solid var(--line); }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.case-card { position: relative; min-height: 680px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #0a0e17; transition: border-color .3s, transform .3s; }
.case-card:hover { transform: translateY(-5px); border-color: rgba(110,148,255,.45); }
.case-number { color: #657084; font: 10px "DM Mono"; letter-spacing: .1em; }
.case-copy { position: relative; z-index: 2; margin-top: 55px; max-width: 510px; }
.case-copy > p { color: var(--cyan); font: 11px "DM Mono"; text-transform: uppercase; letter-spacing: .1em; }
.case-copy h3 { margin-bottom: 22px; font-size: clamp(37px, 4vw, 62px); line-height: 1; letter-spacing: -.055em; }
.case-copy > span { display: block; max-width: 440px; color: #a4adbc; line-height: 1.7; }
.case-copy strong { display: inline-block; margin-top: 28px; font-size: 13px; }
.case-copy i { margin-left: 8px; color: var(--cyan); font-style: normal; }
.case-art { position: absolute; inset: auto -5% -12% 22%; height: 57%; border-radius: 50%; filter: drop-shadow(0 0 70px rgba(58,85,255,.22)); }
.game-art { background: radial-gradient(circle, rgba(57,54,255,.42), transparent 66%); }
.controller { position: absolute; inset: 24% 10%; border: 2px solid rgba(179,208,255,.8); border-radius: 45% 45% 38% 38%; transform: perspective(600px) rotateX(55deg) rotateZ(-9deg); box-shadow: inset 0 0 50px rgba(88,153,255,.2), 0 0 60px rgba(75,91,255,.3); }
.controller::before, .controller::after { content: ""; position: absolute; width: 28%; height: 50%; bottom: -27%; border: 2px solid rgba(179,208,255,.55); background: #0c142c; z-index: -1; }
.controller::before { left: 8%; transform: rotate(14deg); border-radius: 0 0 60% 60%; }.controller::after { right: 8%; transform: rotate(-14deg); border-radius: 0 0 60% 60%; }
.controller b, .controller em { position: absolute; top: 35%; color: #b7eaff; font-size: 32px; font-style: normal; }.controller b { left: 20%; }.controller em { right: 21%; color: #9c73ff; }
.case-work { background: linear-gradient(160deg, #0d111c, #0b0d15 55%, #111126); }
.cad-art { background: radial-gradient(circle, rgba(119,51,230,.31), transparent 64%); }
.wire-cube { position: absolute; left: 28%; top: 10%; width: 230px; height: 230px; border: 2px solid rgba(108,218,255,.72); transform: rotate(30deg) skewY(-8deg); box-shadow: inset 0 0 60px rgba(63,141,255,.12), 0 0 55px rgba(113,77,255,.2); }
.wire-cube::before, .wire-cube::after { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(161,102,255,.75); transform: rotate(45deg); }
.wire-cube::after { inset: 35%; border-color: #72e8ff; }
.path-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.path-card {
  display: grid; align-content: start; gap: 18px; min-height: 360px; padding: 28px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.045);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.path-card:hover { transform: translateY(-4px); border-color: rgba(86,232,255,.42); background: rgba(86,232,255,.07); }
.path-card span { color: var(--cyan); font: 700 10px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .14em; }
.path-card h3 { margin: 0; font-size: clamp(23px, 2.4vw, 34px); line-height: 1.05; letter-spacing: -.045em; }
.path-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.path-card strong { margin-top: auto; color: white; font-size: 13px; }
.proof { background: #f1f3f6; color: #0a0c11; }
.proof .eyebrow { color: #646b78; }
.proof-intro { display: grid; grid-template-columns: 1.5fr .5fr; gap: 7vw; align-items: end; }
.proof-intro h2 { margin-bottom: 0; }
.proof-intro > p:last-child { color: #626976; line-height: 1.7; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: #cdd1d8; }
.proof-card { padding: 45px; background: #f1f3f6; }
.proof-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 34px; border: 1px solid #aeb5c0; border-radius: 50%; color: #315cff; font-size: 22px; }
.proof-card h3 { font-size: 25px; letter-spacing: -.04em; }
.proof-card p { color: #656c78; line-height: 1.7; }
.customer-story { position: relative; margin: 100px 0 0; padding: 55px 60px; color: white; background: #0b1020; border-radius: var(--radius); overflow: hidden; }
.customer-story::after { content: ""; position: absolute; width: 440px; height: 440px; right: -150px; top: -200px; background: #315cff; border-radius: 50%; filter: blur(100px); opacity: .35; }
.quote-mark { color: var(--cyan); font-size: 70px; height: 50px; }
.customer-story > p { max-width: 900px; font-size: clamp(28px, 4vw, 56px); line-height: 1.15; letter-spacing: -.045em; }
.customer-story footer { display: grid; gap: 4px; color: #a9b3c8; font-size: 12px; }
.customer-story footer strong { color: white; }
.customer-story > a { position: absolute; right: 55px; bottom: 55px; z-index: 2; font-size: 12px; }
.comparison { border-bottom: 1px solid var(--line); }
.comparison-table-wrap { max-width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; }
.comparison-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--line); }
.comparison-table th, .comparison-table td { min-height: 76px; padding: 26px 12px; border-bottom: 1px solid var(--line); text-align: left; color: #8e98aa; }
.comparison-table th:first-child, .comparison-table td:first-child { padding-left: 0; }
.comparison-table tbody th { width: 37.5%; color: #f0f2f6; font-size: 14px; }
.comparison-table tbody td:last-child { color: var(--cyan); font-size: 14px; font-weight: 700; }
.comparison-table thead th { color: #5f697b; font: 9px "DM Mono"; text-transform: uppercase; letter-spacing: .08em; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.pricing { display: grid; grid-template-columns: 1fr minmax(370px, .52fr); gap: 8vw; align-items: center; }
.pricing-copy p:last-child { max-width: 610px; color: #9099aa; line-height: 1.8; }
.price-card { padding: 42px; border: 1px solid rgba(121,158,255,.3); border-radius: var(--radius); background: linear-gradient(150deg, rgba(34,46,80,.65), rgba(9,12,20,.85)); box-shadow: 0 50px 100px rgba(0,0,0,.32); }
.price-card > span { color: var(--cyan); font: 10px "DM Mono"; text-transform: uppercase; letter-spacing: .12em; }
.price { display: flex; align-items: baseline; margin: 28px 0; }
.price sup { font-size: 22px; }.price strong { font-size: 72px; line-height: 1; letter-spacing: -.07em; }.price small { margin-left: 8px; color: #838da0; }
.price-card > p, .price-card > small { color: #929bad; line-height: 1.6; }
.price-card ul { display: grid; gap: 16px; margin: 28px 0; padding: 0; list-style: none; color: #c4cad5; font-size: 14px; }
.price-card li::first-letter { color: var(--cyan); }
.price-card .button { width: 100%; margin-bottom: 17px; }
.price-card > small { display: block; font-size: 10px; text-align: center; }
.price-summary { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.price-summary > div { display: grid; gap: 7px; padding: 25px 28px; background: #0a0e17; }
.price-summary span, .plan-card > span, .industry-group > span, .solution-card > span, .cta-panel > span {
  color: var(--cyan); font: 10px "DM Mono"; text-transform: uppercase; letter-spacing: .12em;
}
.price-summary strong { font-size: 24px; letter-spacing: -.035em; }
.price-summary small { color: var(--muted); }
.price-summary .button { margin: 20px; }
.plan-comparison {
  padding: clamp(72px, 8vw, 118px) max(5vw, 24px);
  border-block: 1px solid var(--line);
  background: radial-gradient(circle at 82% 12%, rgba(86,232,255,.08), transparent 30%), #070a12;
}
.plan-comparison .section-heading { max-width: 820px; margin-bottom: clamp(34px, 5vw, 60px); }
.plan-comparison .section-heading h2 { margin-bottom: 18px; }
.plan-comparison .section-heading p:last-child { max-width: 680px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.plan-comparison-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  scrollbar-color: rgba(140,236,255,.55) rgba(255,255,255,.06);
}
.plan-comparison-table { width: 100%; min-width: 900px; border-collapse: separate; border-spacing: 0; table-layout: fixed; }
.plan-comparison-table th,
.plan-comparison-table td { padding: 17px 20px; border-bottom: 1px solid rgba(255,255,255,.09); text-align: left; vertical-align: top; line-height: 1.45; }
.plan-comparison-table thead th {
  position: sticky; top: 0; z-index: 1;
  padding-block: 22px;
  background: #101521;
  color: #fff;
  font-size: 17px;
}
.plan-comparison-table thead th:first-child { width: 31%; border-top-left-radius: 23px; }
.plan-comparison-table thead th:last-child { border-top-right-radius: 23px; }
.plan-comparison-table tbody th { color: #f3f6ff; font-weight: 650; }
.plan-comparison-table tbody td { color: #c9d2e2; }
.plan-comparison-table tbody td:nth-child(3) { background: rgba(86,232,255,.045); }
.plan-comparison-table tbody tr:hover th,
.plan-comparison-table tbody tr:hover td { background-color: rgba(255,255,255,.045); }
.plan-comparison-table tbody tr:last-child th,
.plan-comparison-table tbody tr:last-child td { border-bottom: 0; }
.plan-comparison-table small { color: #8f9ab0; }
.plan-comparison-wrap:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.plan-comparison-cta { display: flex; justify-content: center; margin-top: 30px; }
.plan-comparison-cta .button { min-width: min(100%, 260px); }
@media (max-width: 640px) {
  .plan-comparison-wrap { margin-inline: -8px; border-radius: 18px; }
  .plan-comparison-table { min-width: 760px; }
  .plan-comparison-table th,
  .plan-comparison-table td { padding: 14px 16px; font-size: 14px; }
  .plan-comparison-cta .button { width: 100%; }
}
.cloud-cross-sell {
  padding: clamp(75px, 8vw, 120px) max(5vw, 24px); display: grid; grid-template-columns: 1fr auto;
  gap: 7vw; align-items: center; border-block: 1px solid var(--line);
  background: radial-gradient(circle at 12% 50%, rgba(65,89,255,.18), transparent 34%), #080b13;
}
.cloud-cross-sell h2 { margin-bottom: 18px; font-size: clamp(42px, 5vw, 78px); line-height: 1; letter-spacing: -.06em; }
.cloud-cross-sell p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.cloud-cross-sell .hero-actions { margin-top: 0; justify-content: flex-end; }
.video-feature {
  padding: clamp(66px, 7vw, 116px) max(5vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #070a12;
}
.video-feature-dark {
  border-block: 1px solid var(--line);
  background: radial-gradient(circle at 78% 16%, rgba(86,232,255,.12), transparent 32%), radial-gradient(circle at 18% 72%, rgba(67,85,255,.14), transparent 36%), #070a12;
}
.solution-video-feature { padding-top: clamp(66px, 7vw, 110px); padding-bottom: clamp(66px, 7vw, 110px); }
.wp-site-content img {
  max-width: 85%;
  height: auto;
  margin-inline: auto;
}
.solution-detail-hero .solution-visual-compact {
  width: min(100%, 520px);
  justify-self: center;
}
.solution-detail-hero .solution-visual img {
  width: 100%;
  height: auto;
}
.solution-detail-hero .solution-visual-compact img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.video-copy { max-width: 720px; }
.video-copy h2 { margin-bottom: 22px; font-size: clamp(36px, 4.3vw, 64px); line-height: 1.04; letter-spacing: -.05em; }
.video-copy p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.video-frame {
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 28px;
  background: #03050a; box-shadow: 0 34px 90px rgba(0,0,0,.42), 0 0 56px rgba(86,232,255,.08);
}
.video-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 24%, rgba(0,0,0,.18));
}
.video-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.video-frame iframe { display: block; width: 100%; border: 0; }
.customer-proof {
  background: radial-gradient(circle at 20% 22%, rgba(49,92,255,.18), transparent 34%), #070a12;
}
.testimonial-video-frame { width: min(100%, 360px); justify-self: center; border-radius: 24px; }
.testimonial-video-frame iframe { aspect-ratio: 9 / 16; }
.customer-proof-quote {
  margin: 28px 0 0;
  padding: 22px 0 0 24px;
  border-left: 2px solid var(--cyan);
}
.customer-proof-quote p { margin: 0; color: #eef3ff; font-size: clamp(20px, 2vw, 28px); line-height: 1.35; letter-spacing: -.025em; }
.customer-proof-quote footer { margin-top: 12px; color: #8f9ab0; font-size: 12px; }
.remote-control-explainer {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(70px, 8vw, 120px) max(5vw, 24px);
  background: #070a12;
  color: white;
}
.remote-control-copy { max-width: 610px; }
.remote-control-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5.4vw, 82px);
  line-height: 1;
  letter-spacing: -.06em;
}
.remote-control-copy p:not(.eyebrow) {
  color: #aeb7c7;
  font-size: 17px;
  line-height: 1.75;
}
.remote-control-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.remote-control-copy li {
  position: relative;
  padding-left: 22px;
  color: #dce7ff;
  line-height: 1.55;
}
.remote-control-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(86,232,255,.6);
}
.remote-control-visual {
  position: relative;
  min-width: 0;
}
.remote-control-visual .connection-demo {
  min-height: 490px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 22%, rgba(86,232,255,.16), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(78,93,255,.14), transparent 30%),
    linear-gradient(145deg, rgba(15,22,38,.94), rgba(3,6,12,.98));
  box-shadow: 0 34px 90px rgba(0,0,0,.42), 0 0 56px rgba(86,232,255,.08);
}
.cta-panel { display: grid; gap: 18px; padding: 36px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.04); }
.cta-panel h3 { margin: 0; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.045em; }
.cta-panel p { color: var(--muted); line-height: 1.7; }
.page-intro { padding: 175px max(5vw, 24px) 90px; text-align: center; border-bottom: 1px solid var(--line); }
.page-intro h1 { max-width: 1040px; margin-inline: auto; font-size: clamp(54px, 6.5vw, 100px); }
.page-intro > p:last-child { max-width: 800px; margin: 0 auto; color: var(--muted); font-size: 18px; line-height: 1.7; }
.plan-section { padding: clamp(80px, 9vw, 140px) max(5vw, 24px); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card { display: flex; flex-direction: column; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: #0a0e17; }
.plan-featured { border-color: rgba(86,232,255,.44); background: linear-gradient(155deg, rgba(36,60,130,.58), #090c14 64%); }
.plan-price { display: flex; align-items: baseline; gap: 8px; min-height: 92px; margin: 26px 0 8px; }
.plan-price strong { font-size: clamp(42px, 5vw, 68px); letter-spacing: -.065em; }
.plan-price sup, .plan-price small { color: var(--muted); }
.plan-card > p { min-height: 74px; color: var(--muted); line-height: 1.6; }
.plan-card ul { display: grid; gap: 13px; margin: 22px 0 34px; padding: 0; list-style: none; color: #c4cad5; font-size: 14px; }
.plan-card li::before { content: "✓"; margin-right: 9px; color: var(--cyan); }
.plan-card .button { margin-top: auto; }
.pricing-note, .roadmap-note { max-width: 900px; margin: 30px auto 0; color: var(--muted); font-size: 12px; line-height: 1.7; text-align: center; }
.insight-strip {
  padding: clamp(76px, 9vw, 138px) max(5vw, 24px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 10%, rgba(86,232,255,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.025), transparent);
}
.insight-strip .section-heading { margin-bottom: 34px; }
.insight-strip .section-heading h2 { max-width: 820px; font-size: clamp(38px, 4.8vw, 72px); }
.insight-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.insight-link-grid.single { grid-template-columns: minmax(0, 720px); }
.insight-link-card, .insight-resource {
  display: grid; gap: 14px; min-height: 230px; padding: 30px; color: inherit; text-decoration: none;
  border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.045);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.insight-link-card:hover, .insight-resource:hover { transform: translateY(-4px); border-color: rgba(86,232,255,.42); box-shadow: 0 22px 50px rgba(0,0,0,.26), 0 0 34px rgba(86,232,255,.06); }
.insight-link-card span, .insight-resource strong, .insight-card span { color: var(--cyan); font: 700 12px "DM Mono", monospace; letter-spacing: .14em; text-transform: uppercase; }
.insight-link-card strong { max-width: 420px; color: #fff; font-size: clamp(24px, 2.5vw, 34px); line-height: 1.05; letter-spacing: -.045em; }
.insight-link-card p, .insight-card p, .insight-resource span { color: var(--muted); line-height: 1.7; }
.insight-article { max-width: 1120px; margin: 0 auto; }
.insight-hero { padding: clamp(42px, 7vw, 86px) 0 clamp(36px, 5vw, 62px); border-bottom: 1px solid var(--line); }
.insight-hero h1 { max-width: 880px; font-size: clamp(46px, 5.5vw, 82px); line-height: 1; letter-spacing: -.055em; }
.insight-hero p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.insight-body { display: grid; gap: clamp(38px, 5vw, 72px); padding: clamp(42px, 6vw, 78px) 0; }
.insight-section { max-width: 850px; }
.insight-section h2 { margin-bottom: 16px; font-size: clamp(30px, 3vw, 48px); line-height: 1.05; letter-spacing: -.045em; }
.insight-section > p { color: #a9b1c0; font-size: 17px; line-height: 1.82; }
.insight-card-grid, .insight-resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.insight-card { min-height: 175px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.045); }
.insight-resource { min-height: 160px; }
.insight-next { max-width: none; padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: #080c15; }
.insight-next .hero-actions { margin-top: 28px; }
.solution-grid, .industry-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card, .industry-group { min-height: 330px; padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: #090d16; }
.solution-card { display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease; }
.solution-card:hover { transform: translateY(-4px); border-color: rgba(86,232,255,.4); }
.solution-icon { width: 42px; height: 42px; margin-bottom: 24px; }
.solution-card h3, .industry-group h3 { margin: 36px 0 18px; font-size: 30px; letter-spacing: -.045em; }
.solution-card p { color: var(--muted); line-height: 1.7; }
.solution-card strong { margin-top: auto; color: var(--cyan); font-size: 13px; }
.industry-groups { color: #0a0c11; }
.industry-group { background: white; border-color: #d5d9df; }
.industry-group > span { color: #315cff; }
.industry-group ul { display: grid; gap: 12px; padding-left: 18px; color: #626a77; line-height: 1.5; }
.compact-hero { min-height: 82svh; }
.faq { border-bottom: 1px solid var(--line); }
.faq .section-heading { margin-bottom: 48px; }
.faq-list { max-width: 980px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative; padding: 27px 54px 27px 0; cursor: pointer; list-style: none;
  color: #eef1f7; font-size: clamp(17px, 2vw, 23px); font-weight: 600; letter-spacing: -.025em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 5px; top: 22px; color: var(--cyan);
  font: 28px "DM Mono", monospace; transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 780px; padding: 0 50px 25px 0; color: #929cad; line-height: 1.75; }
.landing-hero {
  position: relative; min-height: 94svh; padding: 155px max(5vw, 24px) 90px;
  display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 3vw;
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.landing-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 77% 35%, rgba(66,85,255,.2), transparent 35%);
}
.landing-copy { position: relative; z-index: 2; max-width: 720px; }
.landing-copy h1 { font-size: clamp(54px, 5.8vw, 92px); line-height: .96; }
.landing-visual { position: relative; width: min(112%, 860px); margin-left: -6%; }
.landing-visual img { mask-image: linear-gradient(90deg, transparent, #000 22%, #000 86%, transparent); }
.landing-card { left: 37%; bottom: 15%; }
.landing-checks { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 38px 0 0; padding: 0; list-style: none; color: #aeb7c7; font-size: 12px; }
.landing-checks li::before { content: "✓"; margin-right: 8px; color: var(--cyan); }
.landing-section { padding: clamp(95px, 10vw, 160px) max(5vw, 24px); }
.landing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.landing-panel { min-height: 340px; padding: 38px; background: #080b13; }
.download-hero-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-self: center; padding: 18px; border: 1px solid rgba(110,231,255,.18); border-radius: 28px; background: radial-gradient(circle at 80% 0%, rgba(124,92,255,.16), transparent 38%), rgba(7,11,20,.82); box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.download-platform-card { position: relative; display: grid; align-content: end; min-height: 152px; padding: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.035); color: var(--white); text-decoration: none; transition: transform .18s ease-out, border-color .18s ease-out, background .18s ease-out; }
.download-platform-card:hover { transform: translateY(-3px); border-color: rgba(110,231,255,.55); background: rgba(110,231,255,.075); }
.download-platform-card:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.download-platform-card > span:not(.download-platform-icon) { margin-bottom: 7px; color: var(--cyan); font: 500 10px/1.2 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }
.download-platform-card strong { max-width: calc(100% - 36px); font-size: 17px; line-height: 1.18; letter-spacing: -.03em; }
.download-platform-card small { margin-top: 9px; color: #98a2b3; font-size: 12px; }
.download-platform-icon { position: absolute; top: 18px; right: 18px; display: grid; width: 30px; height: 30px; place-items: center; color: #fff; }
.download-platform-icon svg { width: 26px; height: 26px; fill: currentColor; }
.landing-panel > span { color: var(--cyan); font: 11px "DM Mono"; }
.landing-panel h3 { margin: 85px 0 18px; font-size: 27px; letter-spacing: -.04em; }
.landing-panel p, .landing-copy-block p { color: #98a2b3; line-height: 1.75; }
.landing-light { color: #0a0c11; background: #f1f3f6; }
.landing-light .eyebrow { color: #646b78; }
.landing-light h2 { color: #0a0c11; }
.landing-light .landing-copy-block p { color: #5e6571; }
.landing-dark { color: #f4f6fb; background: #070a12; }
.landing-dark .eyebrow { color: var(--cyan); }
.landing-dark h2 { color: #f4f6fb; }
.landing-dark .landing-copy-block p { color: #aeb7c7; }
.landing-dark .industry-groups { color: #f4f6fb; }
.landing-dark .industry-group { background: #090d16; border-color: var(--line); }
.landing-dark .industry-group > span { color: var(--cyan); }
.landing-dark .industry-group ul { color: #aeb7c7; }
.landing-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: start; }
.landing-split .section-heading { margin: 0; }
.landing-copy-block { padding-top: 45px; font-size: 18px; }
.workload-list { border-top: 1px solid #cbd0d8; }
.workload-list div { display: grid; gap: 9px; padding: 24px 0; border-bottom: 1px solid #cbd0d8; }
.workload-list strong { font-size: 18px; }
.workload-list span { color: #626a77; line-height: 1.6; }
.landing-convert {
  padding: clamp(95px, 10vw, 150px) max(5vw, 24px);
  display: grid; grid-template-columns: 1fr minmax(360px, .65fr); gap: 9vw; align-items: center;
  background: radial-gradient(circle at 20% 80%, rgba(52,79,255,.15), transparent 40%), #070a12;
}
.landing-convert h2 { max-width: 720px; margin-bottom: 24px; font-size: clamp(42px, 4.8vw, 72px); line-height: 1.02; letter-spacing: -.052em; }
.landing-convert > div > p:last-child { max-width: 620px; color: #9ba5b5; line-height: 1.7; }
.thanks-page {
  min-height: 100svh; padding: 42px max(5vw, 24px); display: grid; align-content: space-between;
  color: #17141f;
  background:
    radial-gradient(circle at 78% 24%, rgba(126, 105, 255, .18), transparent 38%),
    linear-gradient(145deg, #fff 0%, #f7f5ff 55%, #efebff 100%);
}
.thanks-page > div { max-width: 900px; padding: 90px 0 12vh; }
.thanks-page .brand,
.thanks-page h1 { color: #17141f; }
.thanks-page .eyebrow { color: #625b78; }
.thanks-page h1 { font-size: clamp(52px, 7vw, 104px); }
.thanks-page > div > p:not(.eyebrow) { max-width: 680px; color: #625e6c; font-size: 19px; line-height: 1.7; }
.thanks-page .button-ghost { color: #292337; border-color: rgba(41, 35, 55, .28); background: rgba(255, 255, 255, .58); }
.thanks-page .button-ghost:hover { color: #17141f; border-color: rgba(41, 35, 55, .5); background: #fff; }
.final-cta { position: relative; min-height: 640px; padding: 90px max(5vw, 24px); display: grid; grid-template-columns: 1fr .7fr; gap: 7vw; align-items: center; overflow: hidden; background: #070a12; }
.final-cta > div.reveal { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(48px, 6vw, 92px); }
.final-cta p:not(.eyebrow) { max-width: 570px; color: #9ba5b5; line-height: 1.7; }
.final-choice-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}
.final-choice-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: white;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.final-choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(86,232,255,.34);
  background: rgba(86,232,255,.07);
}
.final-choice-card span {
  color: var(--cyan);
  font: 700 11px "DM Mono", monospace;
  letter-spacing: .14em;
}
.final-choice-card strong {
  font-size: 22px;
  letter-spacing: -.035em;
}
.final-choice-card p {
  margin: 0;
  color: #a9b3c3;
  line-height: 1.55;
}
.final-choice-primary {
  border-color: rgba(86,232,255,.38);
  background: linear-gradient(145deg, rgba(52,79,255,.32), rgba(86,232,255,.08));
}
.cta-orbit { position: absolute; width: 650px; height: 650px; left: -190px; bottom: -420px; border: 1px solid rgba(93,207,255,.3); border-radius: 50%; box-shadow: 0 0 120px rgba(60,88,255,.23), inset 0 0 100px rgba(94,63,255,.12); }
.lead-form { position: relative; z-index: 2; display: grid; gap: 18px; padding: 35px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.04); }
.lead-form label { display: grid; gap: 8px; color: #9099aa; font-size: 11px; }
.lead-form input, .lead-form select { width: 100%; min-height: 52px; padding: 0 15px; color: white; border: 1px solid var(--line); border-radius: 10px; background: #090c14; }
.lead-form select { color-scheme: dark; }
.lead-form > p { margin: 0; text-align: center; font-size: 10px; }
.lead-form > p a { color: #c9d5ff; text-decoration: underline; text-underline-offset: 2px; }
.site-footer { min-height: 140px; padding: 35px max(5vw, 24px); display: flex; align-items: center; gap: 28px; border-top: 1px solid var(--line); color: #6d7687; font-size: 11px; }
.site-footer p { margin: 0; }
.site-footer .footer-links { display: flex; gap: 20px; margin-left: auto; }
.site-footer > span { margin-left: 20px; }
.lola-mode-gaming .site-footer,
.lola-mode-gaming .site-footer a { color: #aeb8ca; }

/* Blog and document library */
.blog-hero,
.resource-hero,
.blog-library,
.resource-library,
.resource-support { background: #f7f4fb; color: #21182e; }
.blog-hero,
.resource-hero { padding: 175px max(5vw, 24px) 90px; }
.blog-hero-inner { max-width: 900px; }
.blog-hero h1,
.resource-hero h1 { max-width: 14ch; margin: 14px 0 22px; color: #21182e; font-size: clamp(54px, 6.5vw, 100px); line-height: .96; }
.blog-hero .landing-lede,
.resource-hero .landing-lede { max-width: 64ch; color: #62566f; }
.resource-hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: clamp(32px, 6vw, 88px); align-items: end; }
.resource-hero-note { display: grid; gap: 10px; padding: 24px; border: 1px solid rgba(80,53,112,.16); border-radius: 20px; background: rgba(255,255,255,.72); box-shadow: 0 20px 45px rgba(70,42,98,.08); }
.resource-hero-note span,
.resource-type { color: #6b3fa0; font: 600 11px/1.4 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.resource-hero-note strong { color: #2b2038; font-size: 18px; }
.resource-hero-note p { margin: 0; color: #6d6278; font-size: 14px; line-height: 1.55; }
.blog-library,
.resource-library { padding: 0 max(5vw, 24px) clamp(80px, 9vw, 140px); }
.resource-heading { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 34px; }
.resource-heading h2 { margin: 8px 0 0; color: #21182e; }
.resource-heading > p { max-width: 460px; margin: 0; color: #6d6278; }
.resource-grid,
.blog-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.resource-card,
.blog-card { min-width: 0; border: 1px solid rgba(80,53,112,.16); border-radius: 22px; background: rgba(255,255,255,.86); box-shadow: 0 18px 45px rgba(70,42,98,.07); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.resource-card { min-height: 300px; padding: 26px; display: flex; flex-direction: column; gap: 24px; color: #21182e; text-decoration: none; }
.resource-card:hover,
.resource-card:focus-visible,
.blog-card:hover,
.blog-card:focus-within { transform: translateY(-4px); border-color: rgba(107,63,160,.45); box-shadow: 0 24px 55px rgba(70,42,98,.13); }
.resource-card-featured { background: linear-gradient(145deg, #2b1743, #5a327e); color: #fff; }
.resource-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-left: auto; border: 1px solid rgba(107,63,160,.2); border-radius: 16px; background: #f1eafa; color: #5d3588; font: 700 12px/1 "DM Mono", monospace; }
.resource-card-featured .resource-icon { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.12); color: #fff; }
.resource-card h3 { margin: 7px 0 10px; color: inherit; font-size: clamp(20px, 2vw, 25px); line-height: 1.18; }
.resource-card p { margin: 0; color: #6d6278; line-height: 1.6; }
.resource-card-featured p,
.resource-card-featured .resource-type { color: #e7ddef; }
.resource-action { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: #5d3588; font-weight: 700; }
.resource-card-featured .resource-action { color: #fff; }
.resource-support { padding: 0 max(5vw, 24px) clamp(80px, 9vw, 120px); }
.resource-support-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 38px; border-top: 1px solid rgba(80,53,112,.16); }
.resource-support h2 { margin: 8px 0; color: #21182e; }
.resource-support p { margin: 0; color: #6d6278; }
.blog-card { overflow: hidden; }
.blog-card-link { height: 100%; display: flex; flex-direction: column; color: #21182e; text-decoration: none; }
.blog-card-visual { min-height: 140px; padding: 20px; display: flex; align-items: end; background: radial-gradient(circle at 78% 18%, rgba(122,77,168,.45), transparent 29%), linear-gradient(135deg,#27143d,#654087); color: #f7f2fb; }
.blog-card:nth-child(3n+2) .blog-card-visual { background: radial-gradient(circle at 22% 18%, rgba(91,180,214,.4), transparent 30%), linear-gradient(135deg,#1d233c,#4a3678); }
.blog-card:nth-child(3n+3) .blog-card-visual { background: radial-gradient(circle at 75% 22%, rgba(226,150,255,.4), transparent 28%), linear-gradient(135deg,#321f43,#76517d); }
.blog-card-visual span { font: 600 11px/1 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.blog-card-copy { min-height: 270px; padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.blog-card-copy h2 { margin: 0; color: #21182e; font-size: clamp(20px, 2vw, 25px); line-height: 1.22; }
.blog-card-copy p { margin: 0; color: #6d6278; line-height: 1.6; }
.blog-card-copy .resource-action { margin-top: auto; }

@media (max-width: 900px) {
  .resource-grid,
  .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .resource-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .blog-hero,
  .resource-hero { padding: 105px 18px 52px; }
  .blog-hero h1,
  .resource-hero h1 { font-size: 42px; line-height: 1; }
  .blog-library,
  .resource-library { padding: 0 18px 72px; }
  .resource-support { padding: 0 18px 72px; }
  .resource-grid,
  .blog-card-grid { grid-template-columns: 1fr; }
  .resource-heading,
  .resource-support-inner { align-items: flex-start; flex-direction: column; }
  .resource-support .button { width: 100%; }
}

/* Dual audience colour system ------------------------------------------------
   Gaming remains dark and immersive. Professional and creative routes use a
   pale lavender workspace theme while retaining LoLa's blue-violet accents. */
body.lola-mode-professional {
  --ink: #171322;
  --muted: #51495d;
  --blue: #4f46e5;
  --cyan: #6947d8;
  --violet: #8b5cf6;
  --surface: #ffffff;
  --line: rgba(60,42,94,.15);
  color: var(--ink);
  background: #f7f5ff;
  color-scheme: light;
}
body.lola-mode-professional::before {
  background:
    radial-gradient(circle at 82% 7%, rgba(139,92,246,.13), transparent 31%),
    radial-gradient(circle at 8% 48%, rgba(79,70,229,.07), transparent 28%),
    linear-gradient(180deg, #fbfaff, #f5f1ff 46%, #fbfaff);
}
.lola-mode-professional .noise { opacity: .012; }
.lola-mode-professional .site-header {
  border-color: rgba(70,52,105,.16);
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 42px rgba(62,42,104,.12);
}
.lola-mode-professional .site-header.is-scrolled {
  border-color: rgba(70,52,105,.22);
  background: rgba(250,248,255,.96);
  box-shadow: 0 16px 46px rgba(62,42,104,.16);
}
.lola-mode-professional .desktop-nav,
.lola-mode-professional .text-link { color: #5e576d; }
.lola-mode-professional .desktop-nav a:hover,
.lola-mode-professional .text-link:hover,
.lola-mode-professional .nav-dropdown-group a:hover,
.lola-mode-professional .nav-dropdown-group a:focus-visible { color: #211936; }
.lola-mode-professional .nav-dropdown-panel,
.lola-mode-professional .mobile-nav {
  border-color: rgba(70,52,105,.16);
  background: rgba(255,255,255,.97);
  box-shadow: 0 28px 70px rgba(62,42,104,.16);
}
.lola-mode-professional .nav-dropdown-group,
.lola-mode-professional .mobile-nav a:hover,
.lola-mode-professional .mobile-nav a:focus-visible { background: rgba(103,76,170,.06); }
.lola-mode-professional .nav-dropdown-group a,
.lola-mode-professional .mobile-nav a { color: #453d55; }
.lola-mode-professional .menu-toggle { color: #211936; border-color: rgba(70,52,105,.2); background: rgba(103,76,170,.06); }
.lola-mode-professional .eyebrow { color: #675a7c; }
.lola-mode-professional .landing-checks,
.lola-mode-professional .hero-action-note,
.lola-mode-professional .hero-proof span { color: #675f73; }
.lola-mode-professional h1 span,
.lola-mode-professional h2 span { color: #553894; }
.lola-mode-professional .hero-lede,
.lola-mode-professional .landing-panel p,
.lola-mode-professional .landing-copy-block p,
.lola-mode-professional .video-copy p:not(.eyebrow),
.lola-mode-professional .remote-control-copy p:not(.eyebrow),
.lola-mode-professional .faq-list details p,
.lola-mode-professional .pricing-copy p:last-child,
.lola-mode-professional .plan-card > p,
.lola-mode-professional .insight-section > p,
.lola-mode-professional .solution-card p,
.lola-mode-professional .cloud-cross-sell p:not(.eyebrow),
.lola-mode-professional .final-cta p:not(.eyebrow) { color: var(--muted); }
.lola-mode-professional .faq-list summary { color: #292139; }
.lola-mode-professional .industry-group ul,
.lola-mode-professional .workload-list span,
.lola-mode-professional .landing-convert > div > p:last-child,
.lola-mode-professional .landing-panel small,
.lola-mode-professional .lead-form > p { color: #51495d; }
.lola-mode-professional .lead-form > p a { color: #4f36a0; }
.lola-mode-professional .landing-hero::after { background: radial-gradient(circle at 77% 35%, rgba(125,86,214,.14), transparent 38%); }
.lola-mode-professional main img {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  border-radius: 28px;
}
.lola-mode-professional .video-frame::before { display: none; }
.lola-mode-professional .landing-panel,
.lola-mode-professional .plan-card,
.lola-mode-professional .solution-card,
.lola-mode-professional .price-summary > div,
.lola-mode-professional .cta-panel,
.lola-mode-professional .insight-card,
.lola-mode-professional .insight-link-card,
.lola-mode-professional .insight-resource,
.lola-mode-professional .final-choice-card,
.lola-mode-professional .lead-form {
  border-color: rgba(70,52,105,.14);
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 55px rgba(67,45,108,.07);
}
.lola-mode-professional .plan-featured,
.lola-mode-professional .final-choice-primary {
  border-color: rgba(108,72,210,.32);
  background: linear-gradient(145deg, rgba(121,87,220,.13), rgba(255,255,255,.92));
}
.lola-mode-professional .price-card {
  border-color: rgba(108,72,210,.25);
  background: linear-gradient(150deg, rgba(239,233,255,.96), rgba(255,255,255,.94));
  box-shadow: 0 35px 80px rgba(67,45,108,.13);
}
.lola-mode-professional .price-card ul,
.lola-mode-professional .plan-card ul,
.lola-mode-professional .path-card strong,
.lola-mode-professional .insight-link-card strong { color: #292139; }
.lola-mode-professional .button-ghost {
  color: #382d50;
  border-color: rgba(75,54,115,.2);
  background: rgba(255,255,255,.72);
}
.lola-mode-professional .button-ghost:hover { background: #eee8ff; }
.lola-mode-professional .video-feature,
.lola-mode-professional .video-feature-dark,
.lola-mode-professional .customer-proof,
.lola-mode-professional .remote-control-explainer,
.lola-mode-professional .cloud-cross-sell,
.lola-mode-professional .final-cta,
.lola-mode-professional .landing-convert,
.lola-mode-professional .insight-next {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 16%, rgba(139,92,246,.12), transparent 34%),
    #f3effc;
}
.lola-mode-professional .customer-proof-quote p { color: #292139; }
.lola-mode-professional .customer-proof-quote footer,
.lola-mode-professional .site-footer { color: #6d6579; }
.lola-mode-professional .lead-form label { color: #62596e; }
.lola-mode-professional .lead-form input,
.lola-mode-professional .lead-form select {
  color: #211936;
  border-color: rgba(70,52,105,.18);
  background: #fff;
}
.lola-mode-professional .lead-form select { color-scheme: light; }
.lola-mode-professional .site-footer { background: rgba(255,255,255,.55); }
.lola-mode-professional :focus-visible { outline-color: #6947d8; }

@media (prefers-contrast: more) {
  body.lola-mode-professional { --muted: #403849; --line: rgba(34,24,52,.3); }
}
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); transition-delay: var(--delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .desktop-nav, .text-link { display: none; }
  .menu-toggle { display: grid; }
  .mobile-nav.is-open { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { z-index: 3; }
  .hero-copy h1 span { white-space: normal; }
  .hero-visual { width: 100%; margin: 18px 0 -5%; opacity: .95; }
  .hero-media-visual { width: 100%; margin: 6px 0 0; justify-self: stretch; }
  .hero-proof-flow { grid-template-columns: 1fr; }
  .hero-proof-flow div { min-height: auto; }
  .connection-demo { min-height: auto; grid-template-columns: 1fr; gap: 18px; }
  .demo-link { min-height: 58px; transform: rotate(90deg); }
  .demo-caption { text-align: center; flex-wrap: wrap; justify-content: center; }
  .lola-product-visual { min-height: 520px; border-radius: 24px; }
  .host-node { left: 7%; top: 10%; width: 190px; min-height: 140px; padding: 18px; }
  .host-node strong { font-size: 27px; }
  .client-device { right: 6%; width: 210px; padding: 13px; }
  .device-ipad { top: 38%; }
  .device-mac { bottom: 8%; }
  .device-screen { height: 96px; }
  .visual-chip { min-width: 64px; min-height: 30px; font-size: 11px; }
  .chip-game { left: 55%; top: 19%; }
  .chip-cad { left: 9%; bottom: 23%; }
  .chip-edit { right: 8%; bottom: 31%; }
  .cloud-stack { right: -7%; top: 45%; transform: scale(.74); }
  .cloud-node { left: 7%; top: 12%; }
  .cloud-spec { right: 7%; min-width: 170px; padding: 14px; }
  .spec-one { top: 50%; }.spec-two { top: 63%; }.spec-three { top: 76%; }
  .product-flow-panel { min-height: auto; border-radius: 24px; }
  .machine-preview { grid-template-columns: 1fr; }
  .route-preview-list { grid-template-columns: 1fr; }
  .route-preview-list div { min-height: auto; }
  .rollout-card { min-height: auto; }
  .workflow-map-node { min-width: 126px; padding: 15px; }
  .node-main { left: 24%; top: 34%; min-width: 176px; min-height: 112px; }
  .node-a { left: 7%; top: 12%; }.node-b { right: 6%; top: 16%; }.node-c { left: 7%; bottom: 12%; }.node-d { right: 7%; bottom: 12%; }
  .compare-lane { width: 200px; min-height: 128px; padding: 18px; }
  .lane-primary { left: 6%; top: 14%; }.lane-secondary { right: 6%; top: 43%; }
  .compare-device { bottom: 8%; min-width: 210px; }
  .workflow-proof-board { min-height: 800px; }
  .workflow-host, .workflow-client { width: 220px; }
  .workflow-host { left: 7%; top: 9%; }
  .workflow-client { right: 7%; top: 26%; bottom: auto; }
  .workflow-proof-steps { grid-template-columns: 1fr; bottom: 5%; }
  .hero::after { background: linear-gradient(#05070d 4%, rgba(5,7,13,.85) 40%, rgba(5,7,13,.08) 70%, #05070d 100%); }
  .scroll-cue { display: none; }
  .logo-strip { align-items: flex-start; gap: 25px; flex-direction: column; }
  .experience-stage { grid-template-columns: 1fr; }
  .sticky-device { position: relative; top: 0; z-index: 2; }
  .scroll-panel { position: relative; inset: auto; min-height: 320px; display: none; }
  .scroll-visual[data-state="response"] .panel-response,
  .scroll-visual[data-state="hardware"] .panel-hardware,
  .scroll-visual[data-state="anywhere"] .panel-anywhere { display: grid; }
  .experience-copy { gap: 42px; padding-bottom: 0; }
  .case-grid, .proof-intro, .pricing, .final-cta, .cloud-cross-sell, .video-feature, .remote-control-explainer, .insight-link-grid, .insight-card-grid, .insight-resource-grid, .path-grid, .conversion-router, .route-decision-grid, .mid-page-cta { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .customer-story > a { position: static; display: inline-block; margin-top: 30px; }
  .comparison-table { min-width: 660px; }
  .final-cta { padding-top: 100px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer .footer-links, .site-footer > span { margin-left: 0; }
  .landing-hero, .landing-split, .landing-convert { grid-template-columns: 1fr; }
  .landing-visual { width: 100%; margin: 0; }
  .landing-grid { grid-template-columns: 1fr; }
  .plan-grid, .solution-grid, .industry-groups { grid-template-columns: 1fr; }
  .cloud-cross-sell .hero-actions { justify-content: flex-start; }
  .mid-page-actions { justify-content: flex-start; }
  .landing-panel { min-height: 280px; }
  .landing-panel h3 { margin-top: 55px; }
  .insight-link-card, .insight-resource { min-height: auto; }
  .insight-next { padding: 24px; }
}
@media (max-width: 560px) {
  .download-hero-panel { grid-template-columns: 1fr; padding: 12px; border-radius: 22px; }
  .download-platform-card { min-height: 126px; }
  .site-header { top: 8px; width: calc(100% - 16px); }
  .nav-actions { gap: 8px; }
  .nav-actions .button-small { padding-inline: 13px; }
  .hero { min-height: auto; padding: 92px 18px 32px; gap: 14px; }
  .eyebrow { margin-bottom: 12px; }
  h1 { margin-bottom: 14px; font-size: 40px; line-height: .98; letter-spacing: -.052em; }
  .hero-lede { font-size: 14.5px; line-height: 1.45; }
  .hero-actions { margin-top: 16px; gap: 9px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-text { display: none; }
  .hero-action-note { font-size: 12px; }
  .hero-setup-strip { display: none; }
  .hero-setup-strip span { min-height: 28px; padding-inline: 24px 9px; font-size: 11px; }
  .hero-setup-strip span::before { left: 10px; width: 5px; height: 5px; }
  .hero-proof { display: none; }
  .hero-use-cues { display: none; }
  .hero-proof strong { font-size: 15px; }
  .hero-visual { width: 100%; margin-left: 0; }
  .hero-media-visual { margin-top: 2px; }
  .hero-proof-panel { padding: 10px; border-radius: 20px; }
  .hero-video-shell { border-radius: 15px; }
  .hero-video-shell video { aspect-ratio: 16 / 9; }
  .video-status-bar { left: 8px; right: 8px; top: 8px; padding: 7px 9px; font-size: 11px; }
  .video-status-bar strong { display: none; }
  .hero-proof-flow { display: none; }
  .hero-proof-flow div { padding: 11px 12px; border-radius: 12px; }
  .hero-proof-flow span { margin-bottom: 5px; font-size: 9px; }
  .hero-proof-flow strong { font-size: 13px; }
  .hero-proof-flow small { display: none; }
  .connection-demo {
    min-height: 300px;
    padding: 16px;
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 10px;
  }
  .demo-link { min-height: 0; transform: none; gap: 5px; }
  .demo-link span { width: 6px; height: 6px; }
  .demo-link i { width: 40px; height: 40px; }
  .demo-label strong { font-size: 13px; }
  .demo-label span { font-size: 8px; }
  .demo-caption { grid-column: 1 / -1; min-height: 34px; padding: 6px 10px; }
  .demo-caption span { font-size: 11px; }
  .demo-monitor, .demo-laptop { border-radius: 14px; }
  .conversion-router, .mid-page-cta { padding-inline: 18px; }
  .landing-hero { min-height: auto; padding: 106px 18px 56px; }
  .landing-copy h1 { font-size: 40px; line-height: 1; }
  .landing-checks { display: grid; gap: 10px; margin-top: 24px; font-size: 13px; }
  .product-flow-panel { padding: 18px; }
  .product-panel-header { padding-bottom: 18px; }
  .product-panel-header strong { font-size: 24px; }
  .machine-preview { margin-top: 18px; padding: 18px; border-radius: 20px; }
  .machine-preview strong { font-size: 32px; }
  .machine-preview li { padding: 12px; }
  .route-preview-list strong { font-size: 17px; }
  .rollout-board { grid-template-columns: 1fr; margin-top: 18px; }
  .rollout-primary { grid-column: auto; }
  .rollout-status { align-items: flex-start; }
  .page-intro { padding: 105px 18px 44px; }
  .page-intro h1 { font-size: 42px; line-height: 1; }
  .page-intro > p:last-child { font-size: 15px; line-height: 1.55; }
  .remote-control-explainer { padding: 66px 18px; }
  .remote-control-copy h2 { font-size: 42px; }
  .remote-control-copy p:not(.eyebrow) { font-size: 15.5px; line-height: 1.6; }
  .remote-control-copy ul { margin-top: 22px; }
  .remote-control-visual .connection-demo { min-height: 420px; }
  .route-decision-card { min-height: auto; padding: 22px; }
  .mid-page-actions .button { width: 100%; }
  .mid-page-actions .button-text { width: auto; }
  .hardware-choice, .mini-session, .device-fan { grid-template-columns: 1fr; }
  .mini-stream { min-height: 42px; align-items: center; transform: rotate(90deg); }
  .mini-cursor { display: none; }
  .latency-card { left: 28%; }
  .device-card { right: 17%; }
  .case-card { min-height: 620px; padding: 22px; }
  .proof-card, .customer-story, .price-card, .lead-form { padding: 28px; }
  .comparison-table th, .comparison-table td { font-size: 11px; }
  .site-footer .footer-links { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Legal and technical document pages */
.legal-hero,
.legal-document { background: #f7f4fb; color: #21182e; }
.legal-hero { padding: 160px max(5vw, 24px) 68px; }
.legal-hero-inner { max-width: 980px; }
.legal-hero h1 { max-width: 16ch; margin: 14px 0 20px; color: #21182e; font-size: clamp(46px, 5.4vw, 78px); line-height: 1.02; }
.legal-hero .landing-lede { max-width: 68ch; color: #62566f; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; color: #6d6278; font: 600 11px/1.5 "DM Mono", monospace; letter-spacing: .05em; text-transform: uppercase; }
.legal-document { padding: 0 max(5vw, 24px) clamp(80px, 9vw, 140px); }
.legal-layout { display: grid; grid-template-columns: minmax(220px, 280px) minmax(0, 760px); gap: clamp(36px, 7vw, 96px); align-items: start; }
.page-id-371 .legal-layout,
.page-id-368 .legal-layout,
.page-id-369 .legal-layout { grid-template-columns: minmax(200px, 240px) minmax(0, 1fr); width: 100%; }
.page-id-371 .legal-content,
.page-id-368 .legal-content,
.page-id-369 .legal-content { width: 100%; }
.tech-reference-content ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; padding-left: 0; list-style: none; }
.tech-reference-content li { margin: 0; padding: 16px 18px; border: 1px solid rgba(80,53,112,.14); border-radius: 14px; background: rgba(247,244,251,.72); }
@media (max-width: 640px) {
  .tech-reference-content ul { grid-template-columns: 1fr; }
}
.legal-aside { position: sticky; top: 110px; display: grid; gap: 12px; padding: 24px; border: 1px solid rgba(80,53,112,.16); border-radius: 20px; background: rgba(255,255,255,.76); box-shadow: 0 18px 42px rgba(70,42,98,.07); }
.legal-aside strong { color: #2b2038; font-size: 17px; line-height: 1.35; }
.legal-aside p { margin: 0; color: #6d6278; font-size: 14px; line-height: 1.55; }
.legal-aside a { color: #5d3588; overflow-wrap: anywhere; }
.legal-back { margin-top: 10px; font-weight: 700; text-decoration: none; }
.legal-content { min-width: 0; padding: clamp(28px, 4vw, 52px); border: 1px solid rgba(80,53,112,.16); border-radius: 24px; background: rgba(255,255,255,.9); box-shadow: 0 20px 50px rgba(70,42,98,.08); color: #4f465a; font-size: 16px; line-height: 1.75; }
.legal-content h2 { margin: 2.6em 0 .7em; color: #21182e; font-size: clamp(24px, 3vw, 34px); line-height: 1.18; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 1.15em; }
.legal-content ul,
.legal-content ol { margin: 0 0 1.4em; padding-left: 1.35em; }
.legal-content li { margin: .45em 0; padding-left: .25em; }
.legal-content a { color: #5d3588; font-weight: 650; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-content strong { color: #2b2038; }
@media (max-width: 820px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
}
@media (max-width: 620px) {
  .legal-hero { padding: 105px 18px 48px; }
  .legal-hero h1 { font-size: 40px; }
  .legal-document { padding: 0 18px 72px; }
  .legal-content { padding: 24px 20px; border-radius: 20px; font-size: 15.5px; }
}
