@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@500;600;700;800&display=swap");

:root {
  --strive-red: #d83438;
  --strive-charcoal: #222222;
  --strive-ink: #222222;
  --strive-plum: #2e2236;
  --strive-cream: #f8f4ee;
  --strive-white: #ffffff;
  --strive-line: rgba(34, 34, 34, 0.14);
  --strive-soft-red: rgba(216, 52, 56, 0.12);
  --edge: 1rem;
  --content-max: 74rem;
  --radius: 0.85rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Raleway", Arial, sans-serif;
  color: var(--strive-ink);
  background:
    linear-gradient(180deg, #fffdfb 0%, #fcf8f3 52%, #f8f3ed 100%);
  line-height: 1.55;
}

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

.container {
  width: min(100% - (var(--edge) * 2), var(--content-max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  display: inline-flex;
  align-items: center;
  left: 0.5rem;
  top: -10rem;
  background: var(--strive-charcoal);
  color: var(--strive-white);
  min-height: 2.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 0.4rem;
  z-index: 999;
}

.skip-link:focus {
  top: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 250, 0.92);
  border-bottom: 1px solid rgba(55, 52, 53, 0.06);
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--strive-charcoal);
}

.brand-icon {
  width: 1.62rem;
}

.brand-text {
  font-size: 0.95rem;
}

.menu-toggle {
  appearance: none;
  border: 1px solid rgba(55, 52, 53, 0.25);
  color: var(--strive-charcoal);
  background: var(--strive-white);
  border-radius: 999px;
  font: 700 0.8rem/1 "Raleway", Arial, sans-serif;
  min-width: 4.2rem;
  min-height: 2.75rem;
  padding: 0.45rem 0.95rem;
  touch-action: manipulation;
}

.site-nav {
  display: none;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(55, 52, 53, 0.08);
  padding: 0.65rem 0;
  gap: 0.3rem;
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--strive-charcoal);
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 600;
  min-height: 2.75rem;
  padding: 0.45rem 0.15rem;
}

section {
  padding: 3rem 0;
}

h1,
h2,
h3 {
  font-family: "Raleway", Arial, sans-serif;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--strive-charcoal);
}

h1 {
  font-size: clamp(1.85rem, 7vw, 3.1rem);
  line-height: 1.08;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.4rem, 5.3vw, 2.1rem);
  line-height: 1.15;
  max-width: 20ch;
}

h3 {
  font-size: clamp(1.05rem, 4.3vw, 1.25rem);
  line-height: 1.2;
}

.hero h1,
.hero .hero-copy,
.hero .eyebrow,
.hero .hero-cta {
  color: var(--strive-white);
}

.hero .eyebrow {
  color: #D83438;
}

.hero h1 {
  max-width: none;
  text-shadow: 0 2px 10px rgba(34, 34, 34, 0.22), 0 10px 30px rgba(46, 34, 54, 0.32);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 2.8rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 52, 56, 0.13), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(217, 52, 56, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(36, 27, 43, 0.985) 0%, rgba(47, 34, 47, 0.97) 48%, rgba(56, 41, 55, 0.95) 76%, rgba(69, 52, 63, 0.985) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 24rem;
  height: 24rem;
  top: -7rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(217, 52, 56, 0.12), rgba(217, 52, 56, 0.03) 44%, transparent 70%);
  animation: hero-drift-a 7.2s ease-in-out infinite alternate;
}

.hero::after {
  width: 22rem;
  height: 22rem;
  left: -5rem;
  bottom: -7rem;
  background: radial-gradient(circle, rgba(217, 52, 56, 0.06), rgba(46, 34, 54, 0.06) 42%, transparent 72%);
  animation: hero-drift-b 8.2s ease-in-out infinite alternate;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  transform: none;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.98;
}

.hero-ambient-svg {
  width: 100%;
  height: 100%;
  transform: translate3d(
      calc(var(--ambient-shift-x, 0px) + var(--ambient-mobile-shift-x, 0px)),
      calc(var(--ambient-shift-y, 0px) + var(--ambient-mobile-shift-y, 0px)),
      0
    )
    scale(var(--ambient-mobile-scale, 1.005));
  transform-origin: center center;
}

.ambient-grid path {
  stroke: rgba(255, 255, 255, 0.085);
  stroke-width: 0.95;
  stroke-linecap: round;
}

.ambient-routes-left path,
.ambient-routes-center path,
.ambient-routes-right path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ambient-routes-left path {
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1.72;
  stroke-dasharray: 5 11;
  animation: ambient-flow-left 10.2s linear infinite;
}

.ambient-routes-left .route-optional {
  stroke-width: 1.6;
  opacity: 0.72;
}

.ambient-routes-center path {
  stroke: rgba(217, 52, 56, 0.34);
  stroke-width: 2.08;
  stroke-dasharray: 8 11;
  animation: ambient-flow-center 9.1s linear infinite;
}

.ambient-routes-center .route-optional {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1.7;
  stroke-dasharray: 5 11;
  animation-duration: 9.6s;
}

.ambient-routes-right path {
  stroke: rgba(217, 52, 56, 0.42);
  stroke-width: 2.02;
  stroke-dasharray: 9 11;
  animation: ambient-flow-right 9s linear infinite;
}

.ambient-routes-right .route-optional {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.65;
  stroke-dasharray: 6 12;
  animation-duration: 8.8s;
}

.ambient-worker-nodes .node-halo,
.ambient-intervention-nodes .node-halo {
  fill: rgba(255, 255, 255, 0.06);
}

.ambient-worker-nodes .node-core,
.ambient-intervention-nodes .node-core,
.ambient-intervention-nodes .node-ring {
  vector-effect: non-scaling-stroke;
}

.ambient-worker-nodes .node-halo {
  fill: rgba(255, 255, 255, 0.045);
  animation: ambient-glow 8s ease-in-out infinite;
}

.ambient-worker-nodes .node-core {
  fill: rgba(255, 255, 255, 0.64);
  opacity: 0.66;
  animation: ambient-core-glow 8s ease-in-out infinite;
}

.ambient-worker-nodes .node-optional {
  opacity: 0.72;
}

.ambient-intervention-nodes .node-halo {
  fill: rgba(217, 52, 56, 0.16);
  animation: intervention-glow 6.4s ease-in-out infinite;
}

.ambient-intervention-nodes .node-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.46);
  stroke-width: 1.1;
  animation: intervention-ring-glow 6.4s ease-in-out infinite;
}

.ambient-intervention-nodes .node-core {
  fill: rgba(255, 255, 255, 0.96);
  animation: intervention-core-glow 6.4s ease-in-out infinite;
}

.ambient-intervention-nodes g:nth-child(2) .node-halo,
.ambient-intervention-nodes g:nth-child(2) .node-ring,
.ambient-intervention-nodes g:nth-child(2) .node-core {
  animation-delay: 1.2s;
}

.ambient-intervention-nodes g:nth-child(3) .node-halo,
.ambient-intervention-nodes g:nth-child(3) .node-ring,
.ambient-intervention-nodes g:nth-child(3) .node-core,
.ambient-worker-nodes g:nth-child(2n) .node-halo,
.ambient-worker-nodes g:nth-child(2n) .node-core {
  animation-delay: 2s;
}

