/* Pressure Systems parent site. Dark pressure identity: near-black field, charcoal panels, controlled orange signal. */

:root {
  --bg: #131416;
  --bg-deep: #0e0f11;
  --surface: #1b1d21;
  --surface-2: #202329;
  --panel: #1b1d21;
  --panel-strong: #202329;
  --panel-glass: rgba(24, 26, 29, 0.86);
  --cream: #f2efe9;
  --cream-soft: #cfcac1;
  --muted: #a6a6a6;
  --micro: #8e8b86;
  --rust: #e46b1e;
  --rust-deep: #b95417;
  --amber: #e46b1e;
  --rust-soft: rgba(228, 107, 30, 0.14);
  --paper: #f6f6f3;
  --green: #93b07f;
  --red: #d08379;
  --border: rgba(166, 166, 166, 0.14);
  --border-strong: rgba(166, 166, 166, 0.26);
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.32);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --max-width: 1180px;
  --header-offset: 118px;
  --font-display: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-mono: "Montserrat", "Segoe UI", Arial, sans-serif;
  --ease-press: cubic-bezier(0.22, 0.68, 0.26, 1);
  --ease-lock: cubic-bezier(0.34, 1.28, 0.4, 1);
  --speed-fast: 160ms;
  --speed-mid: 320ms;
  --speed-slow: 620ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 0%, rgba(228, 107, 30, 0.05), transparent 36%),
    linear-gradient(180deg, #15161a 0%, #131416 38%, #0e0f11 100%);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(166, 166, 166, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 166, 166, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  opacity: 0.5;
}

body::after {
  content: "";
  position: fixed;
  right: -12vw;
  top: 24vh;
  z-index: 0;
  width: min(56vw, 780px);
  height: min(56vw, 780px);
  pointer-events: none;
  border: 1px solid rgba(228, 107, 30, 0.08);
  transform: rotate(30deg);
  opacity: 0.5;
}

.pressure-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header,
.section,
.site-footer {
  width: min(var(--max-width), calc(100vw - 32px));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 20;
  background: rgba(166, 166, 166, 0.08);
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--rust-deep), var(--rust));
  box-shadow: 0 0 14px rgba(228, 107, 30, 0.4);
  transition: width 120ms linear;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 15;
  margin-top: 18px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px 28px;
  background: var(--panel-glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.site-header .brand-mark-note,
.site-header .site-nav a {
  color: var(--muted);
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: var(--cream);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
}

.brand-mark-lockup {
  min-width: 0;
}

.brand-mark-icon img,
.brand-mark-icon svg {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Kinetic P mark. The master mark locks in once on load, then holds. */
.p-mark {
  position: relative;
}

.p-mark .p-mark-svg {
  display: block;
  overflow: visible;
}

.p-mark .p-mark-tile {
  fill: var(--paper);
  transform-origin: 50% 50%;
  animation: p-tile-settle 520ms var(--ease-lock) both;
}

.p-mark .p-mark-top {
  fill: var(--rust);
  transform-origin: 50% 50%;
  animation: p-top-lock 640ms var(--ease-lock) 180ms both;
}

.p-mark .p-mark-body {
  fill: #2b2b2b;
  animation: p-body-rise 520ms var(--ease-press) 60ms both;
}

.p-mark .p-mark-ring {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(228, 107, 30, 0.55);
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  animation: p-ring-pulse 900ms ease-out 760ms 1;
}

.brand-mark:hover .p-mark .p-mark-top,
.brand-mark:focus-visible .p-mark .p-mark-top {
  animation: none;
  transform: translateY(0.8px);
  transition: transform 200ms var(--ease-press);
}

.brand-mark:hover .p-mark .p-mark-ring,
.brand-mark:focus-visible .p-mark .p-mark-ring {
  animation: p-ring-pulse 720ms ease-out 1;
}

@keyframes p-tile-settle {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes p-top-lock {
  from { transform: translateY(-7px); opacity: 0; }
  60% { transform: translateY(1.2px); opacity: 1; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes p-body-rise {
  from { transform: translateY(5px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes p-ring-pulse {
  0% { opacity: 0.85; transform: scale(0.86); }
  100% { opacity: 0; transform: scale(1.22); }
}

.brand-name {
  display: block;
  color: var(--cream);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark-note {
  display: block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--micro);
}

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

.site-nav a,
.footer-links a {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.32em;
  color: var(--muted);
  transition: color 160ms ease, background-color 160ms ease, text-decoration-color 160ms ease;
}

.site-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(166, 166, 166, 0.12);
  border-radius: 8px;
  background: rgba(166, 166, 166, 0.05);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cream);
  text-decoration-color: var(--amber);
}

.site-nav a:hover {
  border-color: rgba(228, 107, 30, 0.4);
}

.site-nav a:focus-visible {
  border-radius: 8px;
  background: rgba(228, 107, 30, 0.12);
}

.section {
  position: relative;
  padding: 48px 0;
  scroll-margin-top: var(--header-offset);
}

.anchor-alias {
  display: block;
  height: 0;
  scroll-margin-top: var(--header-offset);
}

.hero {
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.system-map,
.pillar-card,
.product-lead,
.review-list,
.product-card,
.comparison-card,
.system-card,
.trust-section,
.ecosystem-flow,
.status-grid article,
.founder-card,
.fit-card,
.question-card,
.audit-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(24px, 3.4vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--rust), transparent 76%);
  opacity: 0.85;
}

.eyebrow,
.status-chip,
.contact-direct span,
.pillar-card span,
.system-card span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--rust);
  transform-origin: left center;
}

[data-section].is-active .eyebrow::before {
  animation: signal-extend 600ms var(--ease-press) both;
}

@keyframes signal-extend {
  from { transform: scaleX(0.2); opacity: 0.4; }
  to { transform: scaleX(1); opacity: 1; }
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--cream);
}

h1 {
  margin-top: 16px;
  max-width: 18ch;
  font-size: 3.2rem;
  line-height: 1.02;
}

h2 {
  margin-top: 14px;
  max-width: 18ch;
  font-size: 3rem;
  line-height: 1.04;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--cream);
}

.hero-text,
.section-head p,
.body-copy p,
.pillar-card p,
.product-lead p,
.review-list li,
.product-card p,
.comparison-card li,
.system-card p,
.trust-section p,
.section-footnote,
.status-grid p,
.founder-card p,
.fit-card li,
.question-grid p,
.audit-copy p,
.form-note,
.site-footer p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.68;
}

