:root {
  --bg: #f6f7f9;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-accent: rgba(244, 246, 250, 0.96);
  --line: rgba(24, 40, 69, 0.08);
  --line-strong: rgba(24, 40, 69, 0.16);
  --text: #0d172a;
  --muted: #6d788c;
  --accent: #2444a8;
  --accent-ice: #89ebff;
  --accent-2: #5b79de;
  --accent-3: #d8dfe9;
  --brand-navy: #16294f;
  --brand-silver: #dfe4eb;
  --shadow: 0 24px 70px rgba(34, 48, 78, 0.1);
  --shadow-soft: 0 10px 28px rgba(34, 48, 78, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 10%, rgba(137, 235, 255, 0.12), transparent 18%),
    radial-gradient(circle at 12% 28%, rgba(36, 68, 168, 0.06), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(170, 180, 198, 0.08), transparent 30%),
    linear-gradient(180deg, #fafbfc 0%, #f4f6f8 48%, #f7f8fa 100%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 48, 78, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 48, 78, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.65), transparent 92%);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(330deg, rgba(255, 255, 255, 0.12), transparent 36%);
  opacity: 0.24;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(252, 253, 255, 0.84);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-navy), var(--accent-ice));
  box-shadow:
    0 0 0 6px rgba(36, 68, 168, 0.08),
    0 0 0 12px rgba(137, 235, 255, 0.08);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong,
.button,
.eyebrow,
.metric-label,
.feature-code,
.insight-tag,
.panel-tag,
.status-pill,
.signal-chip,
.proof-type {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-copy .brand-note {
  color: #74839c;
  font-size: 0.66rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.brand-copy .brand-note::before {
  content: "|";
  margin-right: 8px;
  color: rgba(92, 109, 136, 0.56);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}

.site-nav-links a:hover,
.site-nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(66, 98, 180, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(66, 98, 180, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: 180ms ease;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 92px 0 52px;
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 72px;
  padding: 108px 0 70px;
}

.hero-copy {
  max-width: 500px;
  padding-left: 18px;
}

.page-main {
  padding-top: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5c72a4;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(3.2rem, 7.3vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 8.5ch;
}

.hero-title {
  max-width: none;
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 10.4ch;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-lead,
.page-lead,
.section-lead,
.cta-band p,
.faq-list p,
.detail-list li,
.audience-card p,
.feature-card p,
.service-entry p,
.insight-card p,
.proof-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-lead,
.page-lead {
  margin-top: 22px;
  max-width: 42ch;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6078ae;
  line-height: 1.5;
}

.hero-lead {
  max-width: 28ch;
  letter-spacing: 0.12em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand-navy), #3e5dc8);
  box-shadow: 0 16px 34px rgba(36, 68, 168, 0.2);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(24, 40, 69, 0.1);
}

.hero-footnote {
  margin-top: 16px;
  color: #7b879b;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.inline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(66, 98, 180, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-mini-proof {
  width: min(240px, 100%);
  margin-top: 22px;
  padding: 20px 22px;
}

.glass-card,
.glass-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.glass-card {
  border-radius: var(--radius-md);
  padding: 24px;
}

.glass-panel {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.metric-card::after,
.glass-card::after,
.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 32%, transparent 68%, rgba(36, 68, 168, 0.05));
  mix-blend-mode: screen;
}

.metric-label,
.panel-tag,
.proof-type,
.insight-tag,
.feature-code {
  display: inline-flex;
  color: #6a86c7;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-value {
  display: block;
  margin-top: 16px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.metric-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  transform: translateX(8px) scale(0.94);
  transform-origin: center;
}

.orbital-visual {
  overflow: hidden;
  opacity: 0.84;
}

.hero-grid-shell {
  position: absolute;
  inset: 68px 40px;
  border-radius: 36px;
  border: 1px solid rgba(24, 40, 69, 0.08);
  background:
    linear-gradient(rgba(24, 40, 69, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 40, 69, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.46),
    0 18px 54px rgba(34, 48, 78, 0.08);
}

.hero-grid-shell::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-grid-shell::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(36, 68, 168, 0.18), rgba(36, 68, 168, 0.18)) top left / 44px 1px no-repeat,
    linear-gradient(rgba(36, 68, 168, 0.18), rgba(36, 68, 168, 0.18)) top left / 1px 44px no-repeat,
    linear-gradient(90deg, rgba(36, 68, 168, 0.18), rgba(36, 68, 168, 0.18)) bottom right / 44px 1px no-repeat,
    linear-gradient(rgba(36, 68, 168, 0.18), rgba(36, 68, 168, 0.18)) bottom right / 1px 44px no-repeat;
  opacity: 0.72;
}

.hero-beam {
  position: absolute;
  width: 520px;
  height: 136px;
  background: linear-gradient(90deg, rgba(36, 68, 168, 0), rgba(137, 235, 255, 0.26), rgba(36, 68, 168, 0));
  filter: blur(18px);
  transform: rotate(-28deg) translateX(-36px);
  opacity: 0.42;
  animation: beamSweep 8s ease-in-out infinite;
}

.hero-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(36, 68, 168, 0.1);
  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.26),
    0 0 30px rgba(36, 68, 168, 0.06);
  animation: orbitSpin 18s linear infinite;
}