.hero-copy-block {
  max-width: 37rem;
  display: grid;
  gap: 0.95rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  font: 700 0.77rem/1.25 "Raleway", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D83438;
  text-shadow: 0 1px 8px rgba(34, 34, 34, 0.16), 0 8px 22px rgba(46, 34, 54, 0.22);
}

.section-kicker {
  margin: 0 0 0.6rem;
  font: 700 0.74rem/1.2 "Raleway", Arial, sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--strive-red);
}

.hero-copy,
.section-intro,
.helper,
p {
  font-size: clamp(1rem, 3.5vw, 1.05rem);
}

.hero-copy {
  margin: 0;
  max-width: 45ch;
  text-shadow: 0 1px 8px rgba(34, 34, 34, 0.16), 0 8px 22px rgba(46, 34, 54, 0.22);
}

.hero-copy-emphasis {
  display: inline;
  font-weight: 700;
  color: var(--strive-white);
  text-shadow: 0 1px 8px rgba(34, 34, 34, 0.16), 0 8px 22px rgba(46, 34, 54, 0.22);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: var(--strive-red);
  color: var(--strive-white);
  text-decoration: none;
  font: 700 0.95rem/1 "Raleway", Arial, sans-serif;
  border-radius: 999px;
  min-height: 2.8rem;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  touch-action: manipulation;
}

.hero .btn {
  background: var(--strive-white);
  color: var(--strive-charcoal);
  text-shadow: 0 0 10px rgba(46, 34, 54, 0.08);
  box-shadow: 0 14px 32px rgba(17, 12, 19, 0.18);
}

.hero-cta {
  width: fit-content;
  min-width: 10.25rem;
  padding-inline: 1.55rem;
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--strive-red);
  outline-offset: 2px;
}

.system,
.leadership {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 241, 232, 0.74));
}

.leaders {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.leadership .container {
  position: relative;
  overflow: visible;
}

.leadership {
  padding-top: 1.95rem;
}

.leaders-frame {
  position: relative;
  margin-top: 1.6rem;
  padding: 0 0.28rem 0;
  overflow: visible;
  z-index: 1;
}

.leaders-route {
  position: absolute;
  top: -0.1rem;
  left: 5.85rem;
  width: 68rem;
  max-width: none;
  height: 39.5rem;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.leaders-route path {
  fill: none;
  stroke: rgba(217, 52, 56, 0.8);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 8.5;
  animation: leadership-route-flow 16s linear infinite;
  filter: drop-shadow(0 0 10px rgba(217, 52, 56, 0.08));
}

.leader-card,
.form-card,
.legal-page {
  border: 1px solid rgba(55, 52, 53, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 26px rgba(34, 34, 34, 0.035);
}

.leader-card {
  padding: 0;
}

.leader-card p {
  margin: 0.55rem 0 0;
}

.section-intro {
  margin: 0.42rem 0 0;
  max-width: 38rem;
}

.leader-title {
  font: 700 0.88rem/1.2 "Raleway", Arial, sans-serif;
  color: var(--strive-red);
}

.system {
  padding-bottom: 1.55rem;
  background:
    radial-gradient(circle at 82% 22%, rgba(217, 52, 56, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 241, 232, 0.82));
}

.system-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem 1rem 0.28rem;
  border: 1px solid rgba(55, 52, 53, 0.1);
  border-radius: 1.05rem;
  position: relative;
  background:
    radial-gradient(circle at 18% 22%, rgba(217, 52, 56, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(244, 237, 229, 0.98));
  box-shadow: 0 22px 42px rgba(34, 34, 34, 0.05), 0 16px 24px rgba(34, 34, 34, 0.016);
  overflow: hidden;
}

.system-heading {
  max-width: 38rem;
  position: relative;
  z-index: 1;
}

.system-route {
  display: none;
}

.system-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.92rem;
  position: relative;
  z-index: 1;
}

.system-flow::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 1.06rem;
  width: 2px;
  background: repeating-linear-gradient(180deg, rgba(217, 52, 56, 0.28) 0 8px, rgba(217, 52, 56, 0) 8px 18px);
}

.system-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.92rem;
  align-items: start;
  padding: 0.92rem 1rem 0.95rem;
  border: 1px solid rgba(55, 52, 53, 0.09);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 241, 0.92));
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.025);
}

.system-stage::before {
  content: "";
  position: absolute;
  left: 1.04rem;
  top: 1.94rem;
  width: 1.45rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(217, 52, 56, 0.28) 0 8px, rgba(217, 52, 56, 0) 8px 16px);
}

.stage-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 52, 56, 0.14);
  background: rgba(255, 249, 246, 0.98);
  color: var(--strive-red);
  font: 700 0.72rem/1 "Raleway", Arial, sans-serif;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 0.38rem rgba(255, 255, 255, 0.96);
}

.system-stage-a {
  margin-right: 0;
}

.system-stage-b {
  margin-left: 0;
}

.system-stage-copy {
  display: grid;
  gap: 0.38rem;
}

.system-stage-copy h3 {
  font: 700 1rem/1.2 "Raleway", Arial, sans-serif;
  color: var(--strive-charcoal);
}

.system-stage-copy p {
  margin: 0;
  font-size: 0.95rem;
}

.lane-label {
  font: 700 0.72rem/1.2 "Raleway", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--strive-red);
}

.system-stage-tool,
.system-stage-context {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 239, 0.94));
}

.system-hitl {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 244, 238, 0.95));
}

.workflow-fit {
  padding-top: 2.35rem;
  padding-bottom: 1.95rem;
  background: linear-gradient(180deg, rgba(248, 241, 236, 0.76), rgba(255, 252, 247, 0.98));
}

