:root {
  --void: #030407;
  --surface: #080a0e;
  --surface-2: #0d1016;
  --surface-3: #121722;
  --line: #202632;
  --line-strong: #354052;
  --white: #ffffff;
  --text: #cbd1dc;
  --muted: #8992a3;
  --subtle: #737c8c;
  --blue: #3567e7;
  --blue-bright: #7098ff;
  --blue-soft: rgba(59, 110, 245, 0.12);
  --green: #55db8a;
  --display: "Jost", "Century Gothic", Futura, system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --shell: 1240px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 0.68, 0.24, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
p, h1, h2, h3, dl, dd { margin-top: 0; }

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
  border-radius: 3px;
}

::selection { background: rgba(112, 152, 255, 0.32); color: var(--white); }

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--void);
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: 600;
}

.skip-link:focus { transform: none; }

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: 28px;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 145, 185, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 145, 185, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 44%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 44%);
}

.ambient-glow {
  position: absolute;
  width: 1100px;
  height: 700px;
  top: -510px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59, 110, 245, 0.24), transparent 66%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 4, 7, 0.9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 126px; height: auto; }

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

.desktop-nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.desktop-nav a:hover { color: var(--white); }
.nav-cta { margin-left: 10px; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--white);
  transition: transform 180ms ease;
}

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

.mobile-menu {
  position: fixed;
  inset: 82px 0 0;
  background: rgba(3, 4, 7, 0.985);
  padding: 24px 28px 42px;
  flex-direction: column;
  align-items: stretch;
}

.mobile-menu:not([hidden]) { display: flex; }
.mobile-menu a {
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 300;
}

.mobile-menu a:last-child {
  margin-top: 24px;
  border: 0;
  background: var(--blue);
  padding: 14px 20px;
  text-align: center;
  border-radius: 5px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); }
.button-primary:hover { background: #2f5fd7; box-shadow: 0 15px 38px -20px rgba(59, 110, 245, 0.9); }
.button-secondary { border-color: var(--line-strong); color: var(--white); background: rgba(255, 255, 255, 0.015); }
.button-secondary:hover { border-color: var(--blue-bright); background: rgba(59, 110, 245, 0.07); }
.button-small { min-height: 40px; padding: 9px 16px; font-size: 13px; }

.eyebrow, .kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
}

.eyebrow > span {
  width: 25px;
  height: 1px;
  background: var(--blue-bright);
}

.hero { padding-top: 88px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(520px, 1.09fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.hero-copy { padding: 38px 0 54px; }

.hero h1, .section h2, .contact-section h2 {
  font-family: var(--display);
  color: var(--white);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 27px;
  font-size: clamp(3.35rem, 5vw, 5.05rem);
  line-height: 0.99;
}

.hero h1 em, .contact-section h2 em {
  display: block;
  color: var(--blue-bright);
  font-style: normal;
}

.hero-lede {
  max-width: 57ch;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-trust i { width: 3px; height: 3px; border-radius: 50%; background: var(--blue-bright); }

.hero-system {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(17, 21, 30, 0.98), rgba(6, 8, 12, 0.98));
  box-shadow: 0 60px 100px -70px rgba(59, 110, 245, 0.9);
  overflow: hidden;
}

.hero-system::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 250px;
  right: -160px;
  top: -150px;
  background: radial-gradient(circle, rgba(59, 110, 245, 0.2), transparent 70%);
}

.system-bar, .system-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: rgba(3, 4, 7, 0.55);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--subtle);
}

.system-bar > div { display: flex; align-items: center; gap: 9px; }
.system-bar strong { color: var(--muted); font-weight: 500; }
.system-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-size: 13px;
}

.status { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-family: var(--mono); }
.status i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 9px currentColor; }

.system-intro { padding: 28px 27px 22px; }
.system-intro p { margin-bottom: 9px; color: var(--blue-bright); font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; }
.system-intro h2 { margin: 0; color: var(--white); font-family: var(--display); font-size: 1.75rem; font-weight: 300; line-height: 1.12; }

.system-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 0 14px 14px; }
.system-cards article { min-width: 0; border: 1px solid var(--line); background: rgba(10, 13, 19, 0.76); padding: 15px 14px; border-radius: 6px; }
.system-cards article > span { display: block; margin-bottom: 13px; color: var(--subtle); font-family: var(--mono); font-size: 9px; }
.system-cards h3 { margin: 14px 0 5px; color: var(--white); font-family: var(--display); font-size: 13px; font-weight: 400; }
.system-cards p { margin: 0; color: var(--subtle); font-size: 10px; line-height: 1.55; }