.hero-text {
  margin-top: 18px;
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--cream-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
}

/* Buttons carry the pressure response: lift on approach, compress on press, orange signal underline. */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--speed-fast) var(--ease-press), background-color var(--speed-fast) ease, border-color var(--speed-fast) ease, color var(--speed-fast) ease, box-shadow var(--speed-fast) ease;
}

.button::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left center;
  transition: transform var(--speed-mid) var(--ease-press), opacity var(--speed-fast) ease;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 0.35;
  transform: scaleX(1);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  background: var(--rust);
  color: #181109;
  box-shadow: 0 12px 30px -16px rgba(228, 107, 30, 0.55);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ef7c2f;
  box-shadow: 0 16px 34px -16px rgba(228, 107, 30, 0.7);
}

.button-secondary {
  background: rgba(166, 166, 166, 0.06);
  border-color: var(--border-strong);
  color: var(--cream);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(166, 166, 166, 0.11);
  border-color: rgba(228, 107, 30, 0.5);
}

.button-block {
  width: 100%;
}

.text-link {
  color: var(--cream-soft);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 107, 30, 0.5);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--amber);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-strip span,
.trust-principles span,
.ecosystem-flow span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: rgba(166, 166, 166, 0.05);
  color: var(--cream-soft);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero system map: the pressure system, nodes locking around the parent core. */
.system-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(228, 107, 30, 0.16), transparent 26%),
    linear-gradient(135deg, #1d1f24, #141519);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 239, 233, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 233, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 50%, black 34%, transparent 78%);
}

.system-map::before,
.system-map::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(242, 239, 233, 0.09);
  border-radius: 50%;
}

.system-map::after {
  inset: 27%;
  border-color: rgba(228, 107, 30, 0.26);
}

.map-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 10px rgba(228, 107, 30, 0.8);
  offset-path: circle(35% at 50% 50%);
  animation: map-orbit 26s linear infinite;
  opacity: 0.9;
}