.workflow-fit-shell {
  position: relative;
  padding: 1.45rem 1.5rem 1.35rem;
  border: 1px solid rgba(216, 52, 56, 0.14);
  border-radius: 1.15rem;
  background:
    linear-gradient(90deg, rgba(216, 52, 56, 0.12), rgba(216, 52, 56, 0.12)) top left / 100% 1px no-repeat,
    radial-gradient(circle at 82% 14%, rgba(216, 52, 56, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(249, 245, 240, 0.99), rgba(243, 236, 228, 0.97));
  box-shadow:
    0 18px 34px rgba(34, 34, 34, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.workflow-fit.workflow-fit-dark {
  padding-top: 4.65rem;
  padding-bottom: 4.2rem;
  background:
    radial-gradient(circle at 76% 18%, rgba(216, 52, 56, 0.1), transparent 18%),
    radial-gradient(circle at 18% 70%, rgba(216, 52, 56, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(63, 48, 70, 0.86) 0%, rgba(46, 34, 54, 0.97) 16%, rgba(52, 39, 60, 0.99) 58%, rgba(58, 44, 66, 0.97) 84%, rgba(76, 59, 83, 0.86) 100%);
}

.workflow-fit.workflow-fit-dark .workflow-fit-shell {
  position: relative;
  padding: 0.4rem 0 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.workflow-fit.workflow-fit-dark .workflow-fit-heading .section-kicker {
  color: rgba(255, 233, 228, 0.82);
}

.workflow-fit.workflow-fit-dark .workflow-fit-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #FFF9F4;
  text-shadow: 0 12px 30px rgba(17, 12, 19, 0.28);
}

.workflow-fit.workflow-fit-dark .workflow-fit-heading .section-intro {
  color: rgba(255, 244, 238, 0.84);
}

.workflow-fit-scene {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.workflow-fit-ambient {
  position: absolute;
  top: 0;
  bottom: -3.2rem;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
}

.workflow-fit-ambient-svg {
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.workflow-fit-ambient-grid line {
  stroke: rgba(255, 241, 235, 0.08);
  stroke-width: 1;
}

.workflow-fit-ambient-routes path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dashoffset: 0;
  animation: workflow-fit-market-dash 21s linear infinite;
}

.workflow-fit-ambient-route-a {
  stroke: rgba(255, 238, 231, 0.34);
  stroke-width: 2.4;
  stroke-dasharray: 9 12;
  animation-duration: 19s;
}

.workflow-fit-ambient-route-b {
  stroke: rgba(239, 159, 157, 0.22);
  stroke-width: 2.2;
  stroke-dasharray: 8 12;
  animation-duration: 22s;
}

.workflow-fit-ambient-route-c {
  stroke: rgba(255, 230, 224, 0.18);
  stroke-width: 2;
  stroke-dasharray: 7 13;
  animation-duration: 24s;
}

.workflow-fit-ambient-route-d {
  stroke: rgba(241, 183, 178, 0.16);
  stroke-width: 1.9;
  stroke-dasharray: 7 14;
  animation-duration: 23s;
}

.workflow-fit-ambient-route-e {
  stroke: rgba(255, 239, 232, 0.14);
  stroke-width: 1.8;
  stroke-dasharray: 6 15;
  animation-duration: 26s;
}

.workflow-fit-ambient-route-f {
  stroke: rgba(222, 129, 132, 0.12);
  stroke-width: 1.7;
  stroke-dasharray: 6 16;
  animation-duration: 28s;
}

.workflow-fit-ambient-route-alt {
  animation-direction: reverse;
}

.workflow-fit-heading {
  display: grid;
  grid-template-columns: minmax(22rem, 0.88fr) minmax(26rem, 1.12fr);
  gap: 0.4rem 2.35rem;
  align-items: center;
  max-width: none;
  margin: 0;
  text-align: left;
}

.workflow-fit-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0.12rem;
}

.workflow-fit-heading h2 {
  grid-column: 1;
  max-width: 14.5ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.03;
  color: var(--strive-ink);
}

.workflow-fit-title-line {
  white-space: nowrap;
}

.workflow-fit-heading .section-intro {
  grid-column: 2;
  width: calc(100% - 5.75rem);
  max-width: 32.9rem;
  margin: 0 0 0 5.2rem;
  padding-top: 0.38rem;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.62;
  color: rgba(34, 34, 34, 0.82);
}

.workflow-fit-compare {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.95rem;
  margin-top: 0.2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.workflow-fit-compare::before {
  content: none;
}

.workflow-fit-compare::after {
  content: none;
}

.fit-column {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
  padding: 1.12rem 1.08rem 1.04rem;
  border-radius: 1rem;
  border: 1px solid rgba(55, 52, 53, 0.08);
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.025);
}

.fit-column-typical {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 233, 0.82));
}

.fit-column-strive {
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 52, 56, 0.13), transparent 22%),
    linear-gradient(180deg, rgba(252, 244, 244, 0.98), rgba(248, 238, 234, 0.95));
  border-color: rgba(216, 52, 56, 0.22);
  box-shadow: 0 14px 28px rgba(216, 52, 56, 0.06);
}

.fit-column-copy {
  display: grid;
  gap: 0.68rem;
}

.fit-stage-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.7rem;
  color: var(--strive-red);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fit-column strong {
  display: block;
  margin: 0;
  min-height: 0;
  color: var(--strive-ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.28;
}

.fit-compare-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-compare-list li {
  position: relative;
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(34, 34, 34, 0.8);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
}

.fit-compare-list li::before,
.proof-callout-tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(217, 52, 56, 0.72);
}

.fit-supporting-note {
  max-width: 40rem;
  margin: 0.08rem auto 0;
  padding-top: 0.98rem;
  border-top: 1px solid rgba(55, 52, 53, 0.08);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2.2vw, 1.58rem);
  font-weight: 700;
  line-height: 1.28;
  text-wrap: balance;
  color: #D83438;
}

.workflow-fit.workflow-fit-dark .fit-column {
  min-height: 12.25rem;
  background: linear-gradient(180deg, rgba(88, 68, 97, 0.88), rgba(73, 56, 82, 0.9));
  border-color: rgba(255, 239, 232, 0.1);
  box-shadow:
    0 20px 36px rgba(17, 12, 19, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
}

.workflow-fit.workflow-fit-dark .fit-column-typical {
  background:
    linear-gradient(180deg, rgba(86, 66, 95, 0.84), rgba(74, 56, 84, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-color: rgba(255, 239, 232, 0.08);
}

.workflow-fit.workflow-fit-dark .fit-column-strive {
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 52, 56, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(108, 78, 118, 0.9), rgba(88, 64, 99, 0.9));
  border-color: rgba(255, 184, 181, 0.22);
  box-shadow:
    0 20px 38px rgba(17, 12, 19, 0.19),
    0 0 0 1px rgba(216, 52, 56, 0.04),
    inset 0 1px 0 rgba(255, 233, 228, 0.05);
}

.workflow-fit.workflow-fit-dark .fit-stage-label {
  color: #FF9A98;
}

.workflow-fit.workflow-fit-dark .fit-column strong {
  color: #FFF7F2;
}

.workflow-fit.workflow-fit-dark .fit-compare-list li {
  color: rgba(255, 241, 235, 0.82);
}

.workflow-fit.workflow-fit-dark .fit-compare-list li::before {
  background: #F08B8D;
}

.workflow-fit.workflow-fit-dark .fit-supporting-note {
  max-width: none;
  position: relative;
  padding-top: 1.32rem;
  margin-bottom: 0.72rem;
  border-top-color: rgba(255, 241, 235, 0.1);
  color: #f4d2d2;
  -webkit-text-fill-color: #f4d2d2;
  text-shadow:
    0 3px 14px rgba(15, 11, 20, 0.4),
    0 0 20px rgba(223, 107, 114, 0.14);
  overflow: hidden;
}

.workflow-fit.workflow-fit-dark .fit-supporting-note::after {
  content: attr(data-text);
  position: absolute;
  inset: 1.32rem 0 0;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 32%,
    rgba(255, 255, 255, 0.18) 40%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.18) 60%,
    rgba(255, 255, 255, 0) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 30% 150%;
  background-repeat: no-repeat;
  background-position: -34% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
}

.workflow-fit.workflow-fit-dark .fit-supporting-note.is-sheening::after {
  animation: workflow-fit-punchline-shine 1.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes workflow-fit-market-dash {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -56;
  }
}

@keyframes workflow-fit-punchline-shine {
  0% {
    background-position: -34% 50%;
    opacity: 0;
    transform: translateY(0);
  }

  14% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    background-position: 132% 50%;
    opacity: 0;
    transform: translateY(-4px);
  }
}

@media (max-width: 80rem) {
  .workflow-fit-heading {
    grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1.08fr);
    gap: 0.38rem 1.45rem;
  }

  .workflow-fit-heading .section-intro {
    width: calc(100% - 4.35rem);
    max-width: 30.5rem;
    margin-left: 3.5rem;
  }
}