.orbit-ring-lg {
  width: 392px;
  height: 392px;
}

.orbit-ring-md {
  width: 300px;
  height: 300px;
  border-color: rgba(137, 235, 255, 0.18);
  animation-duration: 13s;
  animation-direction: reverse;
}

.orbit-ring-sm {
  width: 214px;
  height: 214px;
  border-color: rgba(91, 121, 222, 0.12);
  animation-duration: 9s;
}

.hero-orbit-glow {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.88) 0 12%, rgba(137, 235, 255, 0.12) 13%, rgba(137, 235, 255, 0) 48%),
    conic-gradient(from 180deg, rgba(36, 68, 168, 0.14), transparent 22%, rgba(137, 235, 255, 0.18), transparent 50%, rgba(36, 68, 168, 0.08), transparent 80%, rgba(36, 68, 168, 0.14));
  filter: blur(12px);
  opacity: 0.58;
  animation: neonPulse 4.4s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.9;
  transition: transform 160ms ease-out;
  animation: ambientFloat 11s ease-in-out infinite;
}

.orb-a {
  width: 320px;
  height: 320px;
  top: 70px;
  left: 34px;
  background: radial-gradient(circle at 35% 35%, rgba(43, 195, 255, 0.72), rgba(43, 195, 255, 0));
}

.orb-b {
  width: 280px;
  height: 280px;
  right: 18px;
  bottom: 72px;
  background: radial-gradient(circle at 35% 35%, rgba(45, 224, 181, 0.62), rgba(45, 224, 181, 0));
  animation-delay: -4s;
}

.hero-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 8px;
  min-width: 196px;
  padding: 20px 22px;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 246, 250, 0.9));
  animation: ambientFloat 8.5s ease-in-out infinite;
}

.hero-orbit-core::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, rgba(36, 68, 168, 0.12), transparent 18%, rgba(137, 235, 255, 0.14), transparent 48%, rgba(91, 121, 222, 0.08), transparent 78%, rgba(36, 68, 168, 0.12));
  filter: blur(10px);
  z-index: -1;
  animation: neonPulse 4.2s ease-in-out infinite;
}

.core-id {
  display: inline-flex;
  justify-content: center;
  color: #5d83d8;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.core-title {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 1.28rem;
}

.core-text {
  color: #607390;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-side-panel {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 6px;
  min-width: 154px;
  padding: 13px 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 248, 255, 0.62));
}

.hero-side-panel strong {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.98rem;
}

.hero-side-panel span:last-child {
  color: #677a99;
  font-size: 0.8rem;
}

.side-panel-a {
  top: 130px;
  right: 46px;
}

.side-panel-b {
  right: 58px;
  bottom: 198px;
}

.floating-rail {
  position: absolute;
  bottom: 46px;
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 78%;
  padding: 14px 16px;
  transform: translateX(-50%);
  transition: transform 160ms ease-out;
  z-index: 2;
}

