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

:root {
  --strive-red: #d93438;
  --strive-charcoal: #373435;
  --strive-ink: #222222;
  --strive-plum: #2e2236;
  --strive-cream: #f8f4ee;
  --strive-white: #ffffff;
  --strive-line: rgba(55, 52, 53, 0.14);
  --strive-soft-red: rgba(217, 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: "Manrope", "Avenir Next", "Segoe UI", 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 {
  color: var(--strive-white);
}

.hero h1 {
  max-width: none;
  text-shadow: 0 4px 24px rgba(18, 11, 20, 0.24), 0 0 44px rgba(18, 11, 20, 0.12);
}

.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 20s 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 24s 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 33s 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 29s linear infinite;
}

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

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

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

.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: var(--strive-red);
}

.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 3px 18px rgba(18, 11, 20, 0.18), 0 0 32px rgba(18, 11, 20, 0.1);
}

.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);
  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.65rem;
  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;
  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: 1.65rem;
  padding-bottom: 1.95rem;
  background: linear-gradient(180deg, rgba(248, 241, 236, 0.72), rgba(255, 252, 247, 0.98));
}

.workflow-fit-shell {
  position: relative;
  padding: 1.2rem;
  border: 1px solid rgba(55, 52, 53, 0.08);
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 76% 18%, rgba(217, 52, 56, 0.16), transparent 18%),
    linear-gradient(160deg, rgba(48, 35, 50, 0.985), rgba(70, 49, 61, 0.965) 54%, rgba(86, 66, 73, 0.94) 100%);
  box-shadow: 0 20px 36px rgba(34, 34, 34, 0.09);
  overflow: hidden;
}

.workflow-fit-scene {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-areas:
    "heading"
    "current"
    "entry"
    "outcomes";
}

.workflow-fit-route {
  display: none;
}

.workflow-fit-heading,
.workflow-fit-current,
.workflow-fit-entry,
.workflow-fit-outcomes {
  position: relative;
  z-index: 1;
}

.workflow-fit-heading {
  grid-area: heading;
  max-width: 39rem;
  display: grid;
  gap: 0.22rem;
}

.workflow-fit .section-kicker,
.workflow-fit h2,
.workflow-fit .section-intro,
.workflow-fit p,
.workflow-fit strong,
.workflow-fit .fit-zone-label,
.workflow-fit .lane-label {
  color: var(--strive-white);
}

.workflow-fit .section-intro {
  color: rgba(255, 255, 255, 0.86);
}

.workflow-fit-current {
  grid-area: current;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 18% 20%, rgba(217, 52, 56, 0.08), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.workflow-fit-current::after,
.workflow-fit-entry::after {
  content: "";
  position: absolute;
  left: 1.18rem;
  bottom: -0.95rem;
  width: 1px;
  height: 1rem;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 208, 210, 0.72) 0 7px,
    rgba(255, 208, 210, 0) 7px 14px
  );
  opacity: 0.8;
}

.fit-zone-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.8rem;
  padding: 0.2rem 0.05rem;
  font: 700 0.74rem/1 "Raleway", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
}

.fit-environment-field {
  position: relative;
  min-height: 11.5rem;
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 20% 24%, rgba(217, 52, 56, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}

.fit-surface {
  position: absolute;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 18% 20%, rgba(217, 52, 56, 0.1), transparent 34%);
}

.fit-surface-a {
  left: 6%;
  top: 16%;
  width: 34%;
  height: 2.7rem;
}

.fit-surface-b {
  left: 46%;
  top: 16%;
  width: 20%;
  height: 2.7rem;
}

.fit-surface-c {
  left: 7%;
  top: 48%;
  width: 16%;
  height: 2.9rem;
}

.fit-surface-d {
  left: 26%;
  top: 44%;
  width: 18%;
  height: 4.35rem;
}

.fit-surface-e {
  left: 47%;
  top: 48%;
  width: 18%;
  height: 2.9rem;
}

