:root {
  --mk-bg: #eaf2ff;
  --mk-surface: #f8fbff;
  --mk-surface-soft: #dce9fb;
  --mk-ink: #14213d;
  --mk-muted: #586b8c;
  --mk-line: rgba(20, 33, 61, 0.13);
  --mk-line-strong: rgba(20, 33, 61, 0.24);
  --mk-amber: #ffa11d;
  --mk-amber-strong: #ffa11d;
  --mk-secondary: #4169a1;
  --mk-accent-soft: #d6e7ff;
  --mk-night: #0f2743;
  --mk-shadow: 0 24px 80px rgba(23, 61, 104, 0.14);
  --mk-header-height: 72px;
  --mk-max: 1240px;
  --mk-radius: 8px;
}

[data-theme="dark"] {
  --mk-bg: #10233d;
  --mk-surface: #173252;
  --mk-surface-soft: #21466e;
  --mk-ink: #f8fbff;
  --mk-muted: #b8cae1;
  --mk-line: rgba(244, 241, 237, 0.13);
  --mk-line-strong: rgba(244, 241, 237, 0.24);
  --mk-amber: #ffa11d;
  --mk-amber-strong: #ffa11d;
  --mk-secondary: #9bc2f5;
  --mk-accent-soft: #24456a;
  --mk-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--mk-header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--mk-ink);
  background: var(--mk-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: #14213d;
  background: #ffd77e;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mk-amber) 76%, white);
  outline-offset: 3px;
}

.site-container {
  width: min(calc(100% - 40px), var(--mk-max));
  margin-inline: auto;
}

.site-section {
  position: relative;
  padding: 104px 0;
}

.site-section--compact {
  padding: 72px 0;
}

.site-section--surface {
  background: var(--mk-surface);
  border-block: 1px solid var(--mk-line);
}

.site-section--night {
  color: #f6f4ed;
  background: #173252;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 650;
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--mk-muted);
  font-size: 1.04rem;
}

.site-section--night .section-heading p {
  color: rgba(246, 244, 237, 0.68);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--mk-secondary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--mk-amber);
}

.site-section--night .eyebrow,
.hero .eyebrow,
.inner-hero .eyebrow {
  color: #ffa11d;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--mk-header-height);
  color: #f7f7f2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(12, 32, 55, 0.84);
  backdrop-filter: blur(20px) saturate(125%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 32, 55, 0.97);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.site-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand-lockup {
  --bostic-brand-orange: #ffa11d;
  --bostic-brand-orange-hover: #ffa11d;
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #4bb8a8, #ffa11d 56%, #d14f6c);
  box-shadow: none;
}

.brand-monogram {
  display: block;
  color: #fff;
  font-family: "Inter var", Inter, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.brand-name {
  min-width: 0;
  color: inherit;
  font-family: "Inter var", Inter, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-name span {
  color: var(--bostic-brand-orange);
}

.brand-tagline {
  position: relative;
  color: #aaa39c;
  font-family: "Inter var", Inter, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-tagline::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  color: transparent;
  background: linear-gradient(90deg, #ff5f6d, #ffb347, #f4df4e, #43d6a3, #4da8ff, #8b7cff, #ef70c9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  pointer-events: none;
  animation: bostic-brand-tagline-spectrum 15s ease-in-out infinite;
}

@keyframes bostic-brand-tagline-spectrum {
  0%,
  76% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  78% {
    opacity: 1;
  }
  84%,
  88% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  92%,
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 0;
  }
}

.site-brand:hover .brand-name span {
  color: var(--bostic-brand-orange-hover);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link,
.mega-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.76);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 620;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.mega-trigger:hover,
.mega-trigger[aria-expanded="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.icon-button,
.menu-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-button {
  display: none;
}

.site-language-menu {
  position: relative;
}

.site-language-trigger {
  width: auto;
  min-width: 58px;
  grid-auto-flow: column;
  gap: 6px;
  overflow: hidden;
  padding-inline: 9px;
}

.site-language-trigger span,
.site-language-option span {
  letter-spacing: 0;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.site-language-dropdown {
  position: absolute;
  z-index: 80;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  width: 136px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(24, 22, 25, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.site-language-dropdown[hidden] {
  display: none;
}

.site-language-option {
  position: relative;
  display: inline-grid;
  min-width: 0;
  min-height: 44px;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid transparent;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.site-language-option:hover,
.site-language-option:focus-visible,
.site-language-option.is-active {
  color: #fff;
  border-color: rgba(255, 161, 29, 0.48);
  background: rgba(255, 161, 29, 0.13);
}

.site-language-option:focus-visible,
.site-language-trigger:focus-visible {
  outline: 2px solid var(--mk-amber);
  outline-offset: 2px;
}

.site-language-option i {
  position: absolute;
  top: 4px;
  right: 4px;
  color: var(--mk-amber);
  font-size: 0.7rem;
  opacity: 0;
}

.site-language-option.is-active i {
  opacity: 1;
}

.site-button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 20px;
  color: #14213d;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--mk-amber);
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 760;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-button:hover {
  transform: translateY(-2px);
  background: #ffa11d;
  box-shadow: 0 12px 26px rgba(242, 169, 0, 0.2);
}

.site-button--small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.84rem;
}

.site-button--ghost {
  color: inherit;
  border-color: var(--mk-line-strong);
  background: transparent;
}

.site-header .site-button--ghost,
.hero .site-button--ghost,
.inner-hero .site-button--ghost,
.site-section--night .site-button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.site-button--ghost:hover {
  background: color-mix(in srgb, var(--mk-surface) 72%, transparent);
  box-shadow: none;
}

.site-header .site-button--ghost:hover,
.hero .site-button--ghost:hover,
.inner-hero .site-button--ghost:hover,
.site-section--night .site-button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  pointer-events: none;
  transform: skewX(-20deg);
  transition: left 900ms ease;
}

.shine:hover::after,
.shine:focus-visible::after {
  left: 150%;
}

.shine > * {
  position: relative;
  z-index: 1;
}

.feature-mega {
  position: fixed;
  z-index: 990;
  top: 61px;
  left: 50%;
  width: min(920px, calc(100vw - 48px));
  padding: 12px;
  visibility: hidden;
  color: #f5f6f1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(16, 39, 67, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.feature-mega[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.mega-layout {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr;
  gap: 10px;
}

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

.mega-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 15px;
  border-radius: 6px;
  transition: background 150ms ease;
}

.mega-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.mega-item i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffa11d;
  border: 1px solid rgba(255, 194, 74, 0.24);
  border-radius: 6px;
  background: rgba(255, 194, 74, 0.08);
  font-size: 1.15rem;
}

.mega-item strong,
.mega-item span {
  display: block;
}

.mega-item strong {
  margin: 1px 0 3px;
  font-size: 0.91rem;
}

.mega-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  line-height: 1.45;
}

.mega-aside {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 6px;
  background: #21466e;
}

.mega-aside p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.mega-aside a {
  color: #ffa11d;
  font-size: 0.84rem;
  font-weight: 760;
}

.mobile-drawer {
  position: fixed;
  z-index: 980;
  inset: var(--mk-header-height) 0 0;
  display: none;
  overflow-y: auto;
  padding: 20px;
  color: #f5f6f1;
  background: #10233d;
}

.mobile-drawer[aria-hidden="false"] {
  display: block;
}

.mobile-drawer a,
.mobile-drawer summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-weight: 650;
}

.mobile-drawer details div {
  display: grid;
  padding-left: 16px;
}

.mobile-drawer details div a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(850px, 92vh);
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--mk-header-height) + 86px) 0 56px;
  color: #f7f5ef;
  background: #0f2743 url("/site/assets/images/seo-intelligence-network.jpg") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 25, 45, 0.97) 0%, rgba(6, 25, 45, 0.82) 42%, rgba(6, 25, 45, 0.15) 76%), linear-gradient(0deg, rgba(6, 25, 45, 0.86), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 64px;
  align-items: end;
}