.floating-rail span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #5d7092;
  border: 1px solid rgba(66, 98, 180, 0.12);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.telemetry-strip {
  position: absolute;
  top: 108px;
  left: 46px;
  display: flex;
  gap: 10px;
  padding: 9px 10px;
  z-index: 2;
  opacity: 0.88;
}

.telemetry-strip span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #5d76a4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: 58px 0;
}

.section-head {
  max-width: 800px;
  margin-bottom: 24px;
}

.section-title {
  margin-top: 16px;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-lead {
  margin-top: 18px;
}

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

.capability-item {
  padding: 16px 16px 18px;
  border-right: 1px solid rgba(24, 40, 69, 0.08);
}

.capability-item:last-child {
  border-right: 0;
}

.capability-item h3,
.client-chip h3,
.insight-row h3 {
  margin-top: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.capability-item p,
.client-chip p,
.command-bar-copy p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.client-strip {
  display: grid;
  grid-template-columns: 1.08fr 1fr 0.92fr;
  gap: 18px;
}

.client-chip {
  min-height: 150px;
  display: grid;
  align-content: start;
}

.client-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #5485e3;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  background: rgba(84, 133, 227, 0.08);
  box-shadow: inset 0 0 0 1px rgba(84, 133, 227, 0.1);
}

.insight-list {
  padding: 8px 18px;
}

.insight-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 18px;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(24, 40, 69, 0.08);
}

.insight-row:last-child {
  border-bottom: 0;
}

.insight-kind,
.insight-index {
  color: #5f83c8;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-index {
  justify-self: end;
}

.command-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 28px;
}

.command-bar-copy {
  max-width: 520px;
}

.command-bar h2 {
  margin-top: 12px;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.06;
}

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

.feature-grid,
.audience-grid,
.proof-grid,
.service-entry-grid,
.insight-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

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

.audience-grid,
.proof-grid,
.insight-grid,
.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card h3,
.audience-card h3,
.proof-card h3,
.service-entry h3,
.insight-card h3,
.service-detail h3,
.package-card h3,
.faq-list h3,
.channel-card h3 {
  margin-top: 10px;
  font-size: 1.16rem;
  line-height: 1.28;
}

.feature-card p,
.audience-card p,
.proof-card p,
.service-entry p,
.insight-card p,
.package-card p {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.feature-card,
.audience-card,
.insight-card,
.package-card,
.service-detail,
.channel-card,
.mini-pane {
  padding: 22px;
}

.feature-card,
.audience-card,
.insight-card {
  min-height: 138px;
}

.service-entry-grid,
.section-actions {
  margin-top: 10px;
}

.section-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.insight-tag,
.proof-type {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(86, 139, 255, 0.09);
}

.page-grid {
  align-items: start;
}

.stacked-panes {
  display: grid;
  gap: 16px;
}

.mini-pane {
  min-height: 128px;
}

.mini-pane span,
.mini-pane strong {
  display: block;
}

.mini-pane span {
  color: var(--muted);
  line-height: 1.7;
}

.accent-pane {
  background: linear-gradient(180deg, rgba(240, 248, 255, 0.96), rgba(255, 255, 255, 0.82));
}

.accent-pane strong {
  font-size: 1.18rem;
}

.accent-pane span {
  margin-top: 10px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-list,
.timeline,
.checklist {
  margin-top: 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.detail-list li,
.timeline li,
.checklist li {
  padding-left: 18px;
  position: relative;
}

.detail-list li::before,
.timeline li::before,
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-ice));
  box-shadow: 0 0 0 4px rgba(47, 140, 255, 0.1);
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.timeline li {
  display: grid;
  gap: 6px;
}

.timeline strong,
.checklist strong {
  font-size: 1rem;
}

.timeline span,
.checklist span {
  color: var(--muted);
  line-height: 1.7;
}

.faq-shell {
  padding: 34px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.faq-list article {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(66, 98, 180, 0.11);
}

.faq-list p {
  margin-top: 12px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 32px;
}

.cta-band h2 {
  margin-top: 14px;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}

.cta-band p {
  margin-top: 14px;
  max-width: 62ch;
}

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

.contact-glow-card {
  min-height: 240px;
  display: grid;
  align-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 246, 255, 0.8));
}

