:root {
  --navy-950: #091a2a;
  --navy-900: #10253b;
  --navy-800: #183753;
  --navy-700: #245678;
  --ink: #16273a;
  --slate: #51657a;
  --muted: #728195;
  --line: #dce3e9;
  --surface: #ffffff;
  --surface-soft: #f2f5f8;
  --warm: #fbf7ef;
  --orange: #c95f1a;
  --orange-dark: #9e4210;
  --orange-soft: #f7e4d3;
  --blue-soft: #e8f1f8;
  --green: #33846b;
  --display: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow-lg: 0 32px 70px rgba(9, 26, 42, 0.18);
  --shadow-md: 0 16px 38px rgba(9, 26, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

::selection {
  background: var(--orange-soft);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid #f59a4c;
  outline-offset: 4px;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(16, 37, 59, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

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

.brandMark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--navy-900);
  box-shadow: inset 0 0 0 5px var(--orange);
  color: white;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.brandWords {
  display: grid;
  line-height: 1.15;
}

.brandWords strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brandWords small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primaryNav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
}

.primaryNav a {
  position: relative;
  padding: 28px 0 26px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.primaryNav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primaryNav a:hover::after,
.primaryNav a:focus-visible::after {
  transform: scaleX(1);
}

.headerCta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid var(--navy-900);
  border-radius: 999px;
  background: var(--navy-900);
  color: white;
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.headerCta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: clamp(72px, 9vw, 142px) 4vw clamp(62px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(16, 37, 59, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(16, 37, 59, 0.04) 1px, transparent 1px),
    var(--warm);
  background-size: 44px 44px;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: var(--orange);
  content: "";
}

.heroGrid {
  display: grid;
  max-width: 1480px;
  align-items: center;
  margin: 0 auto;
  gap: clamp(42px, 5vw, 86px);
  grid-template-columns: minmax(370px, 0.78fr) minmax(600px, 1.22fr);
}

.heroCopy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(54px, 5.4vw, 88px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.heroLead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--slate);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.buttonPrimary {
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 24px rgba(201, 95, 26, 0.2);
}

.buttonPrimary:hover {
  background: var(--orange-dark);
}

.buttonSecondary {
  border-color: rgba(16, 37, 59, 0.28);
  background: rgba(255, 255, 255, 0.64);
  color: var(--navy-900);
}

.buttonSecondary:hover {
  border-color: var(--navy-900);
  background: white;
}

.heroFootnote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.heroFootnote strong {
  color: var(--navy-900);
}

.statusDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(51, 132, 107, 0.12);
}

.divider {
  width: 1px;
  height: 15px;
  margin: 0 4px;
  background: var(--line);
}

.heroVisual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 37, 59, 0.15);
  border-radius: 14px;
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.heroVisual::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.035), 0 0 0 56px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.visualChrome {
  display: grid;
  min-height: 44px;
  align-items: center;
  padding: 0 15px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
}

.windowDots {
  display: flex;
  gap: 5px;
}

.windowDots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.windowDots i:nth-child(2) {
  background: var(--orange);
}

.visualLabel {
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.heroVisual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.695 / 1;
  object-fit: cover;
}

.visualCaption {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 18px 21px 20px;
  background: var(--navy-950);
  color: white;
  gap: 2px;
}

.visualCaption span {
  color: #f0a267;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visualCaption strong {
  font-family: var(--display);
  font-size: clamp(17px, 1.4vw, 23px);
  letter-spacing: -0.02em;
}

.evidenceBand {
  padding: 22px 4vw 18px;
  background: var(--navy-950);
  color: white;
  text-align: center;
}

.evidenceBand > p {
  margin: 0 0 13px;
  color: #f0a267;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.evidenceItems {
  display: flex;
  max-width: 1120px;
  justify-content: center;
  margin: 0 auto;
  gap: 0;
}