.hero-content > * {
  min-width: 0;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: 5.2rem;
  font-weight: 640;
}

.hero h1 span {
  color: #ffa11d;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(247, 245, 239, 0.72);
  font-size: 1.18rem;
}

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

.hero-proof {
  display: grid;
  align-self: end;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(14, 12, 14, 0.72);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof div:last-child {
  border-bottom: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.91rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.signal-strip {
  position: relative;
  z-index: 2;
  color: #14213d;
  background: #ffa11d;
}

.signal-strip .site-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-item {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-right: 1px solid rgba(20, 33, 61, 0.18);
  font-size: 0.82rem;
  font-weight: 730;
}

.signal-item:first-child {
  padding-left: 0;
}

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

.signal-item i {
  font-size: 1.15rem;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.product-stage-copy h2 {
  margin-bottom: 22px;
  font-size: 3.5rem;
}

.product-stage-copy p {
  color: var(--mk-muted);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--mk-secondary);
  font-weight: 760;
}

.product-window {
  overflow: hidden;
  border: 1px solid var(--mk-line-strong);
  border-radius: 8px;
  background: var(--mk-surface);
  box-shadow: var(--mk-shadow);
}

.window-bar {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--mk-line);
  background: var(--mk-surface-soft);
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mk-line-strong);
}

.window-bar strong {
  margin-left: 8px;
  color: var(--mk-muted);
  font-size: 0.75rem;
}

.window-body {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 430px;
}

.window-sidebar {
  padding: 20px 12px;
  border-right: 1px solid var(--mk-line);
  background: color-mix(in srgb, var(--mk-surface-soft) 60%, var(--mk-surface));
}

.window-sidebar span {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  color: var(--mk-muted);
  border-radius: 5px;
  font-size: 0.7rem;
}

.window-sidebar span.is-active {
  color: var(--mk-ink);
  background: var(--mk-surface);
  box-shadow: 0 1px 0 var(--mk-line);
}

.window-main {
  padding: 24px;
}

.window-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.window-heading strong {
  font-size: 0.92rem;
}

.window-status {
  padding: 5px 8px;
  color: var(--mk-secondary);
  border-radius: 4px;
  background: var(--mk-accent-soft);
  font-size: 0.65rem;
  font-weight: 800;
}

.window-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.window-metric {
  padding: 14px;
  border: 1px solid var(--mk-line);
  border-radius: 6px;
}

.window-metric span,
.window-metric strong {
  display: block;
}

.window-metric span {
  color: var(--mk-muted);
  font-size: 0.62rem;
}

.window-metric strong {
  margin-top: 8px;
  font-size: 1.35rem;
}

.window-chart {
  position: relative;
  height: 142px;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: 6px;
  background: repeating-linear-gradient(0deg, transparent, transparent 27px, var(--mk-line) 28px);
}

.window-chart svg {
  position: absolute;
  inset: 20px 12px 12px;
  width: calc(100% - 24px);
  height: calc(100% - 32px);
}

.window-table {
  border: 1px solid var(--mk-line);
  border-radius: 6px;
}

.window-row {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.6fr;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid var(--mk-line);
  font-size: 0.63rem;
}

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

.window-row span:not(:first-child) {
  color: var(--mk-muted);
  text-align: right;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--mk-line);
  border-left: 1px solid var(--mk-line);
}

.capability-card {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--mk-line);
  border-bottom: 1px solid var(--mk-line);
  background: var(--mk-surface);
  transition: background 180ms ease, transform 180ms ease;
}

.capability-card:hover {
  z-index: 1;
  background: var(--mk-surface-soft);
  transform: translateY(-3px);
}

.capability-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 64px;
  place-items: center;
  color: var(--mk-secondary);
  border: 1px solid var(--mk-line-strong);
  border-radius: 6px;
  font-size: 1.35rem;
}

.capability-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.capability-card p {
  color: var(--mk-muted);
  font-size: 0.91rem;
}

.capability-card .text-link {
  margin-top: 18px;
  font-size: 0.84rem;
}

.workflow-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 56px;
}

.workflow-tabs {
  display: grid;
  align-content: start;
  gap: 4px;
}

.workflow-tab {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  padding: 16px;
  color: rgba(255, 255, 255, 0.54);
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.workflow-tab span:first-child {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
}

.workflow-tab[aria-selected="true"] {
  color: #fff;
  border-color: #ffa11d;
  background: rgba(255, 255, 255, 0.05);
}

.workflow-panel[hidden] {
  display: none;
}

.workflow-panel {
  min-height: 390px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #21466e;
}

.workflow-panel h3 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: 2.6rem;
}

.workflow-panel > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.64);
}

.workflow-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 58px;
}

.workflow-points div {
  min-height: 92px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.workflow-points i {
  color: #ffa11d;
}

.workflow-points span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.outcome-item {
  padding-top: 24px;
  border-top: 2px solid var(--mk-amber);
}

.outcome-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.outcome-item p {
  color: var(--mk-muted);
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #f8f6ef;
  background: #173252;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("/site/assets/images/seo-intelligence-network.jpg") 76% center / cover no-repeat;
  opacity: 0.25;
}

.final-cta .site-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  gap: 48px;
  align-items: end;
}

.final-cta h2 {
  margin-bottom: 16px;
  font-size: 4.4rem;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.64);
}

.inner-hero {
  position: relative;
  display: flex;
  min-height: 570px;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--mk-header-height) + 90px) 0 80px;
  color: #f7f5ef;
  background: #10233d;
}

.inner-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: url("/site/assets/images/seo-intelligence-network.jpg") 74% center / cover no-repeat;
  opacity: 0.38;
}

.inner-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #0f2743 0%, rgba(15, 39, 67, 0.92) 48%, rgba(15, 39, 67, 0.3) 82%);
}

.inner-hero .site-container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 4.8rem;
  font-weight: 640;
}

.inner-hero p {
  max-width: 680px;
  color: rgba(247, 245, 239, 0.68);
  font-size: 1.12rem;
}