.contact-glow-card strong {
  margin-top: 12px;
  font-size: 1.35rem;
}

.contact-glow-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.channel-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.channel-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(66, 98, 180, 0.11);
}

.channel-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.channel-card span {
  display: block;
  margin-top: 12px;
  color: #3575d9;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
}

.site-footer {
  padding: 30px 0 56px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(66, 98, 180, 0.11);
}

.footer-shell strong {
  font-size: 1rem;
}

.footer-shell p {
  margin-top: 8px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  animation: revealUp 520ms ease both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.018);
  }
}

@keyframes neonPulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(0.985);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes beamSweep {
  0%,
  100% {
    transform: rotate(-28deg) translateX(-54px) scaleX(0.96);
    opacity: 0.42;
  }
  50% {
    transform: rotate(-28deg) translateX(54px) scaleX(1.04);
    opacity: 0.78;
  }
}

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

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .split-panel,
  .service-detail-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 580px;
    transform: none;
  }

  .hero-copy {
    max-width: none;
    padding-left: 0;
  }

  .feature-grid,
  .audience-grid,
  .proof-grid,
  .service-entry-grid,
  .insight-grid,
  .package-grid,
  .client-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insight-row {
    grid-template-columns: 120px minmax(0, 1fr) 36px;
  }

  h1 {
    max-width: 14ch;
  }

  .hero-title {
    font-size: clamp(2.8rem, 8vw, 4.4rem);
  }

  .side-panel-a,
  .side-panel-b {
    min-width: 146px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .command-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    border-radius: 28px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    padding-top: 16px;
  }

  body.nav-open .site-nav-links {
    display: flex;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero,
  .page-hero {
    padding-top: 24px;
  }

  .brand-copy .brand-note {
    font-size: 0.58rem;
  }

  .brand-meta {
    flex-wrap: wrap;
    gap: 2px 6px;
    white-space: normal;
  }

  .brand-copy .brand-note::before {
    margin-right: 6px;
  }

  .brand-copy .brand-note {
    max-width: 20ch;
  }

  .hero {
    gap: 34px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-title {
    font-size: clamp(2.55rem, 15vw, 3.6rem);
    line-height: 0.98;
  }

  .hero-title-line {
    white-space: normal;
  }

  .feature-grid,
  .audience-grid,
  .proof-grid,
  .service-entry-grid,
  .insight-grid,
  .package-grid,
  .client-strip,
  .capability-rail {
    grid-template-columns: 1fr;
  }

  .floating-rail {
    position: static;
    max-width: 100%;
    margin-top: 18px;
    transform: none;
  }

  .telemetry-strip {
    position: static;
    margin-top: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .floating-rail,
  .faq-shell,
  .cta-band {
    padding: 22px;
  }

  .command-bar {
    padding: 22px;
  }

  .hero-grid-shell {
    inset: 32px 14px;
  }

  .hero-beam {
    width: 380px;
    height: 120px;
  }

  .hero-side-panel {
    position: static;
    min-width: unset;
  }

  .hero-orbit-ring,
  .hero-orbit-glow,
  .hero-grid-shell,
  .hero-beam {
    display: none;
  }

  .orbital-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
    justify-items: stretch;
    opacity: 1;
  }

  .capability-item {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 40, 69, 0.08);
  }

  .capability-item:last-child {
    border-bottom: 0;
  }

  .insight-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 4px;
  }

  .insight-index {
    justify-self: start;
  }

  .hero-orbit-core {
    position: static;
    transform: none;
    margin-top: 18px;
  }

  .section {
    padding: 34px 0;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 2026-04 White Lab reset */
:root {
  --bg: #f3f7fc;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-accent: rgba(243, 247, 255, 0.94);
  --line: rgba(8, 27, 70, 0.08);
  --line-strong: rgba(16, 43, 104, 0.18);
  --text: #09142b;
  --muted: #5c6d88;
  --accent: #165dff;
  --accent-2: #4ac7ff;
  --accent-3: #d9e7ff;
  --accent-ice: #b9f8ff;
  --accent-cobalt: #125bff;
  --accent-glow: rgba(74, 199, 255, 0.34);
  --brand-navy: #091b46;
  --brand-silver: #dbe6f4;
  --shadow: 0 28px 90px rgba(8, 27, 70, 0.12);
  --shadow-soft: 0 14px 40px rgba(11, 31, 74, 0.08);
  --container: min(1200px, calc(100vw - 40px));
}

body {
  background:
    radial-gradient(circle at 78% 12%, rgba(74, 199, 255, 0.24), transparent 20%),
    radial-gradient(circle at 18% 16%, rgba(18, 91, 255, 0.12), transparent 24%),
    radial-gradient(circle at 52% 58%, rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #edf3fb 48%, #f6f8fc 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(18, 46, 111, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 46, 111, 0.038) 1px, transparent 1px);
  background-size: 52px 52px;
}

.page-noise {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.56), transparent 28%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(330deg, rgba(185, 248, 255, 0.1), transparent 32%);
  opacity: 0.54;
}

.site-header {
  padding: 20px 0;
}

.nav-shell {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 249, 255, 0.7));
  box-shadow: 0 18px 38px rgba(10, 34, 82, 0.08);
}