@media (min-width: 48rem) and (max-width: 70rem) {
  .system {
    padding-bottom: 3.8rem;
  }

  .system-shell {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.25rem 1.15rem 1rem;
  }

  .system-heading {
    max-width: 40rem;
    padding-right: 0;
  }

  .system-route {
    left: 0.9rem;
    right: 0.9rem;
    top: 8.7rem;
    height: 17rem;
  }

  .system-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
    padding-top: 1.7rem;
  }

  .system-stage {
    min-height: 10.8rem;
    padding: 1.65rem 0.95rem 0.92rem;
  }

  .system-stage-copy h3,
  .system-stage-copy p {
    max-width: none;
  }

  .system-stage-copy h3 {
    font-size: 1rem;
  }

  .system-stage-copy p {
    font-size: 0.93rem;
  }

  .proof-callout-shell {
    grid-template-columns: minmax(13.5rem, 0.42fr) minmax(18rem, 0.92fr) minmax(15rem, 0.78fr);
    column-gap: 1.25rem;
    row-gap: 0.8rem;
    padding: 1.1rem 0 1rem;
  }

  .proof-callout-heading {
    grid-column: 1;
    grid-row: 1;
  }

  .proof-callout-body {
    grid-column: 2;
    grid-row: 1;
  }

  .proof-callout-tags {
    grid-column: 3;
    grid-row: 1;
    grid-template-columns: 1fr;
    justify-self: stretch;
    align-self: start;
    gap: 0.55rem;
    padding: 0.15rem 0 0 1rem;
    max-width: none;
  }
}

@media (min-width: 48rem) and (max-width: 54rem) {
  .workflow-fit {
    padding-top: 3.6rem;
    padding-bottom: 3.2rem;
  }

  .workflow-fit-heading {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .workflow-fit-heading .section-kicker,
  .workflow-fit-heading h2,
  .workflow-fit-heading .section-intro {
    grid-column: auto;
  }

  .workflow-fit-heading h2 {
    max-width: 12ch;
  }

  .workflow-fit-heading .section-intro {
    width: auto;
    max-width: 40rem;
    margin-left: 0;
    padding-top: 0;
  }

  .workflow-fit-compare {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
}

@media (min-width: 54.0625rem) and (max-width: 70rem) {
  .workflow-fit {
    padding-top: 3.9rem;
    padding-bottom: 3.45rem;
  }

  .workflow-fit-heading {
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
    gap: 0.5rem 1.45rem;
  }

  .workflow-fit-heading h2 {
    max-width: 12ch;
  }

  .workflow-fit-heading .section-intro {
    width: auto;
    max-width: 34rem;
    margin-left: 0;
    padding-top: 0.18rem;
  }
}

@media (max-width: 48rem) {

  .fit-supporting-note {
    max-width: none;
    padding-top: 0.88rem;
    font-size: 1rem;
  }
}

.leaders {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.92rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.leader-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 0;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 235, 0.92));
  border-color: rgba(55, 52, 53, 0.1);
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.03);
  overflow: hidden;
}

.leader-media {
  width: calc(100% + 2px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  margin: -1px -1px 0;
  background: linear-gradient(180deg, rgba(248, 245, 242, 0.98), rgba(237, 229, 221, 0.98));
  box-shadow: none;
  position: relative;
}

.leader-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: grayscale(1);
  transform: scale(1.08);
  transform-origin: center 18%;
}

.leader-media-focus-strong img {
  transform: translateY(37px) scale(1.34);
  transform-origin: center center;
  object-position: center 60%;
}

.leader-media-focus-soft img {
  transform: scale(1.74);
  transform-origin: center 34%;
  object-position: center 110%;
}

.leader-media-focus-charly img {
  transform: scale(1);
  transform-origin: center 14%;
  object-position: center 6%;
}

.leader-media-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.15), transparent 34%),
    radial-gradient(circle at 76% 82%, rgba(217, 52, 56, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(241, 236, 230, 0.98), rgba(223, 215, 207, 0.98));
  color: rgba(55, 52, 53, 0.76);
  font: 800 0.82rem/1 "Raleway", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leader-media-placeholder::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.2) 38%, transparent 68%);
  opacity: 0.6;
}

.leader-media-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(55, 52, 53, 0.04);
}

.leader-media-placeholder span {
  position: relative;
  z-index: 1;
}

.leader-copy {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.24rem;
  align-content: start;
  padding: 0.95rem 1rem 1rem;
  min-height: 9rem;
}

.leader-copy h3 {
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.08;
}

.leader-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.4rem;
  margin-top: auto;
  padding-top: 0.3rem;
  text-decoration: none;
  color: var(--strive-charcoal);
  font: 700 0.82rem/1 "Raleway", Arial, sans-serif;
}

.leader-link:hover {
  color: var(--strive-red);
}

.leader-title {
  margin-top: 0;
  min-height: 2.15rem;
}

.cta {
  padding-top: 2.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 239, 232, 0.98));
}

.cta .container {
  display: grid;
  gap: 1rem;
}

.cta-copy {
  max-width: 27rem;
  display: grid;
  gap: 0.28rem;
}

.intent-grid {
  display: grid;
  gap: 0.8rem;
}

.intent-card {
  appearance: none;
  width: 100%;
  text-align: left;
  display: grid;
  gap: 0.32rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(55, 52, 53, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  color: var(--strive-charcoal);
  box-shadow: 0 10px 20px rgba(34, 34, 34, 0.02);
}

.intent-card.is-active {
  border-color: rgba(217, 52, 56, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 238, 239, 0.92));
}

.intent-card[data-intent="workflow"].is-active {
  border-color: rgba(217, 52, 56, 0.24);
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.03);
}

.intent-card[data-intent="careers"] {
  background: rgba(255, 255, 255, 0.64);
}

.intent-card[data-intent="careers"].is-active {
  border-color: rgba(217, 52, 56, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 239, 234, 0.94));
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.03), 0 0 0 1px rgba(217, 52, 56, 0.06);
}

.intent-kicker {
  font: 700 0.7rem/1 "Raleway", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--strive-red);
}

.intent-card strong {
  font: 700 1rem/1.2 "Raleway", Arial, sans-serif;
}

.intent-card span:last-child {
  font-size: 0.92rem;
  line-height: 1.45;
}

.helper {
  max-width: 38rem;
}

.form-card {
  padding: 0.95rem;
  margin-top: 0.35rem;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(55, 52, 53, 0.08);
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.022);
}

.field-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.68rem;
}

.field-row[hidden],
.field-row.is-hidden {
  display: none !important;
}

label {
  font: 700 0.74rem/1 "Raleway", Arial, sans-serif;
  color: var(--strive-charcoal);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(55, 52, 53, 0.18);
  border-radius: 0.6rem;
  font: 500 1rem/1.4 "Raleway", Arial, sans-serif;
  min-height: 2.55rem;
  padding: 0.58rem 0.7rem;
  background: rgba(255, 255, 255, 0.92);
}

input::placeholder,
textarea::placeholder {
  color: rgba(55, 52, 53, 0.55);
}

textarea {
  resize: vertical;
  min-height: 5.8rem;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.65rem 0 0;
  font: 700 0.82rem/1.2 "Raleway", Arial, sans-serif;
}

.form-status.error {
  color: #8f1f24;
}

.form-status.success {
  color: #125f2e;
}

.site-footer {
  border-top: 1px solid rgba(55, 52, 53, 0.08);
  padding: 1.85rem 0 2rem;
  background: #f7f1e8;
}

