:root {
  color-scheme: light;
  --ink: #101820;
  --ink-2: #203040;
  --muted: #4f6070;
  --line: #dbe3ea;
  --surface: #f7f9fb;
  --surface-2: #eef4f8;
  --white: #ffffff;
  --blue: #0f4c81;
  --blue-2: #163a5f;
  --green: #14785f;
  --yellow: #d8a21b;
  --red: #a13f32;
  --shadow: 0 18px 48px rgba(16, 24, 32, .12);
  --shadow-soft: 0 10px 26px rgba(16, 24, 32, .08);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --motion-fast: 180ms;
  --motion-mid: 360ms;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  transition: color var(--motion-fast) var(--ease), border-color var(--motion-fast) var(--ease), background-color var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(216, 162, 27, .65);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-width: 238px;
}

.brand-logo {
  display: block;
  width: 150px;
  height: auto;
  filter: drop-shadow(0 1px 0 rgba(16, 24, 32, .04));
}

.brand-tagline {
  display: block;
}

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.1;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}

.site-header nav a:hover {
  color: var(--blue);
  border-color: rgba(15, 76, 129, .28);
}

.header-cta,
.button,
button {
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease), background-color var(--motion-fast) var(--ease), border-color var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease), opacity var(--motion-fast) var(--ease);
}

.header-cta,
.button.primary {
  background: var(--blue);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .58);
}

button:disabled,
input:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: .68;
}

@media (hover: hover) {
  .header-cta:hover,
  .button:hover,
  button:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(16, 24, 32, .14);
  }

  .button.primary:hover,
  .header-cta:hover,
  .ask-row button:hover,
  .qty-row button:hover {
    background: var(--blue-2);
  }
}

.is-pressed {
  transform: translateY(0) scale(.985) !important;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-2);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 48%, rgba(240, 193, 58, .11), transparent 18%),
    linear-gradient(92deg, transparent 0, rgba(255, 255, 255, .08) 48%, transparent 57%);
  background-size: 100% 100%, 170% 100%;
  opacity: .32;
  pointer-events: none;
  animation: heroLightSweep 12s ease-in-out infinite;
  z-index: 1;
}

.hero-media,
.hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-media > img {
  object-fit: cover;
  transform: scale(1.04);
  animation: heroCameraDrift 24s ease-in-out infinite alternate;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1100px;
}

.hero-depth {
  position: absolute;
  inset: -4%;
  display: block;
  opacity: .55;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.hero-depth-backdrop {
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(255, 255, 255, .07) 45.1% 45.35%, transparent 45.45%),
    linear-gradient(0deg, transparent 0 63%, rgba(255, 255, 255, .05) 63.1% 63.28%, transparent 63.35%),
    radial-gradient(circle at 74% 38%, rgba(20, 120, 95, .24), transparent 11%);
  transform: translate3d(0, 0, -40px);
  animation: heroLayerFloat 17s ease-in-out infinite alternate;
}

.hero-depth-desk {
  background:
    radial-gradient(ellipse at 58% 77%, rgba(255, 255, 255, .13), transparent 24%),
    linear-gradient(105deg, transparent 0 48%, rgba(240, 193, 58, .16) 48.08% 48.24%, transparent 48.34%),
    linear-gradient(20deg, transparent 0 67%, rgba(255, 255, 255, .08) 67.08% 67.28%, transparent 67.38%);
  opacity: .44;
  transform: translate3d(0, 0, 34px);
  animation: heroDeskFloat 14s ease-in-out infinite alternate;
}

.hero-depth-person {
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 49%, rgba(255, 255, 255, .1), transparent 20%),
    radial-gradient(ellipse at 73% 72%, rgba(15, 76, 129, .18), transparent 18%),
    linear-gradient(72deg, transparent 0 64%, rgba(20, 120, 95, .18) 64.1% 64.28%, transparent 64.38%);
  opacity: .48;
  transform: translate3d(0, 0, 54px);
  animation: heroPersonFloat 18s ease-in-out infinite alternate;
}

.hero-depth-light {
  inset: 0;
  background:
    radial-gradient(ellipse at 64% 54%, rgba(240, 193, 58, .18), transparent 10%),
    radial-gradient(ellipse at 78% 78%, rgba(255, 255, 255, .18), transparent 16%),
    linear-gradient(105deg, transparent 0, rgba(255, 255, 255, .13) 46%, transparent 57%);
  mix-blend-mode: screen;
  opacity: .28;
  animation: heroLightBreath 9s ease-in-out infinite;
}