.brand-mark {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, var(--accent-ice), var(--accent-cobalt) 62%, var(--brand-navy));
  box-shadow:
    0 0 0 7px rgba(18, 91, 255, 0.08),
    0 0 28px rgba(74, 199, 255, 0.24);
}

.site-nav-links a {
  color: #55667f;
}

.site-nav-links a:hover,
.site-nav-links a.is-active {
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(18, 91, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 96px;
  padding: 126px 0 86px;
}

.hero-copy {
  max-width: 500px;
  padding-left: 0;
}

.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: #6b87bd;
}

.eyebrow::before {
  width: 40px;
  background: linear-gradient(90deg, var(--accent-cobalt), rgba(74, 199, 255, 0));
}

.hero-title {
  max-width: 9.2ch;
  font-family: "Noto Sans SC", "Space Grotesk", sans-serif;
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.hero-title-line {
  text-wrap: balance;
}

.hero-lead,
.page-lead {
  max-width: 22ch;
  margin-top: 22px;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.65;
  color: #51657f;
}

.hero-lead {
  max-width: none;
  white-space: nowrap;
}

.hero-actions {
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-width: 152px;
  padding: 13px 18px;
  font-size: 0.93rem;
  font-weight: 600;
}

.button-primary {
  background: linear-gradient(135deg, #0a2671 0%, var(--accent-cobalt) 58%, #41caff 100%);
  box-shadow:
    0 18px 44px rgba(18, 91, 255, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(13, 35, 81, 0.12),
    0 10px 26px rgba(13, 35, 81, 0.06);
}

.hero .button-secondary {
  min-width: auto;
  padding-inline: 8px;
  color: #3a568a;
  background: transparent;
  box-shadow: none;
}

.hero .button-secondary:hover {
  transform: none;
  color: var(--brand-navy);
}

.glass-card,
.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 255, 0.66));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
}

.metric-card::after,
.glass-card::after,
.glass-panel::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), transparent 24%, transparent 74%, rgba(74, 199, 255, 0.08));
  mix-blend-mode: screen;
}