.footer-grid {
  display: grid;
  gap: 0.9rem;
}

.site-footer p {
  margin: 0 0 0.32rem;
}

.site-footer a {
  color: var(--strive-charcoal);
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  text-decoration: none;
  font-size: 0.94rem;
  line-height: 1.2;
}

.legal-page {
  padding: 2.5rem 0 3rem;
  background:
    radial-gradient(circle at 84% 14%, rgba(217, 52, 56, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(245, 239, 232, 0.9));
}

.legal-shell {
  width: min(100%, 52rem);
  margin: 0 auto;
  padding: 1.35rem 1.1rem 1.5rem;
  border: 1px solid rgba(55, 52, 53, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(34, 34, 34, 0.04);
}

.legal-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 52, 53, 0.12);
  background: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  color: var(--strive-charcoal);
  font: 700 0.82rem/1 "Raleway", Arial, sans-serif;
}

.legal-meta {
  margin: 0.3rem 0 0;
  color: rgba(55, 52, 53, 0.72);
  font: 700 0.8rem/1.3 "Raleway", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-intro {
  max-width: 44rem;
  margin: 0.9rem 0 0;
}

.legal-section {
  padding-top: 1.15rem;
  margin-top: 1.15rem;
  border-top: 1px solid rgba(55, 52, 53, 0.08);
}

.legal-section h2 {
  margin-bottom: 0.45rem;
  max-width: none;
  font-size: clamp(1.08rem, 3.8vw, 1.28rem);
}

.legal-section p {
  margin: 0.55rem 0 0;
  max-width: 44rem;
}

.legal-list {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
}

.legal-list li + li {
  margin-top: 0.35rem;
}

.legal-note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(55, 52, 53, 0.08);
  color: rgba(55, 52, 53, 0.74);
  font-size: 0.95rem;
}


.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: 800 0.95rem/1 "Raleway", Arial, sans-serif;
}

.footer-icon {
  width: 1.35rem;
}

.footer-copy,
.footer-note {
  color: rgba(55, 52, 53, 0.8);
}

.footer-copy {
  font-size: 0.9rem;
}

.footer-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.35;
}

.footer-links {
  display: grid;
  gap: 0.12rem;
}

.footer-links a {
  width: fit-content;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--strive-red);
}

.footer-social-link {
  gap: 0.42rem;
  font-weight: 600;
}

.footer-social-icon {
  width: 0.98rem;
  height: 0.98rem;
  flex: 0 0 auto;
  color: var(--strive-red);
}

@keyframes hero-drift-a {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1.4rem, 1rem, 0);
  }
}

@keyframes hero-drift-b {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(1.2rem, -0.8rem, 0);
  }
}

@keyframes ambient-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -120;
  }
}

@keyframes ambient-flow-left {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -96;
  }
}

@keyframes ambient-flow-right {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -128;
  }
}

@keyframes ambient-flow-center {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -118;
  }
}

@keyframes fit-dot-flow {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ambient-glow {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.78;
  }
}

@keyframes ambient-core-glow {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.96;
  }
}

@keyframes intervention-glow {
  0%,
  100% {
    opacity: 0.48;
  }
  50% {
    opacity: 0.88;
  }
}

@keyframes intervention-ring-glow {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.88;
  }
}

@keyframes intervention-core-glow {
  0%,
  100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

@keyframes leadership-route-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -180;
  }
}

html.reduce-motion .hero::before,
html.reduce-motion .hero::after,
html.reduce-motion .ambient-routes-left path,
html.reduce-motion .ambient-routes-center path,
html.reduce-motion .ambient-routes-right path,
html.reduce-motion .ambient-worker-nodes .node-halo,
html.reduce-motion .ambient-worker-nodes .node-core,
html.reduce-motion .ambient-intervention-nodes .node-halo,
html.reduce-motion .ambient-intervention-nodes .node-ring,
html.reduce-motion .ambient-intervention-nodes .node-core,
html.reduce-motion .leaders-route path {
  animation: none;
}

html.reduce-motion .hero-ambient-svg {
  transform: none;
}