.hero-depth-lines {
  background:
    linear-gradient(120deg, transparent 0 41%, rgba(255, 255, 255, .13) 41.08% 41.18%, transparent 41.3%),
    linear-gradient(120deg, transparent 0 55%, rgba(20, 120, 95, .18) 55.08% 55.24%, transparent 55.36%),
    linear-gradient(0deg, transparent 0 58%, rgba(255, 255, 255, .08) 58.08% 58.2%, transparent 58.32%);
  opacity: .32;
  transform: translate3d(0, 0, 80px);
  animation: heroLineDrift 13s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 34, .9), rgba(8, 20, 34, .62) 43%, rgba(8, 20, 34, .1) 78%),
    linear-gradient(0deg, rgba(8, 20, 34, .36), rgba(8, 20, 34, .06));
  z-index: 2;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 58px;
  color: white;
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
  z-index: 3;
}

.hero-main {
  min-width: 0;
  max-width: 790px;
  animation: heroTextIn 620ms var(--ease) both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #7b5a00;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.case-section .section-kicker {
  color: #f0c13a;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 72px;
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
}

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

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 930px;
  margin-top: 34px;
  animation: heroTextIn 660ms var(--ease) 120ms both;
}

.hero-proof span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: white;
  font-size: 14px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.trust-band {
  width: min(1120px, calc(100% - 48px));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 12px 30px rgba(16, 24, 32, .07);
}

.trust-item {
  min-height: 136px;
  display: block;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: white;
  padding: 22px;
  color: inherit;
  box-shadow: none;
}

.trust-item strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.trust-item small {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--ink-2);
  font-weight: 700;
  transition: max-height var(--motion-mid) var(--ease), margin-top var(--motion-mid) var(--ease), opacity var(--motion-mid) var(--ease);
  opacity: 0;
}

.trust-item.is-expanded small {
  max-height: 96px;
  margin-top: 12px;
  opacity: 1;
}

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

.sector-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease), border-color var(--motion-fast) var(--ease);
}

.sector-grid strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.18;
}

.sector-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.pricing-section {
  width: min(1180px, calc(100% - 48px));
}

.reveal-ready {
  opacity: 1;
  transform: translateY(14px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

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

.is-highlighted {
  box-shadow: inset 0 0 0 2px rgba(216, 162, 27, .42);
}

@media (hover: hover) {
  .sector-grid article:hover,
  .service-grid article:hover,
  .security-grid article:hover,
  .pricing-grid article:hover,
  .decision-grid article:hover,
  .resource-list a:hover,
  .demo-fields div:hover,
  .proof-list li:hover,
  .compact-list li:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 76, 129, .28);
    box-shadow: 0 16px 32px rgba(16, 24, 32, .1);
  }
}

.card-detail {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
  opacity: 0;
  transition: max-height var(--motion-mid) var(--ease), margin-top var(--motion-mid) var(--ease), opacity var(--motion-mid) var(--ease);
}

.is-expanded > .card-detail {
  max-height: 140px;
  margin-top: 14px;
  opacity: 1;
}

.split,
.section-heading,
.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  gap: 46px;
  align-items: start;
}

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

.section-heading p,
.split p,
.case-layout p {
  color: var(--muted);
  font-size: 18px;
}

.evidence-panel,
.grant-card,
.contact-panel,
.diagnostic-tool {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(16, 24, 32, .06);
}

.evidence-panel,
.grant-card {
  padding: 28px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.service-grid,
.security-grid,
.pricing-grid,
.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

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

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

.service-grid article,
.security-grid article,
.pricing-grid article,
.decision-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
  transition: transform var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease), border-color var(--motion-fast) var(--ease);
}

.decision-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 850;
}

.service-grid p,
.security-grid p,
.pricing-grid p,
.decision-grid p {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.timeline div {
  min-height: 190px;
  background: white;
  padding: 22px;
}

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

.timeline strong {
  color: var(--blue);
}

.timeline span {
  margin-top: 12px;
  color: var(--muted);
}

.grants-section {
  width: 100%;
  padding-left: max(24px, calc((100% - 1120px) / 2));
  padding-right: max(24px, calc((100% - 1120px) / 2));
  background: #eaf2f7;
}

.source-box {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid #c7d8e5;
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.source-box a {
  color: var(--blue);
  font-weight: 750;
}

.fine-print {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.claim-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  background: rgba(216, 162, 27, .12);
  color: var(--ink-2);
  font-weight: 750;
}

.case-section {
  width: 100%;
  padding-left: max(24px, calc((100% - 1120px) / 2));
  padding-right: max(24px, calc((100% - 1120px) / 2));
  background: #101820;
}

.case-section h2,
.case-section h3,
.case-section p {
  color: white;
}

.case-section p {
  color: rgba(255, 255, 255, .78);
}

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

.case-metrics div {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, .08);
}

.case-metrics strong {
  display: block;
  color: var(--yellow);
  font-size: 44px;
  line-height: 1;
}

.case-metrics span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .78);
}