.hero-stage {
  min-height: 620px;
  transform: none;
  opacity: 1;
  isolation: isolate;
  overflow: visible;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 70px 36px 90px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(235, 243, 255, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    0 30px 72px rgba(22, 55, 120, 0.06);
  z-index: 0;
}

.hero-grid-shell {
  inset: 56px 28px 96px;
  border-radius: 40px;
  border: 1px solid rgba(18, 46, 111, 0.055);
  background:
    linear-gradient(rgba(18, 46, 111, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 46, 111, 0.024) 1px, transparent 1px);
  background-size: 44px 44px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    0 22px 68px rgba(12, 35, 84, 0.05);
}

.hero-grid-shell::after {
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(18, 91, 255, 0.14), rgba(18, 91, 255, 0.14)) top left / 56px 1px no-repeat,
    linear-gradient(rgba(18, 91, 255, 0.14), rgba(18, 91, 255, 0.14)) top left / 1px 56px no-repeat,
    linear-gradient(90deg, rgba(18, 91, 255, 0.14), rgba(18, 91, 255, 0.14)) bottom right / 56px 1px no-repeat,
    linear-gradient(rgba(18, 91, 255, 0.14), rgba(18, 91, 255, 0.14)) bottom right / 1px 56px no-repeat;
}

.hero-stage-aura {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 14%, rgba(74, 199, 255, 0.16) 15%, rgba(74, 199, 255, 0) 54%),
    radial-gradient(circle at 42% 46%, rgba(18, 91, 255, 0.08), transparent 74%);
  filter: blur(24px);
  opacity: 0.52;
  z-index: 1;
  animation: neonPulse 6.8s ease-in-out infinite;
}

.hero-line-field {
  position: absolute;
  inset: 96px 48px 118px;
  z-index: 2;
  overflow: hidden;
  border-radius: 42px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 54% 50%, rgba(0, 0, 0, 0.95) 0 46%, rgba(0, 0, 0, 0.66) 62%, transparent 88%);
}

.hero-line-track {
  position: absolute;
  left: -14%;
  width: 128%;
  height: 1px;
  background: linear-gradient(90deg, rgba(112, 170, 255, 0), rgba(118, 185, 255, 0.14), rgba(191, 244, 255, 0.38), rgba(118, 185, 255, 0.12), rgba(112, 170, 255, 0));
  box-shadow: 0 0 14px rgba(130, 196, 255, 0.08);
  opacity: 0.26;
  transform-origin: center;
  mix-blend-mode: screen;
  animation: lineDrift 14s ease-in-out infinite;
}

.hero-line-track::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 50%;
  width: 58px;
  height: 10px;
  transform: translateY(-50%);
  background: radial-gradient(circle at center, rgba(234, 249, 255, 0.36) 0, rgba(234, 249, 255, 0.08) 42%, transparent 72%);
  filter: blur(7px);
  opacity: 0.56;
}

.line-track-a {
  top: 24%;
  --track-angle: -8deg;
  animation-delay: 0s;
}

.line-track-b {
  top: 47%;
  --track-angle: 4deg;
  opacity: 0.2;
  animation-delay: -4s;
}

.line-track-c {
  top: 68%;
  --track-angle: 11deg;
  opacity: 0.16;
  animation-delay: -8s;
}

.hero-generation-field {
  position: absolute;
  inset: 110px 86px 142px;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 48%, rgba(255, 255, 255, 0.68) 0 10%, rgba(74, 199, 255, 0.08) 16%, rgba(74, 199, 255, 0) 44%),
    radial-gradient(circle at 66% 38%, rgba(185, 248, 255, 0.16), transparent 26%),
    radial-gradient(circle at 28% 68%, rgba(18, 91, 255, 0.1), transparent 30%);
  filter: blur(10px);
  opacity: 0.62;
  animation: generationPulse 11.5s ease-in-out infinite;
}

.hero-generation-field::before,
.hero-generation-field::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, rgba(74, 199, 255, 0.12), transparent 18%, rgba(18, 91, 255, 0.16), transparent 40%, rgba(185, 248, 255, 0.16), transparent 68%, rgba(74, 199, 255, 0.12));
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.hero-generation-field::after {
  inset: 18%;
  opacity: 0.24;
  transform: rotate(18deg);
}

.hero-trace-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(185, 248, 255, 0.34);
  border-right-color: rgba(18, 91, 255, 0.14);
  filter: drop-shadow(0 0 8px rgba(74, 199, 255, 0.12));
}

.hero-trace-arc.arc-a {
  inset: 10%;
  transform: rotate(14deg);
  opacity: 0.72;
}