.evidenceItems span {
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.evidenceItems span:last-child {
  border-right: 0;
}

.evidenceItems b {
  color: white;
}

.evidenceBand small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.section {
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(88px, 10vw, 150px) 4vw;
}

.sectionIntro h2,
.trustStatement h2,
.ctaCopy h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(39px, 4.2vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.sectionIntro > p,
.splitIntro > p,
.centeredIntro > p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}

.splitIntro {
  display: grid;
  align-items: end;
  gap: clamp(42px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.6fr);
}

.splitIntro > p {
  max-width: 500px;
  margin: 0 0 6px;
}

.audienceSection {
  max-width: 1480px;
}

.audienceGrid {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.audienceCard {
  position: relative;
  min-height: 410px;
  padding: clamp(30px, 3.4vw, 50px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: background 180ms ease, transform 180ms ease;
}

.audienceCard:nth-child(2) {
  background: var(--surface-soft);
}

.audienceCard::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 4px;
  background: var(--orange);
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 240ms ease;
}

.audienceCard:hover::before {
  transform: scaleX(1);
}

.audienceTopline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
}

.audienceTopline span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 18px;
}

.audienceTopline p {
  margin: 0;
  color: var(--navy-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.audienceCard h3 {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.audienceCard > p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.68;
}

.audienceCard blockquote {
  margin: 30px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
}

.systemSection {
  max-width: none;
  padding-right: max(4vw, calc((100vw - 1280px) / 2));
  padding-left: max(4vw, calc((100vw - 1280px) / 2));
  background: var(--surface-soft);
}

.centeredIntro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.centeredIntro > p {
  max-width: 660px;
  margin: 22px auto 0;
}

.systemFlow {
  display: grid;
  align-items: stretch;
  margin-top: 64px;
  gap: 16px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.flowNode {
  position: relative;
  min-height: 330px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--navy-900);
  background: white;
  box-shadow: 0 10px 24px rgba(9, 26, 42, 0.05);
}

.flowEngine {
  border-top-color: var(--orange);
}

.flowDecision {
  border-top-color: var(--navy-700);
}

.flowEvidence {
  border-top-color: var(--green);
}

.flowNumber {
  position: absolute;
  top: 24px;
  right: 22px;
  color: #d8e0e7;
  font-family: var(--display);
  font-size: 32px;
}

.flowLabel {
  margin: 0 0 34px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.flowNode h3 {
  min-height: 66px;
  margin: 0 0 18px;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.flowNode ul,
.productCopy ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.flowNode li,
.productCopy li {
  position: relative;
  padding-left: 17px;
  color: var(--slate);
  font-size: 12px;
}

.flowNode li::before,
.productCopy li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.flowArrow {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 25px;
}

.systemNote {
  max-width: 920px;
  margin: 42px auto 0;
  padding: 19px 24px;
  border-left: 4px solid var(--orange);
  background: var(--warm);
  color: var(--slate);
  font-size: 12px;
  text-align: center;
}

.systemNote strong {
  color: var(--navy-900);
}

.platformSection {
  max-width: 1480px;
}

.productShowcase {
  margin-top: 64px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  box-shadow: var(--shadow-md);
}

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

.productTabs button {
  display: grid;
  min-height: 96px;
  cursor: pointer;
  align-content: center;
  padding: 16px 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--slate);
  text-align: left;
  gap: 4px;
  transition: background 180ms ease, color 180ms ease;
}

.productTabs button:last-child {
  border-right: 0;
}

.productTabs button span {
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.productTabs button strong {
  font-family: var(--display);
  font-size: 18px;
}

.productTabs button:hover {
  background: var(--warm);
}

.productTabs button.active {
  border-bottom-color: var(--navy-900);
  background: var(--navy-900);
  color: white;
}

.productTabs button.active span {
  color: #f0a267;
}

.productPanel {
  display: grid;
  min-height: 600px;
  align-items: stretch;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
}

.productCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 74px);
  background: white;
}

.productBadge {
  align-self: flex-start;
  margin: 0 0 24px !important;
  padding: 7px 10px;
  border: 1px solid #e5b38e;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark) !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.productCopy h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 50px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.productCopy > p:not(.productBadge) {
  margin: 24px 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.75;
}

.productCopy li {
  font-size: 12px;
}

.productCopy > a {
  align-self: flex-start;
  margin-top: 32px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--orange);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.productImage {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.4vw, 48px);
  background: var(--navy-950);
}

.productImageBar {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: 9px 9px 0 0;
  background: #09131e;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.productImage img {
  width: 100%;
  height: auto;
  border-radius: 0 0 9px 9px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
}

.trustSection {
  display: grid;
  padding: clamp(90px, 10vw, 150px) max(4vw, calc((100vw - 1380px) / 2));
  background: var(--navy-950);
  color: white;
  gap: clamp(56px, 8vw, 120px);
  grid-template-columns: minmax(320px, 0.7fr) minmax(600px, 1.3fr);
}

.eyebrowLight {
  color: #f0a267;
}

.trustStatement h2 {
  color: white;
}

.trustStatement > p:last-child {
  margin: 24px 0 0;
  color: #f0a267;
  font-family: var(--display);
  font-size: 20px;
}

.trustGrid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(2, 1fr);
}