.map-pulse.pulse-b {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  offset-path: circle(23% at 50% 50%);
  animation-duration: 18s;
  animation-direction: reverse;
  opacity: 0.7;
}

@keyframes map-orbit {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

.map-core,
.map-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--border-strong);
  background: rgba(32, 34, 39, 0.94);
  color: var(--cream);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.map-core {
  left: 50%;
  top: 50%;
  width: 184px;
  min-height: 116px;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  padding: 20px;
  border-color: rgba(228, 107, 30, 0.5);
}

[data-section="hero"].is-active .map-core {
  animation: core-lock 700ms var(--ease-lock) 200ms both;
}

@keyframes core-lock {
  from { transform: translate(-50%, -50%) scale(0.92); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.map-core-mark {
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.map-core span {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.map-core strong {
  margin-top: 8px;
  color: #f0b38b;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-node {
  width: 132px;
  min-height: 56px;
  border-radius: 8px;
  padding: 10px;
  color: var(--cream-soft);
  font-size: 0.78rem;
  font-weight: 700;
  transition: border-color var(--speed-fast) ease, color var(--speed-fast) ease;
}

[data-section="hero"].is-active .map-node {
  animation: node-lock 520ms var(--ease-lock) both;
}

[data-section="hero"].is-active .node-a { animation-delay: 340ms; }
[data-section="hero"].is-active .node-b { animation-delay: 420ms; }
[data-section="hero"].is-active .node-c { animation-delay: 500ms; }
[data-section="hero"].is-active .node-d { animation-delay: 580ms; }
[data-section="hero"].is-active .node-e { animation-delay: 660ms; }
[data-section="hero"].is-active .node-f { animation-delay: 740ms; }
[data-section="hero"].is-active .node-g { animation-delay: 820ms; }
[data-section="hero"].is-active .node-h { animation-delay: 900ms; }

@keyframes node-lock {
  from { opacity: 0; transform: translateY(8px); }
  70% { opacity: 1; }
  to { opacity: 1; transform: translateY(0); }
}

.node-g[class],
.node-h[class] {
  animation-name: node-lock-centered;
}

@keyframes node-lock-centered {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.map-node:hover {
  border-color: rgba(228, 107, 30, 0.55);
  color: var(--cream);
}

.node-a { left: 9%; top: 21%; }
.node-b { right: 9%; top: 21%; }
.node-c { left: 7%; top: 44%; }
.node-d { right: 7%; top: 44%; }
.node-e { left: 16%; bottom: 20%; }
.node-f { right: 16%; bottom: 20%; }
.node-g { left: 50%; top: 5%; transform: translateX(-50%); }
.node-h { left: 50%; bottom: 4%; transform: translateX(-50%); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: start;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 72ch;
}

.body-copy {
  display: grid;
  gap: 16px;
  padding-top: 32px;
}

.pillar-grid,
.product-card-grid,
.comparison-grid,
.systems-grid,
.status-grid,
.fit-grid,
.question-grid {
  display: grid;
  gap: 16px;
}

.pillar-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 6px;
}

.pillar-card,
.product-card,
.comparison-card,
.system-card,
.status-grid article,
.fit-card {
  padding: 24px;
}

.pillar-card span,
.system-card span {
  color: var(--rust);
}

.pillar-card h3,
.product-card h3,
.comparison-card h3,
.system-card h3,
.founder-card h2,
.fit-card h3 {
  margin-top: 12px;
}

.pillar-card p,
.product-card p,
.system-card p {
  margin-top: 12px;
}

.section-footnote {
  grid-column: 1 / -1;
  padding-left: 16px;
  border-left: 2px solid var(--rust);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.product-lead,
.review-list {
  padding: clamp(24px, 4vw, 34px);
}

.boundary-line {
  margin-top: 18px;
  padding: 16px;
  border-left: 3px solid var(--rust);
  background: rgba(166, 166, 166, 0.05);
  color: var(--cream);
  border-radius: var(--radius-sm);
}

.review-list ul,
.comparison-card ul,
.fit-card ul {
  margin-top: 18px;
  padding-left: 18px;
}

.review-list li,
.comparison-card li,
.fit-card li {
  margin-bottom: 10px;
}

.product-card-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
}

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

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}

.product-card a::after {
  content: "";
  width: 14px;
  height: 2px;
  background: currentColor;
  transition: width var(--speed-fast) var(--ease-press);
}

.product-card:hover a::after {
  width: 26px;
}

/* Product cards: engineered corner brackets plus an orange signal line that traces on hover. */
.product-card {
  position: relative;
  transition: transform var(--speed-fast) var(--ease-press), border-color var(--speed-fast) ease, box-shadow var(--speed-fast) ease;
}

.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  width: 100%;
  height: 2px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--rust), rgba(228, 107, 30, 0.1));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--speed-mid) var(--ease-press);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(228, 107, 30, 0.42);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}

