/* ===========================================================================
   Autonomir — site styles

   Layered on top of nocturne.css. The Nocturne accent is re-tuned here to the
   Autonomir enterprise blue; everything else (spacing scale, radii, shadows,
   type) comes from the design system unchanged.
   =========================================================================== */

/* ── Theme ─────────────────────────────────────────────────────────────── */
:root {
  --color-bg: #0d121e;
  --color-surface: #151d2c;
  --color-accent: #4d94d6;
  --color-accent-100: #eaf3fb;
  --color-accent-200: #cfe4f6;
  --color-accent-300: #a8cdee;
  --color-accent-400: #79b0e4;
  --color-accent-500: #4d94d6;
  --color-accent-600: #3a76b0;
  --color-accent-700: #2b5a87;
  --color-accent-800: #1e3f5f;
  --color-accent-900: #132738;
  --color-section: #132a44;
  --color-section-glow: #1d3f63;

  --ok: #5fbf9b;
  --warn: #d9a34d;
  --crit: #d2695f;

  /* Surfaces and hairlines used across every section. */
  --line: rgba(233, 233, 237, 0.07);
  --line-2: rgba(233, 233, 237, 0.09);
  --line-3: rgba(233, 233, 237, 0.12);
  --panel: rgba(21, 29, 44, 0.4);
  --ink-80: rgba(233, 233, 237, 0.82);
  --ink-60: rgba(233, 233, 237, 0.62);
  --ink-45: rgba(233, 233, 237, 0.45);
  --ink-38: rgba(233, 233, 237, 0.38);
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--color-accent-300); text-decoration: none; }
a:hover { color: var(--color-accent-200); }
section[id] { scroll-margin-top: 96px; }
h1, h2 { text-wrap: pretty; }

/* ── Motion ────────────────────────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinRev { to { transform: rotate(-360deg); } }
@keyframes breathe {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: .75; transform: scale(1.03); }
}
@keyframes dashFlow { to { stroke-dashoffset: -240; } }
@keyframes stepGlow {
  0%, 72%, 100% { border-color: rgba(233,233,237,.10); color: rgba(233,233,237,.45); box-shadow: none; }
  10%, 42% { border-color: #4d94d6; color: #e9e9ed; box-shadow: 0 0 0 1px rgba(77,148,214,.35), 0 0 26px rgba(77,148,214,.20); }
}
@keyframes stepGlowText {
  0%, 72%, 100% { color: rgba(233,233,237,.34); }
  10%, 40% { color: #a8cdee; }
}
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes sweep {
  0% { opacity: 0; transform: translateY(-40px); }
  12% { opacity: .6; }
  100% { opacity: 0; transform: translateY(340px); }
}
@keyframes tick { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}
@keyframes menuSweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* Scroll reveal. The hidden state is opt-in: `motion-ready` is set by JS only
   once the observer is running and can undo it, so with JS off or blocked the
   content is simply visible. */
.motion-ready [data-reveal],
.motion-ready h2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .85s cubic-bezier(.22,.7,.24,1), transform .85s cubic-bezier(.22,.7,.24,1);
}
.motion-ready [data-reveal].in,
.motion-ready h2.in { opacity: 1; transform: none; }

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

/* ── Layout ────────────────────────────────────────────────────────────── */
.sec { max-width: 1320px; margin: 0 auto; padding: 120px 48px; }
.sec--hero { padding: 88px 48px 0; }
.sec--open-bottom { padding-bottom: 0; }
.sec--open-top { padding-top: 0; padding-bottom: 110px; }
.sec--cta { padding: 132px 48px; text-align: center; position: relative; }
.bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bar--bottom { border-bottom: 1px solid var(--line); }
.bar--top { border-top: 1px solid var(--line); }

.g-hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,600px); gap: 56px; align-items: center; }
.g-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,520px); gap: 64px; align-items: center; }
.g-safe { display: grid; grid-template-columns: minmax(0,520px) minmax(0,1fr); gap: 72px; align-items: center; }
.g-resp { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.12fr); gap: 32px; align-items: start; }
.g-contact { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,1fr); gap: 56px; align-items: start; }
.g-plat { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 56px; align-items: center; }
.g-family { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; align-items: stretch; }
.g-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.g-auto-wide { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px,1fr)); gap: 32px; align-items: stretch; }

/* ── Shared type ───────────────────────────────────────────────────────── */
.kicker {
  font: 500 11px var(--font-heading);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--color-accent-400);
}
.kicker--sm { font-size: 10.5px; }
.label {
  font: 500 10.5px var(--font-heading);
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(233, 233, 237, .4);
}
.label--accent { letter-spacing: .16em; color: var(--color-accent-400); }
.label--11 { font-size: 11px; }
.lede { margin: 22px 0 0; max-width: 640px; font-size: 17px; line-height: 1.65; color: var(--ink-60); }
.lede--wide { max-width: 680px; }
.lede--lg { font-size: 17.5px; }