.hero-trace-arc.arc-b {
  inset: 22%;
  transform: rotate(-28deg);
  opacity: 0.58;
}

.hero-trace-arc.arc-c {
  inset: 30%;
  transform: rotate(54deg);
  opacity: 0.46;
}

.hero-signal-flow {
  position: absolute;
  inset: 144px 126px 174px;
  z-index: 2;
  border-radius: 999px;
  background:
    linear-gradient(115deg, rgba(74, 199, 255, 0) 12%, rgba(74, 199, 255, 0.14) 34%, rgba(74, 199, 255, 0.02) 56%, rgba(18, 91, 255, 0.1) 76%, rgba(18, 91, 255, 0) 92%),
    radial-gradient(circle at 24% 44%, rgba(185, 248, 255, 0.18), transparent 26%),
    radial-gradient(circle at 74% 58%, rgba(18, 91, 255, 0.1), transparent 24%);
  filter: blur(16px);
  opacity: 0.46;
  mix-blend-mode: screen;
  animation: signalDrift 10s ease-in-out infinite;
}

.hero-signal-flow::before,
.hero-signal-flow::after {
  content: "";
  position: absolute;
  inset: 18% 6%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(185, 248, 255, 0), rgba(185, 248, 255, 0.42), rgba(185, 248, 255, 0)) 0 35% / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(18, 91, 255, 0), rgba(18, 91, 255, 0.26), rgba(18, 91, 255, 0)) 0 65% / 100% 1px no-repeat;
  opacity: 0.7;
}

.hero-signal-flow::after {
  inset: 12% 18%;
  transform: rotate(-24deg);
  opacity: 0.32;
}

.hero-orbit-note {
  position: absolute;
  top: 116px;
  right: 30px;
  z-index: 4;
  display: grid;
  gap: 7px;
  min-width: 196px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 248, 255, 0.76));
  box-shadow:
    0 20px 42px rgba(11, 31, 74, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.hero-orbit-note strong {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.98rem;
  line-height: 1.15;
  color: var(--brand-navy);
}

.orbit-note-text {
  color: #5e7398;
  font-size: 0.8rem;
  line-height: 1.55;
}

.hero-beam {
  width: 420px;
  height: 92px;
  background: linear-gradient(90deg, rgba(18, 91, 255, 0), rgba(185, 248, 255, 0.42), rgba(18, 91, 255, 0.02));
  filter: blur(22px);
  transform: rotate(-18deg) translateX(-8px);
  opacity: 0.38;
  animation-duration: 10s;
}

.hero-orbit-ring {
  border-color: rgba(18, 91, 255, 0.1);
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.2),
    0 0 24px rgba(18, 91, 255, 0.05),
    0 0 42px rgba(74, 199, 255, 0.11);
  animation-duration: 26s;
}

.orbit-ring-lg {
  width: 386px;
  height: 386px;
}

.orbit-ring-md {
  width: 284px;
  height: 284px;
  border-color: rgba(185, 248, 255, 0.18);
  animation-duration: 20s;
}

.orbit-ring-sm {
  width: 204px;
  height: 204px;
  border-color: rgba(74, 199, 255, 0.12);
  animation-duration: 16s;
}

.hero-orbit-glow {
  width: 400px;
  height: 400px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 11%, rgba(185, 248, 255, 0.2) 12%, rgba(185, 248, 255, 0) 42%),
    conic-gradient(from 180deg, rgba(18, 91, 255, 0.08), transparent 20%, rgba(74, 199, 255, 0.14), transparent 48%, rgba(185, 248, 255, 0.06), transparent 78%, rgba(18, 91, 255, 0.08));
  filter: blur(14px);
  opacity: 0.62;
  animation: neonPulse 7.2s ease-in-out infinite;
}

.hero-orbit-core {
  min-width: 224px;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.8));
  box-shadow:
    0 24px 54px rgba(11, 31, 74, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
  animation-duration: 10.5s;
}