.product-card:hover::before,
.product-card:focus-within::before {
  transform: scaleX(1);
}

.featured-product {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.featured-product::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(228, 107, 30, 0.55);
  border-right: 2px solid rgba(228, 107, 30, 0.55);
  border-radius: 0 4px 0 0;
  opacity: 0.7;
  transition: opacity var(--speed-fast) ease, transform var(--speed-fast) var(--ease-press);
}

.featured-product:hover::after {
  opacity: 1;
  transform: translate(2px, -2px);
}

.featured-product a {
  margin-top: auto;
}

.product-parent-line {
  margin-top: 10px;
  color: var(--rust);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-chip {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  color: var(--cream);
  letter-spacing: 0.1em;
}

.status-chip.live {
  background: rgba(147, 176, 127, 0.14);
  border-color: rgba(147, 176, 127, 0.4);
}

.status-chip.pilot {
  background: rgba(224, 161, 90, 0.14);
  border-color: rgba(224, 161, 90, 0.4);
}

.status-chip.reference {
  background: rgba(166, 166, 166, 0.1);
}

.status-chip.future {
  background: rgba(228, 107, 30, 0.14);
  border-color: rgba(228, 107, 30, 0.4);
}

.contrast-section,
.ecosystem-section,
.status-section {
  padding-top: 42px;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.comparison-card.with {
  border-color: rgba(147, 176, 127, 0.4);
}

.comparison-card.with h3 {
  color: #d5e6c9;
}

.comparison-card.with li::marker {
  color: var(--green);
}

.comparison-card.without {
  border-color: rgba(208, 131, 121, 0.35);
}

.comparison-card.without h3 {
  color: #f1c7c1;
}

.comparison-card.without li::marker {
  color: var(--red);
}

.systems-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.system-card-wide {
  grid-column: span 3;
}

.trust-section {
  padding: clamp(26px, 5vw, 44px);
}

.trust-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ecosystem-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding: 24px;
}

.ecosystem-flow span::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 10px;
  background: rgba(228, 107, 30, 0.5);
}

.ecosystem-flow span:last-child::after {
  display: none;
}

.status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.status-grid article {
  min-height: 150px;
}

.status-grid p {
  margin-top: 18px;
  color: var(--cream-soft);
  font-weight: 700;
}

.founder-card,
.question-card {
  padding: clamp(26px, 5vw, 48px);
}

.founder-card {
  max-width: 920px;
  background:
    linear-gradient(135deg, rgba(29, 31, 36, 0.96), rgba(19, 20, 22, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(228, 107, 30, 0.16), transparent 42%);
}

.founder-card p {
  margin-top: 18px;
  max-width: 72ch;
}

.founder-card .button {
  margin-top: 24px;
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.fit-yes {
  border-color: rgba(147, 176, 127, 0.4);
}

.fit-no {
  border-color: rgba(228, 107, 30, 0.36);
}

.question-card {
  text-align: left;
}

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

.question-grid p {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(166, 166, 166, 0.05);
  color: var(--cream-soft);
}

.audit-section {
  overflow: hidden;
}

.cta-watermark {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: min(46vw, 460px);
  height: auto;
  opacity: 0.05;
  pointer-events: none;
}

.cta-watermark .wm-top {
  fill: var(--rust);
}

.cta-watermark .wm-body {
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.4;
}

[data-section="cta"].is-active .cta-watermark {
  animation: watermark-resolve 1100ms var(--ease-press) both;
}

@keyframes watermark-resolve {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 0.05; transform: translateY(0); }
}

.audit-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: start;
}

.audit-copy {
  padding-top: 10px;
}