@media (max-width: 767px) {
  .hero {
    padding-top: 2.45rem;
    padding-bottom: 2.45rem;
  }

  .hero-shell {
    min-height: 22.25rem;
    align-items: start;
  }

  .hero-ambient {
    inset: -0.2rem -8% 0;
    opacity: 1;
  }

  .hero-ambient-svg {
    --ambient-mobile-shift-x: 110px;
    --ambient-mobile-shift-y: 16px;
    --ambient-mobile-scale: 1.38;
  }

  .hero-copy-block {
    gap: 0.82rem;
    max-width: 18.5rem;
    padding-top: 0.4rem;
  }

  .eyebrow {
    margin: 0;
  }

  .hero h1 {
    max-width: 10.2ch;
    line-height: 1.03;
  }

  .hero-copy {
    max-width: 28ch;
    line-height: 1.48;
  }

  .hero-cta {
    margin-top: 0.18rem;
  }

  .system {
    padding-top: 2.5rem;
    padding-bottom: 1.3rem;
  }

  .system-shell {
    gap: 1.15rem;
    padding: 1rem 0.9rem 1.05rem;
  }

  .system-heading {
    display: grid;
    gap: 0.4rem;
  }

  .system-flow {
    gap: 1rem;
    padding-top: 0.22rem;
  }

  .system-flow::before {
    left: 1.08rem;
    top: 1.55rem;
    bottom: 1.55rem;
    background: repeating-linear-gradient(180deg, rgba(217, 52, 56, 0.34) 0 9px, rgba(217, 52, 56, 0) 9px 17px);
  }

  .system-stage {
    gap: 0.95rem;
    padding: 1rem 0.92rem 1.05rem;
    border-radius: 1.05rem;
  }

  .system-stage::before {
    top: 2.02rem;
    left: 1.05rem;
    width: 1.55rem;
    background: repeating-linear-gradient(90deg, rgba(217, 52, 56, 0.34) 0 8px, rgba(217, 52, 56, 0) 8px 15px);
  }

  .system-stage-a {
    margin-right: 0.38rem;
  }

  .system-stage-b {
    margin-left: 0.38rem;
  }

  .system-stage-copy {
    gap: 0.34rem;
  }

  .workflow-fit {
    padding-top: 1.3rem;
    padding-bottom: 1.45rem;
  }

  .workflow-fit-shell {
    padding: 1.05rem 0.95rem 1rem;
  }

  .workflow-fit-scene {
    gap: 0.95rem;
  }

  .workflow-fit-heading {
    grid-template-columns: 1fr;
    gap: 0.34rem;
  }

  .workflow-fit-heading .section-kicker,
  .workflow-fit-heading h2,
  .workflow-fit-heading .section-intro {
    grid-column: auto;
  }

  .workflow-fit-heading h2 {
    max-width: 11.9ch;
    font-size: clamp(1.88rem, 8vw, 2.4rem);
    line-height: 1.05;
  }

  .workflow-fit-heading .section-intro {
    line-height: 1.52;
    max-width: 30ch;
    width: auto;
    margin-left: 0;
    padding-top: 0;
  }

  .workflow-fit-compare {
    grid-template-columns: 1fr;
    gap: 0.72rem;
    padding: 0;
  }

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

  .fit-column {
    gap: 0.78rem;
    padding: 0.95rem 0.92rem;
  }

  .fit-column-copy {
    gap: 0.64rem;
  }

  .fit-column-copy strong {
    font-size: 0.98rem;
    min-height: 0;
  }

  .fit-compare-list {
    gap: 0.56rem;
  }

  .fit-compare-list li {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .leadership {
    padding-top: 1.45rem;
  }

  .ambient-routes-left .route-optional,
  .ambient-routes-center .route-optional,
  .ambient-routes-right .route-optional,
  .ambient-worker-nodes .node-optional,
  .ambient-intervention-nodes .node-optional {
    display: none;
  }

  .ambient-routes-left path {
    stroke-width: 1.6;
  }

  .ambient-routes-center path {
    stroke-width: 1.95;
  }

  .ambient-routes-right path {
    stroke-width: 1.95;
  }

  .ambient-grid path:nth-child(1),
  .ambient-grid path:nth-child(2) {
    opacity: 0.7;
  }
 
  .leaders {
    gap: 0.72rem;
    align-items: start;
  }

  .leader-card {
    grid-template-rows: auto auto;
    min-height: 0;
    height: auto;
  }

  .leader-media {
    aspect-ratio: 4 / 5.2;
  }

  .leader-media img {
    transform: scale(1.04);
    transform-origin: center 14%;
  }

  .leader-media-focus-strong img {
    transform: translateY(37px) scale(1.34);
    transform-origin: center center;
    object-position: center 60%;
  }

  .leader-media-focus-soft img {
    transform: scale(1.16);
    transform-origin: center 22%;
    object-position: center 22%;
  }

  .leader-media-focus-charly img {
    transform: scale(1);
    transform-origin: center 14%;
    object-position: center 8%;
  }

  .leader-copy {
    padding: 0.85rem 0.82rem 0.95rem;
    min-height: 0;
    grid-template-rows: auto auto auto;
    align-content: start;
  }

  .leader-link {
    min-height: 2.2rem;
    margin-top: 0.45rem;
    padding-top: 0;
  }

  .cta {
    padding-top: 1.55rem;
  }

  .cta .container {
    gap: 0.85rem;
  }

  .cta-copy {
    gap: 0.4rem;
  }

  .intent-grid {
    gap: 0.68rem;
  }

  .intent-card {
    padding: 0.88rem 0.92rem;
  }

  .form-card {
    padding: 0.9rem;
    gap: 0.2rem;
  }

  .field-row {
    margin-bottom: 0.6rem;
  }

  textarea {
    min-height: 7.4rem;
  }
}

@media (min-width: 768px) {
  :root {
    --edge: 1.6rem;
  }

  .system {
    padding-bottom: 3.1rem;
  }

  .header-row {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.1rem;
    border-top: 0;
    padding: 0;
    grid-column: auto;
  }

  section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    min-height: 21.5rem;
    padding-top: 0.55rem;
  }

  .hero-ambient {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-copy-block {
    padding-top: 1rem;
  }

  .system-shell {
    grid-template-columns: minmax(15rem, 0.66fr) minmax(0, 1.34fr);
    align-items: start;
    gap: 1.2rem;
    padding: 1.35rem 1.35rem 0.95rem;
  }

  .system-heading {
    max-width: 21rem;
    padding-right: 0.35rem;
  }

  .system-route {
    display: block;
    position: absolute;
    left: 0.8rem;
    right: 1.1rem;
    top: 4.15rem;
    width: auto;
    height: 14.5rem;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
  }

  .system-route-guide,
  .system-route-main {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .system-route-guide {
    stroke: rgba(255, 255, 255, 0.22);
    stroke-width: 1.15;
  }

  .system-route-main {
    stroke: rgba(217, 52, 56, 0.28);
    stroke-width: 2.05;
    stroke-dasharray: 8 10;
    animation: ambient-flow-center 18s linear infinite;
  }

  .system-flow::before {
    display: none;
  }

  .system-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
    align-content: start;
    min-height: 12.2rem;
    padding: 1.75rem 0.82rem 0.85rem;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(55, 52, 53, 0.08);
    box-shadow: 0 10px 20px rgba(34, 34, 34, 0.018);
  }

  .system-stage::before {
    display: none;
  }

  .system-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.72rem;
    align-items: stretch;
    padding-top: 1.55rem;
    position: relative;
    z-index: 1;
  }

  .system-stage-a,
  .system-stage-b {
    margin: 0;
  }

  .stage-index {
    position: absolute;
    top: -1.05rem;
    left: 0.85rem;
    width: 2.2rem;
    height: 2.2rem;
    box-shadow: 0 0 0 0.46rem rgba(255, 255, 255, 0.98);
  }

  .system-stage-copy {
    gap: 0.46rem;
    align-content: start;
  }

  .system-stage-copy h3 {
    font-size: 0.98rem;
    max-width: 10ch;
  }

  .system-stage-copy p {
    font-size: 0.9rem;
    max-width: 14ch;
  }

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

  .cta .container {
    grid-template-columns: minmax(14rem, 0.56fr) minmax(0, 0.48fr) minmax(0, 1.04fr);
    align-items: start;
    gap: 1.35rem;
  }

  .intent-grid {
    align-self: start;
  }

  .form-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 0.95rem;
    margin-top: 0;
  }

  .field-row:has(textarea),
  .form-card .btn,
  .form-status {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
    align-items: start;
  }

  .legal-page {
    padding: 3.5rem 0 4rem;
  }

  .legal-shell {
    padding: 1.8rem 1.8rem 2rem;
  }
}

@media (max-width: 1180px) {
  .leaders-frame {
    padding: 0;
    overflow: hidden;
  }

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

  .leaders-route {
    display: none;
  }
}

@media (max-width: 767px) {
  .leaders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .leaders-route {
    display: none;
  }
}

@media (max-width: 48rem) {
  .brand-icon {
    width: 1.8rem;
  }

  .brand-text {
    font-size: 1rem;
  }
}


/* Core typography and site-wide styling */
body,
p,
li,
label,
input,
textarea {
  font-family: "Raleway", Arial, sans-serif;
}

body {
  background:
    radial-gradient(circle at top right, rgba(216, 52, 56, 0.06), transparent 26%),
    linear-gradient(180deg, #fffdfb 0%, #faf6f1 48%, #f8f4ee 100%);
}

.site-header {
  background: rgba(248, 244, 238, 0.92);
  border-bottom-color: rgba(34, 34, 34, 0.08);
}

.brand {
  gap: 0.75rem;
}

.brand-icon {
  width: 1.95rem;
}

.brand-text {
  font-size: 1.08rem;
  font-weight: 800;
}

.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 52, 56, 0.15), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(216, 52, 56, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(46, 34, 54, 0.995) 0%, rgba(46, 34, 54, 0.975) 48%, rgba(56, 43, 63, 0.96) 76%, rgba(65, 49, 72, 0.99) 100%);
}