.inner-hero--short {
  min-height: 460px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}

.detail-copy h2 {
  margin-bottom: 22px;
  font-size: 3.4rem;
}

.detail-copy p {
  color: var(--mk-muted);
}

.detail-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--mk-line);
}

.detail-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--mk-line);
}

.detail-list i {
  color: var(--mk-secondary);
  font-size: 1.15rem;
}

.detail-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.detail-list span {
  color: var(--mk-muted);
  font-size: 0.84rem;
}

.insight-console {
  min-height: 460px;
  padding: 24px;
  color: #f4f5ef;
  border: 1px solid #31577e;
  border-radius: 8px;
  background: #173252;
  box-shadow: var(--mk-shadow);
}

.insight-console__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.insight-console__header span {
  color: #ffa11d;
  font-size: 0.72rem;
  font-weight: 800;
}

.issue-stack {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.issue-line {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.issue-line i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffa11d;
  border-radius: 5px;
  background: rgba(255, 194, 74, 0.09);
}

.issue-line strong,
.issue-line span {
  display: block;
}

.issue-line strong {
  font-size: 0.82rem;
}

.issue-line span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.67rem;
}

.issue-line small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
}

.principle-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.principle,
.content-card {
  padding: 26px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-surface);
}

.principle i {
  color: var(--mk-secondary);
  font-size: 1.45rem;
}

.principle h3,
.content-card h3 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
}

.principle p,
.content-card p {
  color: var(--mk-muted);
  font-size: 0.88rem;
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  gap: 56px;
  margin-bottom: 44px;
  align-items: end;
}

.pricing-intro h2 {
  margin-bottom: 0;
  font-size: 3.4rem;
}

.pricing-intro p {
  color: var(--mk-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--mk-line);
  border-left: 1px solid var(--mk-line);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  padding: 25px 20px;
  border-right: 1px solid var(--mk-line);
  border-bottom: 1px solid var(--mk-line);
  background: var(--mk-surface);
}

.price-card.is-featured {
  color: #f8f7f1;
  background: #173252;
  box-shadow: 0 24px 60px rgba(8, 24, 43, 0.24);
}

.price-label {
  min-height: 24px;
  color: var(--mk-secondary);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card.is-featured .price-label {
  color: #ffa11d;
}

.price-card h3 {
  margin: 14px 0 8px;
  font-size: 1.22rem;
}

.price-card > p {
  min-height: 67px;
  color: var(--mk-muted);
  font-size: 0.78rem;
}

.price-card.is-featured > p,
.price-card.is-featured .price-note,
.price-card.is-featured .price-list li {
  color: rgba(255, 255, 255, 0.64);
}

.price {
  display: flex;
  min-height: 70px;
  align-items: baseline;
  margin: 12px 0 2px;
  font-size: 2.35rem;
  font-weight: 700;
}

.price small {
  margin-left: 4px;
  color: var(--mk-muted);
  font-size: 0.72rem;
  font-weight: 550;
}

.price-note {
  min-height: 36px;
  color: var(--mk-muted);
  font-size: 0.69rem;
}

.price-card .site-button {
  width: 100%;
  margin: 18px 0 24px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--mk-line);
  list-style: none;
}

.price-card.is-featured .price-list {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  color: var(--mk-muted);
  font-size: 0.75rem;
}

.price-list i {
  color: var(--mk-secondary);
}

.price-card.is-featured .price-list i {
  color: #ffa11d;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-surface);
}

.comparison-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--mk-line);
  text-align: center;
  font-size: 0.82rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  min-width: 220px;
  text-align: left;
  background: var(--mk-surface);
}

.comparison-table thead th {
  font-weight: 780;
}

.comparison-table tbody td {
  color: var(--mk-muted);
}

.faq-list {
  border-top: 1px solid var(--mk-line);
}

.faq-list details {
  border-bottom: 1px solid var(--mk-line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--mk-secondary);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 780px;
  padding-bottom: 24px;
  color: var(--mk-muted);
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
}

.article-list {
  display: grid;
  gap: 1px;
  background: var(--mk-line);
}

.article-card {
  display: grid;
  min-height: 220px;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px;
  background: var(--mk-surface);
}

.article-number {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--mk-muted);
  font-size: 0.72rem;
}

.article-number i {
  color: var(--mk-secondary);
  font-size: 2rem;
}

.article-card h2,
.article-card h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.article-card p {
  color: var(--mk-muted);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--mk-secondary);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.editorial-aside {
  align-self: start;
  padding: 24px 0;
  border-block: 1px solid var(--mk-line);
}

.editorial-aside h3 {
  font-size: 1.1rem;
}

.editorial-aside p {
  color: var(--mk-muted);
  font-size: 0.85rem;
}

.prose {
  max-width: 820px;
  margin-inline: auto;
}

.prose h2 {
  margin-top: 54px;
  font-size: 2.3rem;
}

.prose h3 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--mk-muted);
}

.prose a {
  color: var(--mk-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose blockquote {
  margin: 36px 0;
  padding: 6px 0 6px 24px;
  border-left: 3px solid var(--mk-amber);
  font-size: 1.22rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: 72px;
}

.contact-copy h2 {
  font-size: 3.2rem;
}

.contact-copy p {
  color: var(--mk-muted);
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-points a,
.contact-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mk-muted);
}

.contact-points i {
  color: var(--mk-secondary);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-surface);
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.79rem;
  font-weight: 730;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--mk-ink);
  border: 1px solid var(--mk-line-strong);
  border-radius: 6px;
  background: var(--mk-bg);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  color: var(--mk-muted);
  font-size: 0.75rem;
}

.legal-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: 70px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--mk-header-height) + 24px);
  display: grid;
  gap: 4px;
}

.legal-nav a {
  padding: 10px 12px;
  color: var(--mk-muted);
  border-left: 2px solid var(--mk-line);
  font-size: 0.84rem;
}

.legal-nav a:hover,
.legal-nav a.is-active {
  color: var(--mk-ink);
  border-color: var(--mk-amber);
}

.legal-content h2 {
  margin-top: 54px;
  font-size: 1.8rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 30px;
  font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
  color: var(--mk-muted);
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 46px;
}

.policy-summary div {
  padding: 18px;
  border: 1px solid var(--mk-line);
  border-radius: 7px;
  background: var(--mk-surface);
}

.policy-summary strong,
.policy-summary span {
  display: block;
}

.policy-summary strong {
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.policy-summary span {
  color: var(--mk-muted);
  font-size: 0.76rem;
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 20px;
  width: min(430px, calc(100vw - 40px));
  padding: 22px;
  color: #f6f6f0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #173252;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.cookie-policy-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--mk-amber);
  font-size: 0.78rem;
  font-weight: 720;
}

.cookie-policy-link:hover,
.cookie-policy-link:focus-visible {
  color: #ffa11d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cookie-actions .site-button {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.76rem;
}

.cookie-modal {
  position: fixed;
  z-index: 1210;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 9, 7, 0.7);
}