.trustGrid article {
  min-height: 290px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.trustGrid article > span {
  display: block;
  color: #f0a267;
  font-family: var(--display);
  font-size: 18px;
}

.trustLabel {
  margin: 42px 0 8px !important;
  color: #f0a267 !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trustGrid h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.trustGrid article > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.65;
}

.ctaSection {
  display: grid;
  max-width: 1380px;
  align-items: center;
  margin: 0 auto;
  padding: clamp(88px, 10vw, 140px) 4vw;
  gap: clamp(48px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.65fr);
}

.ctaCopy p:last-child {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.ctaPanel {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid #e3c5a6;
  border-left: 6px solid var(--orange);
  background: var(--warm);
}

.ctaPanel > p {
  margin: 0 0 22px;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.25;
}

.buttonWide {
  width: 100%;
}

.ctaPanel small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

footer {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  padding: 30px 4vw;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.brandMarkSmall {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.footerBrand > div {
  display: grid;
}

.footerBrand strong {
  color: var(--navy-900);
  font-size: 15px;
}

.footerBrand span:last-child {
  color: var(--muted);
  font-size: 11px;
}

.footerLinks {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 11px;
}

.footerLinks a {
  color: var(--navy-700);
  font-weight: 700;
}

.footerLinks a:hover {
  color: var(--orange-dark);
}

@media (max-width: 1180px) {
  .primaryNav {
    gap: 22px;
  }

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

  .heroCopy {
    max-width: 830px;
  }

  .heroVisual {
    max-width: 1050px;
  }

  .systemFlow {
    gap: 10px;
  }

  .flowNode {
    padding: 26px 18px;
  }

  .flowNode h3 {
    font-size: 21px;
  }

  .productPanel {
    grid-template-columns: minmax(300px, 0.68fr) minmax(470px, 1.32fr);
  }

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

  .trustStatement {
    max-width: 800px;
  }
}

@media (max-width: 920px) {
  .siteHeader {
    grid-template-columns: 1fr auto;
  }

  .primaryNav {
    display: none;
  }

  .hero {
    padding-top: 74px;
  }

  .hero h1 {
    font-size: clamp(52px, 10vw, 76px);
  }

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

  .evidenceItems span {
    padding: 8px 14px;
    border-right: 0;
  }

  .splitIntro {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .audienceCard {
    min-height: auto;
  }

  .audienceTopline {
    margin-bottom: 42px;
  }

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

  .flowNode {
    min-height: 0;
  }

  .flowNode h3 {
    min-height: 0;
  }

  .flowArrow {
    height: 30px;
    transform: rotate(90deg);
  }

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

  .productImage {
    order: -1;
  }

  .productCopy {
    padding: 46px;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  .siteHeader {
    min-height: 68px;
    padding: 0 18px;
  }

  .brandWords small {
    display: none;
  }

  .brandMark {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .headerCta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0;
  }

  .headerCta::before {
    font-size: 11px;
    content: "Walkthrough";
  }

  .headerCta span {
    font-size: 12px;
  }

  .hero {
    padding: 62px 20px 68px 24px;
    background-size: 30px 30px;
  }

  .hero::before {
    width: 5px;
  }

  .heroGrid {
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
    letter-spacing: -0.06em;
  }

  .heroLead {
    margin-top: 24px;
    font-size: 16px;
  }

  .heroActions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .heroFootnote {
    align-items: flex-start;
  }

  .divider,
  .heroFootnote span:last-child {
    display: none;
  }

  .visualChrome {
    grid-template-columns: auto 1fr;
  }

  .visualLabel {
    display: none;
  }

  .heroVisual img {
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    object-position: left center;
  }

  .evidenceBand {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .sectionIntro h2,
  .trustStatement h2,
  .ctaCopy h2 {
    font-size: clamp(38px, 11vw, 51px);
  }

  .audienceGrid {
    margin-top: 42px;
  }

  .audienceCard {
    padding: 30px 24px;
  }

  .systemSection {
    padding-right: 20px;
    padding-left: 20px;
  }

  .systemNote {
    text-align: left;
  }

  .productShowcase {
    margin-right: -20px;
    margin-left: -20px;
    border-right: 0;
    border-left: 0;
  }

  .productTabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    scroll-snap-type: x proximity;
  }

  .productTabs button {
    min-height: 88px;
    padding: 14px 16px;
    scroll-snap-align: start;
  }

  .productTabs button strong {
    font-size: 15px;
  }

  .productImage {
    padding: 20px;
  }

  .productCopy {
    padding: 36px 24px 42px;
  }

  .trustSection {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .trustGrid article {
    min-height: 0;
  }

  .ctaSection {
    padding-right: 20px;
    padding-left: 20px;
  }

  footer {
    align-items: flex-start;
    padding: 34px 20px;
    flex-direction: column;
    gap: 28px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---- contact form (added in static port; matches ctaPanel design language) ---- */
.ctaPanel form { display: grid; gap: 12px; }
.ctaPanel .formRow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ctaPanel label { display: grid; gap: 5px; font-size: 12px; font-weight: bold; color: var(--slate); text-align: left; }
.ctaPanel input, .ctaPanel select, .ctaPanel textarea {
  width: 100%; padding: 11px 12px; font: inherit; font-size: 14px; color: var(--ink);
  background: var(--surface); border: 1px solid #e3c5a6; border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.ctaPanel select { background-image: linear-gradient(45deg, transparent 50%, var(--slate) 50%), linear-gradient(135deg, var(--slate) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.ctaPanel input:focus-visible, .ctaPanel select:focus-visible, .ctaPanel textarea:focus-visible { outline: 3px solid #f59a4c; outline-offset: 2px; }
.ctaPanel textarea { resize: vertical; min-height: 84px; }
.ctaPanel form .buttonWide { border: 0; cursor: pointer; }
.hiddenField { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.formThanks { display: none; margin: 0 0 16px; padding: 13px 15px; border: 1px solid #bfd9c4; border-left: 5px solid var(--green); background: #eef6ef; color: var(--green); font-size: 14px; font-weight: bold; text-align: left; }
body.submitted .formThanks { display: block; }
@media (max-width: 640px) { .ctaPanel .formRow { grid-template-columns: 1fr; } }
.productPanel[hidden] { display: none; }

/* ---- announcement bar ---- */
.announceBar { display: flex; align-items: center; gap: 12px; padding: 9px 4vw; background: var(--navy-950); color: #cfdae6; font-size: 13px; }
.announceBar p { margin: 0; flex: 1; min-width: 0; }
.announceBar strong { color: #fff; }
.announceBar a { color: #f59a4c; font-weight: bold; white-space: nowrap; }
.announceBar a:hover { color: #fff; }
.announceDot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(201, 95, 26, .35); }
@media (max-width: 640px) { .announceBar a { display: none; } }