.audit-copy p {
  margin-top: 18px;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-direct a {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: rgba(166, 166, 166, 0.05);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.12rem;
  text-decoration: none;
  transition: border-color var(--speed-fast) ease;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
  border-color: rgba(228, 107, 30, 0.5);
}

/* The systems review form is the diagnostic entry. It gets one signal sweep when it arrives. */
.audit-form {
  position: relative;
  padding: 26px;
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.audit-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rust), transparent);
  transform: translateX(-100%);
}

[data-section="cta"].is-active .audit-form::before {
  animation: form-sweep 1200ms var(--ease-press) 300ms both;
}

@keyframes form-sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.audit-form label {
  display: grid;
  gap: 8px;
}

.audit-form label span {
  color: var(--cream-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.audit-form input,
.audit-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  color: var(--cream);
  background: rgba(14, 15, 17, 0.6);
  transition: border-color var(--speed-fast) ease, background-color var(--speed-fast) ease;
}

.audit-form input:focus,
.audit-form textarea:focus {
  outline: 2px solid rgba(228, 107, 30, 0.35);
  outline-offset: 2px;
  border-color: var(--amber);
  background: rgba(14, 15, 17, 0.85);
}

.audit-form textarea::placeholder,
.audit-form input::placeholder {
  color: rgba(166, 166, 166, 0.55);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.required-note,
.form-note,
.form-status {
  font-size: 0.92rem;
}

.required-note {
  color: var(--cream-soft);
}

.form-status[data-state="success"] {
  color: #b9d2aa;
}

.form-status[data-state="error"] {
  color: #f0b4ae;
}

.form-status[data-state="info"] {
  color: var(--muted);
}

.site-footer {
  padding: 18px 0 44px;
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-title {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-boundary {
  margin-top: 24px;
  color: var(--micro);
}

.policy-shell {
  width: min(820px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 60px;
}

.policy-card {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  max-width: none;
  margin-bottom: 20px;
  font-size: 3rem;
}

.policy-card h2 {
  max-width: none;
  margin-top: 26px;
  font-size: 2rem;
}

.policy-card ul {
  margin: 14px 0;
  padding-left: 20px;
}

.policy-card a {
  color: var(--amber);
}

.next-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(228, 107, 30, 0.1), transparent 44%),
    rgba(166, 166, 166, 0.04);
}

.next-steps span {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-steps ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.next-steps li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.next-steps li:last-child {
  margin-bottom: 0;
}

/* Landing redefinition components */

.hero-proof {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--rust);
  background: rgba(166, 166, 166, 0.05);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.4;
}

.hero-microproof {
  margin-top: 16px;
  color: var(--micro);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* Section 2 - hidden problem */
.problem-layout {
  margin-top: 24px;
}

.problem-card {
  padding: clamp(24px, 4vw, 36px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.problem-kicker {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.problem-chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  background: rgba(166, 166, 166, 0.05);
  color: var(--cream-soft);
  border-radius: 999px;
  padding: 9px 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: transform var(--speed-slow) var(--ease-lock), opacity var(--speed-slow) ease, border-color var(--speed-fast) ease;
}

/* Scattered until the section activates, then the chips settle into line. */
[data-section="problem"]:not(.is-active) .problem-chips span:nth-child(odd) {
  transform: translate(-7px, 5px) rotate(-2.2deg);
  opacity: 0.45;
}

[data-section="problem"]:not(.is-active) .problem-chips span:nth-child(even) {
  transform: translate(8px, -4px) rotate(1.8deg);
  opacity: 0.45;
}

[data-section="problem"]:not(.is-active) .problem-chips span:nth-child(3n) {
  transform: translate(3px, 9px) rotate(2.6deg);
}

[data-section="problem"].is-active .problem-chips span {
  transform: translate(0, 0) rotate(0);
  opacity: 1;
}

[data-section="problem"].is-active .problem-chips span:nth-child(1) { transition-delay: 60ms; }
[data-section="problem"].is-active .problem-chips span:nth-child(2) { transition-delay: 120ms; }
[data-section="problem"].is-active .problem-chips span:nth-child(3) { transition-delay: 180ms; }
[data-section="problem"].is-active .problem-chips span:nth-child(4) { transition-delay: 240ms; }
[data-section="problem"].is-active .problem-chips span:nth-child(5) { transition-delay: 300ms; }
[data-section="problem"].is-active .problem-chips span:nth-child(6) { transition-delay: 360ms; }
[data-section="problem"].is-active .problem-chips span:nth-child(7) { transition-delay: 420ms; }
[data-section="problem"].is-active .problem-chips span:nth-child(8) { transition-delay: 480ms; }

.problem-chips span:hover {
  border-color: rgba(228, 107, 30, 0.5);
}

.fomo-line {
  margin-top: 12px;
  padding: 16px;
  border-left: 3px solid var(--rust);
  background: rgba(166, 166, 166, 0.05);
  border-radius: var(--radius-sm);
  color: var(--cream);
  line-height: 1.6;
}

.fomo-line.emphasis {
  border-left-color: var(--amber);
  background: linear-gradient(135deg, rgba(228, 107, 30, 0.12), transparent 60%), rgba(166, 166, 166, 0.05);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

/* Section 3 - wedge and proof flow */
.wedge-line {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--amber);
  line-height: 1.3;
}

.review-list .pilot-feature {
  color: var(--cream-soft);
}

.review-list .pilot-feature::marker {
  color: var(--amber);
}

.proof-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  margin-top: 4px;
}

.proof-node {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.proof-step {
  display: inline-flex;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-node p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.proof-arrow {
  display: grid;
  place-items: center;
  color: var(--rust);
  font-size: 1.6rem;
  font-weight: 700;
}

/* Section 4 - offer ladder */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.offer-card {
  position: relative;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--speed-fast) var(--ease-press), border-color var(--speed-fast) ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--rust), rgba(228, 107, 30, 0.08));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--speed-mid) var(--ease-press);
}

.offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 107, 30, 0.4);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-tier {
  color: var(--rust);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-top: 10px;
}

.offer-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.62;
}

.offer-meta {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
}

.offer-meta dt {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 2px;
}

.offer-meta dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.offer-not {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--cream-soft);
  font-size: 0.88rem;
  font-style: italic;
}