.cookie-dialog {
  width: min(620px, 100%);
  max-height: min(680px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 26px;
  color: var(--mk-ink);
  border-radius: 8px;
  background: var(--mk-surface);
  box-shadow: var(--mk-shadow);
}

.cookie-dialog__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-dialog .icon-button {
  flex: 0 0 auto;
  color: var(--mk-ink);
  border-color: var(--mk-line-strong);
  background: var(--mk-surface-soft);
}

.cookie-setting {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--mk-line);
}

.cookie-setting strong,
.cookie-setting span {
  display: block;
}

.cookie-setting span {
  color: var(--mk-muted);
  font-size: 0.77rem;
}

.cookie-setting input {
  width: 20px;
  height: 20px;
  accent-color: var(--mk-amber);
}

.site-footer {
  padding: 72px 0 24px;
  color: #f3f4ee;
  background: #0f2743;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 0.75fr);
  gap: 44px;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.8rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  margin-top: 56px;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.7rem;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #ffa11d;
  box-shadow: 0 0 0 4px rgba(255, 182, 79, 0.14);
}

.status-dot[data-state="unavailable"] {
  background: #d14f6c;
  box-shadow: 0 0 0 4px rgba(209, 79, 108, 0.14);
}

.status-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 72px;
  align-items: end;
}

.status-hero-layout h1 {
  max-width: 760px;
}

.status-hero-signal {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
}

.status-live-mark {
  width: 11px;
  height: 11px;
  margin-top: 5px;
  border-radius: 50%;
  background: #ffa11d;
  box-shadow: 0 0 0 5px rgba(255, 201, 120, 0.13);
}

[data-state="operational"] > .status-live-mark,
.status-component[data-state="operational"]::before {
  background: #ffa11d;
}

[data-state="unavailable"] > .status-live-mark,
.status-component[data-state="unavailable"]::before {
  background: #d14f6c;
}

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

.status-hero-signal strong {
  margin-bottom: 5px;
  font-size: 1rem;
}

.status-hero-signal small {
  color: rgba(247, 245, 239, 0.65);
  line-height: 1.5;
}

.status-overview {
  padding-block: 82px;
}

.status-overview-head,
.status-block-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.status-overview-head h2,
.status-block-heading h2,
.status-incidents-layout h2 {
  margin-bottom: 0;
}

.status-overview-head h2 {
  max-width: 760px;
  font-size: 3.2rem;
}

.status-overview-head p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--mk-muted);
}

.status-refresh {
  flex: 0 0 auto;
}

.status-refresh[aria-busy="true"] i {
  animation: status-refresh-spin 900ms linear infinite;
}

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

.status-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--mk-line-strong);
  border-left: 1px solid var(--mk-line-strong);
}

.status-summary-item {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--mk-line-strong);
  border-bottom: 1px solid var(--mk-line-strong);
}

.status-summary-item span,
.status-summary-item strong,
.status-summary-item small {
  display: block;
}