.eyebrow {
  font: 800 0.92rem/1.25 "Raleway", Arial, sans-serif;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-copy {
  font: 500 clamp(1rem, 2vw, 1.15rem)/1.65 "Raleway", Arial, sans-serif;
  max-width: 38rem;
}


.leadership .section-intro,
.cta .section-intro {
  max-width: 42rem;
}

.leader-title {
  letter-spacing: 0.01em;
}

.intent-card strong {
  font-size: 1.08rem;
}

.intent-card span:last-child,
.helper,
.form-status,
input,
textarea {
  font-family: "Raleway", Arial, sans-serif;
}

input,
textarea {
  font-weight: 500;
}

.footer-note,
.footer-copy {
  font-weight: 500;
}

.proof-callout {
  display: block;
  padding-top: 1.74rem;
  padding-bottom: 1.98rem;
  box-shadow: inset 0 -10px 18px rgba(34, 34, 34, 0.04);
}

.proof-callout-shell {
  display: grid;
  grid-template-columns: minmax(15rem, 0.43fr) minmax(19rem, 0.82fr) minmax(16rem, 0.7fr);
  align-items: start;
  column-gap: 1rem;
  width: 100%;
  padding: 1.08rem 0 0.96rem;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.proof-callout-heading {
  display: grid;
  gap: 0.18rem;
}

.proof-callout-title {
  margin: 0;
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(1.95rem, 3.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.03;
  color: var(--strive-ink);
}

.proof-callout-body {
  display: grid;
  gap: 0.48rem;
}

.proof-callout-copy,
.proof-callout-support {
  margin: 0;
  max-width: 48ch;
  font-family: "Raleway", Arial, sans-serif;
  line-height: 1.52;
}

.proof-callout-copy {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(34, 34, 34, 0.84);
}

.proof-callout-support {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(34, 34, 34, 0.84);
}

.proof-callout-tags {
  display: grid;
  gap: 0.46rem;
  margin: 0;
  padding: 0.1rem 0 0 1rem;
  align-content: start;
  list-style: disc;
  max-width: 36ch;
}

.proof-callout-tags li {
  color: rgba(34, 34, 34, 0.74);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.proof-callout-tags li::before {
  display: none;
}

.proof-callout-tags li::marker {
  color: rgba(217, 52, 56, 0.7);
}

@media (max-width: 48rem) {
  .workflow-fit-shell {
    padding: 1.05rem 0.95rem 1rem;
  }

  .workflow-fit-ambient {
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0.54;
  }

  .workflow-fit-heading {
    grid-template-columns: 1fr;
    gap: 0.34rem;
  }

  .workflow-fit-heading .section-kicker,
  .workflow-fit-heading h2,
  .workflow-fit-heading .section-intro {
    grid-column: auto;
  }

  .workflow-fit-heading h2 {
    max-width: none;
  }

  .workflow-fit-title-line {
    white-space: normal;
  }

  .workflow-fit-heading .section-intro {
    width: auto;
    max-width: none;
    margin-left: 0;
    padding-top: 0;
  }

  .workflow-fit-compare {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

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

  .fit-column {
    padding: 0.95rem 0.92rem;
  }

  .fit-column strong {
    font-size: 0.98rem;
  }

  .fit-compare-list li {
    font-size: 0.92rem;
  }

  .fit-supporting-note {
    padding-top: 0.88rem;
    font-size: 1rem;
  }

  .proof-callout {
    padding-top: 0.84rem;
    padding-bottom: 1.08rem;
  }

  .proof-callout-shell {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    width: 100%;
    padding: 1.08rem 0 1.14rem;
  }

  .proof-callout-heading,
  .proof-callout-body,
  .proof-callout-tags {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-callout-title {
    font-size: clamp(1.85rem, 7.6vw, 2.25rem);
    line-height: 1.05;
  }

  .proof-callout-copy,
  .proof-callout-support {
    max-width: none;
  }

  .proof-callout-tags {
    padding-left: 1rem;
  }

  .proof-callout-tags li {
    font-size: 0.9rem;
  }
}

/* Build Card 25: Workflow Fit final regression lock */
.workflow-fit > .container .fit-supporting-note {
  max-width: none;
  margin: 0.08rem auto 0;
  padding-top: 0.98rem;
  border-top: 1px solid rgba(55, 52, 53, 0.08);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 1.76vw, 1.26rem);
  font-weight: 700;
  line-height: 1.28;
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: 0 4px 16px rgba(17, 12, 19, 0.14), 0 14px 34px rgba(17, 12, 19, 0.12);
}

.workflow-fit.workflow-fit-dark > .container .fit-supporting-note {
  padding-top: 1.32rem;
  border-top-color: rgba(255, 241, 235, 0.1);
  background-image: linear-gradient(
    110deg,
    #ee8f93 0%,
    #e67075 34%,
    #ffe5df 48%,
    #e67075 62%,
    #ee8f93 100%
  );
  background-size: 220% auto;
  background-position: 0% 50%;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 4px 18px rgba(17, 12, 19, 0.2), 0 16px 38px rgba(17, 12, 19, 0.18);
}

@media (min-width: 48.0625rem) {
  .workflow-fit > .container .fit-supporting-note {
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

@media (max-width: 48rem) {
  .workflow-fit > .container .fit-supporting-note {
    white-space: normal;
    text-wrap: balance;
    font-size: 1rem;
  }
}

/* Responsive cleanup: widen mobile hero and add a true tablet band */
@media (max-width: 767px) {
  .hero {
    overflow: hidden;
  }

  .hero-shell {
    min-height: 23rem;
  }

  .hero-ambient {
    inset: -0.25rem -14% 0;
    width: auto;
    max-width: none;
    overflow: hidden;
  }

  .hero-ambient-svg {
    width: 100%;
    min-width: 100%;
    --ambient-mobile-shift-x: 118px;
    --ambient-mobile-shift-y: 14px;
    --ambient-mobile-scale: 1.48;
  }

  .ambient-intervention-nodes {
    opacity: 0.72;
  }

  .hero-copy-block {
    max-width: min(22rem, calc(100vw - (var(--edge) * 2)));
    gap: 0.9rem;
    padding-top: 0.5rem;
  }

  .hero h1 {
    max-width: 13.1ch;
    font-size: clamp(2.1rem, 9.4vw, 3rem);
    line-height: 1.03;
  }

  .hero-copy {
    max-width: 31.5ch;
    font-size: 1.03rem;
    line-height: 1.5;
  }

  .system-shell {
    gap: 0.78rem;
    padding: 0.88rem 0.78rem 0.9rem;
  }

  .system-heading h2 {
    max-width: none;
    font-size: clamp(1.72rem, 6.6vw, 2.08rem);
    line-height: 1.08;
  }

  .system-heading .section-intro {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .system-flow {
    grid-template-columns: 1fr;
    gap: 0.46rem;
    padding-top: 0.04rem;
  }

  .system-flow::before {
    display: none;
  }

  .system-stage {
    grid-column: auto;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.62rem;
    min-height: 0;
    padding: 0.72rem 0.78rem 0.74rem;
  }

  .system-stage::before {
    display: none;
  }

  .system-stage-a,
  .system-stage-b {
    margin: 0;
  }

  .stage-index {
    position: relative;
    top: auto;
    left: auto;
    width: 1.7rem;
    height: 1.7rem;
    box-shadow: none;
    font-size: 0.62rem;
  }

  .system-stage-copy h3,
  .system-stage-copy p {
    max-width: none;
  }

  .system-stage-copy h3 {
    font-size: 0.94rem;
    line-height: 1.16;
  }

  .system-stage-copy p {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .workflow-fit-heading h2 {
    max-width: 12.4ch;
    font-size: clamp(2.35rem, 10.2vw, 3rem);
    line-height: 1.04;
  }

  .workflow-fit-heading .section-intro {
    max-width: 32ch;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-links {
    display: grid;
    gap: 0.16rem;
    align-content: start;
    justify-items: start;
  }

  .footer-links a {
    min-height: 1.9rem;
  }

  .footer-brand {
    font-size: 0.92rem;
  }

  .footer-copy {
    margin-bottom: 0.15rem;
    font-size: 0.88rem;
  }

  .footer-note {
    margin-top: 0.45rem;
    text-align: left;
  }
}

@media (max-width: 932px) and (max-height: 520px) and (orientation: landscape) {
  :root {
    --edge: 0.7rem;
  }

  .container {
    width: min(
      calc(100% - (1.4rem + env(safe-area-inset-left) + env(safe-area-inset-right))),
      var(--content-max)
    );
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .site-header {
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
  }

  .header-row {
    min-height: 3.6rem;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .menu-toggle {
    min-height: 2.55rem;
    padding-inline: 1.05rem;
  }

  .hero {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-shell {
    min-height: 15.2rem;
    align-items: start;
  }

  .hero-ambient {
    inset: -0.2rem -8% 0;
  }

  .hero-ambient-svg {
    --ambient-mobile-shift-x: 138px;
    --ambient-mobile-shift-y: -4px;
    --ambient-mobile-scale: 1.34;
  }

  .hero-copy-block {
    max-width: min(29rem, calc(100vw - (var(--edge) * 2)));
    gap: 0.52rem;
    padding-top: 0.1rem;
  }

  .eyebrow {
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
  }

  .hero h1 {
    max-width: 15.2ch;
    font-size: clamp(1.95rem, 5.6vw, 2.7rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 39ch;
    font-size: 0.95rem;
    line-height: 1.36;
  }

  .hero-cta {
    margin-top: 0.05rem;
  }

  .workflow-fit-heading h2 {
    max-width: 11ch;
  }

  .workflow-fit-title-line {
    white-space: nowrap;
  }

  .proof-callout {
    padding-top: 0.9rem;
    padding-bottom: 1rem;
  }

  .proof-callout-shell {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    padding: 0.9rem 0 0.95rem;
  }

  .proof-callout-heading,
  .proof-callout-body,
  .proof-callout-tags {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-callout-body {
    gap: 0.38rem;
  }

  .proof-callout-copy,
  .proof-callout-support,
  .proof-callout-tags {
    max-width: none;
  }

  .proof-callout-tags {
    padding: 0.08rem 0 0 1rem;
  }

  .proof-callout-tags li {
    font-size: 0.92rem;
    line-height: 1.42;
  }
}

html {
  background: #f8f4ee;
}

body {
  background:
    linear-gradient(180deg, #f8f4ee 0, #f8f4ee max(env(safe-area-inset-top), 0px)),
    radial-gradient(circle at top right, rgba(216, 52, 56, 0.06), transparent 26%),
    linear-gradient(180deg, #fffdfb 0%, #faf6f1 48%, #f8f4ee 100%);
}

.site-header {
  padding-top: env(safe-area-inset-top);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.98), rgba(248, 244, 238, 0.98)),
    rgba(248, 244, 238, 0.92);
  background-clip: padding-box;
}

@media (min-width: 768px) and (max-width: 979px) {
  :root {
    --edge: 1.35rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-shell {
    min-height: 24rem;
    padding-top: 0.35rem;
  }

  .hero-copy-block {
    max-width: 34rem;
    padding-top: 0.45rem;
  }

  .hero h1 {
    max-width: 11.8ch;
    font-size: clamp(3.2rem, 7vw, 4.35rem);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 34ch;
  }

  .system {
    padding-bottom: 2.6rem;
  }

  .system-shell {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 1.25rem 1.15rem 1.05rem;
  }

  .system-heading {
    max-width: 38rem;
    padding-right: 0;
  }

  .system-heading h2 {
    max-width: 14ch;
  }

  .system-route {
    display: none;
  }

  .system-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
    padding-top: 0.2rem;
  }

  .system-flow::before {
    display: none;
  }

  .system-stage {
    min-height: 0;
    height: auto;
    gap: 0.7rem;
    padding: 1.5rem 1rem 1rem;
  }

  .system-stage:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.48rem);
    justify-self: center;
  }

  .system-stage-copy h3,
  .system-stage-copy p {
    max-width: none;
  }

  .system-stage-copy h3 {
    font-size: 1.02rem;
  }

  .system-stage-copy p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .workflow-fit-shell {
    padding: 1.2rem 1.15rem 1.08rem;
  }

  .workflow-fit-heading {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .workflow-fit-heading .section-kicker,
  .workflow-fit-heading h2,
  .workflow-fit-heading .section-intro {
    grid-column: auto;
  }

  .workflow-fit-heading h2 {
    max-width: 12.4ch;
  }

  .workflow-fit-heading .section-intro {
    width: auto;
    max-width: 40rem;
    margin-left: 0;
    padding-top: 0;
  }

  .workflow-fit-compare {
    gap: 0.82rem;
  }

  .fit-column {
    padding: 1rem 0.96rem;
  }

  .proof-callout-shell {
    grid-template-columns: 1fr;
    gap: 0.72rem;
    padding: 1rem 0 0.95rem;
  }

  .proof-callout-heading {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-callout-body {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-callout-copy,
  .proof-callout-support {
    max-width: 44ch;
  }

  .proof-callout-tags {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    align-self: start;
    gap: 0.55rem;
    padding: 0.12rem 0 0 1rem;
    max-width: 44ch;
  }
}

@media (max-width: 932px) and (max-height: 520px) and (orientation: landscape) {
  :root {
    --edge: 0.7rem;
  }

  .site-header,
  main > section,
  .site-footer {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .site-header,
  .hero,
  .workflow-fit.workflow-fit-dark,
  .system,
  .proof-callout,
  .leadership,
  .cta,
  .site-footer {
    clip-path: inset(0 -100vmax);
  }

  .site-header {
    box-shadow: 0 0 0 100vmax rgba(248, 244, 238, 0.98);
  }

  .hero,
  .workflow-fit.workflow-fit-dark {
    box-shadow: 0 0 0 100vmax rgba(46, 34, 54, 0.98);
  }

  .system,
  .proof-callout,
  .leadership,
  .cta,
  .site-footer {
    box-shadow: 0 0 0 100vmax #f7f1e8;
  }

  .header-row {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    min-height: 3.45rem;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 2.45rem;
    padding-inline: 1rem;
    justify-self: end;
    width: auto;
  }

  .site-nav,
  .site-nav.is-open {
    display: none;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .hero-shell {
    min-height: 15.2rem;
    padding-top: 0;
  }

  .hero-ambient {
    inset: -0.15rem -8% 0;
    width: auto;
  }

  .hero-ambient-svg {
    --ambient-mobile-shift-x: 138px;
    --ambient-mobile-shift-y: -4px;
    --ambient-mobile-scale: 1.34;
  }

  .hero-copy-block {
    max-width: min(29rem, calc(100vw - (var(--edge) * 2)));
    gap: 0.5rem;
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 0.28rem;
    font-size: 0.8rem;
  }

  .hero h1 {
    max-width: 15.2ch;
    font-size: clamp(1.95rem, 5.6vw, 2.7rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 39ch;
    font-size: 0.95rem;
    line-height: 1.36;
  }

  .hero-cta {
    margin-top: 0.05rem;
  }
}