.hero-orbit-core::before {
  inset: -18px;
  background: conic-gradient(from 180deg, rgba(18, 91, 255, 0.1), transparent 18%, rgba(74, 199, 255, 0.14), transparent 48%, rgba(185, 248, 255, 0.12), transparent 78%, rgba(18, 91, 255, 0.1));
  filter: blur(12px);
}

.core-id {
  color: #6b96ff;
}

.core-title {
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.core-text {
  color: #6d80a0;
}

@keyframes signalDrift {
  0%,
  100% {
    transform: translate3d(-10px, 0, 0) scale(0.98);
    opacity: 0.58;
  }

  50% {
    transform: translate3d(12px, -8px, 0) scale(1.02);
    opacity: 0.82;
  }
}

@keyframes generationPulse {
  0%,
  100% {
    transform: scale(0.98) rotate(0deg);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.03) rotate(6deg);
    opacity: 0.92;
  }
}

@keyframes lineDrift {
  0%,
  100% {
    transform: translate3d(-18px, 0, 0) rotate(var(--track-angle, 0deg));
    opacity: 0.18;
  }

  45% {
    transform: translate3d(10px, -6px, 0) rotate(var(--track-angle, 0deg));
    opacity: 0.44;
  }

  70% {
    transform: translate3d(20px, 4px, 0) rotate(var(--track-angle, 0deg));
    opacity: 0.28;
  }
}

.section {
  padding: 48px 0;
}

.section-head {
  margin-bottom: 18px;
}

.section-title {
  margin-top: 10px;
  color: var(--brand-navy);
  font-family: "Noto Sans SC", "Space Grotesk", sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.capability-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 10px 18px;
}

.capability-band-item {
  min-height: 124px;
  padding: 18px 18px 20px;
  border-right: 1px solid rgba(11, 31, 74, 0.08);
}

.capability-band-item:last-child {
  border-right: 0;
}

.capability-band-item h3 {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.capability-band-item p {
  margin-top: 12px;
  color: #6a7a96;
  font-size: 0.88rem;
  line-height: 1.55;
}

.insight-board {
  padding: 10px 20px;
}

.insight-board-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 18px;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(11, 31, 74, 0.08);
}

.insight-board-row:last-child {
  border-bottom: 0;
}

.insight-board-row h3 {
  font-size: 1.02rem;
  line-height: 1.2;
}

.insight-kind,
.insight-index {
  color: #5f7fbb;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-index {
  justify-self: end;
}

.contact-dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
}

.contact-dock-copy {
  max-width: 420px;
}

.contact-dock h2 {
  margin-top: 10px;
  font-family: "Noto Sans SC", "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.contact-dock p {
  margin-top: 8px;
  color: #6a7a94;
  font-size: 0.9rem;
}

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

.footer-shell strong {
  color: var(--brand-navy);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .contact-dock {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-title {
    max-width: 8.8ch;
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-lead {
    white-space: normal;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
    justify-items: stretch;
  }

  .hero-stage::before,
  .hero-beam,
  .hero-orbit-ring,
  .hero-orbit-glow,
  .hero-stage-aura,
  .hero-line-field,
  .hero-generation-field,
  .hero-grid-shell,
  .hero-signal-flow {
    display: none;
  }

  .hero-orbit-core {
    position: static;
    transform: none;
    width: 100%;
  }

  .hero-orbit-note {
    position: static;
    width: 100%;
  }

  .capability-band {
    grid-template-columns: 1fr;
    padding: 6px 18px;
  }

  .capability-band-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 31, 74, 0.08);
  }

  .capability-band-item:last-child {
    border-bottom: 0;
  }

  .insight-board-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .insight-index {
    justify-self: start;
  }

  .contact-dock {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage-aura,
  .hero-line-track,
  .hero-generation-field,
  .hero-signal-flow,
  .hero-beam,
  .hero-orbit-ring,
  .hero-orbit-glow,
  .hero-orbit-core,
  .hero-orbit-core::before,
  .hero-grid-shell::before,
  .hero-grid-shell::after {
    animation: none !important;
    transition: none !important;
  }
}