.status-summary-item span {
  color: var(--mk-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-summary-item strong {
  margin: 18px 0 4px;
  font-size: 1.8rem;
}

.status-summary-item small,
.status-data-note,
.status-incident-copy p {
  color: var(--mk-muted);
}

.status-telemetry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 72px;
  align-items: start;
}

.status-block-heading {
  align-items: start;
  margin-bottom: 30px;
}

.status-block-heading h2 {
  font-size: 2.35rem;
}

.status-chart-scale {
  padding-top: 40px;
  color: var(--mk-muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.status-chart {
  position: relative;
  width: 100%;
  min-height: 300px;
  border: 1px solid var(--mk-line-strong);
  background: color-mix(in srgb, var(--mk-surface) 82%, var(--mk-accent-soft));
}

.status-chart svg {
  width: 100%;
  height: 300px;
}

.status-chart-grid line {
  stroke: var(--mk-line);
  stroke-width: 1;
}

.status-chart-line {
  fill: none;
  stroke: #ffa11d;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-chart-point {
  fill: #ffa11d;
  stroke: var(--mk-surface);
  stroke-width: 4;
}

.status-chart-empty {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--mk-muted);
  font-size: 0.82rem;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.status-check-history {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.status-check-history > span {
  color: var(--mk-muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.status-check-history > div {
  display: grid;
  grid-template-columns: repeat(20, minmax(3px, 1fr));
  gap: 4px;
}

.status-check-history > div span {
  height: 10px;
  border-radius: 2px;
  background: var(--mk-line-strong);
}

.status-check-history > div span[data-state="operational"] {
  background: #ffa11d;
}

.status-check-history > div span[data-state="unavailable"] {
  background: #d14f6c;
}

.status-data-note {
  margin-top: 18px;
  font-size: 0.78rem;
}

.status-component-list {
  border-top: 1px solid var(--mk-line-strong);
}

.status-component {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 16px 0;
  border-bottom: 1px solid var(--mk-line-strong);
}

.status-component::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mk-secondary);
  content: "";
  transform: translateY(-50%);
}

.status-component > i {
  color: var(--mk-secondary);
  font-size: 1.35rem;
}

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

.status-component small {
  margin-top: 3px;
  color: var(--mk-muted);
  font-size: 0.74rem;
}

.status-component em {
  padding-right: 20px;
  color: var(--mk-muted);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 760;
  text-align: right;
}

.status-component[data-state="operational"] em {
  color: var(--mk-amber-strong);
}

[data-theme="dark"] .status-component[data-state="operational"] em {
  color: #ffa11d;
}

.status-component[data-state="unavailable"] em {
  color: #d14f6c;
}

.status-incidents-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 72px;
  align-items: start;
}

.status-incidents-layout h2 {
  max-width: 740px;
  font-size: 3rem;
}

.status-incident-copy {
  padding-top: 38px;
}

.status-incident-copy .text-link {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .status-hero-layout,
  .status-telemetry-grid,
  .status-incidents-layout {
    grid-template-columns: 1fr;
  }

  .status-hero-signal {
    max-width: 520px;
  }

  .status-telemetry-grid {
    gap: 64px;
  }
}

@media (max-width: 620px) {
  .status-overview-head,
  .status-block-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .status-overview-head h2 {
    font-size: 2.35rem;
  }

  .status-refresh {
    align-self: start;
  }

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

  .status-summary-item {
    min-height: 124px;
  }

  .status-chart-scale {
    padding-top: 0;
  }

  .status-chart,
  .status-chart svg {
    min-height: 240px;
    height: 240px;
  }

  .status-component {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .status-component em {
    grid-column: 2;
    padding-right: 0;
    text-align: left;
  }

  .status-component::before {
    right: 2px;
  }

  .status-incidents-layout h2 {
    font-size: 2.4rem;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }

/* Light mode changes every formerly black presentation surface. */
[data-theme="light"] .site-header {
  color: var(--mk-ink);
  border-bottom-color: rgba(20, 33, 61, 0.14);
  background: rgba(241, 247, 255, 0.92);
  box-shadow: 0 8px 30px rgba(23, 61, 104, 0.09);
}

[data-theme="light"] .site-header.is-scrolled {
  background: rgba(241, 247, 255, 0.98);
  box-shadow: 0 12px 34px rgba(23, 61, 104, 0.13);
}

[data-theme="light"] .site-header .site-brand,
[data-theme="light"] .site-footer .site-brand {
  color: var(--mk-ink);
}

[data-theme="light"] .brand-lockup {
  --bostic-brand-orange: #ffa11d;
  --bostic-brand-orange-hover: #ffa11d;
}

[data-theme="light"] .brand-tagline {
  color: #647391;
}

[data-theme="light"] .nav-link,
[data-theme="light"] .mega-trigger {
  color: rgba(20, 33, 61, 0.72);
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .mega-trigger:hover,
[data-theme="light"] .mega-trigger[aria-expanded="true"] {
  color: var(--mk-ink);
  background: rgba(20, 33, 61, 0.08);
}

[data-theme="light"] .icon-button,
[data-theme="light"] .menu-button {
  color: var(--mk-ink);
  border-color: var(--mk-line-strong);
  background: rgba(20, 33, 61, 0.045);
}

[data-theme="light"] .site-language-dropdown {
  border-color: var(--mk-line-strong);
  background: #f8fbff;
  box-shadow: 0 18px 44px rgba(23, 61, 104, 0.16);
}

[data-theme="light"] .site-language-option {
  color: rgba(20, 33, 61, 0.74);
  background: #eaf2ff;
}

[data-theme="light"] .site-language-option:hover,
[data-theme="light"] .site-language-option:focus-visible,
[data-theme="light"] .site-language-option.is-active {
  color: var(--mk-ink);
  border-color: rgba(255, 161, 29, 0.56);
  background: #fff4e5;
}

[data-theme="light"] .site-header .site-button--ghost {
  color: var(--mk-ink);
  border-color: var(--mk-line-strong);
}

[data-theme="light"] .site-header .site-button--ghost:hover {
  background: rgba(20, 33, 61, 0.08);
}

[data-theme="light"] .feature-mega {
  color: var(--mk-ink);
  border-color: var(--mk-line-strong);
  background: rgba(248, 251, 255, 0.98);
  box-shadow: 0 28px 80px rgba(23, 61, 104, 0.18);
}

[data-theme="light"] .mega-item:hover {
  background: var(--mk-surface-soft);
}

[data-theme="light"] .mega-item span {
  color: var(--mk-muted);
}

[data-theme="light"] .mega-aside {
  color: var(--mk-ink);
  background: #dce9fb;
}

[data-theme="light"] .mega-aside p {
  color: var(--mk-muted);
}

[data-theme="light"] .mega-aside a {
  color: var(--mk-secondary);
}

[data-theme="light"] .mobile-drawer {
  color: var(--mk-ink);
  background: var(--mk-bg);
}

[data-theme="light"] .mobile-drawer a,
[data-theme="light"] .mobile-drawer summary {
  color: var(--mk-ink);
  border-bottom-color: var(--mk-line);
}

[data-theme="light"] .mobile-drawer details div a {
  color: var(--mk-muted);
}

[data-theme="light"] .hero,
[data-theme="light"] .inner-hero {
  color: #f7f5ef;
}

[data-theme="light"] .hero::before {
  background: linear-gradient(90deg, rgba(6, 25, 45, 0.94) 0%, rgba(6, 25, 45, 0.8) 43%, rgba(6, 25, 45, 0.16) 78%), linear-gradient(0deg, rgba(6, 25, 45, 0.7), transparent 48%);
}

[data-theme="light"] .hero .eyebrow,
[data-theme="light"] .inner-hero .eyebrow {
  color: #ffa11d;
}

[data-theme="light"] .site-section--night .eyebrow {
  color: var(--mk-secondary);
}

[data-theme="light"] .hero-copy,
[data-theme="light"] .inner-hero p {
  color: rgba(247, 245, 239, 0.76);
}

[data-theme="light"] .hero h1 span {
  color: #ffa11d;
}

[data-theme="light"] .hero .site-button--ghost,
[data-theme="light"] .inner-hero .site-button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .hero .site-button--ghost:hover,
[data-theme="light"] .inner-hero .site-button--ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

[data-theme="light"] .hero-proof {
  color: var(--mk-ink);
  border-color: var(--mk-line-strong);
  background: rgba(220, 233, 251, 0.92);
  box-shadow: 0 20px 60px rgba(23, 61, 104, 0.16);
}

[data-theme="light"] .hero-proof div {
  border-color: var(--mk-line);
}

[data-theme="light"] .hero-proof strong {
  color: var(--mk-ink);
}

[data-theme="light"] .hero-proof span {
  color: var(--mk-muted);
}

[data-theme="light"] .inner-hero::after {
  opacity: 0.4;
}

[data-theme="light"] .inner-hero::before {
  background: linear-gradient(90deg, rgba(6, 25, 45, 0.95) 0%, rgba(6, 25, 45, 0.82) 50%, rgba(6, 25, 45, 0.3) 84%);
}

[data-theme="light"] .site-section--night {
  color: var(--mk-ink);
  background: #cfe2fa;
}

[data-theme="light"] .site-section--night .section-heading p {
  color: var(--mk-muted);
}

[data-theme="light"] .workflow-tab {
  color: var(--mk-muted);
  border-color: var(--mk-line-strong);
}

[data-theme="light"] .workflow-tab span:first-child {
  color: rgba(20, 33, 61, 0.44);
}

[data-theme="light"] .workflow-tab[aria-selected="true"] {
  color: var(--mk-ink);
  border-color: var(--mk-amber-strong);
  background: rgba(248, 251, 255, 0.84);
}

[data-theme="light"] .workflow-panel {
  color: var(--mk-ink);
  border-color: var(--mk-line-strong);
  background: var(--mk-surface);
  box-shadow: var(--mk-shadow);
}

[data-theme="light"] .workflow-panel > p,
[data-theme="light"] .workflow-points span {
  color: var(--mk-muted);
}

[data-theme="light"] .workflow-points div {
  border-top-color: var(--mk-line-strong);
}

[data-theme="light"] .insight-console {
  color: var(--mk-ink);
  border-color: var(--mk-line-strong);
  background: var(--mk-surface);
}

[data-theme="light"] .insight-console__header {
  border-bottom-color: var(--mk-line);
}

[data-theme="light"] .issue-line {
  border-color: var(--mk-line);
  background: var(--mk-surface-soft);
}

[data-theme="light"] .issue-line span,
[data-theme="light"] .issue-line small {
  color: var(--mk-muted);
}

[data-theme="light"] .price-card.is-featured {
  color: var(--mk-ink);
  background: #cfe2fa;
  box-shadow: 0 24px 60px rgba(23, 61, 104, 0.14);
}

[data-theme="light"] .price-card.is-featured .price-label,
[data-theme="light"] .price-card.is-featured .price-list i {
  color: var(--mk-secondary);
}

[data-theme="light"] .price-card.is-featured > p,
[data-theme="light"] .price-card.is-featured .price-note,
[data-theme="light"] .price-card.is-featured .price-list li {
  color: var(--mk-muted);
}

[data-theme="light"] .price-card.is-featured .price-list {
  border-color: var(--mk-line);
}

[data-theme="light"] .final-cta {
  color: var(--mk-ink);
  background: #c4ddfa;
}

[data-theme="light"] .final-cta::before {
  opacity: 0.08;
}

[data-theme="light"] .final-cta p {
  color: var(--mk-muted);
}

[data-theme="light"] .cookie-banner {
  color: var(--mk-ink);
  border-color: var(--mk-line-strong);
  background: var(--mk-surface);
  box-shadow: var(--mk-shadow);
}

[data-theme="light"] .cookie-banner p {
  color: var(--mk-muted);
}

[data-theme="light"] .site-footer {
  color: var(--mk-ink);
  background: #c4ddfa;
}

[data-theme="light"] .footer-brand p,
[data-theme="light"] .footer-column a {
  color: var(--mk-muted);
}

[data-theme="light"] .footer-column h2,
[data-theme="light"] .footer-bottom {
  color: rgba(20, 33, 61, 0.56);
}

[data-theme="light"] .footer-column a:hover {
  color: var(--mk-ink);
}

[data-theme="light"] .footer-bottom {
  border-top-color: var(--mk-line);
}

.site-main {
  min-height: 60vh;
}

/* Compatibility for existing policy/trust pages while they adopt the new shell. */
.marketing-container,
.container {
  width: min(calc(100% - 40px), var(--mk-max));
  margin-inline: auto;
}

.marketing-header,
.marketing-footer {
  color: #fff;
  background: #10233d;
}

.marketing-header {
  min-height: var(--mk-header-height);
  padding: 16px 0;
}

.marketing-nav,
.marketing-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marketing-nav-links,
.marketing-nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.marketing-nav a,
.marketing-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.marketing-main,
.legal-page,
.policy-page,
.trust-page {
  min-height: 65vh;
  padding: 88px 0;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-actions .site-button--ghost,
  .nav-actions .site-button--small {
    display: none;
  }

  .hero-content,
  .final-cta .site-container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 4.6rem;
  }

  .inner-hero h1 {
    font-size: 4.2rem;
  }

  .final-cta h2 {
    font-size: 3.8rem;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof div {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-section {
    padding: 80px 0;
  }

  .section-heading,
  .pricing-intro,
  .product-stage,
  .detail-layout,
  .contact-grid,
  .editorial-layout,
  .legal-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading h2,
  .product-stage-copy h2,
  .detail-copy h2,
  .pricing-intro h2,
  .contact-copy h2 {
    font-size: 3rem;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 3.9rem;
  }

  .workflow-panel h3 {
    font-size: 2.25rem;
  }

  .signal-strip .site-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-item:nth-child(2) {
    border-right: 0;
  }

  .capability-grid,
  .principle-grid,
  .content-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-tab {
    grid-template-columns: 1fr;
    border-bottom: 2px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .workflow-tab[aria-selected="true"] {
    border-bottom-color: #ffa11d;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --mk-header-height: 64px;
  }

  .site-container,
  .marketing-container,
  .container {
    width: min(calc(100% - 28px), var(--mk-max));
  }

  .site-header .brand-name {
    font-size: 0.92rem;
  }

  .nav-actions {
    gap: 6px;
  }

  .icon-button,
  .menu-button {
    width: 44px;
    height: 44px;
  }

  .site-language-trigger {
    min-height: 44px;
  }

  .mega-trigger {
    min-height: 44px;
  }

  .cookie-actions .site-button {
    box-sizing: border-box;
    min-height: 44px;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 36px;
    background-position: 62% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(6, 25, 45, 0.96), rgba(6, 25, 45, 0.62)), linear-gradient(0deg, rgba(6, 25, 45, 0.92), transparent 52%);
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-actions .site-button {
    box-sizing: border-box;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    padding-block: 12px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .hero-content {
    gap: 34px;
  }

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

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .signal-strip .site-container,
  .capability-grid,
  .principle-grid,
  .content-grid,
  .outcome-grid,
  .pricing-grid,
  .policy-summary,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .signal-item {
    min-height: 50px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 33, 61, 0.15);
  }

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

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-sidebar {
    display: none;
  }

  .window-main {
    padding: 16px;
  }

  .window-metrics {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 260px;
  }

  .capability-icon {
    margin-bottom: 42px;
  }

  .workflow-tabs {
    grid-template-columns: 1fr;
  }

  .workflow-tab {
    grid-template-columns: 32px 1fr;
    border-bottom: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.14);
  }

  .workflow-tab[aria-selected="true"] {
    border-left-color: #ffa11d;
  }

  .workflow-panel {
    padding: 24px;
  }

  .workflow-points {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .inner-hero {
    min-height: 500px;
  }

  .inner-hero--short {
    min-height: 420px;
  }

  .inner-hero h1 {
    font-size: 3rem;
  }

  .section-heading h2,
  .product-stage-copy h2,
  .detail-copy h2,
  .pricing-intro h2,
  .contact-copy h2,
  .final-cta h2 {
    font-size: 2.5rem;
  }

  .workflow-panel h3,
  .article-card h2,
  .article-card h3,
  .prose h2 {
    font-size: 2rem;
  }

  .issue-line {
    grid-template-columns: 36px 1fr;
  }

  .issue-line small {
    display: none;
  }

  .price-card {
    min-height: auto;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-number {
    flex-direction: row;
    align-items: center;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .footer-grid {
    gap: 34px;
  }

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

/* AI search command-center homepage */
.home-command-page {
  overflow: hidden;
  background: var(--mk-bg);
}

.command-hero {
  position: relative;
  display: flex;
  min-height: min(820px, calc(100svh - 58px));
  align-items: center;
  overflow: hidden;
  padding: calc(var(--mk-header-height) + 38px) 0 30px;
  color: #f7f7f3;
  background: #0f2743 url("/site/assets/images/seo-command-center-hero-v2.jpg") 58% center / cover no-repeat;
}

.command-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 25, 45, 0.98) 0%, rgba(6, 25, 45, 0.9) 44%, rgba(6, 25, 45, 0.56) 72%, rgba(6, 25, 45, 0.82) 100%),
    linear-gradient(0deg, rgba(6, 25, 45, 0.88) 0%, transparent 42%);
}

.command-hero::after {
  position: absolute;
  inset: var(--mk-header-height) 0 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 52%, #000 100%);
  pointer-events: none;
}

.command-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.84fr);
  gap: 64px;
  align-items: center;
}

.command-hero__copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 5rem;
  font-weight: 650;
}

.command-hero__copy h1 span {
  color: #ffa11d;
}

.command-hero__copy > p {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(247, 247, 243, 0.7);
  font-size: 1.16rem;
}

.command-hero .eyebrow {
  color: #ffa11d;
}

.command-hero .eyebrow::before {
  display: none;
}

.live-pulse {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #ffa11d;
  box-shadow: 0 0 0 5px rgba(255, 161, 29, 0.12);
}

.live-pulse::after {
  position: absolute;
  inset: -6px;
  content: "";
  border: 1px solid rgba(255, 161, 29, 0.46);
  border-radius: 50%;
  animation: command-pulse 2.2s ease-out infinite;
}

@keyframes command-pulse {
  0% { opacity: 0.8; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.55); }
}

.command-hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: rgba(247, 247, 243, 0.58);
  font-size: 0.73rem;
}

.command-hero__assurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.command-hero__assurance i {
  color: #ffa11d;
  font-size: 0.95rem;
}

.command-visual {
  position: relative;
  overflow: hidden;
  min-height: 472px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 31, 54, 0.84);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.command-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 161, 29, 0.055), transparent 42%, rgba(122, 98, 125, 0.075));
  pointer-events: none;
}