.demo-console {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(16, 24, 32, .08);
  overflow: hidden;
}

.demo-console.is-updating .demo-main,
.demo-console.is-updating .demo-side {
  animation: panelRefresh 260ms var(--ease) both;
}

.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.scenario-tab {
  min-height: 54px;
  border-radius: 0;
  background: white;
  color: var(--ink-2);
  box-shadow: none;
}

.scenario-tab.is-active {
  background: var(--blue);
  color: white;
}

.scenario-qualification {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.scenario-qualification-main,
.scenario-qualification-grid article {
  min-width: 0;
  background: #f8fbfd;
}

.scenario-qualification-main {
  padding: 22px 24px;
}

.scenario-qualification-main h3,
.scenario-qualification-main p {
  margin: 0;
}

.scenario-qualification-main h3 {
  font-size: 22px;
  line-height: 1.15;
}

.scenario-qualification-main p {
  margin-top: 8px;
  color: var(--muted);
}

.scenario-qualification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.scenario-qualification-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 120px;
  padding: 18px 20px;
}

.scenario-qualification-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.scenario-qualification-grid strong {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.scenario-qualification-grid article:nth-child(3) strong {
  color: var(--red);
}

.meeting-brief {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.meeting-brief-main,
.meeting-brief-grid article,
.meeting-brief-actions {
  min-width: 0;
  background: white;
}

.meeting-brief-main {
  padding: 24px;
}

.meeting-brief-main h3,
.meeting-brief-main p {
  margin: 0;
}

.meeting-brief-main p {
  margin-top: 10px;
  color: var(--muted);
}

.meeting-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.meeting-brief-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 116px;
  padding: 20px;
}

.meeting-brief-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.meeting-brief-grid strong {
  color: var(--ink-2);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.meeting-brief-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(15, 76, 129, .08), rgba(20, 120, 95, .08)),
    white;
}

.meeting-brief-actions output {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
}

.meeting-brief-actions button {
  flex-shrink: 0;
}

.demo-governance-banner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.governance-summary,
.governance-grid article {
  min-width: 0;
  background: #f8fbfd;
}

.governance-summary {
  padding: 22px 24px;
}

.governance-summary h3,
.governance-summary p {
  margin: 0;
}

.governance-summary h3 {
  font-size: 22px;
  line-height: 1.15;
}

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

.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.governance-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 110px;
  padding: 18px 20px;
}