/* Section 5 - pathway ladder. Steps press in sequence when the section activates. */
.pathway {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  counter-reset: none;
}

.pathway li {
  flex: 1 1 150px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  opacity: 0.55;
  transition: opacity var(--speed-mid) ease, border-color var(--speed-mid) ease, transform var(--speed-mid) var(--ease-press);
}

[data-section="method"].is-active .pathway li {
  opacity: 1;
}

[data-section="method"].is-active .pathway li:nth-child(1) { transition-delay: 80ms; }
[data-section="method"].is-active .pathway li:nth-child(2) { transition-delay: 240ms; }
[data-section="method"].is-active .pathway li:nth-child(3) { transition-delay: 400ms; }
[data-section="method"].is-active .pathway li:nth-child(4) { transition-delay: 560ms; }
[data-section="method"].is-active .pathway li:nth-child(5) { transition-delay: 720ms; }

.pathway li:hover {
  border-color: rgba(228, 107, 30, 0.45);
  transform: translateY(-2px);
  transition-delay: 0ms;
}

.pathway-num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  background: var(--rust);
  color: #181109;
  font-family: var(--font-mono);
  font-weight: 700;
}

.pathway-label {
  color: var(--cream);
  font-weight: 700;
  line-height: 1.2;
}

.method-pathway li {
  flex-basis: 190px;
}

