@font-face { font-family: "Manrope"; src: url("/assets/fonts/manrope-400.woff2") format("woff2"), url("/assets/fonts/manrope-400.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/fonts/manrope-500.woff2") format("woff2"), url("/assets/fonts/manrope-500.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/fonts/manrope-600.woff2") format("woff2"), url("/assets/fonts/manrope-600.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/fonts/manrope-700.woff2") format("woff2"), url("/assets/fonts/manrope-700.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/fonts/manrope-800.woff2") format("woff2"), url("/assets/fonts/manrope-800.ttf") format("truetype"); font-weight: 800; font-style: normal; font-display: swap; }

:root {
  --bg-grad: radial-gradient(1100px 560px at 92% -8%, rgba(21, 101, 192, .72) 0%, transparent 58%),
             radial-gradient(700px 420px at 8% 0%, rgba(245, 124, 0, .18) 0%, transparent 60%),
             linear-gradient(180deg, #071424 0%, #0d2744 100%);
  --surface: #ffffff;
  --surface-alt: #f6f7f4;
  --surface-soft: #eef4f6;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e5e7eb;
  --line-strong: #cbd5e1;
  --accent: #1565c0;
  --accent-2: #0d47a1;
  --accent-ink: #0d47a1;
  --accent-grad: linear-gradient(135deg, #0d47a1 0%, #1565c0 68%, #f57c00 100%);
  --warm: #f57c00;
  --warm-2: #ffa726;
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;
  --max: 1180px;
  --max-narrow: 760px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, .22);
  --font: Manrope, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Cascadia Code", Consolas, SFMono-Regular, Menlo, monospace;
  --letter-spacing-default: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent-ink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; letter-spacing: var(--letter-spacing-default); }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: var(--letter-spacing-default); }