h1 { margin: 28px 0 0; font-size: clamp(46px, 5.2vw, 74px); line-height: 1.03; letter-spacing: -.03em; }
h2 { margin: 0; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.06; letter-spacing: -.025em; }
.h2--md { font-size: clamp(32px, 4vw, 50px); line-height: 1.08; }
.h2--cta { font-size: clamp(38px, 4.8vw, 62px); line-height: 1.05; letter-spacing: -.03em; }
.h2--gap { margin-top: 22px; }
.accent { color: var(--color-accent-400); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn-accent,
.btn-quiet {
  display: inline-flex; align-items: center; justify-content: center;
  font: 500 14px var(--font-heading); letter-spacing: .03em;
  padding: 14px 28px; border-radius: var(--radius-md);
  border: 1px solid transparent; background: none; cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.btn-accent { border-color: var(--color-accent); color: var(--color-accent-100); }
.btn-accent:hover { background: rgba(77, 148, 214, .16); color: var(--color-accent-100); }
.btn-quiet { border-color: rgba(233, 233, 237, .16); color: var(--ink-80); }
.btn-quiet:hover { border-color: rgba(233, 233, 237, .4); color: #fff; }
.btn-accent--sm {
  font-size: 13.5px; letter-spacing: 0; padding: 13px 24px;
  color: var(--color-accent-200);
}
.btn-accent--sm:hover { background: rgba(77, 148, 214, .14); color: var(--color-accent-200); }
.btn-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; margin-top: 38px; }

/* ── Panels ────────────────────────────────────────────────────────────── */
.panel {
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background: var(--panel);
}
.panel--accent {
  border-color: rgba(77, 148, 214, .28);
  background: linear-gradient(180deg, rgba(19, 42, 68, .5), rgba(21, 29, 44, .4));
}
.lift { transition: border-color .3s ease, transform .3s ease; }
.lift:hover { border-color: rgba(77, 148, 214, .45); transform: translateY(-3px); }

.dot { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.dot--ok { background: var(--ok); animation: tick 2.4s ease-in-out infinite; }
.grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(233, 233, 237, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 233, 237, .03) 1px, transparent 1px);
}

/* ===========================================================================
   Header
   =========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13, 18, 30, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(233, 233, 237, .08);
  font-family: var(--font-body);
}
.header-rail {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 148, 214, .5), transparent);
  opacity: 0; transition: opacity .4s ease;
}
.site-header[data-menu-open] .header-rail { opacity: 1; }
.header-bar {
  max-width: 1320px; margin: 0 auto; padding: 0 48px; height: 84px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 34px; width: auto; }

.navlinks { display: flex; align-items: center; gap: 2px; }
.navtrigger {
  position: relative; background: none; border: 0;
  color: rgba(233, 233, 237, .72);
  font: 500 13px var(--font-heading); letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 15px; cursor: pointer; border-radius: 7px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s ease, background .25s ease;
}
.navtrigger:hover { background: rgba(77, 148, 214, .10); color: #fff; }
.navtrigger[aria-expanded="true"] { color: #fff; }
.navtrigger svg { opacity: .6; transition: transform .3s ease; }
.navtrigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.navtrigger-underline {
  position: absolute; left: 15px; right: 15px; bottom: 4px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.navtrigger[aria-expanded="true"] .navtrigger-underline { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.header-login {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 12.5px var(--font-heading); letter-spacing: .08em; text-transform: uppercase;
  color: rgba(233, 233, 237, .7); padding: 10px 14px; border-radius: var(--radius-md);
  transition: color .25s ease, background .25s ease;
}
.header-login:hover { color: #fff; background: rgba(77, 148, 214, .10); }
.header-sep { width: 1px; height: 22px; background: var(--line-3); }
.header-demo {
  border: 1px solid var(--color-accent); color: var(--color-accent-200);
  font: 500 12.5px var(--font-heading); letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--radius-md); white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}
.header-demo:hover { background: rgba(77, 148, 214, .14); color: #fff; }
.navtoggle {
  display: none; background: none; border: 1px solid rgba(233, 233, 237, .18);
  border-radius: var(--radius-md); width: 42px; height: 42px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.navtoggle:hover { border-color: var(--color-accent); }
.navtoggle span { display: block; width: 17px; height: 1.5px; background: #e9e9ed; }

.megamenu {
  display: none; position: relative; overflow: hidden;
  border-top: 1px solid rgba(77, 148, 214, .2);
  background: linear-gradient(180deg, rgba(15, 23, 38, .98), rgba(11, 16, 26, .98));
  backdrop-filter: blur(20px);
  animation: menuIn .28s cubic-bezier(.22,.7,.24,1) both;
}
.megamenu[data-open] { display: block; }
.megamenu-sweep {
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 148, 214, .8), transparent);
  animation: menuSweep 2.4s ease-out both;
}
.g-mega {
  position: relative; display: grid;
  grid-template-columns: 230px minmax(0,1fr) 260px; gap: 44px; align-items: start;
  max-width: 1320px; margin: 0 auto; padding: 30px 48px 34px;
}
.mega-blurb { margin-top: 12px; font-size: 14px; color: rgba(233, 233, 237, .5); line-height: 1.55; max-width: 230px; }
.mega-mark { margin-top: 18px; width: 48px; height: 1px; background: linear-gradient(90deg, var(--color-accent), transparent); }
.mega-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 4px 24px; align-content: start; }
.mega-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 14px; border-radius: 8px; font-size: 14.5px;
  color: var(--ink-80); border: 1px solid transparent;
  transition: background .22s ease, border-color .22s ease, color .22s ease;
}
.mega-item:hover { background: rgba(77, 148, 214, .10); border-color: rgba(77, 148, 214, .28); color: #fff; }
.mega-item span:last-child { color: var(--color-accent-400); opacity: .7; }
.mega-cta {
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(77, 148, 214, .3); border-radius: var(--radius-lg);
  padding: 22px 22px 20px; min-height: 150px; color: inherit;
  background: radial-gradient(300px 160px at 80% 0%, rgba(77, 148, 214, .22), transparent 70%), rgba(21, 29, 44, .6);
  transition: border-color .25s ease;
}
.mega-cta:hover { border-color: rgba(77, 148, 214, .65); }
.mega-cta-title { font: 500 19px var(--font-heading); letter-spacing: -.015em; color: #fff; margin-top: 10px; line-height: 1.3; }
.mega-cta-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; font-size: 12.5px; color: var(--color-accent-300); }

.drawer {
  display: none; border-top: 1px solid rgba(233, 233, 237, .08);
  background: rgba(11, 15, 25, .98); max-height: 70vh; overflow-y: auto;
}
.drawer[data-open] { display: block; }
.drawer-login-wrap { padding: 18px 24px 0; }
.drawer-login {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(233, 233, 237, .14); border-radius: var(--radius-md);
  padding: 12px 16px; font: 500 13px var(--font-heading);
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-80);
}
.drawer-login:hover { border-color: var(--color-accent); color: #fff; }
.drawer-sections { padding: 20px 24px 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.drawer-heading { font: 500 11px var(--font-heading); letter-spacing: .16em; text-transform: uppercase; color: var(--color-accent-400); padding-bottom: 6px; }
.drawer a.drawer-link {
  display: block; padding: 10px 0; font-size: 15px;
  color: var(--ink-80); border-bottom: 1px solid rgba(233, 233, 237, .06);
}
.drawer a.drawer-link:hover { color: #fff; }

/* ===========================================================================
   Hero
   =========================================================================== */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 640px at 74% 42%, rgba(45, 110, 168, .26), transparent 68%),
    radial-gradient(720px 520px at 6% 92%, rgba(30, 63, 95, .30), transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(233, 233, 237, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 233, 237, .035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(900px 600px at 62% 42%, #000, transparent 78%);
}
.hero-field { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .85; }
.hero-inner { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 11px var(--font-heading); letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-accent-400);
  border: 1px solid rgba(77, 148, 214, .3); border-radius: 999px; padding: 7px 15px;
}
.hero-copy { margin: 26px 0 0; max-width: 520px; font-size: 18px; line-height: 1.62; color: rgba(233, 233, 237, .64); }
.hero-tail { height: 64px; }

.orbit { position: relative; width: 100%; max-width: 560px; aspect-ratio: 1; margin: 0 auto; }

/* These three are centred with the `translate` property rather than inside
   `transform`: their spin / breathe keyframes set `transform` outright, which
   would otherwise discard the centering and throw them down and to the right. */
.orbit-halo,
.orbit-ring,
.orbit-ring-inner {
  position: absolute; left: 50%; top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
}
.orbit-halo {
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(77, 148, 214, .20), transparent 66%);
  animation: breathe 7s ease-in-out infinite;
}
.orbit-ring {
  width: 97%; height: 97%;
  border: 1px solid rgba(77, 148, 214, .14); border-top-color: rgba(77, 148, 214, .5);
  animation: spin 34s linear infinite;
}
.orbit-ring-inner {
  width: 75%; height: 75%;
  border: 1px dashed rgba(233, 233, 237, .11);
  animation: spinRev 46s linear infinite;
}
.orbit-paths { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit-core {
  position: absolute; left: 50%; top: 50%; width: 46%; height: 46%;
  transform: translate(-50%, -50%); border-radius: 50%;
  border: 1px solid rgba(77, 148, 214, .32);
  background: radial-gradient(circle, rgba(19, 39, 56, .94), rgba(13, 18, 30, .7));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 10px;
}
.orbit-core-kicker { font: 500 9.5px var(--font-heading); letter-spacing: .2em; text-transform: uppercase; color: var(--color-accent-400); }
.orbit-core-score { font: 500 clamp(46px, 6.2vw, 66px) var(--font-heading); line-height: 1; letter-spacing: -.04em; color: #fff; margin-top: 8px; }
.orbit-core-label { font: 500 9.5px var(--font-heading); letter-spacing: .18em; text-transform: uppercase; color: rgba(233, 233, 237, .5); margin-top: 6px; }
.orbit-core-state {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 8px;
  font: 500 10px var(--font-heading); letter-spacing: .16em; text-transform: uppercase; color: var(--ok);
}
.orbit-node { position: absolute; transform: translate(-50%, -50%); }
.orbit-node > div { animation: drift 11s ease-in-out infinite; }
.orbit-chip {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(233, 233, 237, .14); background: rgba(16, 22, 34, .88);
  backdrop-filter: blur(8px); border-radius: 999px; padding: 8px 15px; white-space: nowrap;
}
.orbit-chip .dot { background: var(--color-accent-400); animation: tick 2.6s ease-in-out infinite; }
.orbit-chip span:last-child { font: 500 12.5px var(--font-heading); letter-spacing: .02em; color: rgba(233, 233, 237, .86); }

.loop-steps {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; align-items: center;
  margin: 22px auto 0; max-width: 520px;
}
.loop-step {
  font: 500 10px var(--font-heading); letter-spacing: .14em; text-transform: uppercase;
  color: rgba(233, 233, 237, .42); animation: stepGlowText 9s ease-in-out infinite;
}
.loop-arrow { color: rgba(77, 148, 214, .4); font-size: 10px; }

.os-strip {
  display: flex; flex-wrap: wrap; margin-top: 72px;
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.os-cell { flex: 1 1 0; min-width: 150px; padding: 22px 26px; border-left: 1px solid rgba(233, 233, 237, .08); }
.os-cell:last-child { border-right: 1px solid rgba(233, 233, 237, .08); }
.os-head { display: flex; align-items: center; gap: 10px; }
.os-head img { width: 24px; height: 24px; object-fit: contain; flex: none; }
.os-head span { font: 500 15px var(--font-heading); color: #e9e9ed; }
.os-note { font-size: 12.5px; color: rgba(233, 233, 237, .42); margin-top: 4px; }
/* The iOS mark ships as dark artwork; invert it onto the dark ground. */
.icon-invert { filter: invert(1) brightness(1.9); }

/* ===========================================================================
   Market shift / mobile trust anchor
   =========================================================================== */
.shift-copy { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 48px; margin-top: 34px; max-width: 1020px; }
.shift-copy p { font-size: 17px; line-height: 1.65; color: var(--ink-60); margin: 0; }
.pullquote {
  margin-top: 34px; padding: 20px 24px;
  border-left: 1px solid var(--color-accent);
  background: linear-gradient(90deg, rgba(77, 148, 214, .10), transparent);
  font: 500 20px var(--font-heading); color: #fff; letter-spacing: -.01em;
}
.anchor-stage { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.anchor-ring { position: absolute; width: 330px; height: 330px; border-radius: 50%; border: 1px solid rgba(233, 233, 237, .10); animation: spinRev 60s linear infinite; }
.anchor-ring-outer { position: absolute; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(233, 233, 237, .06); }
.anchor-phone { position: relative; z-index: 2; transform: scale(.86); filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .55)); }
.anchor-tag {
  position: absolute; font-size: 12px; color: var(--ink-60);
  border: 1px solid var(--line-3); border-radius: 999px; padding: 5px 12px;
  background: rgba(21, 29, 44, .8);
}

/* ===========================================================================
   Category creation
   =========================================================================== */
.category { margin-top: 128px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(19, 42, 68, .32), transparent 60%); }
.evo { display: flex; align-items: center; gap: 14px; margin-top: 52px; flex-wrap: wrap; }
.evo-chip {
  font: 500 13px var(--font-heading); letter-spacing: .12em;
  color: rgba(233, 233, 237, .34);
  border: 1px solid rgba(233, 233, 237, .10); border-radius: 999px; padding: 9px 20px;
}
.evo-chip--now {
  color: #fff; border-color: var(--color-accent); background: rgba(77, 148, 214, .12);
  padding: 9px 22px; box-shadow: 0 0 34px rgba(77, 148, 214, .18);
}
.evo-arrow { color: rgba(233, 233, 237, .24); }
.evo-arrow--accent { color: var(--color-accent-500); }

.cmp { display: flex; flex-direction: column; padding: 32px 30px 36px; }
.cmp-list { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.cmp-row {
  border: 1px solid rgba(233, 233, 237, .10); border-radius: var(--radius-md);
  padding: 16px 20px; font: 500 15px var(--font-heading); color: rgba(233, 233, 237, .5);
}
.cmp-row--live { animation: stepGlow 8s ease-in-out infinite; font-weight: 400; color: inherit; }
.cmp-row--live > div { display: flex; align-items: baseline; gap: 12px; }
.cmp-step { font: 500 15px var(--font-heading); letter-spacing: .02em; }
.cmp-desc { font-size: 12.5px; color: rgba(233, 233, 237, .42); line-height: 1.4; }
.cmp-loop {
  display: flex; align-items: center; gap: 10px; padding: 4px 20px 0;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(77, 148, 214, .55);
}
.cmp-loop span:first-child,
.cmp-loop span:last-child { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(77, 148, 214, .4), transparent); }
.cmp-foot { margin-top: auto; padding-top: 26px; font-size: 13px; color: var(--ink-38); }
.cmp-foot--accent { color: var(--color-accent-300); }

/* ===========================================================================
   Product family
   =========================================================================== */
.fam-card {
  display: flex; flex-direction: column; min-height: 372px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(233, 233, 237, .10); border-radius: var(--radius-lg);
  padding: 32px 28px 26px; background: rgba(21, 29, 44, .45); color: inherit;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.fam-card:hover { border-color: rgba(77, 148, 214, .6); background: rgba(29, 63, 99, .3); transform: translateY(-4px); }
.fam-card--foundational { border-color: rgba(77, 148, 214, .32); background: linear-gradient(165deg, rgba(29, 63, 99, .42), rgba(21, 29, 44, .45)); }
.fam-edge { position: absolute; left: 0; top: 0; height: 2px; width: 100%; background: linear-gradient(90deg, var(--color-accent), transparent); }
.fam-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.fam-num { font: 500 12px var(--font-heading); color: rgba(233, 233, 237, .24); }
.fam-name { font: 500 30px var(--font-heading); letter-spacing: -.02em; margin-top: 10px; color: #fff; }
.fam-sub { font-size: 14px; line-height: 1.4; color: var(--color-accent-300); margin-top: 6px; min-height: 40px; }
.fam-body { margin: 16px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-60); }
.fam-foot {
  margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(233, 233, 237, .08);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 12px; color: var(--ink-45);
}
.fam-foot span:last-child { color: var(--color-accent-300); white-space: nowrap; }

.together {
  margin-top: 24px; border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 44px 40px 40px; text-align: center;
  background: radial-gradient(700px 260px at 50% 0%, rgba(77, 148, 214, .16), transparent 70%), rgba(19, 42, 68, .18);
}
.together-row { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.together-chip {
  border: 1px solid rgba(233, 233, 237, .16); border-radius: 999px; padding: 9px 20px;
  font: 500 13px var(--font-heading); color: var(--ink-80); background: rgba(16, 22, 34, .7);
}
.together-plus { color: var(--color-accent-500); }
.together-stem { margin: 26px auto 0; width: 1px; height: 34px; background: linear-gradient(180deg, rgba(77, 148, 214, .7), transparent); }
.together-line { margin: 14px auto 0; max-width: 640px; font: 500 clamp(22px, 2.4vw, 28px) var(--font-heading); letter-spacing: -.015em; line-height: 1.25; color: #fff; }

/* ===========================================================================
   SAFE
   =========================================================================== */
.safe { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #0a0f18, #101a2a 55%, #0a0f18); }
.safe-glow { position: absolute; inset: 0; background: radial-gradient(760px 520px at 26% 50%, rgba(77, 148, 214, .22), transparent 70%); }
.safe-sweep { position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(77, 148, 214, .6), transparent); animation: sweep 9s linear infinite; }
.safe-inner { position: relative; }
.safe-stage { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.safe-orbit { position: absolute; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(77, 148, 214, .14); animation: spin 44s linear infinite; }
.safe-bloom { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(77, 148, 214, .16), transparent 65%); animation: breathe 6s ease-in-out infinite; }
.safe-dial { position: absolute; width: 300px; height: 300px; transform: rotate(-90deg); }
.safe-dial-value { transition: stroke-dashoffset 1.1s ease, stroke 1.1s ease; }
.safe-readout { position: relative; text-align: center; z-index: 2; }
.safe-name { font: 500 11px var(--font-heading); letter-spacing: .24em; text-transform: uppercase; color: rgba(233, 233, 237, .5); }
.safe-score { font: 500 84px var(--font-heading); line-height: 1; letter-spacing: -.045em; color: #fff; margin-top: 6px; }
.safe-state { margin-top: 10px; font: 500 11.5px var(--font-heading); letter-spacing: .2em; text-transform: uppercase; }
.safe-axis { position: absolute; font: 500 10.5px var(--font-heading); letter-spacing: .16em; color: rgba(233, 233, 237, .42); }
.safe-log { margin-top: 36px; border: 1px solid rgba(233, 233, 237, .10); border-radius: var(--radius-lg); background: rgba(13, 18, 30, .6); padding: 8px 0; max-width: 520px; }
.safe-log-head { padding: 11px 22px; border-bottom: 1px solid var(--line); }
.safe-log-row { display: flex; align-items: center; gap: 14px; padding: 11px 22px; font-size: 14px; color: rgba(233, 233, 237, .72); }
.safe-log-row .dot { width: 7px; height: 7px; }
.safe-log-row span:nth-child(2) { flex: 1; }
.safe-log-row span:last-child { font: 500 12.5px var(--font-heading); }

/* ===========================================================================
   Autonomous response
   =========================================================================== */
.resp-card { border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 30px 32px 12px; background: linear-gradient(180deg, rgba(19, 42, 68, .34), rgba(21, 29, 44, .4)); }
.resp-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.resp-running { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--color-accent-300); }
.resp-running .dot { background: var(--color-accent-400); animation: tick 1.8s ease-in-out infinite; }
.resp-step { display: grid; grid-template-columns: 26px minmax(0,1fr); gap: 18px; align-items: start; }
.resp-marker { display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; }
.resp-node {
  width: 14px; height: 14px; border-radius: 50%; flex: none; margin-top: 5px;
  border: 2px solid rgba(233, 233, 237, .22); background: transparent;
  transition: border-color .6s ease, background .6s ease;
}
.resp-line { flex: 1; width: 1px; min-height: 26px; background: linear-gradient(180deg, rgba(233, 233, 237, .22), rgba(233, 233, 237, .08)); transition: background .6s ease; }
.resp-body { padding-bottom: 26px; }
.resp-meta { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.resp-phase { font: 500 11px var(--font-heading); letter-spacing: .18em; text-transform: uppercase; color: rgba(233, 233, 237, .22); transition: color .6s ease; }
.resp-cadence { font-size: 11.5px; color: rgba(233, 233, 237, .3); }
.resp-text { font: 500 17px var(--font-heading); line-height: 1.35; color: rgba(233, 233, 237, .38); margin-top: 8px; transition: color .6s ease; max-width: 420px; }

.resp-step[data-state="done"] .resp-node { border-color: var(--ok); background: rgba(95, 191, 155, .45); }
.resp-step[data-state="done"] .resp-line { background: linear-gradient(180deg, var(--ok), rgba(233, 233, 237, .08)); }
.resp-step[data-state="done"] .resp-phase { color: var(--ok); }
.resp-step[data-state="done"] .resp-text { color: rgba(233, 233, 237, .72); }
.resp-step[data-state="live"] .resp-node { border-color: var(--color-accent); background: rgba(77, 148, 214, .5); }
.resp-step[data-state="live"] .resp-line { background: linear-gradient(180deg, var(--color-accent), rgba(233, 233, 237, .08)); }
.resp-step[data-state="live"] .resp-phase { color: var(--color-accent); }
.resp-step[data-state="live"] .resp-text { color: #fff; }

.act-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px,1fr)); gap: 14px; margin-top: 20px; }
.act-card { border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 24px 24px 26px; background: rgba(21, 29, 44, .42); }
.act-title { font: 500 17px var(--font-heading); color: #fff; }
.act-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chip { border: 1px solid var(--line-3); border-radius: 999px; padding: 5px 12px; font-size: 12px; color: var(--ink-60); }
.resp-closer {
  margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line-2);
  font: 500 clamp(24px, 2.8vw, 32px) var(--font-heading); letter-spacing: -.02em; color: #fff;
}
.resp-closer span { color: rgba(233, 233, 237, .42); }

/* ===========================================================================
   ADM
   =========================================================================== */
.adm { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(19, 42, 68, .28), transparent 70%); }
.adm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px,1fr)); gap: 26px; margin-top: 52px; }
.adm-card { border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 32px 32px 36px; background: rgba(21, 29, 44, .35); }
.adm-card--accent { border-color: rgba(77, 148, 214, .3); background: linear-gradient(160deg, rgba(29, 63, 99, .4), rgba(21, 29, 44, .35)); }
.adm-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: rgba(233, 233, 237, .55); }
.adm-list--two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; color: rgba(233, 233, 237, .85); }
.adm-flow { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(233, 233, 237, .08); font-size: 12.5px; color: var(--ink-38); letter-spacing: .04em; }
.adm-flow--accent { border-top-color: rgba(77, 148, 214, .2); color: var(--color-accent-300); }
.adm-closer { margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.adm-closer > div { font: 500 28px var(--font-heading); letter-spacing: -.02em; color: #fff; }

/* ===========================================================================
   Cross-platform
   =========================================================================== */
.plat-tabs { display: flex; gap: 26px; border-bottom: 1px solid rgba(233, 233, 237, .10); flex-wrap: wrap; }
.plat-tab {
  background: none; border: 0; border-bottom: 2px solid transparent;
  color: rgba(233, 233, 237, .5);
  font: 500 14px var(--font-heading); letter-spacing: .02em;
  padding: 12px 4px; cursor: pointer;
  transition: color .25s ease, border-color .25s ease;
  display: inline-flex; align-items: center; gap: 9px;
}
.plat-tab:hover { color: #e9e9ed; }
.plat-tab[aria-selected="true"] { color: #fff; border-bottom-color: var(--color-accent); }
.plat-tab img { width: 18px; height: 18px; object-fit: contain; flex: none; }
.plat-title { font: 500 clamp(26px, 2.6vw, 32px) var(--font-heading); letter-spacing: -.02em; color: #fff; margin-top: 10px; }
.plat-body { margin: 14px 0 0; max-width: 440px; font-size: 16px; line-height: 1.62; color: var(--ink-60); }
.plat-points { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; max-width: 440px; }
.plat-point { display: flex; align-items: flex-start; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.plat-point .dot { background: var(--color-accent-400); margin-top: 7px; }
.plat-point span:last-child { font-size: 15px; line-height: 1.5; color: rgba(233, 233, 237, .75); }
.plat-stats { display: flex; gap: 28px; margin-top: 26px; }
.plat-stat-value { font: 500 24px var(--font-heading); color: #fff; }
.plat-stat-value--accent { color: var(--color-accent-300); }
.plat-stat-label { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(233, 233, 237, .4); margin-top: 4px; }
.plat-stage {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 520px; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(620px 400px at 50% 40%, rgba(77, 148, 214, .16), transparent 70%);
  border: 1px solid var(--line);
}
.plat-stage .grid-overlay {
  background-size: 64px 64px;
  mask-image: radial-gradient(420px 300px at 50% 45%, #000, transparent 78%);
}
.plat-surface { position: relative; }
.plat-surface[hidden] { display: none; }
.plat-surface--desktop { width: 100%; padding: 32px 28px; }
.plat-surface--phone { padding: 34px 0; transform: scale(.94); }

/* ===========================================================================
   Device mocks — phone
   =========================================================================== */
@keyframes phTick { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes phBreathe { 0%, 100% { opacity: .45; } 50% { opacity: .85; } }
@keyframes phSpin { to { transform: rotate(360deg); } }
@keyframes phSweep {
  0% { transform: translateY(-30px); opacity: 0; }
  20% { opacity: .5; }
  100% { transform: translateY(560px); opacity: 0; }
}

.phone {
  /* Trust tone. JS re-points these per state; the defaults are the "trusted"
     state so the mock renders correctly before (or without) script. */
  --tone: var(--ok);
  --tone-glow: rgba(95, 191, 155, .20);
  width: 296px; height: 604px; border-radius: 42px; padding: 9px;
  background: linear-gradient(160deg, #2c3444, #0f131c 45%, #232b39);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6), 0 0 0 1px rgba(233, 233, 237, .09);
}
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: #0b1017; font-family: var(--font-body); }
.phone-glow { position: absolute; inset: 0; background: radial-gradient(300px 260px at 50% 26%, var(--tone-glow), transparent 70%); }
.phone-scan { position: absolute; inset: 0; background-image: linear-gradient(rgba(233, 233, 237, .03) 1px, transparent 1px); background-size: 100% 46px; }
.phone-sweep { position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--tone), transparent); animation: phSweep 7s linear infinite; z-index: 1; }
.phone-status {
  position: absolute; top: 0; left: 0; right: 0; height: 34px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; padding: 0 20px;
  font: 500 11.5px var(--font-heading); color: rgba(233, 233, 237, .85);
}
.phone-bars { display: flex; align-items: center; gap: 4px; }
.phone-bars i { display: block; width: 3px; border-radius: 1px; background: rgba(233, 233, 237, .75); }
.phone-bars i:nth-child(1) { height: 7px; }
.phone-bars i:nth-child(2) { height: 9px; }
.phone-bars i:nth-child(3) { height: 11px; }
.phone-battery { width: 16px; height: 8px; border: 1px solid rgba(233, 233, 237, .6); border-radius: 2px; margin-left: 4px; position: relative; }
.phone-battery i { position: absolute; inset: 1.5px; right: 5px; background: rgba(233, 233, 237, .75); border-radius: 1px; }
.phone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 86px; height: 22px; border-radius: 14px; background: #05080d; z-index: 4; }
.phone-punch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 11px; height: 11px; border-radius: 50%; background: #05080d; box-shadow: 0 0 0 1px rgba(233, 233, 237, .12); z-index: 4; }
.phone[data-platform="android"] .phone-notch,
.phone[data-platform="ios"] .phone-punch { display: none; }
.phone-app { position: relative; z-index: 2; padding: 44px 18px 0; height: 100%; display: flex; flex-direction: column; }
.phone-appbar { display: flex; align-items: center; justify-content: space-between; }
.phone-appbar img { height: 13px; width: auto; opacity: .92; }
.phone-avatar { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(233, 233, 237, .2); background: linear-gradient(150deg, #2b3a4d, #151d2c); }
.phone-dial { position: relative; margin: 18px auto 0; width: 168px; height: 168px; display: flex; align-items: center; justify-content: center; }
.phone-dial-glow { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, var(--tone-glow), transparent 68%); animation: phBreathe 5s ease-in-out infinite; }
.phone-ticks { position: absolute; width: 236px; height: 236px; left: -34px; top: -34px; opacity: .65; }
.phone-ticks circle { animation: phSpin 44s linear infinite; transform-origin: 120px 120px; }
.phone-ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.phone-ring-value { transition: stroke-dashoffset .9s ease, stroke .9s ease; }
.phone-score { font: 500 46px var(--font-heading); line-height: 1; letter-spacing: -.04em; color: #fff; }
.phone-state { margin-top: 5px; font: 500 9.5px var(--font-heading); letter-spacing: .2em; text-transform: uppercase; }
.phone-caption { text-align: center; margin-top: 12px; font-size: 12px; line-height: 1.45; color: rgba(233, 233, 237, .55); padding: 0 12px; }
.phone-sectionhead { display: flex; justify-content: space-between; align-items: center; font: 500 9.5px var(--font-heading); letter-spacing: .16em; text-transform: uppercase; color: rgba(233, 233, 237, .4); }
.phone-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.phone-tile { border: 1px solid var(--line-2); border-radius: 12px; padding: 11px 12px; background: rgba(21, 29, 44, .66); }
.phone-tile-name { font: 500 11.5px var(--font-heading); color: #e9e9ed; }
.phone-tile-value { margin-top: 4px; font-size: 10.5px; color: var(--ok); }
.phone-activity {
  margin-top: 14px; border: 1px solid rgba(77, 148, 214, .24); border-radius: 12px;
  padding: 11px 13px; background: linear-gradient(120deg, rgba(29, 63, 99, .5), rgba(21, 29, 44, .6));
  display: flex; align-items: center; gap: 10px;
}
.phone-activity .dot { width: 7px; height: 7px; animation: phTick 2s ease-in-out infinite; }
.phone-activity span:last-child { font-size: 11.5px; color: var(--ink-80); line-height: 1.35; }
.phone-tabbar { margin-top: auto; display: flex; align-items: center; justify-content: space-around; padding: 12px 0 20px; border-top: 1px solid var(--line); }
.phone-tab { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.phone-tab i { display: block; width: 15px; height: 15px; border: 1.5px solid rgba(233, 233, 237, .35); border-radius: 4px; }
.phone-tab span { font-size: 8.5px; letter-spacing: .08em; color: rgba(233, 233, 237, .35); }
.phone-tab--on i { border-color: var(--color-accent-400); }
.phone-tab--on span { color: var(--color-accent-400); }
.phone-tab--round i { border-radius: 50%; }
.phone-tab--shield i { border-radius: 4px 4px 8px 8px; }
.phone-tab--square i { border-radius: 2px; }

/* ── Device mocks — desktop ────────────────────────────────────────────── */
@keyframes dtTick { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

.desktop {
  width: 100%; max-width: 760px; border-radius: 14px; overflow: hidden; background: #0b1017;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .62), 0 0 0 1px rgba(233, 233, 237, .10);
  font-family: var(--font-body);
}
.desktop-chrome { display: flex; align-items: center; gap: 12px; padding: 11px 16px; background: rgba(21, 29, 44, .85); border-bottom: 1px solid rgba(233, 233, 237, .08); }
.desktop-lights { display: flex; gap: 7px; }
.desktop-lights i { display: block; width: 10px; height: 10px; border-radius: 50%; background: #3f4552; }
.desktop-chrome img { height: 14px; width: auto; margin-left: 6px; opacity: .9; }
.desktop-app { font: 500 11.5px var(--font-heading); letter-spacing: .12em; text-transform: uppercase; color: rgba(233, 233, 237, .55); }
.desktop-note { margin-left: auto; font-size: 11px; color: rgba(233, 233, 237, .4); }
.desktop-wincontrols { display: flex; align-items: center; gap: 16px; margin-left: 16px; color: var(--ink-45); }
.desktop-wincontrols i:nth-child(1) { display: block; width: 11px; height: 1px; background: currentColor; }
.desktop-wincontrols i:nth-child(2) { display: block; width: 9px; height: 9px; border: 1px solid currentColor; }
.desktop-close { position: relative; width: 11px; height: 11px; }
.desktop-close i { position: absolute; top: 5px; left: 0; width: 13px; height: 1px; background: currentColor; }
.desktop-close i:first-child { transform: rotate(45deg); }
.desktop-close i:last-child { transform: rotate(-45deg); }
.desktop[data-platform="windows"] .desktop-lights,
.desktop[data-platform="macos"] .desktop-wincontrols { display: none; }
.desktop-body { display: grid; grid-template-columns: 64px minmax(0,1fr); }
.desktop-rail { border-right: 1px solid var(--line); padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.desktop-rail i { display: block; width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line-3); }
.desktop-rail i:first-child { background: rgba(77, 148, 214, .18); border-color: rgba(77, 148, 214, .45); }
.desktop-main { position: relative; padding: 24px 26px 26px; background: radial-gradient(520px 300px at 22% 10%, rgba(77, 148, 214, .14), transparent 70%); }
.desktop-top { display: flex; align-items: flex-start; gap: 22px; }
.desktop-headline { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.desktop-headline .dot { width: 10px; height: 10px; background: var(--ok); animation: dtTick 2.4s ease-in-out infinite; }
.desktop-headline span:last-child { font: 500 38px var(--font-heading); letter-spacing: -.025em; color: #fff; }
.desktop-caption { margin-top: 8px; font-size: 14px; color: rgba(233, 233, 237, .58); max-width: 340px; line-height: 1.5; }
.desktop-dial { position: relative; width: 118px; height: 118px; flex: none; display: flex; align-items: center; justify-content: center; }
.desktop-dial svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.desktop-dial-score { font: 500 30px var(--font-heading); line-height: 1; color: #fff; }
.desktop-dial-label { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-45); margin-top: 4px; }
.desktop-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.desktop-stat { border: 1px solid var(--line-2); border-radius: 10px; padding: 14px 16px; background: rgba(21, 29, 44, .6); }
.desktop-stat-label { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(233, 233, 237, .4); }
.desktop-stat-value { font: 500 17px var(--font-heading); color: #fff; margin-top: 6px; }
.desktop-stat-value--accent { color: var(--color-accent-300); }
.desktop-activity { margin-top: 18px; border: 1px solid rgba(233, 233, 237, .08); border-radius: 10px; padding: 16px 18px 18px; background: rgba(21, 29, 44, .45); }
.desktop-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(180deg, transparent, rgba(11, 16, 23, .85)); pointer-events: none; }

/* Blurred "there is more here" placeholder rows, shared by desktop + portal. */
.ghost-rows { display: flex; flex-direction: column; }
.ghost-row { display: flex; align-items: center; }
.ghost-row i { display: block; border-radius: 3px; background: rgba(233, 233, 237, .16); height: 7px; }
.ghost-rows--desktop { margin-top: 14px; filter: blur(3.5px); opacity: .5; gap: 11px; }
.ghost-rows--desktop .ghost-row { gap: 12px; }
.ghost-rows--portal { margin-top: 14px; filter: blur(4px); opacity: .42; gap: 12px; }
.ghost-rows--portal .ghost-row { gap: 14px; }
.ghost-rows--portal .ghost-row i { height: 8px; border-radius: 4px; }
.ghost-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.ghost-rows--portal .ghost-dot { width: 8px; height: 8px; }
.ghost-lead { background: rgba(233, 233, 237, .34) !important; }
.ghost-dim { background: rgba(233, 233, 237, .12) !important; }
.ghost-end { margin-left: auto; }

/* ── Device mocks — portal ─────────────────────────────────────────────── */
@keyframes ptTick { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes ptHalo { 0% { transform: scale(.7); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }
@keyframes ptDash { to { stroke-dashoffset: -320; } }
@keyframes ptDraw { from { stroke-dashoffset: 900; } to { stroke-dashoffset: 0; } }
@keyframes ptFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes ptBar { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

.portal {
  width: 100%; max-width: 1120px; border-radius: 14px; overflow: hidden; background: #0a0f18;
  box-shadow: 0 50px 110px rgba(0, 0, 0, .65), 0 0 0 1px rgba(233, 233, 237, .11);
  font-family: var(--font-body);
}
.portal-chrome { display: flex; align-items: center; gap: 14px; padding: 12px 20px; background: rgba(21, 29, 44, .8); border-bottom: 1px solid rgba(233, 233, 237, .08); }
.portal-chrome img { height: 16px; width: auto; opacity: .92; }
.portal-name { font: 500 11.5px var(--font-heading); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-60); }
.portal-scope { margin-left: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(233, 233, 237, .42); }
.portal-scope i { font-style: normal; border: 1px solid var(--line-3); border-radius: 6px; padding: 4px 10px; }
.portal-live { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--ok); }
.portal-live .dot { background: var(--ok); animation: ptTick 2s ease-in-out infinite; }
.portal-body { display: grid; grid-template-columns: 70px minmax(0,1fr); }
.portal-rail { border-right: 1px solid var(--line); padding: 18px 0; display: flex; flex-direction: column; align-items: center; gap: 12px; background: rgba(21, 29, 44, .35); }
.portal-rail i { display: block; width: 30px; height: 30px; border-radius: 8px; border: 1px solid rgba(233, 233, 237, .11); }
.portal-rail i:first-child { background: rgba(77, 148, 214, .2); border-color: rgba(77, 148, 214, .5); }
.portal-main { padding: 24px 26px 28px; background: radial-gradient(720px 380px at 18% 0%, rgba(77, 148, 214, .14), transparent 72%); }
.portal-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.portal-title { font: 500 26px var(--font-heading); letter-spacing: -.02em; color: #fff; margin-top: 6px; }
.portal-range { display: flex; gap: 8px; }
.portal-range span { border: 1px solid var(--line-3); border-radius: 7px; padding: 7px 14px; font-size: 11.5px; color: rgba(233, 233, 237, .55); }
.portal-range span.is-live { border-color: rgba(77, 148, 214, .4); color: var(--color-accent-300); }
.portal-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 12px; margin-top: 20px; }
.portal-kpi { display: flex; flex-direction: column; border: 1px solid var(--line-2); border-radius: 11px; padding: 18px 20px 16px; background: rgba(21, 29, 44, .55); }
.portal-kpi--hero { border-color: rgba(77, 148, 214, .34); background: linear-gradient(155deg, rgba(29, 63, 99, .5), rgba(21, 29, 44, .55)); }
.portal-kpi-label { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.portal-kpi-value { display: flex; align-items: baseline; gap: 6px; margin-top: 12px; }
.portal-kpi-value > span:first-child { font: 500 clamp(30px, 3.6vw, 44px) var(--font-heading); line-height: .95; letter-spacing: -.035em; }
.portal-kpi-value > span:last-child { font: 500 14px var(--font-heading); opacity: .6; }
.portal-kpi-delta { display: flex; align-items: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.portal-kpi-delta > span:first-child { display: inline-flex; align-items: center; gap: 4px; border-radius: 999px; padding: 3px 9px; font: 500 11px var(--font-heading); }
.portal-kpi-delta > span:last-child { font-size: 11px; color: rgba(233, 233, 237, .36); }
.delta-ok { border: 1px solid rgba(95, 191, 155, .2); background: rgba(95, 191, 155, .1); color: var(--ok); }
.delta-blue { border: 1px solid rgba(121, 176, 228, .2); background: rgba(121, 176, 228, .1); color: #79b0e4; }
.portal-spark { width: 100%; height: 26px; margin-top: 14px; }
.portal-panel { border: 1px solid var(--line-2); border-radius: 11px; padding: 18px 20px; background: rgba(21, 29, 44, .5); }
.portal-panel-head { display: flex; justify-content: space-between; align-items: center; }
.portal-panel-label { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(233, 233, 237, .42); }
.portal-panel-note { font-size: 10.5px; color: rgba(233, 233, 237, .3); }
.portal-row-2 { display: grid; grid-template-columns: minmax(0,1.7fr) minmax(0,1fr); gap: 12px; margin-top: 12px; }
.portal-row-3 { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,1fr) minmax(0,.85fr); gap: 12px; margin-top: 12px; }
.portal-row-4 { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); gap: 12px; margin-top: 12px; }
.portal-legend { display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: rgba(233, 233, 237, .7); }
.portal-legend span { display: flex; align-items: center; gap: 8px; }
.portal-legend i { display: block; width: 8px; height: 8px; border-radius: 2px; }
.portal-gauge-value { font: 500 30px var(--font-heading); line-height: 1; color: #fff; }
.portal-gauge-note { font-size: 11px; color: var(--warn); margin-top: 5px; }
.portal-compliance { font: 500 26px var(--font-heading); color: #fff; margin-top: 8px; }
.portal-bars { display: flex; align-items: flex-end; gap: 3px; height: 34px; margin-top: 12px; }
.portal-bars i { flex: 1; border-radius: 2px; animation: ptBar 3s ease-in-out infinite; }
.portal-ops { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; font-size: 12px; color: rgba(233, 233, 237, .72); }
.portal-op-head { display: flex; justify-content: space-between; }
.portal-op-track { height: 5px; border-radius: 3px; background: rgba(233, 233, 237, .08); margin-top: 5px; }
.portal-op-track i { display: block; height: 100%; border-radius: 3px; }
.portal-detail { position: relative; margin-top: 12px; border: 1px solid rgba(233, 233, 237, .08); border-radius: 11px; padding: 16px 20px 18px; background: rgba(21, 29, 44, .4); }
.portal-detail-veil { position: absolute; inset: 0; border-radius: 11px; background: linear-gradient(180deg, transparent, rgba(10, 15, 24, .9)); }

/* ===========================================================================
   Command center
   =========================================================================== */
.command { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #0b111c, #0d121e); }
.command-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; flex-wrap: wrap; }
.command-head .lede { max-width: 640px; margin-top: 20px; }
.portalwrap { position: relative; margin-top: 52px; border-radius: var(--radius-lg); overflow: hidden; display: flex; justify-content: center; padding-top: 8px; }
.portalwrap > div:first-child { flex: 1 1 auto; min-width: 0; max-width: 100%; }
.portalwrap-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(180deg, transparent, var(--color-bg)); pointer-events: none; }
.command-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.command-chip { border: 1px solid var(--line-3); border-radius: 999px; padding: 7px 15px; font-size: 13px; color: rgba(233, 233, 237, .66); background: rgba(21, 29, 44, .5); }
.command-note { margin-top: 14px; font-size: 12px; color: rgba(233, 233, 237, .3); }

/* ===========================================================================
   Integrations · industries
   =========================================================================== */
.intg-card { border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 26px 24px 28px; background: rgba(21, 29, 44, .35); transition: border-color .3s ease, transform .3s ease; }
.intg-card:hover { border-color: rgba(77, 148, 214, .45); transform: translateY(-3px); }
.intg-list { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; color: rgba(233, 233, 237, .72); }

.ind-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px;
  margin-top: 44px; background: rgba(233, 233, 237, .08);
  border: 1px solid rgba(233, 233, 237, .08); border-radius: var(--radius-lg); overflow: hidden;
}
.ind-cell { background: var(--color-bg); padding: 30px 28px 34px; transition: background .3s ease; }
.ind-cell:hover { background: rgba(29, 63, 99, .22); }
.ind-cell--cta { background: linear-gradient(150deg, rgba(29, 63, 99, .4), var(--color-bg)); display: flex; align-items: flex-end; }
.ind-cell--cta a { font: 500 15px var(--font-heading); color: var(--color-accent-300); }
.ind-name { font: 500 19px var(--font-heading); color: #fff; }
.ind-body { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; color: rgba(233, 233, 237, .55); }

/* ===========================================================================
   Final CTA
   =========================================================================== */
.future { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: linear-gradient(180deg, #0a0f18, #0f1b2b); }
.future-glow { position: absolute; inset: 0; background: radial-gradient(900px 520px at 50% 110%, rgba(77, 148, 214, .28), transparent 70%); }
.future .grid-overlay { background-size: 70px 70px; mask-image: radial-gradient(700px 400px at 50% 60%, #000, transparent 75%); }
.future-copy { margin: 26px auto 0; max-width: 560px; font-size: 17.5px; line-height: 1.65; color: var(--ink-60); }
.future-mark { height: 26px; width: auto; margin: 64px auto 0; opacity: .75; }

/* ===========================================================================
   Contact
   =========================================================================== */
.contact-form { margin-top: 34px; max-width: 560px; }
.contact-form[hidden] { display: none; }
.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 16px; }
.field-label { display: flex; flex-direction: column; gap: 7px; }
.field-label + .field-label--wide,
.field-label--wide { margin-top: 16px; }
.field-name {
  font: 500 10.5px var(--font-heading); letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-45);
}
.field-optional { text-transform: none; letter-spacing: 0; color: rgba(233, 233, 237, .28); }
.field-input {
  background: rgba(13, 18, 30, .7); border: 1px solid rgba(233, 233, 237, .14);
  border-radius: var(--radius-md); padding: 12px 14px;
  font: 400 15px var(--font-body); color: #e9e9ed; outline: none;
  transition: border-color .25s ease;
}
.field-input:focus { border-color: var(--color-accent); }
textarea.field-input { resize: vertical; }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.form-note { font-size: 12.5px; color: var(--ink-38); max-width: 280px; line-height: 1.5; }

.thanks {
  margin-top: 34px; max-width: 560px;
  border: 1px solid rgba(77, 148, 214, .32); border-radius: var(--radius-lg);
  padding: 30px 32px;
  background: linear-gradient(150deg, rgba(29, 63, 99, .4), rgba(21, 29, 44, .45));
}
.thanks[hidden] { display: none; }
.thanks-flag { display: flex; align-items: center; gap: 10px; }
.thanks-flag .dot { width: 8px; height: 8px; background: var(--ok); animation: tick 2s ease-in-out infinite; }
.thanks-flag span:last-child { font: 500 10.5px var(--font-heading); letter-spacing: .18em; text-transform: uppercase; color: var(--ok); }
.thanks-title { font: 500 24px var(--font-heading); letter-spacing: -.015em; color: #fff; margin-top: 14px; }
.thanks-body { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-60); }

.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.contact-card {
  display: block; border: 1px solid rgba(233, 233, 237, .10); border-radius: var(--radius-lg);
  padding: 22px 24px; background: rgba(21, 29, 44, .4); color: inherit;
  transition: border-color .25s ease, background .25s ease;
}
.contact-card:hover { border-color: rgba(77, 148, 214, .5); background: rgba(29, 63, 99, .24); color: inherit; }
.contact-address { font: 500 17px var(--font-heading); color: #fff; margin-top: 9px; }
.contact-desc { font-size: 13.5px; color: rgba(233, 233, 237, .5); margin-top: 6px; line-height: 1.5; }

/* ===========================================================================
   Footer
   =========================================================================== */
.site-footer { border-top: 1px solid rgba(233, 233, 237, .08); background: #0a0e17; font-family: var(--font-body); }
.g-foot { display: grid; grid-template-columns: 1.4fr repeat(5, minmax(0,1fr)); gap: 40px; max-width: 1320px; margin: 0 auto; padding: 64px 48px 34px; }
.foot-mark { height: 26px; width: auto; }
.foot-line { margin-top: 16px; font-size: 13.5px; line-height: 1.6; color: var(--ink-45); max-width: 250px; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border: 1px solid rgba(233, 233, 237, .14); border-radius: var(--radius-md);
  color: var(--ink-60); transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.foot-social a:hover { border-color: var(--color-accent); color: #fff; background: rgba(77, 148, 214, .12); }
.ftcol-head { font: 500 11px var(--font-heading); letter-spacing: .16em; text-transform: uppercase; color: rgba(233, 233, 237, .4); padding-bottom: 8px; }
.ftcol a { display: block; font-size: 13.5px; color: var(--ink-60); padding: 4px 0; }
.ftcol a:hover { color: var(--color-accent-200); }
.ftbar {
  max-width: 1320px; margin: 0 auto; padding: 22px 48px 40px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(233, 233, 237, .34);
}
.ftbar span { display: flex; gap: 18px; flex-wrap: wrap; }
.ftbar a { color: rgba(233, 233, 237, .42); }
.ftbar a:hover { color: var(--color-accent-200); }

/* ===========================================================================
   Responsive
   =========================================================================== */
@media (max-width: 1240px) {
  .g-mega { grid-template-columns: 200px minmax(0,1fr); gap: 32px; }
  .mega-cta { display: none; }
}
@media (max-width: 1180px) {
  .g-hero, .g-split, .g-safe { grid-template-columns: minmax(0,1fr); gap: 48px; }
  .g-safe > *:first-child { order: 2; }
  .g-family { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .g-foot { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 32px; }
  .navlinks { display: none; }
  .navtoggle { display: flex; }
  .megamenu { display: none !important; }
  .orbit-chip { font-size: 11px; }
}
@media (max-width: 1060px) {
  .g-resp, .g-contact, .g-plat { grid-template-columns: minmax(0,1fr); }
  .g-resp { gap: 28px; }
  .g-contact { gap: 40px; }
  .g-plat { gap: 36px; }
}
@media (max-width: 820px) {
  .sec { padding-left: 24px; padding-right: 24px; }
  .header-bar, .g-foot, .ftbar { padding-left: 24px; padding-right: 24px; }
  .g-foot { grid-template-columns: repeat(2, minmax(0,1fr)); }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .portal-row-2, .portal-row-3, .portal-row-4 { grid-template-columns: minmax(0,1fr); }
}
/* Phones. The source design stops at 820px, so everything below is additive:
   the fixed-size decorative rings and the device mocks are sized down to fit,
   and chrome that has a home in the drawer is dropped from the header. */
@media (max-width: 620px) {
  .g-family { grid-template-columns: minmax(0,1fr); }
  .desktop-stats { grid-template-columns: minmax(0,1fr); }
  .adm-list--two { grid-template-columns: minmax(0,1fr); }

  /* Header — the login link lives in the drawer at this width. */
  .header-bar { height: 72px; gap: 12px; }
  .header-logo img { height: 26px; }
  .header-login, .header-sep { display: none; }
  .header-demo { padding: 9px 13px; font-size: 11px; letter-spacing: .06em; }
  .navtoggle { width: 38px; height: 38px; }

  .hero-badge { font-size: 10px; letter-spacing: .14em; }
  .orbit-chip { padding: 6px 11px; gap: 6px; }
  .orbit-chip span:last-child { font-size: 11px; }
  .os-cell { min-width: 128px; padding: 18px 20px; }

  /* Decorative rings are fixed-size; scale them to the column. */
  .anchor-stage, .safe-stage { height: 420px; }
  .anchor-ring { width: 240px; height: 240px; }
  .anchor-ring-outer { width: 310px; height: 310px; }
  .anchor-phone { transform: scale(.74); }
  .anchor-tag, .safe-axis { display: none; }
  .safe-orbit, .safe-bloom { width: 300px; height: 300px; }
  .safe-dial { width: 240px; height: 240px; }
  .safe-score { font-size: 68px; }

  /* Device mocks: let the header wrap and the summary stack. */
  .desktop-body { grid-template-columns: 44px minmax(0,1fr); }
  .desktop-rail { gap: 10px; }
  .desktop-rail i { width: 22px; height: 22px; }
  .desktop-main { padding: 20px 18px; }
  .desktop-top { flex-direction: column; gap: 14px; }
  .desktop-headline span:last-child { font-size: 30px; }
  .portal-chrome { flex-wrap: wrap; gap: 10px; }
  .portal-scope { display: none; }
  .portal-live { margin-left: 0; }
  .portal-body { grid-template-columns: minmax(0,1fr); }
  .portal-rail { display: none; }
  .portal-main { padding: 18px 16px 20px; }
}