.command-visual__chrome,
.command-result,
.operations-console__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.command-visual__chrome {
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 700;
}

.command-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffa11d;
}

.command-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffa11d;
  box-shadow: 0 0 0 4px rgba(255, 161, 29, 0.12);
}

.command-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.58rem;
  font-weight: 800;
}

.command-route span.is-active {
  color: #ffa11d;
}

.command-route i {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.command-feed {
  display: grid;
  gap: 1px;
  margin: 0 18px;
  background: rgba(255, 255, 255, 0.08);
}

.command-line {
  position: relative;
  display: grid;
  min-height: 43px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 0 13px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(9, 31, 54, 0.94);
  animation: command-line-flow 7s ease-in-out var(--line-delay) infinite;
}

.command-line::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: #ffa11d;
  opacity: 0;
  animation: command-line-signal 7s ease-in-out var(--line-delay) infinite;
}

.command-line > span {
  color: rgba(255, 255, 255, 0.26);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
}

.command-line code {
  overflow: hidden;
  color: inherit;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.71rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.command-line em {
  color: rgba(255, 201, 120, 0.76);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 800;
}

@keyframes command-line-flow {
  0%, 12% { color: rgba(255, 255, 255, 0.48); transform: translateX(0); }
  20%, 34% { color: #fff; transform: translateX(3px); }
  44%, 100% { color: rgba(255, 255, 255, 0.64); transform: translateX(0); }
}

@keyframes command-line-signal {
  0%, 12%, 44%, 100% { opacity: 0; }
  20%, 34% { opacity: 1; }
}

.command-result {
  margin: 14px 18px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.command-result span,
.command-result strong {
  display: block;
}

.command-result span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.36);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.59rem;
}

.command-result strong {
  font-size: 0.86rem;
}

.command-meter {
  display: flex;
  gap: 4px;
}

.command-meter span {
  width: 22px;
  height: 5px;
  margin: 0;
  background: #ffa11d;
}

.command-meter span:nth-child(4),
.command-meter span:nth-child(5) {
  background: #7a627d;
}

.command-visual__scan {
  position: absolute;
  z-index: 3;
  top: 54px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 201, 120, 0.58);
  box-shadow: 0 0 22px rgba(255, 161, 29, 0.42);
  animation: command-scan 5.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes command-scan {
  0%, 10% { opacity: 0; transform: translateY(0); }
  18% { opacity: 1; }
  78% { opacity: 0.55; transform: translateY(360px); }
  82%, 100% { opacity: 0; transform: translateY(360px); }
}

.execution-rail {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: #142f50;
}

.execution-track {
  display: flex;
  width: max-content;
  animation: execution-flow 34s linear infinite;
}

.execution-sequence {
  display: flex;
  min-height: 60px;
  align-items: center;
}

.execution-sequence > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.execution-sequence i {
  color: #ffa11d;
  font-size: 0.56rem;
  font-style: normal;
}

@keyframes execution-flow {
  to { transform: translateX(-50%); }
}

.command-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 58px;
}