h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); margin-top: 2rem; }
h3 { font-size: 1.15rem; margin-top: 1.2rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { color: var(--ink-soft); padding-left: 1.2em; }
li { margin: .25em 0; }
strong { color: var(--ink); }
code { background: var(--surface-alt); padding: 0 .35em; border-radius: 4px; font-size: .92em; font-family: var(--font-mono); }
::selection { background: rgba(8, 145, 178, .22); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: var(--max-narrow); }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.center { text-align: center; }
.centered { justify-content: center; }
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .8rem;
}
.eyebrow.on-dark { color: #67e8f9; }

/* Skip link */
.skip-link {
  position: absolute; left: -1000px; top: 0;
  padding: .6rem 1rem; background: var(--ink); color: #fff;
  border-radius: 0 0 6px 0; z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.25rem; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 700; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-logo-img {
  display: block;
  width: auto;
  height: 52px;
  max-width: none;
}
.brand-logo-img.header-logo-img {
  width: 230px;
  height: auto;
}
.brand-logo-img.sm {
  height: 42px;
}
.brand-logo-img.footer-logo-img {
  width: 170px;
  height: auto;
}
.brand-mark {
  display: inline-block;
  width: 56px; height: 56px; border-radius: 14px;
  background-image: url('/assets/favicon.svg?v=3');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 8px 24px rgba(8, 145, 178, .35);
  /* Hide legacy text fallback inside the span; keep DOM for a11y. */
  font-size: 0;
  color: transparent;
  line-height: 0;
  overflow: hidden;
  text-indent: -9999px;
}
.brand-mark.sm { width: 40px; height: 40px; border-radius: 10px; box-shadow: 0 4px 12px rgba(8, 145, 178, .3); }
.brand-name { font-size: 1.15rem; letter-spacing: var(--letter-spacing-default); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--ink-soft); font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--accent-ink); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: .55rem; }
.btn-demo {
  display: inline-flex; align-items: center;
  min-height: 40px; padding: .52rem .9rem;
  border: 1px solid var(--accent); border-radius: 8px;
  background: var(--accent); color: #fff;
  font-size: .86rem; font-weight: 700;
}
.btn-demo:hover { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }
.btn-signin {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .58rem 1.1rem; border-radius: 10px;
  background: var(--ink); color: #fff; font-weight: 600; font-size: .92rem;
  border: 1px solid var(--ink);
  transition: background .15s, transform .05s;
}
.btn-signin:hover { background: #1e293b; color: #fff; }
.btn-signin:active { transform: translateY(1px); }
.btn-signin svg { width: 14px; height: 14px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  padding: .45rem .55rem; border-radius: 8px; cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle:hover { background: var(--surface-alt); }

/* Hero */
.hero {
  background: var(--bg-grad);
  background-color: #0b1220;
  color: #fff;
  padding: 5.5rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='1' fill='%23ffffff' fill-opacity='0.05'/></svg>");
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); gap: 3rem; align-items: center; }
.hero-copy, .hero-visual { min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .85rem; border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #cffafe; font-size: .82rem; font-weight: 500;
  margin-bottom: 1.2rem;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 0 3px rgba(52, 211, 153, .25);
}
.hero h1 {
  color: #fff; max-width: 680px;
  background: linear-gradient(180deg, #ffffff 0%, #a5f3fc 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lede { color: #cbd5e1; font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 720px; }
.cta-row { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.8rem; }
.cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .8rem 1.4rem; border-radius: 10px;
  font-weight: 600; font-size: 1rem;
  border: 1px solid transparent;
  transition: transform .08s ease, background .15s, box-shadow .15s, border-color .15s;
  cursor: pointer;
}
.cta:hover { text-decoration: none; transform: translateY(-1px); }
.cta:active { transform: translateY(0); }
.cta.primary {
  background: var(--accent-grad); color: #fff;
  box-shadow: 0 10px 26px rgba(8, 145, 178, .4);
}
.cta.primary:hover { box-shadow: 0 14px 32px rgba(8, 145, 178, .55); color: #fff; }
.cta.secondary { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.cta.secondary:hover { background: rgba(255,255,255,.14); color: #fff; }
.cta.outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.cta.outline:hover { background: var(--surface-alt); color: var(--ink); }
.cta svg { width: 16px; height: 16px; }

.security-note { margin-top: 1.6rem; }
.security-note a { color: #aac0ff; }

.support-cta-row { margin-top: 2rem; }
.support-cta-gap { margin-left: .5rem; }
.contact-form {
  margin: 1.5rem 0 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
}
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .35rem; margin-bottom: 1rem; color: var(--ink); font-size: .88rem; font-weight: 600; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: .72rem .8rem;
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); outline: 2px solid rgba(21, 101, 192, .18); outline-offset: 1px; }

.hero-trust {
  margin-top: 2.4rem;
  display: flex; flex-wrap: wrap; gap: .8rem 1rem; align-items: center;
  color: #94a3b8; font-size: .85rem;
}
.hero-trust .badge-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .75rem; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: #cffafe; font-weight: 500;
}

/* Product state mirrors the authenticated operational dashboard. */
.product-stage {
  width: 100%;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: #f5f7fa;
  color: #1a1a1a;
  box-shadow: var(--shadow-lg);
}
.product-stage-caption {
  max-width: 760px; margin: .8rem auto 0;
  color: #94a3b8; font-size: .75rem; text-align: center;
}
.product-stage-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .65rem 1rem;
  background: #0d47a1;
  color: #fff;
}
.product-stage-mark { width: 26px; height: 26px; border-radius: 6px; background: #fff; color: #0d47a1; display: grid; place-items: center; font-weight: 800; }
.product-stage-title { font-size: .86rem; font-weight: 700; }
.product-stage-live { margin-left: auto; display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; color: #dbeafe; }
.product-stage-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #43a047; }
.product-stage-body { display: grid; grid-template-columns: 190px 1fr; min-height: 340px; }
.hero-visual .product-stage-body { grid-template-columns: 135px 1fr; }
.product-stage-nav { padding: 1rem .75rem; border-right: 1px solid #e1e5eb; background: #fff; }
.product-stage-nav span { display: block; padding: .55rem .65rem; border-radius: 6px; color: #5f6b7a; font-size: .75rem; font-weight: 600; }
.product-stage-nav span.active { color: #0d47a1; background: #eef4fb; border-left: 3px solid #1565c0; }
.product-stage-content { padding: 1.2rem; overflow: hidden; }
.product-stage-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.product-stage-heading strong { font-size: 1rem; }
.product-stage-heading span { color: #5f6b7a; font-size: .72rem; }
.product-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; }
.product-metric { min-width: 0; padding: .8rem; border: 1px solid #e1e5eb; border-left: 3px solid #1565c0; border-radius: 6px; background: #fff; }
.product-metric.good { border-left-color: #2e7d32; }
.product-metric.warn { border-left-color: #f57c00; }
.product-metric strong, .product-metric span { display: block; }
.product-metric strong { font-size: 1.1rem; }
.product-metric span { color: #5f6b7a; font-size: .66rem; }
.product-pipeline { margin-top: .8rem; padding: 1rem; border: 1px solid #e1e5eb; border-radius: 6px; background: #fff; }
.product-pipeline-head { display: flex; justify-content: space-between; margin-bottom: .8rem; font-size: .76rem; font-weight: 700; }
.product-pipeline-head span { color: #2e7d32; }
.product-phases { display: grid; grid-template-columns: repeat(5, 1fr); gap: .4rem; }
.product-phase { min-width: 0; }
.product-phase-bar { height: 6px; border-radius: 3px; background: #cbd5e1; }
.product-phase.done .product-phase-bar { background: #43a047; }
.product-phase.active .product-phase-bar { background: #1565c0; }
.product-phase label { display: block; margin-top: .4rem; overflow: hidden; color: #64748b; font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.product-activity { margin-top: .8rem; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.product-activity-row { padding: .7rem .8rem; border-left: 3px solid #42a5f5; background: #eef4fb; font-size: .68rem; color: #334155; }

/* Evidence and buyer routing */
.proof-band { border-bottom: 1px solid var(--line); background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-width: 0; padding: 1.4rem 1.1rem; border-right: 1px solid var(--line); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { margin-bottom: .2rem; color: var(--ink); font-size: .92rem; }
.proof-grid span { color: var(--muted); font-size: .78rem; line-height: 1.45; }
.split-head { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: end; text-align: left; }
.split-head h2 { max-width: 620px; }
.split-head p { margin-bottom: .5rem; }
.scenario-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.scenario {
  display: grid; grid-template-columns: 42px 1fr; gap: .15rem 1rem;
  min-height: 170px; padding: 1.5rem 1.3rem;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  color: var(--ink); transition: background .15s;
}
.scenario:nth-child(2n) { border-right: 0; }
.scenario:hover { background: var(--surface-alt); color: var(--ink); }
.scenario > span { grid-row: 1 / 3; color: var(--warm); font-family: var(--font-mono); font-size: .78rem; font-weight: 700; }
.scenario h3 { margin: 0; font-size: 1.05rem; }
.scenario p { margin: .35rem 0 0; font-size: .9rem; }

/* Workload readiness */
.readiness-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.readiness-table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--surface); }
.readiness-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.readiness-table th, .readiness-table td { padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.readiness-table tr:last-child td { border-bottom: 0; }
.readiness-table th { background: #eef2f5; color: var(--ink); font-size: .78rem; text-transform: uppercase; }
.readiness-table td { color: var(--ink-soft); font-size: .88rem; }
.readiness-table td:first-child { width: 34%; color: var(--ink); font-weight: 600; }
.readiness-table td:nth-child(2) { width: 19%; }
.status { display: inline-flex; align-items: center; min-height: 28px; padding: .2rem .55rem; border: 1px solid; border-radius: 4px; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.status.supported { border-color: #86b89a; background: #edf8f0; color: #166534; }
.status.pilot { border-color: #e7b86b; background: #fff8e6; color: #8a4b08; }
.status.limited { border-color: #aebccc; background: #f1f5f9; color: #475569; }
.status.planned { border-color: #d3d8df; background: #f8fafc; color: #64748b; }
.readiness-note { margin: 1rem 0 0; font-size: .85rem; text-align: right; }

/* Sections */
.section { padding: 4.5rem 0; }
.section.alt { background: var(--surface-alt); }
.section.dark { background: var(--ink); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: #cbd5e1; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.6rem; }
.section-head h2 { margin-top: 0; }
.section-head p { font-size: 1.05rem; }

/* Stats */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.grid.two { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); max-width: 880px; margin: 0 auto; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: block; color: var(--ink); }
.card-link:hover { color: var(--ink); }
.card .icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 64, 175, .12), rgba(8, 145, 178, .14));
  color: var(--accent);
  margin-bottom: .9rem;
}
.card .icon svg { width: 22px; height: 22px; }

/* How-it-works steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 1rem; right: 1.1rem;
  font-size: 1.1rem; font-weight: 800;
  color: var(--accent); opacity: .35;
  font-family: var(--font-mono);
}
.step h3 { margin-top: 0; }

/* Security checks */
.checks { list-style: none; padding: 0; max-width: 820px; margin: 0 auto; }
.checks li {
  position: relative; padding: .7rem 0 .7rem 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.checks li:last-child { border-bottom: none; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 1rem;
  width: 18px; height: 18px;
  background: var(--accent-grad); border-radius: 50%;
}
.checks li::after {
  content: ""; position: absolute; left: 5px; top: 1.35rem;
  width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.section.dark .checks li { border-bottom-color: rgba(255,255,255,.08); color: #cbd5e1; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: .7rem;
  transition: border-color .15s, box-shadow .15s;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--accent);
  transition: transform .2s; line-height: 1; font-weight: 400;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .8rem; margin-bottom: 0; }

/* CTA banner */
.cta-banner {
  background: var(--accent-grad);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -50%, rgba(255,255,255,.18), transparent);
  pointer-events: none;
}
.cta-banner > .container { position: relative; }
.cta-banner h2 { color: #fff; margin-top: 0; }
.cta-banner p { color: #e0f2fe; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .cta.primary { background: #fff; color: var(--accent-ink); box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.cta-banner .cta.primary:hover { background: #fff; color: var(--accent-ink); }
.cta-banner .cta.secondary { color: #fff; }

/* Legal pages */
.legal { padding: 3.5rem 0 5rem; }
.legal h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.legal h2 { margin-top: 2rem; font-size: 1.25rem; }
.legal h3 { margin-top: 1.2rem; font-size: 1rem; }

/* Marketing detail pages */
.page-hero { padding: 4.5rem 0 3.8rem; border-bottom: 1px solid var(--line); background: #eef2f5; }
.page-hero .container { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 4rem; align-items: end; }
.page-hero h1 { max-width: 760px; margin-bottom: .45em; }
.page-hero .lede { max-width: 720px; font-size: 1.08rem; }
.page-hero-aside { padding: 1.2rem 0 1.2rem 1.5rem; border-left: 3px solid var(--warm); }
.page-hero-aside strong, .page-hero-aside span { display: block; }
.page-hero-aside strong { margin-bottom: .35rem; font-size: .9rem; }
.page-hero-aside span { color: var(--ink-soft); font-size: .84rem; }
.page-hero .cta.secondary { border-color: var(--line-strong); background: transparent; color: var(--ink); }
.page-hero .cta.secondary:hover { background: #fff; color: var(--ink); }
.content-band { padding: 4rem 0; }
.content-band.alt { background: var(--surface-alt); }
.content-band.dark { background: var(--ink); color: #fff; }
.content-band.dark h2, .content-band.dark h3, .content-band.dark strong { color: #fff; }
.content-band.dark p, .content-band.dark li { color: #cbd5e1; }
.content-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; margin-bottom: 2rem; }
.content-intro h2 { margin-top: 0; }
.content-intro > p { font-size: 1.02rem; }
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.decision-panel { min-width: 0; padding: 1.4rem; background: var(--surface); }
.decision-panel h3 { margin-top: 0; }
.decision-panel p, .decision-panel li { font-size: .88rem; }
.decision-panel ul { margin-bottom: 0; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2.5rem; margin: 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: 1rem 0 1rem 1.4rem; border-bottom: 1px solid var(--line); }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 1.55rem; width: 7px; height: 7px; background: var(--warm); }
.process-line { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 2px solid var(--line-strong); }
.process-item { position: relative; padding: 1.4rem 1rem 0 0; }
.process-item::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border: 2px solid var(--accent); background: #fff; }
.process-item strong, .process-item span { display: block; }
.process-item strong { margin-bottom: .3rem; font-size: .9rem; }
.process-item span { color: var(--muted); font-size: .78rem; }
.callout { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 1.5rem; border-left: 4px solid var(--warm); background: #fff8e8; }
.callout h2, .callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }
.content-band.dark .callout {
  border: 1px solid rgba(255, 255, 255, .16);
  border-left: 4px solid var(--warm);
  background: #162236;
}
.content-band.dark .callout h2,
.content-band.dark .callout h3 { color: #fff; }
.content-band.dark .callout p { color: #dbe4ef; }
.architecture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.architecture-node { padding: 1.3rem; border: 1px solid var(--line); background: #fff; }
.architecture-node small { display: block; margin-bottom: .65rem; color: var(--accent); font-weight: 700; text-transform: uppercase; }
.architecture-node h3 { margin-top: 0; }
.architecture-node p { margin-bottom: 0; font-size: .88rem; }
.resource-list { border-top: 1px solid var(--line); }
.resource-item { display: grid; grid-template-columns: 130px 1fr auto; gap: 1.5rem; align-items: center; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.resource-item small { color: var(--accent); font-weight: 700; text-transform: uppercase; }
.resource-item h3 { margin: 0; }
.resource-item p { margin: .25rem 0 0; font-size: .88rem; }
.resource-item > a { font-weight: 700; white-space: nowrap; }
.assessment-preview { padding: 1.4rem; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.assessment-preview-header { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.assessment-preview-header strong { font-size: .95rem; }
.assessment-preview-header span { color: var(--muted); font-size: .75rem; }
.finding { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.finding:last-child { border-bottom: 0; }
.finding p { margin: 0; font-size: .84rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1rem; }
.pricing-subhead { grid-column: 1 / -1; margin-top: .75rem; }
.pricing-subhead h3 { margin: 0; font-size: 1.1rem; }
.pricing-subhead p { margin: .25rem 0 0; color: var(--muted); font-size: .9rem; }
.price-panel { display: flex; flex-direction: column; min-width: 0; padding: 1.5rem; border: 1px solid var(--line); background: #fff; }
.price-panel.featured { border-top: 4px solid var(--accent); }
.price-panel h2 { margin: .35rem 0 0; font-size: 1.3rem; }
.price-panel .price-label { color: var(--accent); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.price-amount { display: flex; align-items: baseline; flex-wrap: wrap; gap: .3rem; margin: 1.2rem 0 .25rem; color: var(--ink); }
.price-amount strong { font-size: 1.9rem; line-height: 1; }
.price-amount span { color: var(--muted); font-size: .82rem; }
.price-meta { min-height: 2.7em; margin: 0 0 1rem; color: var(--muted); font-size: .8rem; }
.price-limits { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.price-limit { padding: .25rem .45rem; border: 1px solid var(--line); color: var(--muted); font-size: .72rem; font-weight: 700; }
.price-features { flex: 1; margin: 0 0 1.3rem; padding-left: 1.1rem; font-size: .84rem; }
.price-features li { margin-bottom: .4rem; }
.price-panel .cta { align-self: stretch; justify-content: center; text-align: center; }
.pricing-loading, .pricing-unavailable { grid-column: 1 / -1; padding: 2rem; border: 1px solid var(--line); background: #fff; text-align: center; }
.pricing-loading span { display: block; margin-top: .35rem; color: var(--muted); font-size: .85rem; }
.form-status { min-height: 1.5em; }
.form-status.success { color: #166534; }
.form-status.error { color: #9f1239; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; }

/* Workload product presentation */
.breadcrumbs { display: flex; align-items: center; gap: .55rem; margin-bottom: 1.6rem; color: var(--muted); font-size: .8rem; }
.breadcrumbs a { color: var(--ink-soft); font-weight: 600; }
.workload-hero { padding: 4.8rem 0 4.2rem; border-bottom: 1px solid var(--line); background: linear-gradient(115deg, #f7fafc 0%, #eef4f6 62%, #fff3e3 100%); }
.workload-hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr); gap: 4rem; align-items: center; }
.workload-hero h1 { max-width: 720px; }
.workload-hero .lede { max-width: 700px; font-size: 1.08rem; }
.workload-console { overflow: hidden; border: 1px solid #cbd5e1; border-radius: 8px; background: #f5f7fa; box-shadow: 0 24px 60px rgba(15, 23, 42, .16); }
.workload-console-bar { min-height: 52px; display: flex; align-items: center; gap: .7rem; padding: .7rem 1rem; background: #0d47a1; color: #fff; }
.workload-console-bar strong { color: #fff; font-size: .84rem; }
.workload-console-mark { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 4px; background: #fff; color: #0d47a1; font-size: .76rem; font-weight: 800; }
.console-health { margin-left: auto; display: inline-flex; align-items: center; gap: .4rem; color: #dbeafe; font-size: .68rem; }
.console-health i { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }
.workload-console-body { padding: 1.2rem; }
.console-summary { display: grid; grid-template-columns: 1fr auto; padding-bottom: 1rem; border-bottom: 1px solid #dfe4ea; }
.console-summary span, .console-summary strong { grid-column: 1; }
.console-summary span { color: #5f6b7a; font-size: .68rem; }
.console-summary strong { font-size: .96rem; }
.console-summary small { grid-column: 2; grid-row: 1 / 3; align-self: center; color: #64748b; font-size: .62rem; }
.console-workloads { display: grid; margin-top: .8rem; border: 1px solid #dfe4ea; background: #fff; }
.console-workloads > div { min-width: 0; display: grid; grid-template-columns: 34px 1fr auto; gap: .75rem; align-items: center; padding: .72rem .8rem; border-bottom: 1px solid #e5e7eb; }
.console-workloads > div:last-child { border-bottom: 0; }
.console-workloads p { min-width: 0; margin: 0; }
.console-workloads p strong, .console-workloads p small { display: block; }
.console-workloads p strong { font-size: .76rem; }
.console-workloads p small { overflow: hidden; color: #64748b; font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.console-icon, .workload-code { display: grid; place-items: center; color: #fff; font-family: var(--font-mono); font-weight: 800; }
.console-icon { width: 32px; height: 32px; border-radius: 5px; font-size: .63rem; }
.console-icon.identity, .workload-code.identity { background: #1565c0; }
.console-icon.mail, .workload-code.mail { background: #00796b; }
.console-icon.content, .workload-code.content { background: #c2410c; }
.console-icon.teams, .workload-code.teams { background: #5b4b9a; }
.workload-code.cloud { background: #455a64; }
.console-evidence { display: grid; grid-template-columns: repeat(4, 1fr); gap: .45rem; margin-top: .8rem; }
.console-evidence span { padding-top: .45rem; border-top: 4px solid #1565c0; color: #526174; font-size: .62rem; font-weight: 700; }
.console-evidence span:nth-child(3) { border-color: #f57c00; }
.console-evidence span:nth-child(4) { border-color: #2e7d32; }
.workload-proof-strip { border-bottom: 1px solid var(--line); background: #fff; }
.workload-proof-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.workload-proof-strip .container > div { min-width: 0; padding: 1.3rem 1.2rem; border-right: 1px solid var(--line); }
.workload-proof-strip .container > div:last-child { border-right: 0; }
.workload-proof-strip strong, .workload-proof-strip span { display: block; }
.workload-proof-strip strong { margin-bottom: .2rem; font-size: .82rem; }
.workload-proof-strip span { color: var(--muted); font-size: .72rem; line-height: 1.45; }
.workload-intro { align-items: end; }
.workload-directory { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.workload-directory-item { min-width: 0; display: grid; grid-template-columns: 52px 1fr; gap: 1rem; padding: 1.7rem 1.4rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); }
.workload-directory-item:nth-child(2n) { border-right: 0; }
.workload-directory-item:hover { background: var(--surface-alt); color: var(--ink); }
.workload-directory-item h3 { margin: .65rem 0 .35rem; font-size: 1.08rem; }
.workload-directory-item p { min-height: 4.4em; margin-bottom: .8rem; font-size: .86rem; }
.workload-directory-item > div > strong { color: var(--accent-ink); font-size: .78rem; }
.workload-code { width: 48px; height: 48px; border-radius: 6px; font-size: .72rem; }
.workflow-rail { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); background: #fff; }
.workflow-rail article { min-width: 0; min-height: 220px; padding: 1.4rem 1.2rem; border-right: 1px solid var(--line); }
.workflow-rail article:last-child { border-right: 0; }
.workflow-rail article > span { color: var(--warm); font-family: var(--font-mono); font-size: .75rem; font-weight: 800; }
.workflow-rail h3 { margin-top: 2.4rem; }
.workflow-rail p { margin-bottom: 0; font-size: .82rem; }
.scope-legend { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.scope-legend > div { min-width: 0; padding: 1.35rem; border-right: 1px solid var(--line); }
.scope-legend > div:last-child { border-right: 0; }
.scope-legend h3 { margin: 1rem 0 .35rem; font-size: .94rem; }
.scope-legend p { margin: 0; font-size: .8rem; }
.workload-page-nav { border-bottom: 1px solid var(--line); background: #fff; }
.workload-page-nav .container { display: flex; gap: 1.5rem; overflow-x: auto; padding-top: .85rem; padding-bottom: .85rem; scrollbar-width: thin; }
.workload-page-nav a { flex: 0 0 auto; color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.workload-page-nav a:hover { color: var(--accent); }
.product-proof { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: 2.5rem; align-items: stretch; }
.product-proof-copy { align-self: center; }
.product-proof-copy h2 { margin-top: 0; }
.product-proof-copy .feature-list { grid-template-columns: 1fr; }
.product-proof-copy .feature-list li { padding-top: .7rem; padding-bottom: .7rem; }
.product-proof-copy .feature-list li::before { top: 1.25rem; }
.operator-view { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 8px; background: #f5f7fa; box-shadow: var(--shadow); }
.operator-view-header { min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 1rem; background: #0d47a1; color: #fff; }
.operator-view-header strong { color: #fff; font-size: .82rem; }
.operator-view-header span { color: #dbeafe; font-size: .65rem; }
.operator-view-body { padding: 1rem; }
.operator-view-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; }
.operator-view-kpis div { min-width: 0; padding: .75rem; border: 1px solid #e1e5eb; border-top: 3px solid #1565c0; background: #fff; }
.operator-view-kpis div:nth-child(2) { border-top-color: #f57c00; }
.operator-view-kpis div:nth-child(3) { border-top-color: #2e7d32; }
.operator-view-kpis strong, .operator-view-kpis span { display: block; }
.operator-view-kpis strong { font-size: 1rem; }
.operator-view-kpis span { color: #64748b; font-size: .6rem; }
.operator-view-list { margin-top: .7rem; border: 1px solid #e1e5eb; background: #fff; }
.operator-view-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; padding: .68rem .75rem; border-bottom: 1px solid #e5e7eb; }
.operator-view-row:last-child { border-bottom: 0; }
.operator-view-row strong, .operator-view-row small { display: block; }
.operator-view-row strong { font-size: .7rem; }
.operator-view-row small { color: #64748b; font-size: .58rem; }
.operator-view-row > span { align-self: center; color: #166534; font-size: .62rem; font-weight: 800; }
.operator-view-row > span.warn { color: #9a5200; }
.operator-view-note { margin: .65rem 0 0; color: #64748b; font-size: .6rem; text-align: right; }
.capability-table-wrap { overflow-x: auto; border: 1px solid var(--line); background: #fff; }
.capability-table { width: 100%; min-width: 840px; border-collapse: collapse; }
.capability-table th, .capability-table td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.capability-table tr:last-child td { border-bottom: 0; }
.capability-table th { background: #eef2f5; color: var(--ink); font-size: .72rem; text-transform: uppercase; }
.capability-table td { color: var(--ink-soft); font-size: .82rem; }
.capability-table td:first-child { width: 23%; color: var(--ink); font-weight: 700; }
.capability-table td:nth-child(2) { width: 18%; }
.prerequisite-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: #fff; }
.prerequisite-grid article { min-width: 0; padding: 1.4rem; border-right: 1px solid var(--line); }
.prerequisite-grid article:last-child { border-right: 0; }
.prerequisite-grid span { color: var(--warm); font-family: var(--font-mono); font-size: .72rem; font-weight: 800; }
.prerequisite-grid h3 { margin: 1.1rem 0 .4rem; font-size: .98rem; }
.prerequisite-grid p, .prerequisite-grid li { font-size: .8rem; }
.prerequisite-grid ul { margin-bottom: 0; }
.boundary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.boundary-panel { min-width: 0; padding: 1.35rem; border: 1px solid var(--line); border-top: 4px solid #2e7d32; background: #fff; }
.boundary-panel.conditional { border-top-color: #f57c00; }
.boundary-panel.manual { border-top-color: #64748b; }
.boundary-panel h3 { margin: .8rem 0 .4rem; }
.boundary-panel p, .boundary-panel li { font-size: .8rem; }
.boundary-panel ul { margin-bottom: 0; }
.related-services { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.related-services a { min-width: 0; min-height: 150px; padding: 1.3rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); }
.related-services a:last-child { border-right: 0; }
.related-services a:hover { background: var(--surface-alt); color: var(--ink); }
.related-services small { color: var(--accent); font-weight: 800; text-transform: uppercase; }
.related-services h3 { margin: .7rem 0 .35rem; }
.related-services p { margin: 0; font-size: .8rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  background: #0b1220;
  color: #cbd5e1;
}
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.foot-brand .brand-name { color: #fff; }
.foot-brand p { color: #94a3b8; font-size: .9rem; max-width: 280px; }
.footer-brand-link { color: #fff !important; }
.footer-brand-link:hover { color: #fff !important; }
.footer-brand-strong { color: #fff; }
.foot-col h4 {
  color: #fff; font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin: 0 0 .9rem;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin: .45rem 0; }
.foot-col a { font-size: .92rem; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.2rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: #94a3b8;
}
.foot-bottom .links { display: flex; gap: 1rem; flex-wrap: wrap; }

/* 404 page */
.notfound {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1rem;
}
.notfound .code {
  font-size: clamp(4rem, 12vw, 8rem); font-weight: 800; line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.notfound-cta-row { justify-content: center; margin-top: 1.5rem; }
.foot-bottom-compact { border: none; padding-top: 0; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero h1, .hero .lede, .hero .cta-row, .hero .hero-badge, .hero-trust {
  animation: fadeUp .7s ease both;
}
.hero .lede { animation-delay: .1s; }
.hero .cta-row { animation-delay: .2s; }
.hero-trust { animation-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Responsive */
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand-logo-img.header-logo-img { width: 190px; }
  .site-header.is-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1rem;
    box-shadow: var(--shadow);
  }
  .site-header.is-open .nav-links a {
    padding: .8rem 0; border-bottom: 1px solid var(--line);
  }
  .site-header.is-open .nav-links a:last-child { border-bottom: none; }
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero > .container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { max-width: 720px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .page-hero .container, .content-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .page-hero-aside { max-width: 700px; }
  .decision-grid, .pricing-grid { grid-template-columns: 1fr; }
  .architecture-grid { grid-template-columns: 1fr 1fr; }
  .workload-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .workload-console { max-width: 720px; }
  .workload-proof-strip .container, .scope-legend { grid-template-columns: 1fr 1fr; }
  .workload-proof-strip .container > div:nth-child(2), .scope-legend > div:nth-child(2) { border-right: 0; }
  .workload-proof-strip .container > div:nth-child(-n+2), .scope-legend > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .workflow-rail { grid-template-columns: 1fr 1fr; }
  .workflow-rail article { min-height: 0; border-bottom: 1px solid var(--line); }
  .workflow-rail article:nth-child(2n) { border-right: 0; }
  .workflow-rail article:last-child { border-bottom: 0; }
  .workflow-rail h3 { margin-top: 1.4rem; }
  .product-proof { grid-template-columns: 1fr; }
  .operator-view { max-width: 720px; }
  .prerequisite-grid, .boundary-grid { grid-template-columns: 1fr; }
  .prerequisite-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .prerequisite-grid article:last-child { border-bottom: 0; }
}
@media (max-width: 720px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { line-height: 1.3; }
  .product-stage { margin-top: 2rem; }
  .product-stage-body { grid-template-columns: 1fr; min-height: 0; }
  .product-stage-nav { display: none; }
  .product-stage-content { padding: .85rem; }
  .product-metrics { grid-template-columns: 1fr 1fr; }
  .product-activity { grid-template-columns: 1fr; }
  .product-pipeline, .product-activity { display: none; }
  .section { padding: 3rem 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 0; }
  .btn-demo { display: none; }
  .split-head { grid-template-columns: 1fr; gap: .7rem; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario { min-height: 0; border-right: 0; }
  .feature-list { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: 1fr; border-top: 0; border-left: 2px solid var(--line-strong); }
  .process-item { padding: 0 0 1.5rem 1.4rem; }
  .process-item::before { top: .2rem; left: -7px; }
  .architecture-grid { grid-template-columns: 1fr; }
  .resource-item { grid-template-columns: 1fr; gap: .35rem; }
  .callout { grid-template-columns: 1fr; }
  .workload-hero { padding: 3.2rem 0; }
  .workload-directory { grid-template-columns: 1fr; }
  .workload-directory-item { border-right: 0; }
  .related-services { grid-template-columns: 1fr; }
  .related-services a { min-height: 0; border-right: 0; }
}
@media (max-width: 340px) {
  .btn-signin { display: none; }
}
@media (max-width: 420px) {
  .brand-logo-img.header-logo-img { width: 160px; }
  .brand-logo-img.footer-logo-img { width: 144px; }
  .cta { width: 100%; justify-content: center; }
  .hero .cta-row { flex-direction: column; }
  .product-stage-heading span,
  .product-phase label { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .workload-proof-strip .container, .scope-legend, .workflow-rail { grid-template-columns: 1fr; }
  .workload-proof-strip .container > div, .scope-legend > div, .workflow-rail article { border-right: 0; border-bottom: 1px solid var(--line); }
  .workload-proof-strip .container > div:last-child, .scope-legend > div:last-child, .workflow-rail article:last-child { border-bottom: 0; }
  .console-summary small, .console-workloads .status { display: none; }
  .console-summary { grid-template-columns: 1fr; }
  .workload-directory-item { grid-template-columns: 42px 1fr; padding: 1.3rem 0; }
  .workload-code { width: 40px; height: 40px; }
  .operator-view-kpis { grid-template-columns: 1fr; }
  .operator-view-row { gap: .5rem; }
}