.fit-surface-f {
  left: 69%;
  top: 26%;
  width: 17%;
  height: 3.6rem;
}

.fit-frag-route,
.fit-frag-node {
  position: absolute;
}

.fit-frag-route {
  border-top: 1.5px dashed rgba(255, 212, 214, 0.52);
}

.fit-frag-route-a {
  left: 10%;
  top: 35%;
  width: 28%;
  transform: rotate(-8deg);
}

.fit-frag-route-b {
  left: 40%;
  top: 34%;
  width: 20%;
  transform: rotate(12deg);
}

.fit-frag-route-c {
  left: 22%;
  top: 69%;
  width: 32%;
  transform: rotate(-4deg);
}

.fit-frag-node {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: rgba(255, 220, 221, 0.9);
  box-shadow: 0 0 0 0.18rem rgba(217, 52, 56, 0.12);
}

.fit-frag-node-a {
  left: 16%;
  top: 31%;
}

.fit-frag-node-b {
  left: 39%;
  top: 62%;
}

.fit-frag-node-c {
  left: 61%;
  top: 29%;
}

.fit-frag-node-d {
  left: 52%;
  top: 67%;
}

.workflow-fit-current p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.workflow-fit-entry {
  grid-area: entry;
  display: grid;
  gap: 0.65rem;
  padding-left: 1.6rem;
}

.workflow-fit-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.1rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: rgba(255, 220, 221, 0.95);
  box-shadow:
    0 0 0 0.48rem rgba(217, 52, 56, 0.12),
    0 0 0 0.1rem rgba(255, 255, 255, 0.16);
}

.fit-entry-label {
  display: grid;
  gap: 0.35rem;
  width: min(100%, 14rem);
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(217, 52, 56, 0.28);
  background:
    radial-gradient(circle at 18% 20%, rgba(217, 52, 56, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.fit-entry-label strong,
.fit-lane strong {
  font: 700 1rem/1.2 "Raleway", Arial, sans-serif;
  color: var(--strive-white);
}

.fit-entry-label p,
.fit-lane p,
.fit-outcome-note {
  margin: 0;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.84);
}

.workflow-fit-outcomes {
  grid-area: outcomes;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.fit-outcome-frame {
  display: grid;
  gap: 0.72rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.fit-lane {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
}

.fit-lane-existing {
  border-color: rgba(217, 52, 56, 0.28);
}

.fit-lane-custom {
  border-style: dashed;
  opacity: 0.92;
}

.fit-outcome-note {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.76);
}

.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-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-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;
}

.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;
}

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 "Manrope", "Avenir Next", "Segoe UI", 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;
  }

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

  .workflow-fit-heading {
    gap: 0.34rem;
  }

  .workflow-fit-compare {
    gap: 0.85rem;
    padding: 0.85rem;
  }

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

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

  .fit-column-copy strong {
    font-size: 1.02rem;
    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;
  }

  .leader-card {
    grid-template-rows: auto 1fr;
  }

  .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-copy {
    padding: 0.85rem 0.82rem 0.95rem;
    min-height: 8.35rem;
  }

  .leader-link {
    min-height: 2.2rem;
    padding-top: 0.24rem;
  }

  .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;
  }

  .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 1.5rem;
    min-height: 22rem;
  }

  .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: 14.1rem;
    height: 14.1rem;
    padding: 1.75rem 0.82rem 1rem;
    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.9rem;
    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;
  }

  .workflow-fit-shell {
    padding: 1.45rem 1.45rem 1.55rem;
  }

  .workflow-fit-heading {
    max-width: 38rem;
    padding: 0;
  }

  .workflow-fit-scene {
    grid-template-columns: minmax(16rem, 0.96fr) minmax(11rem, 0.48fr) minmax(22rem, 1.06fr);
    grid-template-areas:
      "heading heading outcomes"
      "current entry outcomes";
    gap: 1.2rem 1.05rem;
    align-items: start;
    min-height: 22.5rem;
  }

  .workflow-fit-route {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

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

  .fit-route-guide {
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1.05;
  }

  .fit-route-main,
  .fit-route-branch {
    stroke: rgba(255, 208, 210, 0.58);
    stroke-width: 2;
    stroke-dasharray: 8 10;
    animation: ambient-flow-center 18s linear infinite;
  }

  .fit-route-branch {
    stroke-width: 1.9;
    opacity: 0.94;
  }

  .fit-route-nodes circle {
    fill: rgba(255, 224, 225, 0.92);
    filter: drop-shadow(0 0 0.35rem rgba(217, 52, 56, 0.16));
  }

  .fit-route-entry-halo {
    fill: rgba(217, 52, 56, 0.14);
  }

  .fit-route-entry-core {
    fill: rgba(255, 231, 232, 0.98);
  }

  .workflow-fit-current {
    min-height: 14.6rem;
    margin-top: 0.25rem;
  }

  .fit-environment-field {
    min-height: 12rem;
  }

  .workflow-fit-current::after,
  .workflow-fit-entry::after {
    display: none;
  }

  .workflow-fit-entry {
    align-self: center;
    justify-self: center;
    width: min(100%, 11.5rem);
    min-height: 9rem;
    padding-left: 0;
    padding-top: 2.75rem;
  }

  .workflow-fit-entry::before {
    left: 50%;
    top: 0.8rem;
    transform: translateX(-50%);
    width: 1.1rem;
    height: 1.1rem;
    box-shadow:
      0 0 0 0.58rem rgba(217, 52, 56, 0.12),
      0 0 0 0.1rem rgba(255, 255, 255, 0.18);
  }

  .fit-entry-label {
    width: 100%;
  }

  .workflow-fit-outcomes {
    min-height: 19rem;
    align-self: stretch;
  }

  .fit-outcome-frame {
    min-height: 13.8rem;
    align-content: start;
  }

  .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));
  }

  .leaders-route {
    display: none;
  }
}

