:root {
  --ink: #081634;
  --ink-soft: #46516a;
  --muted: #68748b;
  --blue: #174ee8;
  --blue-strong: #0f43db;
  --blue-soft: #edf3ff;
  --cyan: #18b9df;
  --green: #0ea77a;
  --green-soft: #eafaf5;
  --amber: #f2a619;
  --red: #ed2438;
  --red-soft: #fff0f1;
  --surface: #ffffff;
  --surface-alt: #f8faff;
  --page: #f7f8fb;
  --line: #d9dfeb;
  --line-strong: #c8d0df;
  --shadow-sm: 0 1px 2px rgba(8, 22, 52, 0.04), 0 6px 18px rgba(38, 56, 96, 0.05);
  --shadow-md: 0 16px 48px rgba(50, 71, 123, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1200px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 12%, rgba(90, 112, 255, 0.07), transparent 24rem),
    #fffdfb;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

a:hover {
  color: var(--blue);
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

p {
  color: var(--ink-soft);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.65rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

::selection {
  color: #fff;
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid rgba(23, 78, 232, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 48px), 1440px);
  margin: 18px auto;
  overflow: clip;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(8, 22, 52, 0.03);
}

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

.announcement {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink);
  background: linear-gradient(90deg, #f4f7fd, #fbfcff 52%, #f4f7fd);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
}

.announcement__spark {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--blue);
  font-size: 1rem;
}

.announcement a {
  color: var(--blue);
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 40;
  min-height: 70px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(calc(100% - 64px), 1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 810;
  letter-spacing: -0.055em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-group {
  position: relative;
}

.nav-group > summary {
  list-style: none;
  cursor: pointer;
}

.nav-group > summary::-webkit-details-marker {
  display: none;
}

.nav-link,
.nav-group > summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: var(--ink);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 520;
}

.nav-group > summary::after {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 9px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.nav-link:hover,
.nav-group > summary:hover,
.nav-group[open] > summary {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  min-width: 240px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
}

.nav-menu a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sign-in {
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(180deg, #235cf1, var(--blue));
  border: 1px solid var(--blue);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(23, 78, 232, 0.16);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  color: #fff;
  background: var(--blue-strong);
  box-shadow: 0 10px 24px rgba(23, 78, 232, 0.25);
  transform: translateY(-1px);
}

.button--small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.button--secondary {
  color: var(--blue);
  background: #fff;
  border-color: #2b5dff;
  box-shadow: none;
}

.button--secondary:hover {
  color: var(--blue);
  background: var(--blue-soft);
  box-shadow: none;
}

.button--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(570px, 1.05fr);
  align-items: center;
  gap: 44px;
  padding: 28px 32px 12px 52px;
  overflow: hidden;
}

.home-hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 60% 48%, rgba(86, 109, 255, 0.16), transparent 42%),
    radial-gradient(#7890ee 0.8px, transparent 0.8px);
  background-size: auto, 8px 8px;
  opacity: 0.42;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.home-hero__copy,
.home-hero__visual {
  position: relative;
  z-index: 1;
}

.home-hero__copy {
  padding-left: 8px;
}

.home-hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 4vw, 4.25rem);
  line-height: 1.06;
}

.home-hero__lead {
  max-width: 420px;
  margin-bottom: 30px;
  color: #5b6680;
  font-size: 1.24rem;
  line-height: 1.55;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-hero__actions .button {
  min-width: 154px;
  min-height: 51px;
}

.product-board {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 245px;
  grid-template-rows: minmax(0, 1fr) 72px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cdd5e4;
  border-radius: 11px;
  box-shadow: 0 20px 50px rgba(52, 75, 133, 0.13);
}

.board-rail {
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  background: #fbfcff;
  border-right: 1px solid var(--line);
}

.rail-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #5d6a83;
  border-radius: 7px;
  font-size: 0.73rem;
  font-weight: 800;
}

.rail-button.is-active {
  color: var(--blue);
  background: var(--blue-soft);
}

.topology-card {
  position: relative;
  min-height: 330px;
  padding: 14px 18px 6px;
}

.board-title {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 760;
}

.topology {
  position: relative;
  height: 280px;
}

.topology-line {
  position: absolute;
  z-index: 0;
  height: 1px;
  background: #8d9bb3;
  transform-origin: left center;
}

.topology-line::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.topology-line.is-healthy {
  color: var(--green);
  background: var(--green);
}

.topology-line.is-critical {
  height: 2px;
  color: var(--red);
  background: var(--red);
}

.line-1 { top: 40px; left: 50%; width: 80px; transform: rotate(20deg); }
.line-2 { top: 76px; left: 47%; width: 100px; transform: rotate(-152deg); }
.line-3 { top: 106px; left: 38%; width: 90px; transform: rotate(32deg); }
.line-4 { top: 108px; left: 58%; width: 88px; transform: rotate(-28deg); }
.line-5 { top: 163px; left: 33%; width: 105px; transform: rotate(23deg); }
.line-6 { top: 162px; left: 52%; width: 98px; transform: rotate(7deg); }
.line-7 { top: 165px; left: 61%; width: 95px; transform: rotate(150deg); }
.line-8 { top: 208px; left: 45%; width: 85px; transform: rotate(88deg); }
.line-9 { top: 208px; left: 55%; width: 115px; transform: rotate(25deg); }

.topology-node {
  position: absolute;
  z-index: 2;
  min-width: 86px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ced7e4;
  border-radius: 7px;
  box-shadow: var(--shadow-sm);
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.node-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  flex: 0 0 20px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 5px;
  font-size: 0.55rem;
  font-weight: 850;
}

.topology-node.is-healthy {
  border-color: #58c6a5;
}

.topology-node.is-healthy .node-icon {
  color: #fff;
  background: var(--green);
}

.topology-node.is-critical {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-soft);
}

.topology-node.is-critical .node-icon {
  color: #fff;
  background: var(--red);
}