.governance-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.governance-grid strong {
  color: var(--ink-2);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.demo-governance-banner[data-tone="blocked"] .governance-grid article:nth-child(2) strong {
  color: var(--red);
}

.demo-governance-banner[data-tone="draft"] .governance-grid article:nth-child(2) strong {
  color: #805d00;
}

.demo-governance-banner[data-tone="review"] .governance-grid article:nth-child(2) strong {
  color: var(--green);
}

.scenario-control-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.scenario-control-strip article {
  min-width: 0;
  min-height: 92px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 20px;
  background: var(--surface);
}

.scenario-control-strip span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.scenario-control-strip strong {
  color: var(--ink-2);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.demo-decision-strip {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.demo-decision-main,
.demo-decision-grid article {
  min-width: 0;
  background: #f8fbfd;
}

.demo-decision-main {
  padding: 24px;
}

.demo-decision-main h3,
.demo-decision-main p {
  margin: 0;
}

.demo-decision-main p {
  margin-top: 10px;
  color: var(--muted);
}

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

.demo-decision-grid article {
  min-height: 120px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
}

.demo-decision-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-decision-grid strong {
  color: var(--ink-2);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.demo-decision-grid article:nth-child(2) strong {
  color: var(--red);
}

.demo-runbook {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.demo-runbook-summary,
.demo-runbook-grid article {
  min-width: 0;
  background: white;
}

.demo-runbook-summary {
  padding: 24px;
}

.demo-runbook-summary h3,
.demo-runbook-summary p {
  margin: 0;
}

.demo-runbook-summary p {
  margin-top: 10px;
  color: var(--muted);
}

.demo-runbook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.demo-runbook-grid article {
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
}

.demo-runbook-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-runbook-grid strong {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.demo-runbook-grid article:nth-child(2) {
  border-top: 4px solid var(--yellow);
}

.demo-runbook-grid article:nth-child(4) {
  border-top: 4px solid var(--red);
}

.scenario-briefing {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.scenario-briefing-main,
.scenario-briefing-grid article {
  min-width: 0;
  background: var(--surface);
}

.scenario-briefing-main {
  padding: 24px;
}

.scenario-briefing-main h3,
.scenario-briefing-main p {
  margin: 0;
}

.scenario-briefing-main h3 {
  max-width: 620px;
}

.scenario-briefing-main p {
  margin-top: 10px;
  color: var(--muted);
}

.scenario-briefing-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.scenario-briefing-grid article {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
}

.scenario-briefing-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.scenario-briefing-grid strong {
  color: var(--ink-2);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.presenter-flow {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1.26fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.presenter-flow-head,
.presenter-steps {
  min-width: 0;
  background: white;
}

.presenter-flow-head {
  padding: 24px;
}

.presenter-flow-head h3,
.presenter-flow-head p {
  margin: 0;
}

.presenter-flow-head p {
  margin-top: 10px;
  color: var(--muted);
}

.presenter-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.presenter-steps li {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-content: start;
  min-height: 154px;
  padding: 20px;
  background: var(--surface);
}

.presenter-steps > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.presenter-steps strong,
.presenter-steps p,
.presenter-steps small,
.presenter-steps em {
  display: block;
  margin: 0;
}

.presenter-steps strong {
  color: var(--ink);
}

.presenter-steps p {
  margin-top: 6px;
  color: var(--ink-2);
  line-height: 1.35;
}

.presenter-steps small {
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.3;
}

.presenter-steps em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.executive-readout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.executive-readout-main,
.executive-readout-grid article {
  min-width: 0;
  background: white;
}

.executive-readout-main {
  padding: 24px;
}

.executive-readout-main h3,
.executive-readout-main p {
  margin: 0;
}

.executive-readout-main p {
  margin-top: 10px;
  color: var(--muted);
}

.executive-readout-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.executive-readout-grid article {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
}

.executive-readout-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.executive-readout-grid strong {
  color: var(--ink-2);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.operator-snapshot {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.operator-snapshot-head,
.operator-snapshot-grid article {
  min-width: 0;
  background: white;
}

.operator-snapshot-head {
  padding: 24px;
}

.operator-snapshot-head h3,
.operator-snapshot-head p {
  margin: 0;
}

.operator-snapshot-head h3 {
  max-width: 620px;
}

.operator-snapshot-head p {
  margin-top: 10px;
  color: var(--muted);
}

.operator-snapshot-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(128px, 1fr));
  gap: 1px;
  background: var(--line);
  overflow-x: auto;
}

.operator-snapshot-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
}

.operator-snapshot-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.operator-snapshot-grid strong {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.scenario-matrix {
  border-top: 1px solid var(--line);
  background: white;
}

.scenario-matrix-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.scenario-matrix-head h3,
.scenario-matrix-head p {
  margin: 0;
}

.scenario-matrix-head p {
  color: var(--muted);
}

.scenario-matrix-rows {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.scenario-matrix-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.08fr) minmax(112px, .62fr) minmax(124px, .68fr) minmax(170px, .95fr) minmax(210px, 1.1fr) minmax(180px, .95fr);
  gap: 1px;
  min-height: 64px;
  padding: 0;
  border-radius: 0;
  background: var(--line);
  box-shadow: none;
  color: var(--ink-2);
  text-align: left;
}

.scenario-matrix-row > * {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  background: white;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.scenario-matrix-row strong {
  color: var(--ink);
}

.scenario-matrix-row span {
  font-size: 13px;
  font-weight: 800;
}

.scenario-matrix-row span:nth-child(5),
.scenario-matrix-row span:nth-child(6) {
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.scenario-matrix-row[aria-current="true"] > * {
  background: rgba(15, 76, 129, .08);
}

.scenario-matrix-row[data-tone="blocked"] span:nth-child(3) {
  color: var(--red);
}

.scenario-matrix-row[data-tone="draft"] span:nth-child(3) {
  color: #805d00;
}

.scenario-matrix-row[data-tone="review"] span:nth-child(3) {
  color: var(--green);
}

.network-readout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.network-readout-main,
.network-readout-grid article,
.network-rollout-steps article {
  min-width: 0;
  background: white;
}

.network-readout-main {
  padding: 24px;
}

.network-readout-main h3,
.network-readout-main p {
  margin: 0;
}

.network-readout-main p {
  margin-top: 10px;
  color: var(--muted);
}

.network-readout-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.network-readout-grid article,
.network-rollout-steps article {
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
}

.network-readout-grid span,
.network-rollout-steps span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.network-readout-grid strong,
.network-rollout-steps strong {
  color: var(--ink-2);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.network-readout-grid article:nth-child(3) strong {
  color: var(--red);
}

.network-rollout-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.network-rollout-steps article {
  min-height: 108px;
  background: #f8fbfd;
}

.demo-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 1px;
  background: var(--line);
}

.demo-panel {
  min-width: 0;
  background: white;
  padding: 28px;
}

.demo-panel-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.status-pill,
.demo-tenant {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 850;
}

.status-pill {
  background: rgba(20, 120, 95, .12);
  color: var(--green);
  animation: statusGlow 4.8s ease-in-out infinite;
}

.status-pill[data-tone="blocked"] {
  background: rgba(161, 63, 50, .12);
  color: var(--red);
}

.status-pill[data-tone="draft"] {
  background: rgba(216, 162, 27, .16);
  color: #805d00;
}

.demo-tenant {
  background: var(--surface-2);
  color: var(--ink-2);
}

.demo-main > p,
.demo-side p {
  color: var(--muted);
}

.demo-fields {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.demo-fields div,
.proof-list li,
.material-controls {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.demo-fields div {
  padding: 16px;
}

.demo-fields dt {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-fields dd {
  margin: 6px 0 0;
  color: var(--ink-2);
}

.proof-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 13px 14px;
  color: var(--ink-2);
  font-weight: 700;
  transition: transform var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease), border-color var(--motion-fast) var(--ease);
}

.trace-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  margin: 0 0 22px;
  padding: 16px;
}

.trace-card h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 16px;
}

.trace-timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trace-timeline li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.trace-timeline span {
  display: grid;
  place-items: center;
  min-height: 30px;
  border-radius: 8px;
  background: white;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.trace-timeline strong {
  min-width: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.material-controls {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
}

.material-controls.is-hidden {
  display: none;
}

.qty-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px 52px 42px;
  gap: 8px;
  align-items: center;
}

.qty-row span {
  min-width: 0;
  color: var(--ink-2);
  font-weight: 800;
}

.qty-row button {
  min-height: 42px;
  padding: 0;
  background: var(--blue);
  color: white;
}

.qty-row output {
  transition: background-color var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease);
}

.qty-row output.is-updated {
  background: rgba(20, 120, 95, .1);
  transform: scale(1.04);
}

.qty-row output {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 850;
}

#materialSummary {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.approval-packet {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.approval-summary,
.packet-grid,
.packet-actions,
.packet-decision,
.packet-impact,
.promotion-verdict,
.handoff-checklist {
  background: white;
}

.approval-summary {
  min-width: 0;
  padding: 24px;
}

.packet-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.approval-summary p {
  margin: 0;
  color: var(--muted);
}

.packet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.packet-grid article {
  min-width: 0;
  min-height: 94px;
  padding: 18px;
  background: var(--surface);
}

.packet-grid span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.packet-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.packet-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 24px;
}

.packet-actions button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--blue);
}

.packet-actions button:hover {
  background: var(--blue);
  color: white;
}

.packet-decision {
  grid-column: 1 / -1;
  display: block;
  min-height: 58px;
  padding: 18px 24px;
  color: var(--ink-2);
  font-weight: 800;
}

.packet-impact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.packet-impact article {
  min-width: 0;
  padding: 18px 24px;
  background: var(--surface);
}

.packet-impact span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.packet-impact strong {
  display: block;
  margin-top: 8px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.promotion-verdict {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.promotion-verdict > div {
  min-width: 0;
  padding: 22px 24px;
  background: white;
}

.verdict-summary {
  display: grid;
  align-content: start;
  gap: 10px;
}

.verdict-summary h3,
.verdict-summary p,
.promotion-verdict h4 {
  margin: 0;
}

.verdict-summary p {
  color: var(--muted);
}

.verdict-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(20, 120, 95, .12);
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.verdict-label[data-tone="blocked"] {
  background: rgba(161, 63, 50, .12);
  color: var(--red);
}

.verdict-label[data-tone="draft"] {
  background: rgba(216, 162, 27, .16);
  color: #805d00;
}

.promotion-verdict h4 {
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 14px;
}

.promotion-verdict > div:nth-child(2) .compact-list li {
  border-left: 4px solid var(--green);
}

.promotion-verdict > div:nth-child(3) .compact-list li {
  border-left: 4px solid var(--yellow);
}

.handoff-checklist {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.handoff-summary,
.handoff-meta,
.handoff-lists,
.handoff-decision {
  min-width: 0;
  background: white;
}

.handoff-summary {
  padding: 24px;
}

.handoff-summary h3 {
  margin-bottom: 10px;
}

.handoff-summary p {
  margin: 0;
  color: var(--muted);
}

.handoff-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.handoff-meta article {
  min-width: 0;
  padding: 18px 20px;
  background: var(--surface);
}

.handoff-meta span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.handoff-meta strong {
  display: block;
  margin-top: 8px;
  color: var(--ink-2);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.handoff-lists {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.handoff-lists > div {
  min-width: 0;
  padding: 22px 24px;
  background: white;
}

.handoff-lists h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 16px;
}

.handoff-lists > div:nth-child(1) .compact-list li {
  border-left: 4px solid var(--blue);
}

.handoff-lists > div:nth-child(2) .compact-list li {
  border-left: 4px solid var(--red);
}

.handoff-decision {
  grid-column: 1 / -1;
  display: block;
  min-height: 56px;
  padding: 18px 24px;
  color: var(--ink-2);
  font-weight: 850;
}

.local-audit {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.local-audit-head,
.local-audit-log {
  background: white;
}

.local-audit-head {
  min-width: 0;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
}

.local-audit-head h3 {
  margin-bottom: 10px;
}

.local-audit-head p {
  margin: 0;
  color: var(--muted);
}

.local-audit-head strong {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--surface);
  color: var(--blue);
  font-size: 13px;
}

.local-audit-log {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 24px;
  list-style-position: inside;
}

.local-audit-log li {
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--surface);
  padding: 12px 14px;
  color: var(--ink-2);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.prepilot-review {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(16, 24, 32, .06);
  overflow: hidden;
}

.prepilot-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.prepilot-head h3 {
  margin-bottom: 6px;
}

.prepilot-head p {
  margin: 0;
  color: var(--muted);
}

.tenant-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(116px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.tenant-tab {
  min-height: 44px;
  border-radius: 0;
  background: white;
  color: var(--ink-2);
  box-shadow: none;
}

.tenant-tab.is-active {
  background: var(--blue);
  color: white;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.readiness-grid article {
  min-width: 0;
  background: var(--surface);
  padding: 20px;
}

.readiness-grid span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.readiness-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.readiness-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.readiness-detail,
.promotion-lane {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

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

.readiness-detail > div,
.promotion-lane > div {
  background: white;
  padding: 24px;
}

.readiness-detail h4,
.promotion-lane h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 16px;
}

.promotion-lane > div:nth-child(1) .compact-list li {
  border-left: 4px solid var(--green);
}

.promotion-lane > div:nth-child(2) .compact-list li {
  border-left: 4px solid var(--red);
}

.promotion-lane > div:nth-child(3) .compact-list li {
  border-left: 4px solid var(--yellow);
}

.compact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink-2);
  font-weight: 700;
}

.diagnostic-tool {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 11px 12px;
  color: var(--ink);
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.diagnostic-result {
  grid-column: 1 / -1;
  min-height: 72px;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 750;
}

.pricing-grid strong {
  display: block;
  margin: 14px 0;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.12;
}

.pricing-grid article {
  padding: 20px;
}

.pricing-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.mini-list {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 14px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.pricing-explainer,
.seasonal-pricing {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.pricing-explainer > div:first-child {
  max-width: 760px;
}

.pricing-factor-grid,
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.pricing-factor-grid article,
.seasonal-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.pricing-factor-grid h4,
.seasonal-grid h4 {
  margin: 0 0 10px;
}

.pricing-factor-grid p,
.seasonal-grid p {
  color: var(--muted);
}

.seasonal-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
}

.compact-heading {
  display: block;
  margin-bottom: 0;
}

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

.resource-list a {
  min-height: 78px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
  color: var(--blue);
  font-weight: 800;
}

.resource-list a::after {
  content: "→";
  margin-left: auto;
  color: rgba(15, 76, 129, .45);
  transition: transform var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease);
}

.resource-list a:hover::after {
  color: var(--blue);
  transform: translateX(3px);
}

.article-guide {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-guide h2,
.article-guide h3 {
  margin-top: 0;
}

.article-guide p {
  color: var(--ink-2);
}

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

.decision-guide-grid article,
.decision-guide-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.decision-guide-grid p,
.decision-guide-note p {
  color: var(--muted);
}

.decision-guide-note {
  margin-top: 14px;
}

.decision-guide-note strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 8px;
}

.assistant-shell {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.assistant-shell > div:first-child,
.assistant-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.assistant-shell p {
  color: var(--muted);
  font-size: 18px;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.prompt-chips button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--blue);
}

.ask-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.ask-row button {
  background: var(--blue);
  color: white;
}

.assistant-response {
  display: block;
  min-height: 112px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink-2);
  font-weight: 750;
  transition: background-color var(--motion-mid) var(--ease), transform var(--motion-mid) var(--ease);
}

.assistant-response.is-updated {
  background: #e8f3f0;
  transform: translateY(-1px);
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 0 20px;
  transition: border-color var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease), background-color var(--motion-fast) var(--ease);
}

details + details {
  margin-top: 10px;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--ink);
  font-weight: 850;
}

details[open] {
  border-color: rgba(15, 76, 129, .22);
  box-shadow: 0 10px 22px rgba(16, 24, 32, .06);
}

details[open] p {
  animation: faqReveal 240ms var(--ease) both;
}

details p {
  margin-bottom: 20px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .9fr);
  gap: 28px;
  padding: 30px;
  border-left: 5px solid var(--red);
}

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

.contact-panel form {
  display: grid;
  gap: 12px;
}

.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 54px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-header nav {
    justify-content: start;
  }

  .header-cta {
    width: fit-content;
  }

  .hero {
    min-height: 78vh;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-proof,
  .hero-content,
  .trust-band,
  .sector-grid,
  .service-grid,
  .security-grid,
  .pricing-grid,
  .pricing-factor-grid,
  .seasonal-grid,
  .decision-grid,
  .decision-guide-grid,
  .timeline,
  .resource-list,
  .scenario-tabs,
  .scenario-qualification,
  .meeting-brief,
  .meeting-brief-grid,
  .demo-governance-banner,
  .governance-grid,
  .scenario-control-strip,
  .demo-decision-strip,
  .demo-runbook,
  .scenario-briefing,
  .presenter-flow,
  .executive-readout,
  .operator-snapshot,
  .scenario-matrix-head,
  .network-readout,
  .network-readout-grid,
  .network-rollout-steps,
  .demo-board,
  .prepilot-head,
  .readiness-grid,
  .readiness-detail,
  .promotion-lane,
  .promotion-verdict,
  .handoff-checklist,
  .handoff-meta,
  .handoff-lists,
  .approval-packet,
  .packet-grid,
  .packet-actions,
  .packet-impact,
  .local-audit,
  .diagnostic-tool,
  .assistant-shell,
  .split,
  .section-heading,
  .case-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .timeline div {
    min-height: auto;
  }

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

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

  .scenario-matrix-row strong {
    grid-column: 1 / -1;
  }

  .operator-snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

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

  .demo-decision-grid,
  .network-readout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meeting-brief-grid,
  .scenario-briefing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 620px) {
  .site-header,
  .hero-content,
  .section,
  .trust-band,
  .site-footer {
    width: 100%;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px 18px;
    max-width: 100vw;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 128px;
  }

  .site-header nav {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    font-size: 13px;
  }

  .site-header nav a {
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    text-align: center;
    overflow-wrap: anywhere;
  }

  .site-header nav a:nth-child(n + 5) {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    gap: 24px;
    padding: 52px 18px 44px;
    width: 100%;
    max-width: 100vw;
  }

  .hero-main,
  .hero-actions,
  .hero-proof {
    max-width: 100%;
  }

  h1 {
    font-size: 31px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  h2 {
    font-size: 34px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero h1,
  .hero .hero-copy {
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
  }

  .hero {
    min-height: 690px;
  }

  .hero-media > img {
    object-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8, 20, 34, .9), rgba(8, 20, 34, .68) 46%, rgba(8, 20, 34, .86)),
      linear-gradient(90deg, rgba(8, 20, 34, .72), rgba(8, 20, 34, .22));
  }

  .hero-proof {
    gap: 8px;
    margin-top: 6px;
  }

  .hero-proof span {
    min-height: 44px;
    padding: 9px 11px;
    background: rgba(8, 20, 34, .52);
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    backdrop-filter: blur(6px);
  }

  .button,
  .header-cta {
    width: 100%;
    max-width: 100%;
  }

  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-band {
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .grants-section,
  .case-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .demo-panel {
    padding: 20px;
  }

  .approval-summary,
  .packet-actions,
  .packet-decision,
  .scenario-qualification-main,
  .scenario-qualification-grid article,
  .meeting-brief-main,
  .meeting-brief-grid article,
  .meeting-brief-actions,
  .governance-summary,
  .governance-grid article,
  .scenario-control-strip article,
  .demo-decision-main,
  .demo-decision-grid article,
  .demo-runbook-summary,
  .demo-runbook-grid article,
  .scenario-briefing-main,
  .scenario-briefing-grid article,
  .presenter-flow-head,
  .presenter-steps li,
  .executive-readout-main,
  .executive-readout-grid article,
  .operator-snapshot-head,
  .operator-snapshot-grid article,
  .scenario-matrix-head,
  .scenario-matrix-row > *,
  .network-readout-main,
  .network-readout-grid article,
  .network-rollout-steps article,
  .promotion-verdict > div,
  .handoff-summary,
  .handoff-meta article,
  .handoff-lists > div,
  .handoff-decision,
  .local-audit-head,
  .local-audit-log {
    padding: 20px;
  }

  .scenario-matrix-row {
    grid-template-columns: 1fr;
  }

  .meeting-brief-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .operator-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .meeting-brief-grid,
  .demo-decision-grid,
  .demo-runbook-grid {
    grid-template-columns: 1fr;
  }

  .scenario-briefing-grid,
  .scenario-qualification-grid,
  .network-readout-grid,
  .network-rollout-steps,
  .presenter-steps {
    grid-template-columns: 1fr;
  }

  .presenter-steps li {
    min-height: auto;
  }

  .executive-readout-grid {
    grid-template-columns: 1fr;
  }

  .scenario-matrix-row > * {
    min-height: 44px;
  }

  .prepilot-head,
  .readiness-detail > div,
  .promotion-lane > div {
    padding: 20px;
  }

  .tenant-switch {
    width: 100%;
  }

  .ask-row {
    grid-template-columns: 1fr;
  }

  .qty-row {
    grid-template-columns: minmax(0, 1fr) 38px 46px 38px;
  }
}

@keyframes heroCameraDrift {
  from {
    transform: scale(1.045) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.075) translate3d(-1%, .55%, 0);
  }
}

@keyframes heroLayerFloat {
  0%, 100% {
    transform: translate3d(-.4%, -.2%, -40px) rotateX(.2deg);
  }
  50% {
    transform: translate3d(.5%, .35%, -20px) rotateX(-.2deg);
  }
}

@keyframes heroDeskFloat {
  0%, 100% {
    transform: translate3d(.35%, .25%, 34px) rotateZ(-.08deg);
  }
  50% {
    transform: translate3d(-.45%, -.22%, 52px) rotateZ(.08deg);
  }
}

@keyframes heroPersonFloat {
  0%, 100% {
    transform: translate3d(.25%, -.15%, 54px);
    opacity: .42;
  }
  50% {
    transform: translate3d(-.28%, .22%, 70px);
    opacity: .58;
  }
}

@keyframes heroLightSweep {
  0%, 100% {
    background-position: 0 0, -105% 0;
    opacity: .24;
  }
  45% {
    opacity: .38;
  }
  70% {
    background-position: 0 0, 105% 0;
    opacity: .3;
  }
}

@keyframes heroLightBreath {
  0%, 100% {
    opacity: .18;
    transform: translate3d(-.2%, 0, 0);
  }
  50% {
    opacity: .36;
    transform: translate3d(.3%, -.2%, 0);
  }
}

@keyframes heroLineDrift {
  0%, 100% {
    transform: translate3d(-.35%, -.2%, 80px);
    opacity: .24;
  }
  50% {
    transform: translate3d(.45%, .25%, 96px);
    opacity: .42;
  }
}

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

@keyframes statusGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(20, 120, 95, 0);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(20, 120, 95, .08);
  }
}

@keyframes panelRefresh {
  from {
    opacity: .72;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    transition-delay: 0s !important;
  }
}