.command-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 4rem;
}

.command-section-heading > p {
  margin-bottom: 7px;
  color: var(--mk-muted);
}

.intelligence-spine {
  border-top: 1px solid var(--mk-line-strong);
}

.spine-lane {
  display: grid;
  min-height: 210px;
  grid-template-columns: 155px 56px minmax(0, 1fr) 48px;
  gap: 26px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--mk-line-strong);
  transition: background 180ms ease, padding 180ms ease;
}

.spine-lane:hover {
  padding-inline: 18px;
  background: color-mix(in srgb, var(--mk-surface) 72%, transparent);
}

.spine-index {
  align-self: start;
  padding-top: 7px;
  color: var(--mk-secondary);
  font-size: 0.65rem;
  font-weight: 850;
}

.spine-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #ffa11d;
  border: 1px solid color-mix(in srgb, var(--mk-amber) 38%, var(--mk-line));
  border-radius: 7px;
  background: color-mix(in srgb, var(--mk-amber) 8%, transparent);
  font-size: 1.35rem;
}

.spine-lane h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.spine-lane p {
  max-width: 790px;
  color: var(--mk-muted);
  font-size: 0.91rem;
}

.spine-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.spine-tools span {
  padding: 5px 8px;
  color: var(--mk-muted);
  border: 1px solid var(--mk-line);
  border-radius: 4px;
  font-size: 0.64rem;
  font-weight: 720;
}

.spine-lane > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--mk-line-strong);
  border-radius: 6px;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.spine-lane > a:hover {
  color: #14213d;
  border-color: #ffa11d;
  background: #ffa11d;
}

.command-center-stage {
  color: #f6f5f1;
  background: #112d4d;
}

.command-center-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.command-center-copy h2 {
  margin-bottom: 22px;
  font-size: 4rem;
}

.command-center-copy > p {
  color: rgba(246, 245, 241, 0.64);
}