.node-internet { top: 0; left: calc(50% - 45px); }
.node-edge { top: 54px; left: calc(32% - 45px); }
.node-dns { top: 54px; right: 4%; min-width: 60px; }
.node-lb { top: 112px; left: calc(20% - 43px); }
.node-waf { top: 112px; right: 10%; min-width: 65px; }
.node-web { top: 172px; left: 4%; }
.node-app { top: 172px; left: calc(48% - 44px); }
.node-cache { top: 172px; right: 0; }
.node-db { top: 232px; left: 27%; }
.node-object { top: 232px; right: 8%; }

.board-side {
  grid-column: 3;
  grid-row: 1;
  padding: 13px 12px;
  background: #fbfcff;
  border-left: 1px solid var(--line);
}

.mini-panel + .mini-panel {
  margin-top: 10px;
}

.mini-panel {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-panel h3 {
  margin-bottom: 9px;
  font-size: 0.75rem;
  letter-spacing: -0.02em;
}

.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.56rem;
}

.field-value {
  min-width: 105px;
  padding: 4px 7px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.run-simulation {
  width: 100%;
  min-height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 4px;
  font-size: 0.56rem;
  font-weight: 750;
}

.blast-grid {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 9px;
}

.donut {
  position: relative;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 20%, var(--amber) 20% 44%, var(--green) 44% 69%, #137387 69% 100%);
}

.donut::after {
  position: absolute;
  inset: 11px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.risk-list {
  display: grid;
  gap: 3px;
  color: var(--ink-soft);
  font-size: 0.55rem;
}

.risk-list span {
  display: flex;
  justify-content: space-between;
}

.risk-list i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
}

.critical-panel {
  color: #8f1020;
  background: var(--red-soft);
  border-color: #ff9aa4;
}

.critical-panel h3 {
  color: #b20d20;
}

.critical-panel p {
  margin-bottom: 5px;
  color: #9f2531;
  font-size: 0.57rem;
  line-height: 1.45;
}

.critical-stats {
  display: flex;
  gap: 12px;
  color: var(--ink);
  font-size: 0.57rem;
}

.board-timeline {
  grid-column: 2 / 4;
  grid-row: 2;
  margin: 0 12px 10px 12px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-title {
  margin-bottom: 7px;
  font-size: 0.58rem;
  font-weight: 800;
}

.timeline-track {
  position: relative;
  height: 20px;
  margin-left: 28px;
  border-top: 1px solid #b7c0d2;
}

.timeline-play {
  position: absolute;
  top: -10px;
  left: -28px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.48rem;
}

.timeline-dot {
  position: absolute;
  top: -3px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.timeline-dot:nth-child(2) { left: 18%; }
.timeline-dot:nth-child(3) { left: 23%; }
.timeline-dot:nth-child(4) { left: 46%; }
.timeline-dot:nth-child(5) { left: 61%; }
.timeline-dot:nth-child(6) { left: 67%; background: var(--amber); }
.timeline-dot:nth-child(7) { left: 88%; background: var(--amber); }

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  padding: 2px 22px;
}

.signal + .signal {
  border-left: 1px solid var(--line);
}

.signal-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #f4f7ff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 850;
}

.signal strong,
.signal span {
  display: block;
}

.signal strong {
  color: var(--ink);
  font-size: 0.79rem;
}

.signal span {
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.home-compact {
  padding: 18px 42px 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-tile {
  min-height: 106px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.feature-tile:hover {
  color: var(--ink);
  border-color: #a9b7d0;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf2ff;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 850;
}

.feature-tile:nth-child(3) .feature-icon {
  color: #09a9d8;
  background: #e9faff;
}

.feature-tile strong {
  font-size: 0.96rem;
}

.feature-arrow {
  color: #63708a;
  font-size: 1.35rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
  padding: 17px 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.workflow-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.workflow-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 33%;
  content: "";
  border-top: 1px dashed #6c7891;
}

.workflow-step:not(:last-child)::before {
  position: absolute;
  z-index: 2;
  top: calc(50% - 3px);
  right: 19px;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 1px solid #6c7891;
  border-right: 1px solid #6c7891;
  transform: rotate(45deg);
}

.workflow-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf2ff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 850;
}

.workflow-step:nth-child(2) .workflow-icon {
  color: #07a7d1;
  background: #e5faff;
}

.workflow-step:nth-child(4) .workflow-icon {
  color: #fff;
  background: var(--green);
}

.workflow-step strong {
  font-size: 0.96rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 80px 4px;
}

.trust-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 13px;
  padding: 0 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.63rem;
  font-weight: 850;
}

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

.trust-item strong {
  font-size: 0.76rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.65rem;
  line-height: 1.45;
}

.home-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 22px 42px;
  padding: 16px 28px;
  background: linear-gradient(90deg, #f7f9fd, #eef4ff 62%, #f7f9fd);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.home-cta h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.home-cta__actions {
  display: flex;
  gap: 14px;
}

.home-story {
  position: relative;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.story-grid.is-reversed .story-copy {
  order: 2;
}

.story-grid.is-reversed .story-panel {
  order: 1;
}

.story-copy h2 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.story-copy > p {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #33415b;
  font-size: 0.95rem;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 780;
}

.story-panel {
  position: relative;
  min-height: 480px;
  padding: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(51, 102, 255, 0.18), transparent 17rem),
    radial-gradient(#8499dd 0.7px, transparent 0.7px),
    #fff;
  background-size: auto, 12px 12px, auto;
  border: 1px solid #ced7e7;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.story-panel::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(26, 78, 232, 0.13), transparent 67%);
}

.story-panel h3 {
  max-width: 520px;
  margin: 18px 0 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.story-panel > p {
  max-width: 530px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.story-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.story-node {
  min-height: 86px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7deeb;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.story-node > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 11px;
  font-size: 0.66rem;
  font-weight: 850;
}

.story-node strong,
.story-node small {
  display: block;
}

.story-node strong {
  margin-bottom: 3px;
  font-size: 0.88rem;
}

.story-node small {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading--split > div {
  max-width: 760px;
}

.preview-count-4 .content-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.preview-count-4 .content-card {
  min-height: 310px;
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-preview-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.pricing-preview-card:hover {
  color: var(--ink);
  border-color: #aab9d2;
}

.pricing-preview-card.is-featured {
  background: linear-gradient(180deg, #f7f9ff, #fff);
  border-color: #7290ff;
  box-shadow: 0 18px 45px rgba(45, 84, 205, 0.14);
}

.pricing-preview-card > span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-preview-card > strong {
  margin: 26px 0 14px;
  font-size: 2.2rem;
}

.pricing-preview-card small {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.pricing-preview-card p {
  margin-top: auto;
  font-size: 0.88rem;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.assurance-grid > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(145deg, #f7f9ff, #fff);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.assurance-grid strong,
.assurance-grid span {
  display: block;
}

.assurance-grid strong {
  margin-bottom: 7px;
  font-size: 0.92rem;
}

.assurance-grid span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.cta-band--large {
  min-height: 230px;
  padding: 42px;
}

.cta-band--large h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.site-footer {
  padding: 24px 42px 18px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 34px;
}

.footer-brand p {
  margin-top: 8px;
  font-size: 0.63rem;
}

.footer-column h2 {
  margin-bottom: 8px;
  font-size: 0.67rem;
  letter-spacing: 0;
}

.footer-column a {
  display: block;
  margin: 3px 0;
  color: var(--ink);
  font-size: 0.61rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
  font-size: inherit;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Internal pages */
.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 74px;
  background:
    radial-gradient(circle at 78% 36%, rgba(73, 96, 255, 0.15), transparent 23rem),
    linear-gradient(180deg, #fff, #f8faff);
  border-bottom: 1px solid var(--line);
}

.inner-hero::after {
  position: absolute;
  top: 0;
  right: 4%;
  width: 36%;
  height: 100%;
  content: "";
  opacity: 0.25;
  background-image: radial-gradient(#5e77df 0.8px, transparent 0.8px);
  background-size: 10px 10px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.inner-hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
}

.inner-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
}

.inner-hero__lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: #526079;
  font-size: 1.22rem;
  line-height: 1.65;
}

.breadcrumb {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #a0a9ba;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--surface-alt);
  border-top: 1px solid #edf0f6;
  border-bottom: 1px solid #edf0f6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p {
  font-size: 1.08rem;
}

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

.content-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.content-card:hover {
  color: var(--ink);
  border-color: #aab9d2;
  box-shadow: 0 15px 36px rgba(41, 62, 111, 0.11);
  transform: translateY(-2px);
}

.content-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 14px;
  font-size: 0.7rem;
  font-weight: 850;
}

.content-card h3 {
  margin-bottom: 12px;
}

.content-card p {
  margin-bottom: 20px;
  font-size: 0.93rem;
}

.content-card__link {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 750;
}

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

.prose {
  max-width: 780px;
}

.prose h2 {
  margin-top: 58px;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

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

.prose h3 {
  margin-top: 36px;
  margin-bottom: 14px;
}

.prose p,
.prose li {
  color: #3f4b63;
  font-size: 1.02rem;
  line-height: 1.82;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.prose li + li {
  margin-top: 9px;
}

.sidebar-card {
  position: sticky;
  top: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.sidebar-card h2 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.sidebar-card a:not(.button) {
  display: block;
  padding: 9px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid #edf0f5;
  font-size: 0.84rem;
  font-weight: 650;
}

.callout {
  margin: 34px 0;
  padding: 22px 24px;
  background: #f5f8ff;
  border: 1px solid #d7e1fb;
  border-left: 4px solid var(--blue);
  border-radius: 9px;
}

.callout strong {
  display: block;
  margin-bottom: 6px;
}

.callout p {
  margin: 0;
}

.example-box {
  margin: 38px 0;
  padding: 26px;
  background: #0d1c3b;
  border-radius: 12px;
}

.example-box,
.example-box h3,
.example-box p,
.example-box li {
  color: #f3f6ff;
}

.example-box .example-label {
  color: #9fb7ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px 42px;
  background: linear-gradient(110deg, #0a1837, #15316b);
  border-radius: var(--radius-lg);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-band p {
  margin: 0;
  opacity: 0.78;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.price-card.is-featured {
  border-color: #89a0ff;
  box-shadow: 0 18px 40px rgba(32, 76, 221, 0.12);
}

.price-card__badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 5px 9px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

.price-card h2 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.price {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2.8rem;
  font-weight: 820;
  letter-spacing: -0.06em;
}

.price small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 550;
  letter-spacing: 0;
}

.price-card ul {
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.price-card li::before {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 850;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.table-hint {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table caption {
  padding: 18px;
  text-align: left;
  color: var(--ink);
  font-weight: 800;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  text-align: left;
  font-size: 0.85rem;
}

.comparison-table th {
  color: var(--ink);
  background: #f8faff;
}

.comparison-table td {
  color: var(--ink-soft);
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-card + .contact-card {
  margin-top: 14px;
}

.contact-card h2 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-card p {
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 750;
}

.contact-company {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.6;
}

.contact-company strong {
  color: var(--ink);
  font-weight: 800;
}

.contact-company a {
  width: max-content;
}

.demo-brief {
  padding: 34px;
  background: linear-gradient(145deg, #f8faff, #eef4ff);
  border: 1px solid #cedaf2;
  border-radius: var(--radius-lg);
}

.demo-brief ul {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-item summary {
  cursor: pointer;
  padding: 19px 22px;
  color: var(--ink);
  font-weight: 760;
}

.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  color: var(--ink);
  border-color: #aab9d2;
  transform: translateY(-2px);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.72rem;
}

.blog-card h2 {
  margin-bottom: 13px;
  font-size: 1.28rem;
  line-height: 1.22;
}

.blog-card p {
  font-size: 0.87rem;
}

.blog-card__link {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 750;
}

.article-header {
  padding: 68px 0 44px;
  background: linear-gradient(180deg, #fff, #f8faff);
  border-bottom: 1px solid var(--line);
}

.article-header__inner {
  max-width: 920px;
}

.article-header h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
}

.article-standfirst {
  max-width: 820px;
  color: #536078;
  font-size: 1.23rem;
  line-height: 1.65;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: 68px;
  padding: 64px 0 90px;
}

.article-toc {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 18px;
  background: #f8faff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.article-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.75rem;
}

.article-toc a {
  display: block;
  padding: 5px 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.4;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin-top: 64px;
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.article-body p,
.article-body li {
  color: #35425a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.085rem;
  line-height: 1.88;
}

.article-body li + li {
  margin-top: 9px;
}

.article-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  color: var(--ink);
  background: #f5f8ff;
  border-left: 4px solid var(--blue);
}

.article-body blockquote p {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
}

.article-body pre {
  overflow: auto;
  padding: 22px;
  color: #eef3ff;
  background: #0c1b39;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.65;
}

.article-body code {
  padding: 0.12em 0.35em;
  color: #173fbb;
  background: #edf2ff;
  border-radius: 4px;
}

.article-body pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.article-faq {
  margin-top: 60px;
}

.article-faq h2 {
  margin-top: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.related-card strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.3;
}

.related-card span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 750;
}

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

.legal-prose h2 {
  margin-top: 52px;
  font-size: 1.9rem;
}

.legal-prose h3 {
  margin-top: 30px;
}

.legal-prose p,
.legal-prose li {
  color: #3e4b62;
}

.legal-note {
  padding: 18px 20px;
  color: #614815;
  background: #fff9e8;
  border: 1px solid #f0d887;
  border-radius: 9px;
}

.not-found {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 70px 24px;
  text-align: center;
}

.not-found__code {
  color: var(--blue);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

@media (max-width: 1180px) {
  .announcement {
    min-height: 32px;
    font-size: 0.72rem;
  }

  .site-header {
    min-height: 54px;
  }

  .site-header__inner {
    gap: 18px;
  }

  .desktop-nav {
    gap: 0;
  }

  .nav-link,
  .nav-group > summary {
    padding-inline: 9px;
    font-size: 0.82rem;
  }

  .home-hero {
    min-height: 420px;
    grid-template-columns: minmax(370px, 0.72fr) minmax(540px, 1fr);
    gap: 26px;
    padding: 20px 14px 10px 45px;
  }

  .home-hero__copy {
    align-self: start;
    padding-top: 36px;
  }

  .home-hero h1 {
    font-size: clamp(2.75rem, 4.4vw, 3.35rem);
  }

  .product-board {
    height: 385px;
    min-height: 385px;
    grid-template-columns: 48px minmax(0, 1fr) 210px;
    grid-template-rows: minmax(0, 1fr) 58px;
  }

  .topology-card {
    min-height: 300px;
    padding-top: 10px;
  }

  .topology {
    height: 258px;
    transform: scale(0.9);
    transform-origin: center top;
  }

  .board-timeline {
    margin-bottom: 7px;
    padding-block: 7px;
  }

  .board-side {
    padding: 8px;
  }

  .mini-panel {
    padding: 7px;
  }

  .mini-panel + .mini-panel {
    margin-top: 7px;
  }

  .mini-panel h3 {
    margin-bottom: 6px;
  }

  .field-label {
    margin-bottom: 5px;
  }

  .topology-node {
    min-width: 72px;
    font-size: 0.55rem;
  }

  .signal-strip {
    padding: 9px 34px;
  }

  .signal {
    padding-inline: 12px;
  }

  .home-compact {
    padding: 4px 42px 8px;
  }

  .feature-tile {
    min-height: 90px;
    padding: 14px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
  }

  .workflow {
    margin-top: 10px;
    padding-block: 12px;
  }

  .trust-row {
    padding: 10px 60px 2px;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
  }

  .home-cta {
    margin-block: 10px 16px;
    padding-block: 14px;
  }
}

@media (max-width: 980px) {
  .site-shell {
    width: min(calc(100% - 24px), 1440px);
    margin-block: 12px;
  }

  .site-header__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    font-size: 1.2rem;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(300px, calc(100vw - 48px));
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
  }

  .mobile-menu__panel a {
    display: block;
    padding: 10px 12px;
    color: var(--ink);
    border-radius: 7px;
    font-size: 0.84rem;
    font-weight: 650;
  }

  .mobile-menu__panel a:hover {
    color: var(--blue);
    background: var(--blue-soft);
  }

  .mobile-menu__actions {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 46px;
    padding-block: 64px 38px;
  }

  .home-hero__copy {
    max-width: 680px;
  }

  .home-hero__visual {
    width: 100%;
  }

  .product-board {
    min-height: 430px;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 0;
  }

  .signal:nth-child(3) {
    border-left: 0;
  }

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

  .workflow {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .workflow-step::after,
  .workflow-step::before {
    display: none;
  }

  .trust-row {
    padding-inline: 28px;
  }

  .trust-item {
    padding-inline: 16px;
  }

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

  .detail-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card,
  .article-toc {
    position: static;
  }

  .article-toc {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid.is-reversed .story-copy,
  .story-grid.is-reversed .story-panel {
    order: initial;
  }

  .story-panel {
    min-height: 430px;
  }

  .preview-count-4 .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    background: #fff;
  }

  .home-page main {
    display: flex;
    flex-direction: column;
  }

  .home-page main > * {
    order: 10;
  }

  .home-page .home-hero {
    order: 1;
  }

  .home-page .home-compact {
    display: contents;
  }

  .home-page .workflow {
    order: 2;
  }

  .home-page .signal-strip {
    order: 3;
  }

  .home-page .home-cta {
    order: 4;
  }

  .home-page .feature-grid {
    order: 5;
  }

  .home-page .trust-row {
    order: 6;
  }

  .site-shell {
    width: min(calc(100% - 24px), 440px);
    margin: 12px auto;
    border-radius: 12px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .announcement {
    display: none;
  }

  .site-header {
    min-height: 52px;
  }

  .site-header__inner {
    width: calc(100% - 26px);
  }

  .wordmark {
    font-size: 1.08rem;
  }

  .home-hero {
    gap: 16px;
    padding: 20px 12px 8px;
  }

  .home-hero::after {
    display: none;
  }

  .home-hero__copy {
    padding: 0 2px;
  }

  .home-hero h1 {
    max-width: none;
    margin-bottom: 8px;
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
    line-height: 1.04;
  }

  .home-hero__lead {
    max-width: 330px;
    margin-bottom: 14px;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .home-hero__actions {
    display: grid;
    gap: 8px;
  }

  .home-hero__actions .button {
    width: 100%;
    min-height: 38px;
    font-size: 0.75rem;
  }

  .product-board {
    min-height: 381px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 265px 42px 74px;
    border-radius: 9px;
    box-shadow: none;
  }

  .board-rail {
    display: none;
  }

  .topology-card {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 265px;
    padding: 11px 9px 2px;
    border-bottom: 1px solid var(--line);
  }

  .board-title {
    font-size: 0.65rem;
  }

  .topology {
    height: 230px;
    transform: scale(0.82);
    transform-origin: center top;
  }

  .topology-node {
    min-width: 68px;
    min-height: 34px;
    padding: 5px 6px;
    font-size: 0.52rem;
  }

  .node-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    font-size: 0.42rem;
  }

  .node-dns {
    right: -3%;
  }

  .node-web {
    left: -3%;
  }

  .node-cache {
    right: -4%;
  }

  .board-side {
    display: contents;
  }

  .board-side .mini-panel:first-child {
    grid-column: 1 / 3;
    grid-row: 2;
    min-height: 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 8px 10px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .board-side .mini-panel:first-child h3 {
    margin: 0;
    font-size: 0.6rem;
  }

  .board-side .mini-panel:first-child .field-label {
    display: none;
  }

  .run-simulation {
    justify-self: end;
    max-width: 116px;
  }

  .board-side .mini-panel:nth-child(2),
  .board-side .mini-panel:nth-child(3) {
    grid-row: 3;
    margin: 0;
    padding: 8px 10px;
    border: 0;
    border-radius: 0;
  }

  .board-side .mini-panel:nth-child(2) {
    grid-column: 1;
    border-right: 1px solid var(--line);
  }

  .board-side .mini-panel:nth-child(3) {
    grid-column: 2;
  }

  .board-side .mini-panel h3 {
    font-size: 0.6rem;
  }

  .blast-grid {
    grid-template-columns: 45px 1fr;
  }

  .donut {
    width: 43px;
  }

  .donut::after {
    inset: 9px;
  }

  .risk-list {
    display: none;
  }

  .critical-panel p {
    display: none;
  }

  .critical-stats {
    display: grid;
    gap: 1px;
  }

  .board-timeline {
    display: none;
  }

  .signal-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 6px 12px;
  }

  .signal {
    grid-template-columns: 30px 1fr auto;
    min-height: 32px;
    padding: 1px 4px;
    border-bottom: 1px solid var(--line);
  }

  .signal + .signal {
    border-left: 0;
  }

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

  .signal-icon {
    width: 27px;
    height: 27px;
    font-size: 0.48rem;
  }

  .signal strong {
    font-size: 0.65rem;
    line-height: 1.15;
  }

  .signal span {
    font-size: 0.54rem;
    line-height: 1.15;
  }

  .home-compact {
    padding: 8px 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 8px 12px;
  }

  .feature-tile {
    min-height: 68px;
    grid-template-columns: 40px 1fr auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 0.55rem;
  }

  .workflow {
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin: 0;
    padding: 10px 4px;
  }

  .workflow-step {
    display: grid;
    justify-items: center;
    gap: 5px;
  }

  .workflow-icon {
    width: 34px;
    height: 34px;
    font-size: 0.52rem;
  }

  .workflow-step strong {
    font-size: 0.6rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
    padding: 8px 12px;
  }

  .trust-item {
    grid-template-columns: 30px 1fr auto;
    min-height: 54px;
    padding: 8px 4px;
    border-bottom: 1px solid var(--line);
  }

  .trust-item + .trust-item {
    border-left: 0;
  }

  .trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 0.46rem;
  }

  .trust-item strong {
    font-size: 0.66rem;
  }

  .trust-item span {
    font-size: 0.56rem;
  }

  .home-cta {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 8px 12px 14px;
    padding: 14px;
  }

  .home-cta h2 {
    font-size: 0.95rem;
  }

  .home-cta__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .home-cta .button {
    min-height: 38px;
    padding-inline: 8px;
    font-size: 0.65rem;
  }

  .site-footer {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding: 26px 16px 22px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
  }

  .story-grid {
    gap: 34px;
  }

  .story-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .story-copy > p {
    font-size: 0.95rem;
  }

  .story-panel {
    min-height: auto;
    padding: 22px;
    border-radius: 14px;
  }

  .story-node {
    min-height: 72px;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .story-node > span {
    width: 36px;
    height: 36px;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .preview-count-4 .content-grid {
    grid-template-columns: 1fr;
  }

  .pricing-preview-card {
    min-height: 190px;
    padding: 22px;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .assurance-grid > div {
    min-height: 118px;
  }

  .cta-band--large {
    min-height: auto;
    padding: 26px;
  }

  .inner-hero {
    padding: 50px 0 44px;
  }

  .inner-hero h1,
  .article-header h1 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .inner-hero__lead,
  .article-standfirst {
    font-size: 1rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .content-grid,
  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .article-layout {
    padding-top: 36px;
  }

  .article-body p,
  .article-body li {
    font-size: 1rem;
  }

  .article-body h2 {
    margin-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .announcement,
  .site-header,
  .site-footer,
  .article-toc,
  .home-cta,
  .cta-band {
    display: none !important;
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border: 0;
  }

  body {
    color: #000;
    background: #fff;
  }

  .article-layout {
    display: block;
    padding: 0;
  }

  a {
    color: #000;
  }
}

/* 2026 visual refresh */
.site-header {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.98);
}

.wordmark {
  gap: 9px;
}

.wordmark img {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.nav-group[open] {
  z-index: 4;
}

.nav-menu {
  top: calc(100% + 11px);
  min-width: 260px;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 22px 52px rgba(18, 35, 78, 0.16);
}

.desktop-nav > .nav-group:last-child .nav-menu {
  right: 0;
  left: auto;
}

.button {
  border-radius: 10px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.home-page .section {
  padding: 78px 0;
}

.home-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 16px 42px 0;
  padding: 18px 26px;
  background: linear-gradient(180deg, #fff, #f9fbff);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.home-workflow .workflow-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  padding: 7px 18px;
  color: var(--ink);
}

.home-workflow .workflow-step::after {
  right: 2px;
  width: 24%;
}

.home-workflow .workflow-step::before {
  right: 1px;
}

.home-workflow .workflow-icon {
  grid-row: 1 / 3;
}

.home-workflow .workflow-step strong {
  align-self: end;
  font-size: 0.9rem;
}

.home-workflow .workflow-step small {
  align-self: start;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.3;
}

.section-heading.section-heading--split {
  max-width: none;
}

.section-heading--split > .section-heading__action,
.section-heading--split > .text-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.section-heading--center {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center p {
  margin-inline: auto;
}

.visual-suite-grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.visual-suite-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d5ddea;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(35, 57, 111, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visual-suite-card:hover {
  color: var(--ink);
  border-color: #9fb1d2;
  box-shadow: 0 22px 52px rgba(35, 57, 111, 0.15);
  transform: translateY(-3px);
}

.visual-suite-card--lead {
  grid-row: 1 / 3;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
}

.visual-suite-card figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #eef4ff;
}

.visual-suite-card--lead figure {
  min-height: 450px;
}

.visual-suite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.visual-suite-card:hover img {
  transform: scale(1.025);
}

.visual-suite-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.visual-suite-card--lead .visual-suite-card__copy {
  padding: 30px 34px 34px;
}

.visual-suite-card__copy > span,
.card-label {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-suite-card__copy h3 {
  margin: 11px 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.visual-suite-card__copy p {
  margin-bottom: 16px;
  font-size: 0.83rem;
  line-height: 1.55;
}

.visual-suite-card__copy strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.78rem;
}

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

.editorial-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.editorial-card:hover {
  color: var(--ink);
  border-color: #a5b5d3;
  box-shadow: 0 18px 42px rgba(35, 57, 111, 0.12);
  transform: translateY(-3px);
}

.editorial-card__media {
  position: relative;
  height: 205px;
  margin: 0;
  overflow: hidden;
  background: #eef4ff;
  border-bottom: 1px solid var(--line);
}

.editorial-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.editorial-card:hover .editorial-card__media img {
  transform: scale(1.035);
}

.editorial-card__media > span {
  position: absolute;
  top: 15px;
  left: 15px;
  min-width: 38px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(160, 179, 216, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.65rem;
  font-weight: 850;
}

.editorial-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.editorial-card__body h3 {
  margin: 11px 0 12px;
  font-size: 1.34rem;
}

.editorial-card__body p {
  margin-bottom: 22px;
  font-size: 0.86rem;
  line-height: 1.62;
}

.editorial-card__body > strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.78rem;
}

.editorial-card .blog-meta {
  margin: 0;
  font-size: 0.66rem;
}

.editorial-card .blog-meta time {
  color: var(--muted);
}

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

.decision-panel {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 7%, rgba(43, 93, 255, 0.14), transparent 14rem),
    linear-gradient(160deg, #fbfcff, #f2f6ff);
  border: 1px solid #d5ddea;
  border-radius: 20px;
}

.decision-panel--pricing {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(75, 122, 255, 0.42), transparent 18rem),
    linear-gradient(145deg, #0b1c3f, #102c68);
  border-color: #1a3c7d;
}

.decision-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.decision-panel > p {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: 0.96rem;
}

.decision-panel--pricing h2,
.decision-panel--pricing > p,
.decision-panel--pricing .eyebrow {
  color: #fff;
}

.decision-panel--pricing > p {
  color: #c5d2ee;
}

.audience-list,
.price-list {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.audience-list > a,
.price-list > a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.83);
  border: 1px solid #d9e0ee;
  border-radius: 11px;
}

.audience-list > a:hover {
  color: var(--blue);
  background: #fff;
  border-color: #a7b7d5;
}

.audience-list span,
.audience-list strong,
.audience-list small,
.price-list span,
.price-list strong,
.price-list small {
  display: block;
}

.audience-list strong,
.price-list strong {
  font-size: 0.84rem;
}

.audience-list small,
.price-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.4;
}

.audience-list b {
  color: var(--blue);
  font-size: 1rem;
}

.price-list > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.price-list > a:hover,
.price-list > a.is-featured {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(130, 164, 255, 0.7);
}

.price-list small {
  color: #b9c8e8;
}

.price-list > a > b {
  flex: 0 0 auto;
  font-size: 1.05rem;
}

.price-list > a > b small {
  display: inline;
  font-weight: 500;
}

.price-includes {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.price-includes span {
  position: relative;
  padding-left: 22px;
  color: #c9d7f1;
  font-size: 0.72rem;
}

.price-includes span::before {
  position: absolute;
  top: 0.17rem;
  left: 0;
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  content: "✓";
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.48rem;
  font-weight: 900;
}

.home-endcap {
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(57, 117, 255, 0.52), transparent 24rem),
    linear-gradient(135deg, #081a3b, #0f3278 70%, #1549b7);
  border-top: 0;
}

.home-endcap__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.home-endcap h2 {
  max-width: 700px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.45rem, 4.5vw, 4.35rem);
}

.home-endcap p {
  max-width: 680px;
  margin-bottom: 28px;
  color: #c8d6f3;
  font-size: 1.03rem;
}

.home-endcap .eyebrow {
  color: #8fb2ff;
}

.button--inverse {
  color: #123d9e;
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.button--inverse:hover {
  color: #123d9e;
  background: #edf3ff;
  border-color: #edf3ff;
}

.assurance-list {
  display: grid;
  gap: 10px;
}

.assurance-list > a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  backdrop-filter: blur(10px);
}

.assurance-list > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.assurance-list > a > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #a8c2ff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.66rem;
  font-weight: 850;
}

.assurance-list strong,
.assurance-list small {
  display: block;
}

.assurance-list strong {
  font-size: 0.88rem;
}

.assurance-list small {
  margin-top: 2px;
  color: #b9caeb;
  font-size: 0.7rem;
}

.site-footer {
  padding: 0;
  color: #dbe6fb;
  background:
    radial-gradient(circle at 12% 12%, rgba(41, 89, 199, 0.22), transparent 22rem),
    #061127;
  border-top: 1px solid #1e3560;
}

.footer-intro {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(0, 1.95fr);
  gap: clamp(54px, 8vw, 120px);
  padding: 64px 68px 52px;
}

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

.wordmark--footer {
  color: #fff;
  font-size: 1.55rem;
}

.wordmark--footer:hover {
  color: #fff;
}

.footer-brand h2 {
  max-width: 390px;
  margin: 28px 0 16px;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
}

.footer-brand p {
  max-width: 440px;
  margin: 0 0 24px;
  color: #aebeda;
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-company {
  display: grid;
  gap: 3px;
  max-width: 440px;
  margin: -8px 0 20px;
  color: #aebeda;
  font-size: 0.77rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-company strong {
  margin-bottom: 2px;
  color: #fff;
  font-weight: 750;
}

.footer-company a {
  width: max-content;
  color: #cbd9f3;
}

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

.footer-demo {
  width: max-content;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #789eff;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a {
  margin: 8px 0;
  color: #d6e0f4;
  font-size: 0.82rem;
}

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

.footer-bottom {
  align-items: center;
  margin: 0;
  padding: 22px 68px 26px;
  color: #8596b8;
  border-color: #1b3159;
  font-size: 0.72rem;
}

.footer-legal {
  justify-content: flex-end;
  gap: 18px;
}

.inner-hero {
  padding: 72px 0 66px;
}

.inner-hero__content {
  max-width: 820px;
}

.inner-hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 4.6vw, 4.55rem);
}

@media (max-width: 1180px) {
  .visual-suite-grid {
    min-height: 650px;
  }

  .visual-suite-card__copy {
    padding: 22px;
  }

  .footer-intro {
    padding-inline: 48px;
  }

  .footer-bottom {
    padding-inline: 48px;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 62px;
  }

  .home-workflow {
    margin-inline: 28px;
    padding-inline: 12px;
  }

  .home-workflow .workflow-step {
    grid-template-columns: 42px 1fr;
    padding-inline: 10px;
  }

  .home-workflow .workflow-step::after,
  .home-workflow .workflow-step::before {
    display: none;
  }

  .visual-suite-grid {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .visual-suite-card,
  .visual-suite-card--lead {
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .visual-suite-card--lead {
    grid-column: 1 / -1;
  }

  .visual-suite-card figure,
  .visual-suite-card--lead figure {
    height: 310px;
    min-height: 0;
  }

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

  .editorial-card:last-child {
    grid-column: 1 / -1;
  }

  .decision-grid,
  .home-endcap__grid {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 680px) {
  .home-page main {
    display: block;
  }

  .home-page main > * {
    order: initial;
  }

  .home-hero {
    padding-top: 30px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 0.58rem;
  }

  .home-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 12px 0;
    padding: 10px;
  }

  .home-workflow .workflow-step {
    min-height: 66px;
    grid-template-columns: 34px 1fr;
    padding: 8px;
    background: #fff;
    border: 1px solid #e1e6ef;
    border-radius: 9px;
  }

  .home-workflow .workflow-icon {
    width: 32px;
    height: 32px;
    font-size: 0.5rem;
  }

  .home-workflow .workflow-step strong {
    font-size: 0.68rem;
  }

  .home-workflow .workflow-step small {
    font-size: 0.54rem;
  }

  .home-page .section {
    padding: 54px 0;
  }

  .section-heading--center {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading--center .eyebrow {
    justify-content: flex-start;
  }

  .section-heading--split > .section-heading__action {
    width: 100%;
  }

  .visual-suite-grid,
  .editorial-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .visual-suite-card--lead,
  .editorial-card:last-child {
    grid-column: auto;
  }

  .visual-suite-card figure,
  .visual-suite-card--lead figure {
    height: 215px;
  }

  .visual-suite-card__copy,
  .visual-suite-card--lead .visual-suite-card__copy {
    padding: 20px;
  }

  .visual-suite-card__copy h3 {
    font-size: 1.3rem;
  }

  .editorial-card__media {
    height: 180px;
  }

  .editorial-card__body {
    padding: 20px;
  }

  .decision-panel {
    padding: 24px 20px;
    border-radius: 15px;
  }

  .decision-panel h2 {
    font-size: 2rem;
  }

  .audience-list > a,
  .price-list > a {
    padding: 12px;
  }

  .audience-list small {
    display: none;
  }

  .price-list > a {
    align-items: flex-start;
  }

  .home-endcap__grid {
    gap: 34px;
  }

  .home-endcap h2 {
    font-size: 2.35rem;
  }

  .home-endcap .home-hero__actions {
    display: grid;
  }

  .assurance-list > a {
    padding: 14px;
  }

  .site-footer {
    padding: 0;
  }

  .footer-intro {
    display: block;
    padding: 42px 20px 30px;
  }

  .footer-brand {
    margin-bottom: 38px;
  }

  .footer-brand h2 {
    margin-top: 22px;
    font-size: 2.35rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
    padding: 0;
  }

  .footer-column h2 {
    font-size: 0.65rem;
  }

  .footer-column a {
    margin: 9px 0;
    font-size: 0.77rem;
  }

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

  .footer-legal {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .inner-hero {
    padding: 44px 0 42px;
  }

  .inner-hero h1,
  .article-header h1 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }
}

/* Compact, box-led editorial pass */
.home-page .section {
  padding: 64px 0;
}

.home-page .section-heading {
  margin-bottom: 34px;
}

.home-page .section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.home-page .section-heading p {
  font-size: 0.96rem;
}

.home-workflow .workflow-step {
  cursor: default;
}

.visual-suite-grid {
  min-height: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 16px;
}

.visual-suite-card,
.visual-suite-card--lead {
  grid-row: auto;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(35, 57, 111, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.visual-suite-card:hover {
  border-color: #aab8d1;
  box-shadow: 0 12px 28px rgba(35, 57, 111, 0.1);
  transform: none;
}

.visual-suite-card figure,
.visual-suite-card--lead figure {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 8 / 5;
  padding: 8px;
  background: #edf3ff;
  border-bottom: 1px solid var(--line);
}

.visual-suite-card img,
.visual-suite-card:hover img {
  object-fit: contain;
  transform: none;
}

.visual-suite-card__copy,
.visual-suite-card--lead .visual-suite-card__copy {
  justify-content: flex-start;
  padding: 22px;
}

.visual-suite-card__copy h3 {
  font-size: 1.34rem;
}

.visual-suite-card__copy p {
  font-size: 0.8rem;
}

.visual-suite-card__copy > a {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 780;
}

.section-heading__note {
  max-width: 470px;
  align-self: end;
  padding: 18px 20px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.82rem !important;
  line-height: 1.6;
}

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

.home-explainer-grid article {
  min-height: 215px;
  padding: 26px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-explainer-grid article > span,
.question-grid article > span {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-explainer-grid h3 {
  max-width: 520px;
  margin: 26px 0 11px;
  font-size: 1.28rem;
}

.home-explainer-grid p {
  max-width: 560px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

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

.question-grid article {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid #d8dfec;
  border-radius: 10px;
}

.question-grid h3 {
  margin: 24px 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.question-grid p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.62;
}

.editorial-card {
  border-radius: 12px;
}

.editorial-card__media {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  padding: 7px;
  background: #edf3ff;
}

.editorial-card__media img,
.editorial-card:hover .editorial-card__media img {
  object-fit: contain;
  transform: none;
}

.decision-panel {
  padding: 32px;
  border-radius: 14px;
}

.decision-panel h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.55rem);
}

.decision-panel > p {
  margin-bottom: 22px;
  font-size: 0.88rem;
}

.audience-list > a,
.price-list > a {
  padding: 12px 14px;
}

.price-includes {
  margin-top: 24px;
  padding-top: 18px;
}

.home-endcap h2 {
  max-width: 590px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.home-endcap p {
  max-width: 610px;
  font-size: 0.91rem;
}

.home-endcap__grid {
  gap: clamp(36px, 5vw, 64px);
}

.assurance-list > a {
  padding: 13px 15px;
}

.site-footer {
  padding: 0;
}

.footer-intro {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.8fr);
  gap: 48px;
  padding: 38px 52px 30px;
}

.wordmark--footer {
  font-size: 1.28rem;
}

.footer-brand h2 {
  max-width: 340px;
  margin: 18px 0 10px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
}

.footer-brand p {
  max-width: 390px;
  margin-bottom: 16px;
  font-size: 0.76rem;
  line-height: 1.58;
}

.footer-grid {
  gap: 24px;
}

.footer-column h2 {
  margin-bottom: 11px;
  font-size: 0.65rem;
}

.footer-column a {
  margin: 6px 0;
  font-size: 0.74rem;
}

.footer-bottom {
  padding: 15px 52px 18px;
  font-size: 0.67rem;
}

.footer-legal {
  gap: 10px 15px;
}

.blog-card__media {
  width: 100%;
  margin: 0;
  aspect-ratio: 3 / 2;
  padding: 7px;
  overflow: hidden;
  background: #edf3ff;
  border-bottom: 1px solid var(--line);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.article-header {
  padding: 56px 0 38px;
}

.article-header h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 4.25vw, 4.1rem);
}

.article-standfirst {
  font-size: 1.08rem;
}

.article-hero-media {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 9px 9px 0;
  overflow: hidden;
  background: #edf3ff;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.article-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.article-hero-media figcaption,
.article-visual figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 4px 12px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.article-hero-media figcaption span,
.article-visual figcaption span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-layout {
  padding-top: 52px;
}

.article-visual {
  margin: 52px 0 58px;
}

.article-visual__frame {
  padding: 7px;
  overflow: hidden;
  background: #edf3ff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.article-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 7px;
}

.article-visual figcaption {
  padding-inline: 2px;
}

.inner-hero h1 {
  font-size: clamp(2.45rem, 4vw, 3.9rem);
}

@media (max-width: 980px) {
  .visual-suite-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-suite-card:last-child {
    grid-column: 1 / -1;
  }

  .visual-suite-card:last-child figure {
    aspect-ratio: 16 / 7;
  }

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

  .footer-intro {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-inline: 42px;
  }
}

@media (max-width: 680px) {
  .home-page .section {
    padding: 46px 0;
  }

  .visual-suite-grid,
  .home-explainer-grid,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .visual-suite-card:last-child {
    grid-column: auto;
  }

  .visual-suite-card figure,
  .visual-suite-card--lead figure,
  .visual-suite-card:last-child figure {
    height: auto;
    aspect-ratio: 8 / 5;
  }

  .home-explainer-grid article,
  .question-grid article {
    min-height: 0;
    padding: 21px;
  }

  .home-explainer-grid h3,
  .question-grid h3 {
    margin-top: 18px;
  }

  .section-heading__note {
    max-width: none;
  }

  .decision-panel {
    padding: 22px 18px;
  }

  .home-endcap h2 {
    font-size: 2rem;
  }

  .footer-intro {
    padding: 30px 18px 24px;
  }

  .footer-brand {
    margin-bottom: 28px;
  }

  .footer-brand h2 {
    margin-top: 16px;
    font-size: 1.75rem;
  }

  .footer-grid {
    gap: 24px 16px;
  }

  .footer-column a {
    margin: 7px 0;
    font-size: 0.72rem;
  }

  .footer-bottom {
    padding: 17px 18px;
  }

  .article-header {
    padding: 42px 0 30px;
  }

  .article-header h1,
  .inner-hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.9rem);
  }

  .article-hero-media {
    margin-top: 18px;
    padding: 6px 6px 0;
    border-radius: 10px;
  }

  .article-hero-media figcaption,
  .article-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .article-visual {
    margin: 38px 0 42px;
  }
}