/* Workflow-fit compare */
.workflow-fit-shell {
  padding: 1.45rem;
}

.workflow-fit-scene {
  display: grid;
  gap: 1.2rem;
}

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

.workflow-fit-compare {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.08rem;
  background:
    radial-gradient(circle at 78% 14%, rgba(217, 52, 56, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.fit-column {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.fit-stage-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.7rem;
  font: 700 0.74rem/1 "Raleway", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fit-stage-label {
  color: rgba(255, 255, 255, 0.88);
}

.fit-column-copy {
  display: grid;
  gap: 0.72rem;
  align-content: start;
  min-height: 100%;
}

.fit-column-copy strong {
  color: var(--strive-white);
  font: 700 1.1rem/1.18 "Raleway", Arial, sans-serif;
  max-width: 19ch;
  min-height: 2.45em;
}

.fit-column-strive .fit-column-copy strong {
  max-width: 23ch;
  font-size: 1.04rem;
}

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

.fit-compare-list li {
  position: relative;
  margin: 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.fit-compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(255, 221, 223, 0.86);
}

@media (min-width: 768px) {
  .workflow-fit-scene {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas: none !important;
    gap: 1.3rem;
  }

  .workflow-fit-heading,
  .workflow-fit-canvas {
    grid-area: auto !important;
  }

  .workflow-fit-shell {
    padding: 1.55rem 1.55rem 1.7rem;
  }

  .workflow-fit-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.15rem;
    min-height: 19.5rem;
    padding: 1.25rem 1.2rem 1.35rem;
  }

  .fit-column {
    grid-template-rows: 1fr;
    padding: 1.15rem;
  }
}

@media (max-width: 767px) {
  .workflow-fit-compare {
    padding: 0.95rem;
  }

  .fit-column {
    padding: 0.9rem;
  }
}