.command-center-points {
  display: grid;
  gap: 0;
  margin: 30px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.command-center-points span {
  display: flex;
  min-height: 51px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(246, 245, 241, 0.74);
  font-size: 0.82rem;
}

.command-center-points i,
.command-center-stage .text-link {
  color: #ffa11d;
}

.operations-console {
  overflow: hidden;
  color: #f5f5f1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #183b61;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.operations-console__head {
  min-height: 56px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 800;
}

.operations-console__head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.operations-console__head i,
.operations-console__head em {
  color: #ffa11d;
}

.operations-console__head em {
  font-size: 0.57rem;
  font-style: normal;
}

.operations-question,
.operations-answer {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.operations-question > span,
.operations-answer > span {
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.62rem;
  font-weight: 850;
}

.operations-question p,
.operations-answer > p {
  margin: 0;
  font-size: 0.88rem;
}

.operations-answer > p {
  color: rgba(255, 255, 255, 0.64);
}

.operations-steps {
  display: grid;
  grid-column: 2;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.operations-steps > div {
  display: grid;
  min-height: 58px;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.operations-steps i {
  color: #ffa11d;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
}

.operations-steps strong,
.operations-steps small {
  display: block;
}

.operations-steps strong {
  font-size: 0.78rem;
}

.operations-steps small {
  color: rgba(255, 255, 255, 0.39);
  font-size: 0.65rem;
}

.operations-steps em {
  color: rgba(255, 201, 120, 0.72);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 800;
}

.operations-steps em.is-waiting {
  color: #d7bddf;
}

.operations-command {
  display: grid;
  min-height: 62px;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 18px;
  padding: 0 16px;
  color: #14213d;
  border-radius: 6px;
  background: #ffa11d;
  font-size: 0.8rem;
}

.operations-command > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 900;
}

.tool-fabric-section {
  background: var(--mk-surface);
}

.tool-fabric {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--mk-line-strong);
  border-left: 1px solid var(--mk-line-strong);
}

.tool-cluster {
  min-height: 370px;
  padding: 26px;
  border-right: 1px solid var(--mk-line-strong);
  border-bottom: 1px solid var(--mk-line-strong);
}

.tool-cluster__head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 74px;
}

.tool-cluster__head > i {
  color: #ffa11d;
  font-size: 1.55rem;
}

.tool-cluster__head strong,
.tool-cluster__head small {
  display: block;
}

.tool-cluster__head strong {
  font-size: 0.95rem;
}

.tool-cluster__head small {
  color: var(--mk-muted);
  font-size: 0.67rem;
}

.tool-cluster ul {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--mk-line);
  list-style: none;
}

.tool-cluster li {
  position: relative;
  padding: 12px 0 12px 16px;
  color: var(--mk-muted);
  border-bottom: 1px solid var(--mk-line);
  font-size: 0.78rem;
}

.tool-cluster li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: #ffa11d;
  transform: translateY(-50%);
}

.operating-principles {
  color: #f4f4f0;
  background: #183b61;
}

.operating-principles .site-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operating-principles .site-container > div {
  min-height: 220px;
  padding: 38px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.operating-principles .site-container > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.operating-principles span,
.operating-principles strong {
  display: block;
}

.operating-principles span {
  margin-bottom: 28px;
  color: #ffa11d;
  font-size: 0.67rem;
  font-weight: 850;
}

.operating-principles strong {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.operating-principles p {
  color: rgba(244, 244, 240, 0.55);
  font-size: 0.8rem;
}

.command-final-cta::before {
  opacity: 0.38;
}

[data-theme="light"] .command-center-stage {
  color: var(--mk-ink);
  background: #cfe2fa;
}

[data-theme="light"] .command-center-copy > p,
[data-theme="light"] .command-center-points span {
  color: var(--mk-muted);
}

[data-theme="light"] .command-center-points,
[data-theme="light"] .command-center-points span {
  border-color: var(--mk-line-strong);
}

[data-theme="light"] .operating-principles {
  color: var(--mk-ink);
  background: #c4ddfa;
}

[data-theme="light"] .operating-principles .site-container > div,
[data-theme="light"] .operating-principles .site-container > div:first-child {
  border-color: var(--mk-line-strong);
}

[data-theme="light"] .operating-principles p {
  color: var(--mk-muted);
}

@media (max-width: 1120px) {
  .command-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    gap: 40px;
  }

  .command-hero__copy h1 {
    font-size: 4.2rem;
  }

  .tool-fabric {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .command-hero {
    min-height: auto;
    padding-bottom: 46px;
  }

  .command-hero__layout,
  .command-center-layout,
  .command-section-heading {
    grid-template-columns: 1fr;
  }

  .command-hero__layout {
    gap: 44px;
  }

  .command-visual {
    width: min(100%, 680px);
    min-height: 490px;
  }

  .command-section-heading {
    gap: 22px;
  }

  .command-section-heading h2,
  .command-center-copy h2 {
    font-size: 3.3rem;
  }

  .spine-lane {
    grid-template-columns: 125px 50px minmax(0, 1fr) 42px;
    gap: 18px;
  }

  .command-center-layout {
    gap: 48px;
  }

  .operating-principles .site-container {
    grid-template-columns: 1fr;
  }

  .operating-principles .site-container > div,
  .operating-principles .site-container > div:first-child {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 620px) {
  .command-hero {
    padding: calc(var(--mk-header-height) + 38px) 0 24px;
    background-position: 28% center;
  }

  .command-hero::after {
    background-size: 42px 42px;
  }

  .command-hero__copy h1 {
    margin-bottom: 18px;
    font-size: 2.5rem;
  }

  .command-hero__copy > p {
    margin-bottom: 22px;
    font-size: 0.92rem;
  }

  .command-hero__assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
    font-size: 0.58rem;
  }

  .command-hero__assurance span {
    align-items: flex-start;
  }

  .command-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .command-hero .hero-actions .site-button--ghost {
    width: auto;
    min-height: 34px;
    padding: 0;
    border-color: transparent;
    background: transparent;
  }

  .command-visual {
    min-height: 202px;
  }

  .command-visual__chrome {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 0.57rem;
  }

  .command-route {
    display: none;
  }

  .command-feed {
    margin-inline: 12px;
  }

  .command-line {
    min-height: 37px;
    grid-template-columns: 23px minmax(0, 1fr) auto;
    padding-inline: 9px;
  }

  .command-line code {
    font-size: 0.61rem;
  }

  .command-line:nth-child(n + 4) {
    display: none;
  }

  .command-result {
    margin: 10px 12px;
    padding-top: 10px;
  }

  .command-result strong {
    font-size: 0.75rem;
  }

  .command-meter span {
    width: 13px;
  }

  @keyframes command-scan {
    0%, 10% { opacity: 0; transform: translateY(0); }
    18% { opacity: 1; }
    78% { opacity: 0.55; transform: translateY(150px); }
    82%, 100% { opacity: 0; transform: translateY(150px); }
  }

  .execution-sequence {
    min-height: 52px;
  }

  .execution-sequence > span {
    padding-inline: 20px;
    font-size: 0.6rem;
  }

  .command-section-heading h2,
  .command-center-copy h2 {
    font-size: 2.65rem;
  }

  .spine-lane {
    min-height: 0;
    grid-template-columns: 54px minmax(0, 1fr) 42px;
    padding: 28px 0;
  }

  .spine-index {
    grid-column: 1 / -1;
    padding: 0;
  }

  .spine-lane h3 {
    font-size: 1.4rem;
  }

  .spine-lane:hover {
    padding-inline: 10px;
  }

  .operations-question,
  .operations-answer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 17px;
  }

  .operations-steps {
    grid-column: 1;
  }

  .operations-steps > div {
    grid-template-columns: 24px 1fr;
  }

  .operations-steps em {
    grid-column: 2;
    padding-bottom: 8px;
  }

  .tool-fabric {
    grid-template-columns: 1fr;
  }

  .tool-cluster {
    min-height: auto;
  }

  .operating-principles .site-container > div {
    padding: 30px 24px;
  }
}

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

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

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

  .brand-tagline::after {
    display: none;
    animation: none;
  }
}