.mini-browser, .mini-chart, .mini-orbit { height: 68px; border: 1px solid var(--line); border-radius: 4px; background: var(--void); position: relative; overflow: hidden; }
.mini-browser { padding: 9px 7px; }
.mini-browser i { display: inline-block; width: 3px; height: 3px; margin-right: 3px; border-radius: 50%; background: var(--subtle); vertical-align: top; }
.mini-browser b, .mini-browser em { display: block; border-radius: 2px; }
.mini-browser b { height: 20px; margin-top: 5px; background: linear-gradient(115deg, rgba(59, 110, 245, 0.45), rgba(59, 110, 245, 0.06)); }
.mini-browser em { width: 58%; height: 4px; margin-top: 8px; background: #3a4251; }

.mini-chart { display: flex; align-items: end; gap: 5px; padding: 11px 9px 8px; }
.mini-chart i { flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(to top, rgba(59, 110, 245, 0.25), var(--blue-bright)); }
.mini-chart i:nth-child(1) { height: 34%; }.mini-chart i:nth-child(2) { height: 58%; }.mini-chart i:nth-child(3) { height: 45%; }.mini-chart i:nth-child(4) { height: 78%; }.mini-chart i:nth-child(5) { height: 66%; }

.mini-orbit::before, .mini-orbit::after { content: ""; position: absolute; border: 1px solid rgba(112, 152, 255, 0.3); border-radius: 50%; inset: 12px 25%; }
.mini-orbit::after { inset: 21px 36%; }
.mini-orbit i, .mini-orbit b, .mini-orbit em { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 12px rgba(112, 152, 255, 0.8); }
.mini-orbit i { left: 27%; top: 21px; }.mini-orbit b { right: 27%; bottom: 18px; }.mini-orbit em { left: calc(50% - 3px); top: calc(50% - 3px); }

.system-footer { border: 0; border-top: 1px solid var(--line); gap: 12px; padding: 12px 17px; }
.system-footer span { white-space: nowrap; }

.capability-rail { margin-top: 86px; border-block: 1px solid var(--line); background: rgba(8, 10, 14, 0.75); }
.rail-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.rail-inner span { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: 0.11em; text-transform: uppercase; white-space: nowrap; }
.rail-inner i { width: 4px; height: 4px; flex: 0 0 auto; transform: rotate(45deg); border: 1px solid var(--blue-bright); }

.section { padding: 122px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr); gap: 72px; align-items: end; margin-bottom: 52px; }
.section-heading .kicker, .standards-intro .kicker, .about-copy .kicker, .faq-intro .kicker, .contact-copy .kicker { margin-bottom: 15px; }
.section h2, .contact-section h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4vw, 3.55rem); line-height: 1.05; }
.section-heading > p { max-width: 54ch; margin: 0; color: var(--muted); font-size: 15px; }

.work-section { border-bottom: 1px solid var(--line); }
.case { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.case-featured { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.65fr); }
.case-visual { position: relative; min-height: 380px; background: var(--surface-2); overflow: hidden; }
.case-copy { padding: 38px; }
.case-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.case-meta span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.13em; color: var(--blue-bright); }
.case-meta span + span { color: var(--green); }
.case h3 { margin: 0 0 16px; color: var(--white); font-family: var(--display); font-size: 1.72rem; font-weight: 300; line-height: 1.15; }
.case-copy > p { margin-bottom: 24px; color: var(--muted); font-size: 14px; }

.trace-visual { padding: 24px; background: radial-gradient(circle at 78% 20%, rgba(59, 110, 245, 0.12), transparent 34%), #07090d; }
.trace-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(120, 140, 180, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 140, 180, 0.04) 1px, transparent 1px); background-size: 36px 36px; }
.trace-top, .trace-stats, .trace-flow, .trace-rows { position: relative; }
.trace-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; color: var(--muted); }
.trace-stats { display: grid; grid-template-columns: 0.65fr 1.35fr 0.75fr; gap: 9px; margin-bottom: 19px; }
.trace-stats div { border: 1px solid var(--line); border-radius: 5px; background: rgba(13, 16, 22, 0.86); padding: 13px 15px; }
.trace-stats small { display: block; margin-bottom: 7px; color: var(--subtle); font-family: var(--mono); font-size: 8px; letter-spacing: 0.11em; }
.trace-stats strong { color: var(--white); font-family: var(--display); font-size: 1.3rem; font-weight: 300; }
.trace-flow { min-height: 108px; display: flex; align-items: center; justify-content: center; padding: 17px; border: 1px solid var(--line); border-radius: 5px; background: rgba(13, 16, 22, 0.75); }
.trace-flow span { width: 94px; color: var(--muted); font-size: 9px; line-height: 1.45; text-align: center; }
.trace-flow span b { width: 29px; height: 29px; display: grid; place-items: center; margin: 0 auto 7px; border: 1px solid rgba(112, 152, 255, 0.5); border-radius: 50%; color: var(--blue-bright); font-family: var(--mono); font-size: 8px; font-weight: 400; background: var(--blue-soft); }
.trace-flow > i { width: clamp(24px, 4vw, 62px); height: 1px; background: linear-gradient(90deg, var(--blue), rgba(59, 110, 245, 0.16)); }
.trace-rows { display: grid; gap: 7px; margin-top: 12px; }
.trace-rows span { display: flex; align-items: center; gap: 8px; min-height: 30px; padding: 5px 10px; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); background: rgba(13, 16, 22, 0.82); font-family: var(--mono); font-size: 8px; }
.trace-rows span > i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.trace-rows span b { margin-left: auto; color: var(--subtle); font-weight: 400; }