.pathway-notes {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

/* Trust section stays still on purpose. Calm is the signal. */
.trust-section [data-reveal],
.trust-section.is-visible {
  transition-duration: 600ms;
}

/* Section 8 - commercial grid */
.commercial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.commercial-card {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.commercial-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .proof-flow {
    grid-template-columns: 1fr;
  }

  .proof-arrow {
    transform: rotate(90deg);
  }

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

@media (max-width: 720px) {
  .offer-grid,
  .commercial-grid {
    grid-template-columns: 1fr;
  }

  .pathway li {
    flex: 1 1 100%;
  }

  .problem-card,
  .proof-node,
  .offer-card,
  .commercial-card {
    padding: 20px;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 420ms ease, transform 420ms var(--ease-press);
}

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

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .product-section,
  .audit-layout,
  .pillar-grid,
  .product-card-grid,
  .comparison-grid,
  .systems-grid,
  .status-grid,
  .fit-grid,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .system-card-wide {
    grid-column: auto;
  }

  .system-map {
    min-height: 560px;
  }
}

/* Compact pressure map for small screens: same system, stacked instead of orbital. */
@media (max-width: 860px) {
  .site-header {
    border-radius: 28px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    align-items: center;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .brand-name {
    max-width: min(220px, 40vw);
  }

  .system-map {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
  }

  .system-map::before,
  .system-map::after {
    display: none;
  }

  .map-pulse {
    display: none;
  }

  .map-grid {
    mask-image: none;
    opacity: 0.6;
  }

  .map-node {
    position: relative;
    inset: auto !important;
    width: auto;
    min-height: 58px;
    transform: none;
  }

  .map-core {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: auto;
    min-height: 110px;
    transform: none;
  }

  [data-section="hero"].is-active .map-core {
    animation-name: card-lock;
  }

  .node-g[class],
  .node-h[class] {
    animation-name: node-lock;
  }

  @keyframes card-lock {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
}

@media (max-width: 720px) {
  .site-header,
  .section,
  .site-footer,
  .policy-shell {
    width: min(var(--max-width), calc(100vw - 32px));
  }

  .site-header {
    top: 10px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark {
    gap: 12px;
  }

  .brand-mark-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-mark-icon img,
  .brand-mark-icon svg {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    max-width: min(210px, 64vw);
  }

  .brand-mark-note {
    font-size: 0.58rem;
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2.1rem;
    line-height: 1.12;
  }

  .hero-copy,
  .pillar-card,
  .product-lead,
  .review-list,
  .product-card,
  .comparison-card,
  .system-card,
  .trust-section,
  .status-grid article,
  .founder-card,
  .fit-card,
  .question-card,
  .audit-form,
  .policy-card {
    padding: 20px;
  }

  .map-core {
    grid-column: 1 / -1;
  }

  .site-nav {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    justify-content: center;
    min-height: 36px;
    padding: 0 9px;
    text-align: center;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .proof-strip span,
  .ecosystem-flow span {
    width: auto;
  }

  .trust-principles span {
    width: 100%;
  }

  .ecosystem-flow span::after {
    display: none;
  }

  .question-grid p {
    min-height: auto;
  }

  .cta-watermark {
    right: -40px;
    bottom: -60px;
    width: 60vw;
  }
}

@media (max-width: 430px) {
  .site-header {
    border-radius: 14px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
  }

  .site-nav a {
    font-size: 0.74rem;
    min-height: 34px;
    padding: 0 5px;
  }

  h1 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.82rem;
    line-height: 1.12;
  }

  .brand-name {
    max-width: min(178px, 58vw);
  }

  .brand-mark-note {
    display: none;
  }

  .section {
    padding: 34px 0;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .hero-copy {
    padding: 18px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-proof {
    margin-top: 14px;
    padding: 12px 14px;
    font-size: 0.98rem;
  }

  .cta-row {
    gap: 8px;
    margin-top: 20px;
  }

  .button {
    min-height: 44px;
  }

  .hero-microproof {
    margin-top: 12px;
    font-size: 0.72rem;
  }

  .proof-strip {
    display: none;
  }

  .system-map {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}

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

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

  .button,
  .scroll-progress-bar,
  .skip-link,
  .product-card,
  .offer-card,
  .pathway li,
  .problem-chips span {
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .button:active,
  .product-card:hover,
  .offer-card:hover,
  .pathway li:hover {
    transform: none;
  }

  .p-mark .p-mark-tile,
  .p-mark .p-mark-top,
  .p-mark .p-mark-body,
  .p-mark .p-mark-ring,
  .map-pulse,
  .map-core,
  .map-node,
  [data-section="hero"].is-active .map-core,
  [data-section="hero"].is-active .map-node,
  [data-section].is-active .eyebrow::before,
  [data-section="cta"].is-active .audit-form::before,
  [data-section="cta"].is-active .cta-watermark {
    animation: none;
  }

  .map-pulse {
    display: none;
  }

  .pathway li,
  [data-section="problem"]:not(.is-active) .problem-chips span {
    opacity: 1;
    transform: none;
  }
}