.case-facts { display: grid; gap: 0; margin: 0 0 24px; border-top: 1px solid var(--line); }
.case-facts div { display: grid; grid-template-columns: 76px 1fr; gap: 8px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.case-facts dt { color: var(--subtle); font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.case-facts dd { color: var(--text); }

.text-link { display: inline-flex; align-items: center; gap: 9px; padding: 0 0 5px; border: 0; border-bottom: 1px solid rgba(112, 152, 255, 0.48); background: none; color: var(--white); font-size: 13px; font-weight: 500; cursor: pointer; }
.text-link:hover { color: var(--blue-bright); border-bottom-color: var(--blue-bright); }
.case-detail { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.case-detail p { margin: 0; color: var(--muted); font-size: 13px; }

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 15px; }
.case-compact { display: grid; grid-template-columns: 0.88fr 1.12fr; min-height: 440px; }
.case-compact .case-visual { min-height: 100%; }
.case-compact .case-copy { padding: 31px; }
.case-compact h3 { font-size: 1.5rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 24px; padding: 0; }
.tag-list li { padding: 4px 8px; border: 1px solid var(--line); border-radius: 3px; color: var(--subtle); font-family: var(--mono); font-size: 8px; }

.medichat-visual { display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 50% 20%, rgba(59, 110, 245, 0.18), transparent 45%), #07090d; }
.app-window { width: 100%; max-width: 260px; min-height: 260px; display: grid; grid-template-columns: 38px 1fr; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--surface); box-shadow: 0 25px 55px -30px rgba(59, 110, 245, 0.8); overflow: hidden; }
.app-sidebar { display: flex; align-items: center; flex-direction: column; gap: 15px; padding-top: 12px; border-right: 1px solid var(--line); background: #06080b; }
.app-sidebar b { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 5px; background: var(--blue); color: var(--white); font-family: var(--display); font-size: 11px; }
.app-sidebar i { width: 13px; height: 3px; border-radius: 3px; background: #394150; }
.app-content { padding: 28px 15px; }
.app-content small { color: var(--blue-bright); font-family: var(--mono); font-size: 7px; letter-spacing: 0.12em; }
.app-content > p { margin: 16px 0; color: var(--text); font-size: 11px; line-height: 1.6; }
.source-pill { width: fit-content; padding: 5px 7px; border: 1px solid rgba(112, 152, 255, 0.36); border-radius: 20px; color: var(--blue-bright); font-family: var(--mono); font-size: 6px; background: var(--blue-soft); }
.source-lines { display: grid; gap: 7px; margin-top: 30px; }
.source-lines i { height: 4px; border-radius: 2px; background: #303846; }.source-lines i:nth-child(2) { width: 88%; }.source-lines i:nth-child(3) { width: 67%; }

.voya-visual { display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 30% 20%, rgba(59, 110, 245, 0.18), transparent 45%), #07090d; }
.phone { position: relative; width: 170px; height: 320px; padding: 10px; border: 1px solid var(--line-strong); border-radius: 27px; background: #050609; box-shadow: 0 25px 60px -30px rgba(59, 110, 245, 0.8); overflow: hidden; }
.phone::before { content: ""; position: absolute; width: 55px; height: 11px; top: 7px; left: calc(50% - 27.5px); border-radius: 8px; background: #020203; z-index: 2; }
.phone-top { position: relative; z-index: 3; display: flex; justify-content: space-between; padding: 1px 6px 8px; color: var(--muted); font-family: var(--mono); font-size: 6px; }
.phone-top i { width: 19px; height: 5px; border-top: 1px solid var(--muted); border-bottom: 1px solid var(--muted); }
.route-map { position: relative; height: 174px; border-radius: 14px; background: linear-gradient(130deg, #121825, #080b10); overflow: hidden; }
.route-map::before, .route-map::after { content: ""; position: absolute; height: 250px; width: 17px; top: -37px; border: 1px solid #283143; border-block: 0; transform: rotate(35deg); }
.route-map::before { left: 46px; }.route-map::after { right: 28px; transform: rotate(-28deg); }
.route-map i { position: absolute; height: 1px; background: #283143; transform-origin: left; }.route-map i:nth-child(1) { width: 100px; left: 9px; top: 40px; transform: rotate(20deg); }.route-map i:nth-child(2) { width: 130px; left: 5px; top: 105px; transform: rotate(-12deg); }.route-map i:nth-child(3) { width: 110px; left: 45px; top: 144px; transform: rotate(8deg); }
.route-map b { position: absolute; width: 70px; height: 3px; left: 44px; top: 87px; border-radius: 4px; background: var(--blue-bright); transform: rotate(-57deg); box-shadow: 0 0 10px rgba(112, 152, 255, 0.7); }
.voice-card { position: absolute; left: 14px; right: 14px; bottom: 15px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: rgba(13, 16, 22, 0.96); }
.voice-card small { display: block; color: var(--blue-bright); font-family: var(--mono); font-size: 6px; letter-spacing: 0.12em; }
.voice-card strong { display: block; margin: 5px 0 10px; color: var(--white); font-size: 10px; font-weight: 500; }
.voice-card > span { display: flex; height: 18px; gap: 4px; align-items: center; }
.voice-card > span i { width: 2px; border-radius: 2px; background: var(--blue-bright); }.voice-card > span i:nth-child(1) { height: 5px; }.voice-card > span i:nth-child(2) { height: 12px; }.voice-card > span i:nth-child(3) { height: 18px; }.voice-card > span i:nth-child(4) { height: 9px; }.voice-card > span i:nth-child(5) { height: 4px; }

.services-section { border-bottom: 1px solid var(--line); }
.service-list { border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: 46px 62px minmax(280px, 1fr) minmax(260px, 0.7fr); gap: 30px; align-items: center; padding: 34px 18px 34px 4px; border-bottom: 1px solid var(--line); transition: background 180ms ease, padding 180ms ease; }
.service:hover { background: rgba(59, 110, 245, 0.035); padding-inline: 18px; }
.service-number { color: var(--blue-bright); font-family: var(--mono); font-size: 10px; }
.service-icon { position: relative; width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 7px; background: var(--surface); }
.service-icon i { position: absolute; left: 10px; right: 10px; height: 3px; border-radius: 2px; background: #475164; }.service-icon i:nth-child(1) { top: 12px; background: var(--blue-bright); }.service-icon i:nth-child(2) { top: 21px; }.service-icon i:nth-child(3) { width: 16px; top: 30px; }
.service-icon-chart { display: flex; align-items: end; gap: 4px; padding: 11px; }.service-icon-chart i { position: static; flex: 1; height: 40%; background: var(--blue-bright); }.service-icon-chart i:nth-child(2) { height: 75%; }.service-icon-chart i:nth-child(3) { width: auto; height: 55%; }
.service-icon-stack i { left: 11px; right: 11px; height: 12px; border: 1px solid rgba(112, 152, 255, 0.4); background: rgba(59, 110, 245, 0.08); }.service-icon-stack i:nth-child(1) { top: 8px; }.service-icon-stack i:nth-child(2) { top: 17px; }.service-icon-stack i:nth-child(3) { width: auto; top: 26px; }
.service-icon-ai i { width: 6px; height: 6px; left: auto; right: auto; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 8px rgba(112, 152, 255, 0.7); }.service-icon-ai i:nth-child(1) { left: 10px; top: 13px; }.service-icon-ai i:nth-child(2) { left: 29px; top: 21px; }.service-icon-ai i:nth-child(3) { width: 6px; left: 16px; top: 32px; }
.service h3 { margin: 0 0 7px; color: var(--white); font-family: var(--display); font-size: 1.35rem; font-weight: 400; }
.service p { max-width: 54ch; margin: 0; color: var(--muted); font-size: 13px; }
.service ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px; margin: 0; padding: 0; list-style: none; }
.service li { position: relative; padding-left: 13px; color: var(--subtle); font-family: var(--mono); font-size: 9px; }
.service li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 4px; height: 4px; border: 1px solid var(--blue-bright); transform: rotate(45deg); }

.standards-section { border-bottom: 1px solid var(--line); background: linear-gradient(110deg, rgba(59, 110, 245, 0.045), transparent 48%); }
.standards-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(60px, 9vw, 140px); }
.standards-intro { position: sticky; top: 125px; align-self: start; }
.standards-intro h2 { margin-bottom: 25px; }
.standards-intro > p { color: var(--muted); font-size: 15px; }
.standards-intro .text-link { margin-top: 12px; }
.standards-list { border-top: 1px solid var(--line); }
.standards-list article { display: grid; grid-template-columns: 45px 1fr; gap: 22px; padding: 27px 3px; border-bottom: 1px solid var(--line); }
.standards-list article > span { color: var(--blue-bright); font-family: var(--mono); font-size: 9px; }
.standards-list h3 { margin: 0 0 7px; color: var(--white); font-family: var(--display); font-size: 1.25rem; font-weight: 400; }
.standards-list p { margin: 0; color: var(--muted); font-size: 13px; }

.approach-section { border-bottom: 1px solid var(--line); }
.process { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); list-style: none; overflow: hidden; }
.process li { min-height: 248px; padding: 25px 21px; border-right: 1px solid var(--line); background: var(--surface); }
.process li:last-child { border: 0; }
.process span { display: block; margin-bottom: 53px; color: var(--blue-bright); font-family: var(--mono); font-size: 9px; }
.process h3 { margin: 0 0 10px; color: var(--white); font-family: var(--display); font-size: 1.2rem; font-weight: 400; }
.process p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.engagements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 78px; }
.engagements article { min-height: 300px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.engagements .engagement-featured { border-color: rgba(112, 152, 255, 0.48); background: linear-gradient(150deg, rgba(59, 110, 245, 0.11), var(--surface) 58%); }
.engagements h3 { margin: 15px 0 12px; color: var(--white); font-family: var(--display); font-size: 1.55rem; font-weight: 300; line-height: 1.15; }
.engagements article > p:not(.kicker) { color: var(--muted); font-size: 13px; }
.engagements article > span { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: var(--subtle); font-family: var(--mono); font-size: 8px; letter-spacing: 0.04em; text-transform: uppercase; }

.about-section { border-bottom: 1px solid var(--line); background: radial-gradient(circle at 20% 50%, rgba(59, 110, 245, 0.1), transparent 27%); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 100px; align-items: center; }
.about-lockup { min-height: 390px; display: grid; place-items: center; align-content: center; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(17, 21, 30, 0.75), rgba(5, 6, 9, 0.93)); }
.about-lockup img { width: min(80%, 390px); }
.about-coordinates { width: 76%; display: flex; align-items: center; gap: 14px; margin-top: 38px; color: var(--subtle); font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; }
.about-coordinates i { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--blue), transparent); }
.about-copy h2 { margin-bottom: 25px; }
.about-copy > p { color: var(--muted); font-size: 15px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 33px; }
.about-values div { padding: 15px 10px; border-top: 1px solid var(--line-strong); }
.about-values strong, .about-values span { display: block; }
.about-values strong { margin-bottom: 3px; color: var(--white); font-family: var(--display); font-size: 1.12rem; font-weight: 400; }
.about-values span { color: var(--subtle); font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

.faq-section { border-bottom: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 100px; }
.faq-intro { align-self: start; }
.faq-intro h2 { margin-bottom: 22px; }
.faq-intro > p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 19px 2px; border: 0; background: none; color: var(--white); text-align: left; font-family: var(--display); font-size: 1.08rem; font-weight: 400; cursor: pointer; }
.faq-item button i { position: relative; width: 17px; height: 17px; flex: 0 0 auto; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; left: 0; top: 8px; width: 17px; height: 1px; background: var(--blue-bright); transition: transform 180ms ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { padding: 0 45px 23px 2px; }
.faq-answer p { max-width: 70ch; margin: 0; color: var(--muted); font-size: 14px; }

.contact-section { position: relative; padding: 128px 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 900px; height: 620px; left: -410px; bottom: -390px; background: radial-gradient(circle, rgba(59, 110, 245, 0.22), transparent 67%); }
.contact-grid { position: relative; display: grid; grid-template-columns: 0.76fr 1.24fr; gap: clamp(70px, 10vw, 150px); }
.contact-copy { align-self: start; position: sticky; top: 125px; }
.contact-section h2 { margin-bottom: 26px; }
.contact-copy > p:not(.kicker):not(.response-note) { max-width: 48ch; color: var(--muted); }
.contact-email { display: inline-flex; align-items: center; gap: 10px; margin-top: 15px; padding-bottom: 5px; border-bottom: 1px solid var(--blue-bright); color: var(--white); font-family: var(--mono); font-size: 13px; }
.response-note { display: flex; align-items: center; gap: 9px; margin-top: 25px; color: var(--subtle); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.04em; }
.response-note span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.project-form { padding: 34px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.project-form > label, .field-row label { display: block; margin-bottom: 20px; }
.project-form label > span, .project-form legend { display: block; margin-bottom: 8px; color: var(--text); font-size: 12px; font-weight: 500; }
.project-form label small { color: var(--subtle); font-weight: 400; }
.project-form input, .project-form textarea, .project-form select { width: 100%; border: 1px solid var(--line-strong); border-radius: 4px; background: #05070a; color: var(--white); padding: 12px 13px; font-size: 14px; }
.project-form input { min-height: 48px; }
.project-form textarea { min-height: 130px; resize: vertical; }
.project-form select { min-height: 48px; appearance: auto; }
.project-form input::placeholder, .project-form textarea::placeholder { color: #6f7888; opacity: 1; }
.project-form input:focus, .project-form textarea:focus, .project-form select:focus { border-color: var(--blue-bright); outline: 1px solid var(--blue-bright); outline-offset: 0; }
.project-form fieldset { margin: 0 0 20px; padding: 0; border: 0; }
.project-form legend { margin-bottom: 11px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.choice-grid label { margin: 0; }
.choice-grid input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice-grid label > span { min-height: 44px; display: flex; align-items: center; margin: 0; padding: 9px 12px; border: 1px solid var(--line-strong); border-radius: 4px; background: #05070a; color: var(--muted); font-size: 11px; font-weight: 400; cursor: pointer; }
.choice-grid input:checked + span { border-color: var(--blue-bright); background: var(--blue-soft); color: var(--white); }
.choice-grid input:focus-visible + span { outline: 2px solid var(--blue-bright); outline-offset: 3px; }
.form-submit { width: 100%; margin-top: 4px; }
.form-note { margin: 12px 0 0; color: var(--subtle); font-size: 10px; line-height: 1.5; }
.form-status { margin: 10px 0 0; color: var(--blue-bright); font-size: 12px; }

.site-footer { padding: 70px 0 28px; background: #020305; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 0.7fr; gap: 80px; align-items: start; padding-bottom: 54px; }
.footer-brand img { width: 164px; }
.footer-main > p { color: var(--subtle); font-size: 13px; }
.footer-main nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 22px; }
.footer-main nav a, .footer-bottom a { color: var(--muted); font-size: 12px; }
.footer-main nav a:hover, .footer-bottom a:hover { color: var(--white); }
.footer-bottom { min-height: 50px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; padding-top: 22px; border-top: 1px solid var(--line); color: var(--subtle); font-family: var(--mono); font-size: 9px; }
.footer-bottom > div { display: flex; justify-content: center; gap: 20px; }
.footer-bottom > a { justify-self: end; font-family: var(--mono); font-size: 9px; }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }

.legal-page { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: 92px 0 120px; }
.legal-content { max-width: 780px; }
.legal-content .kicker { margin-bottom: 15px; }
.legal-content h1 { margin: 0 0 24px; color: var(--white); font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 300; line-height: 1; }
.legal-content > p { color: var(--muted); }
.legal-content h2 { margin: 45px 0 13px; color: var(--white); font-family: var(--display); font-size: 1.55rem; font-weight: 400; }
.legal-content ul { color: var(--muted); }
.legal-back { margin-top: 40px; }

.error-main { min-height: calc(100vh - 83px); display: grid; place-items: center; padding: 80px 0; }
.error-content { max-width: 700px; text-align: center; }
.error-code { display: block; margin-bottom: 20px; color: var(--blue-bright); font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; }
.error-content h1 { margin: 0 0 20px; color: var(--white); font-family: var(--display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 0.95; }
.error-content p { max-width: 52ch; margin: 0 auto 30px; color: var(--muted); }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; max-width: 850px; }
  .hero-copy { max-width: 750px; padding-bottom: 12px; }
  .hero h1 { max-width: 11ch; }
  .hero-system { max-width: 780px; }
  .case-featured { grid-template-columns: 1fr; }
  .case-featured .case-visual { min-height: 420px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-compact { grid-template-columns: 0.7fr 1.3fr; min-height: 400px; }
  .service { grid-template-columns: 40px 52px minmax(260px, 1fr); }
  .service ul { grid-column: 3; margin-top: -12px; }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process li { border-bottom: 1px solid var(--line); }
  .process li:nth-child(3) { border-right: 0; }
  .process li:nth-child(4), .process li:nth-child(5) { border-bottom: 0; }
  .about-grid { gap: 60px; }
  .faq-grid { gap: 60px; }
}

@media (max-width: 860px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p { max-width: 65ch; }
  .standards-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 54px; }
  .standards-intro, .contact-copy { position: static; }
  .about-lockup { min-height: 320px; }
  .engagements { grid-template-columns: 1fr; }
  .engagements article { min-height: 245px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { grid-column: 2; grid-row: 1 / span 2; }
  .footer-bottom { grid-template-columns: 1fr auto; gap: 15px; }
  .footer-bottom > div { display: none; }
}

@media (max-width: 700px) {
  .shell { padding-inline: 20px; }
  .nav-shell { min-height: 74px; }
  .mobile-menu { inset-block-start: 74px; }
  .brand img { width: 116px; }
  .hero { padding-top: 42px; }
  .hero-grid { gap: 38px; }
  .hero-copy { padding-top: 24px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 3.8rem); }
  .hero-lede { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 8px; font-size: 8px; }
  .system-cards { grid-template-columns: 1fr; }
  .system-cards article { display: grid; grid-template-columns: 26px 78px 1fr; gap: 10px; align-items: center; }
  .system-cards article > span { margin: 0; }
  .system-cards h3 { margin: 0 0 2px; }
  .system-cards p { grid-column: 3; }
  .mini-browser, .mini-chart, .mini-orbit { grid-row: 1 / span 2; grid-column: 2; height: 55px; }
  .system-intro { padding: 24px 20px 18px; }
  .system-intro h2 { font-size: 1.45rem; }
  .system-footer { overflow: hidden; }
  .system-footer span:nth-child(3) { display: none; }
  .capability-rail { margin-top: 62px; }
  .rail-inner { min-height: 60px; justify-content: flex-start; overflow: hidden; }
  .rail-inner span:nth-of-type(n+4), .rail-inner i:nth-of-type(n+4) { display: none; }
  .section { padding: 88px 0; }
  .section-heading { margin-bottom: 36px; }
  .section h2, .contact-section h2 { font-size: clamp(2.2rem, 10.5vw, 3rem); }
  .case-featured .case-visual { min-height: 430px; }
  .trace-visual { padding: 15px; }
  .trace-top { margin-bottom: 15px; }
  .trace-stats { grid-template-columns: repeat(2, 1fr); }
  .trace-stats div:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
  .trace-flow { padding-inline: 5px; }
  .trace-flow span { width: 63px; font-size: 7px; }
  .trace-flow > i { width: 12px; }
  .trace-rows span { font-size: 7px; }
  .case-copy { padding: 27px 22px; }
  .case-compact { grid-template-columns: 1fr; }
  .case-compact .case-visual { min-height: 330px; }
  .case-compact .case-copy { padding: 27px 22px; }
  .service { grid-template-columns: 34px 48px 1fr; gap: 16px; padding-block: 28px; }
  .service h3 { font-size: 1.18rem; }
  .service ul { grid-column: 3; grid-template-columns: 1fr; }
  .standards-list article { grid-template-columns: 34px 1fr; gap: 13px; }
  .process { grid-template-columns: 1fr; }
  .process li { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line) !important; padding: 24px; }
  .process li:last-child { border-bottom: 0 !important; }
  .process span { margin-bottom: 18px; }
  .engagements { margin-top: 55px; }
  .about-lockup { min-height: 250px; }
  .about-values { grid-template-columns: 1fr; }
  .about-values div { padding-left: 0; }
  .faq-grid { gap: 32px; }
  .faq-item button { min-height: 70px; font-size: 1rem; }
  .contact-section { padding: 90px 0; }
  .project-form { padding: 25px 18px; }
  .field-row, .choice-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-main nav { grid-column: auto; grid-row: auto; }
  .footer-bottom { display: flex; flex-direction: column; align-items: flex-start; }
  .footer-bottom > a { justify-self: auto; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 2.65rem; }
  .system-cards article { grid-template-columns: 23px 64px 1fr; padding-inline: 11px; }
  .trace-flow span { width: 57px; }
  .trace-flow span b { width: 25px; height: 25px; }
  .trace-rows span b { display: none; }
  .service { grid-template-columns: 30px 1fr; }
  .service-icon { display: none; }
  .service ul { grid-column: 2; }
}

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

@media print {
  .site-header, .ambient, .hero-system, .capability-rail, .contact-section, .site-footer { display: none !important; }
  body { color: #111; background: #fff; }
  .section { padding: 30px 0; }
  .section h2, .case h3, .service h3, .standards-list h3, .process h3 { color: #111; }
}

/* ---- merged additions ---- */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.consent-line { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.consent-line input { width: auto; margin-top: 3px; flex: none; accent-color: var(--blue-bright); }
.consent-line span { display: block; }
.consent-line a { color: var(--blue-bright); border-bottom: 1px solid rgba(112,152,255,.4); }

/* hero panel: bring the static minis to life */
@media (prefers-reduced-motion: no-preference) {
  .mini-chart i { transform-origin: bottom; animation: barRise 1s var(--ease) backwards; }
  .mini-chart i:nth-child(1){animation-delay:.30s}.mini-chart i:nth-child(2){animation-delay:.40s}
  .mini-chart i:nth-child(3){animation-delay:.50s}.mini-chart i:nth-child(4){animation-delay:.60s}
  .mini-chart i:nth-child(5){animation-delay:.70s}
  @keyframes barRise { from { transform: scaleY(.06); opacity: .35 } to { transform: scaleY(1); opacity: 1 } }

  .mini-browser b { animation: paint 1.1s var(--ease) .35s backwards; }
  .mini-browser em { animation: paint 1.1s var(--ease) .55s backwards; }
  @keyframes paint { from { clip-path: inset(0 100% 0 0) } to { clip-path: inset(0 0 0 0) } }

  .mini-orbit::before { animation: spin 16s linear infinite; }
  .mini-orbit::after { animation: spin 11s linear infinite reverse; }
  @keyframes spin { to { transform: rotate(360deg) } }
  .mini-orbit i, .mini-orbit b { animation: twinkle 3.4s ease-in-out infinite; }
  .mini-orbit b { animation-delay: 1.2s; }
  @keyframes twinkle { 0%,100% { opacity:.45; transform:scale(.85) } 50% { opacity:1; transform:scale(1.15) } }

  .system-bar .status i { animation: livePulse 2.6s ease-in-out infinite; }
  @keyframes livePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(85,219,138,.55) } 60% { box-shadow: 0 0 0 7px rgba(85,219,138,0) } }

  .system-cards article { transition: transform .35s var(--ease), border-color .35s var(--ease); }
  .system-cards article:hover { transform: translateY(-3px); border-color: var(--line-strong); }
}

/* small business page */
.plan-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.plan { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: 28px 26px; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s; }
.plan:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.plan.featured { border-color: rgba(112,152,255,.42);
  background: linear-gradient(180deg, rgba(59,110,245,.07), var(--surface) 52%); }
.plan .tag { font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue-bright); margin: 0 0 12px; }
.plan h3 { font-family: var(--display); font-weight: 400; color: var(--white); font-size: 1.25rem; margin: 0 0 8px; }
.plan .who { font-size: 13.5px; color: var(--muted); margin: 0 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.plan .price { font-family: var(--display); font-weight: 300; color: var(--white); font-size: 2rem;
  line-height: 1; margin-bottom: 6px; letter-spacing: -.02em; }
.plan .price small { font-family: var(--mono); font-size: .7rem; color: var(--muted); }
.plan .setup { font-family: var(--mono); font-size: 11px; color: var(--subtle); margin: 0 0 20px; }
.plan ul { list-style: none; margin: 0 0 22px; padding: 0; font-size: 14px; flex: 1; }
.plan li { padding: 6px 0 6px 21px; position: relative; color: var(--text); }
.plan li::before { content: ""; position: absolute; left: 3px; top: 12px; width: 5px; height: 9px;
  border-right: 1.6px solid var(--blue-bright); border-bottom: 1.6px solid var(--blue-bright); transform: rotate(45deg); }
@media (min-width: 760px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- interactive hero surface ---- */
.scroll-prog { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--blue-bright);
  z-index: 200; box-shadow: 0 0 12px rgba(112,152,255,.85); }

.sys-tab { display: block; width: 100%; text-align: left; font: inherit; color: inherit;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; padding: 14px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease); }
.sys-tab::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--blue-bright); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease); }
.sys-tab:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.sys-tab.is-active { background: var(--surface-3); border-color: rgba(112,152,255,.4); }
.sys-tab.is-active::after { transform: scaleX(1); }
.sys-tab > span { font-family: var(--mono); font-size: 10px; color: var(--subtle); display: block; margin-bottom: 9px; }
.sys-tab.is-active > span { color: var(--blue-bright); }
.sys-tab h3 { font-family: var(--display); font-weight: 400; color: var(--white);
  font-size: 14px; margin: 10px 0 5px; }
.sys-tab p { margin: 0; font-size: 11.5px; line-height: 1.55; color: var(--muted); }

.sys-out { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 15px; min-height: 132px; }
.sys-panel[hidden] { display: none; }
.sys-out-h { font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--subtle); margin: 0 0 11px; }
.sys-list { list-style: none; margin: 0; padding: 0; }
.sys-list li { position: relative; padding: 4px 0 4px 22px; font-size: 12.5px; color: var(--text);
  font-family: var(--mono); opacity: 0; transform: translateY(4px); }
.sys-panel.is-on .sys-list li { animation: lineIn .45s var(--ease) forwards; }
.sys-panel.is-on .sys-list li:nth-child(1){animation-delay:.05s}
.sys-panel.is-on .sys-list li:nth-child(2){animation-delay:.16s}
.sys-panel.is-on .sys-list li:nth-child(3){animation-delay:.27s}
.sys-panel.is-on .sys-list li:nth-child(4){animation-delay:.38s}
@keyframes lineIn { to { opacity: 1; transform: none } }
.sys-list li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 5px; height: 9px;
  border-right: 1.6px solid var(--green); border-bottom: 1.6px solid var(--green); transform: rotate(45deg); }

/* ---- credential cards ---- */
.creds { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
.cred { border: 1px solid var(--line); border-radius: 6px; background: var(--surface); padding: 15px 17px;
  transition: border-color .3s var(--ease), transform .3s var(--ease); }
.cred:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.cred b { display: block; font-family: var(--display); font-weight: 400; color: var(--white);
  font-size: .96rem; margin-bottom: 3px; }
.cred span { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
@media (min-width: 640px) { .creds { grid-template-columns: repeat(2, 1fr); } }

/* ---- pointer glow on cards ---- */
.case, .service, .plan, .cred { position: relative; }
.case::before, .service::before, .plan::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .35s var(--ease);
  background: radial-gradient(560px circle at var(--px,50%) var(--py,0%), rgba(59,110,245,.10), transparent 42%); }
.case:hover::before, .service:hover::before, .plan:hover::before { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .sys-panel.is-on .sys-list li { animation: none; opacity: 1; transform: none; }
}
