:root {
  --paper: #f6f3ee;
  --paper-deep: #ece7df;
  --ink: #303033;
  --brand-graphite: #464547;
  --brand-dark: #202124;
  --muted: #686668;
  --soft: #fffaf3;
  --line: rgba(70, 69, 71, 0.16);
  --line-strong: rgba(70, 69, 71, 0.28);
  --teal: #2e6f72;
  --teal-soft: #a8cbca;
  --accent: #f37021;
  --accent-dark: #cc5513;
  --accent-soft: #fff0e7;
  --heading: "Sofia Sans", system-ui, sans-serif;
  --body: "Fira Sans", system-ui, sans-serif;
  --max: 1180px;
  --gutter: 24px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(70, 69, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 69, 71, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(70, 69, 71, 0.08), transparent 38%),
    linear-gradient(320deg, rgba(243, 112, 33, 0.09), transparent 42%);
}

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

img {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  color: #fffaf0;
  background: linear-gradient(180deg, rgba(32, 33, 36, 0.82), rgba(32, 33, 36, 0.2));
  backdrop-filter: blur(8px);
}

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

.brand-logo {
  width: 184px;
  height: auto;
  display: block;
}

.brand-caption {
  color: rgba(255, 250, 240, 0.76);
  font-size: 12px;
  line-height: 1.1;
  max-width: 150px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf0;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(32, 33, 36, 0.86) 0%, rgba(32, 33, 36, 0.55) 28%, rgba(32, 33, 36, 0.1) 62%),
    linear-gradient(180deg, rgba(32, 33, 36, 0.48) 0%, rgba(32, 33, 36, 0.06) 38%, rgba(32, 33, 36, 0.64) 100%);
}

.hero-content {
  --hero-enter-x: calc((min(100vw, var(--max)) - min(720px, calc(100vw - 48px))) / -3.2);
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 94px;
  transform: translateX(var(--hero-enter-x));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

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

h1,
h2,
h3 {
  font-family: var(--heading);
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: 76px;
  font-weight: 900;
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 24px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

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

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

.button-primary {
  color: var(--brand-dark);
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-ghost {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.46);
  background: rgba(255, 250, 240, 0.06);
}

.button-ghost:hover {
  border-color: rgba(255, 250, 240, 0.78);
  background: rgba(255, 250, 240, 0.12);
}

.hero-quota {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 40px;
  width: 292px;
  display: grid;
  gap: 8px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 250, 240, 0.34);
  background: rgba(32, 33, 36, 0.56);
  backdrop-filter: blur(8px);
  min-width: 0;
}

.hero-quota strong {
  color: var(--accent);
  font-family: var(--heading);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.82;
}

.hero-quota span {
  color: rgba(255, 250, 240, 0.86);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-quota p {
  margin: 0;
  max-width: 100%;
  min-width: 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hero-enter {
  --hero-enter-x: 0px;
  animation: heroRise 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-enter-late {
  animation-delay: 180ms;
}

.hero-content.hero-enter {
  --hero-enter-x: calc((min(100vw, var(--max)) - min(720px, calc(100vw - 48px))) / -3.2);
}

[data-reveal] {
  opacity: 0;
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="up"] {
  transform: translateY(26px);
}

[data-reveal="soft"] {
  transform: translateY(14px);
}

[data-reveal="scale"] {
  transform: translateY(18px) scale(0.97);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.symptom-grid [data-reveal]:nth-child(2),
.vector-list [data-reveal]:nth-child(2),
.precision-grid [data-reveal]:nth-child(2),
.steps [data-reveal]:nth-child(2),
.condition-list [data-reveal]:nth-child(2),
.deliverables [data-reveal]:nth-child(2) {
  --reveal-delay: 80ms;
}

.symptom-grid [data-reveal]:nth-child(3),
.vector-list [data-reveal]:nth-child(3),
.precision-grid [data-reveal]:nth-child(3),
.steps [data-reveal]:nth-child(3),
.deliverables [data-reveal]:nth-child(3) {
  --reveal-delay: 150ms;
}

.symptom-grid [data-reveal]:nth-child(4),
.vector-list [data-reveal]:nth-child(4),
.precision-grid [data-reveal]:nth-child(4),
.deliverables [data-reveal]:nth-child(4) {
  --reveal-delay: 220ms;
}

.deliverables [data-reveal]:nth-child(5) {
  --reveal-delay: 290ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translate(var(--hero-enter-x), 22px);
  }

  to {
    opacity: 1;
    transform: translate(var(--hero-enter-x), 0);
  }
}

.section {
  width: min(var(--max), calc(100% - 32px));
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  margin: 0 auto;
  background: rgba(248, 243, 232, 0.9);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.symptoms,
.precision,
.process {
  background: rgba(248, 243, 232, 0.92);
}

.model,
.result,
.conditions {
  background: rgba(240, 235, 228, 0.94);
}

.section-rail {
  min-height: 100%;
  padding: 34px 14px;
  border-right: 1px solid var(--line);
}

.section-rail span {
  display: block;
  color: var(--accent);
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.section-rail b {
  position: sticky;
  top: 134px;
  display: inline-block;
  width: max-content;
  margin-top: 64px;
  color: var(--brand-graphite);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
}

.section-inner {
  padding: 78px 70px;
}

.section-heading {
  display: block;
  max-width: 760px;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading.wide {
  max-width: 760px;
  display: block;
}

.section-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.symptom-card,
.precision-grid article,
.steps article,
.condition-list article {
  background: rgba(255, 250, 240, 0.62);
}

.symptom-card {
  min-height: 340px;
  display: grid;
  grid-template-rows: 148px auto 1fr;
  align-content: start;
  padding: 28px 22px 28px;
}

.card-visual {
  width: 148px;
  height: 148px;
  display: block;
  justify-self: center;
  margin: 0 auto 16px;
  object-fit: contain;
  object-position: center;
  transform: translateY(var(--icon-y, 0)) scale(var(--icon-scale, 1));
  transform-origin: center;
}

.card-visual--initiative,
.card-visual--conflict {
  --icon-scale: 1.08;
}

.card-visual--growth {
  --icon-scale: 0.92;
}

.card-visual--organization {
  --icon-scale: 1.02;
}

.symptom-card h3,
.precision-grid h3,
.vector-list h3,
.steps h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.precision-grid h3,
.vector-list h3 {
  min-height: 54px;
}

.vector-list h3 {
  font-size: 22px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.symptom-card p,
.precision-grid p,
.vector-list p,
.steps p,
.condition-list p,
.deliverables p {
  margin-bottom: 0;
  color: var(--muted);
}

.cause-note {
  max-width: 780px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding: 22px 26px;
  border: 1px solid rgba(243, 112, 33, 0.28);
  background: rgba(243, 112, 33, 0.08);
}

.cause-note strong {
  color: var(--accent);
  font-family: var(--heading);
  font-size: 62px;
  font-weight: 900;
  line-height: 0.85;
}

.cause-note p {
  margin-bottom: 0;
  font-size: 18px;
}

.model-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.model-copy {
  max-width: 650px;
}

.model-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(70, 69, 71, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 69, 71, 0.08) 1px, transparent 1px),
    rgba(255, 250, 240, 0.48);
  background-size: 34px 34px;
}

.model-visual img {
  width: min(340px, 82%);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.vector-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.vector-title {
  grid-column: 1 / -1;
  margin: -20px 0 0;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.vector-list article {
  padding: 26px 22px;
  background: rgba(255, 250, 240, 0.58);
}

.vector-list span,
.deliverables span,
.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--heading);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

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

.precision-grid article {
  min-height: 270px;
  padding: 30px 24px;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.95fr);
  gap: 70px;
  align-items: start;
}

.deliverables {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.deliverables li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255, 250, 240, 0.68);
}

.deliverables span {
  margin-bottom: 0;
  font-size: 28px;
}

.deliverable-details {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-details li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 0;
  color: var(--muted);
  background: transparent;
  position: relative;
  line-height: 1.45;
}

.deliverable-details li::before {
  content: "";
  display: block;
  margin-top: 0.58em;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.steps article {
  min-height: 220px;
  padding: 32px 28px;
}

.condition-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.95fr);
  gap: 70px;
  align-items: start;
}

.condition-list {
  display: grid;
  gap: 14px;
}

.condition-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 26px 24px;
  border: 1px solid var(--line);
}

.condition-icon {
  width: 34px;
  height: 34px;
  display: block;
  margin-top: 2px;
  object-fit: contain;
  object-position: center;
}

.apply {
  width: min(var(--max), calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.96fr);
  gap: 70px;
  margin: 0 auto;
  padding: 82px 70px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(rgba(70, 69, 71, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 69, 71, 0.08) 1px, transparent 1px),
    var(--paper-deep);
  background-size: 44px 44px;
}

.apply h2 {
  max-width: 620px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 250, 240, 0.72);
}

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

.lead-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(31, 38, 36, 0.32);
  border-radius: 0;
  padding: 0 2px;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-bottom-color: var(--accent);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid {
  border-bottom-color: #c83b2d;
}

.policy-check {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 4px;
}

.policy-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.policy-check span {
  color: var(--brand-graphite);
  font-size: 13px;
  line-height: 1.45;
}

.policy-check a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form .button,
.form-status {
  grid-column: 1 / -1;
}

.lead-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(243, 112, 33, 0.09);
  border: 1px solid rgba(243, 112, 33, 0.26);
}

.form-status.visible {
  display: block;
}

.form-status[data-tone="error"] {
  color: #6f211a;
  background: rgba(200, 59, 45, 0.09);
  border-color: rgba(200, 59, 45, 0.3);
}

.form-status[data-tone="success"] {
  color: #233f27;
  background: rgba(46, 111, 72, 0.1);
  border-color: rgba(46, 111, 72, 0.3);
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 0 auto 32px;
  padding: 28px 34px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(248, 243, 232, 0.92);
}

.footer a {
  color: var(--accent);
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  font-size: 14px;
}

.footer-nav a {
  color: var(--brand-graphite);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  display: block;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  position: sticky;
  color: #fffaf0;
  background: rgba(32, 33, 36, 0.88);
}

.legal-main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 70px 64px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(248, 243, 232, 0.92);
}

.legal-document {
  max-width: 860px;
}

.legal-document h1 {
  max-width: 860px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 58px;
  line-height: 1;
}

.legal-document h2 {
  margin: 42px 0 16px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.legal-note {
  padding: 16px 18px;
  border: 1px solid rgba(243, 112, 33, 0.28);
  background: rgba(243, 112, 33, 0.08);
}

.legal-document strong {
  color: var(--ink);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-content {
    --hero-enter-x: 0px;
    transform: none;
  }

  .hero-content.hero-enter {
    --hero-enter-x: 0px;
  }

  .symptom-grid,
  .precision-grid,
  .vector-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-layout,
  .condition-layout,
  .apply,
  .model-layout {
    grid-template-columns: 1fr;
  }

  .model-visual {
    min-height: 340px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  [data-reveal].is-visible,
  .hero-enter {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
    will-change: auto;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 48px 48px;
  }

  .site-header {
    position: absolute;
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand-caption,
  .nav {
    display: none;
  }

  .brand-logo {
    width: 146px;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(32, 33, 36, 0.8), rgba(32, 33, 36, 0.2)),
      linear-gradient(180deg, rgba(32, 33, 36, 0.38), rgba(32, 33, 36, 0.74));
  }

  .hero-content {
    width: min(100%, 342px);
    margin: 0;
    padding: 118px 18px 34px;
  }

  .hero .eyebrow {
    font-size: 12px;
  }

  h1 {
    max-width: 9ch;
    font-size: 44px;
    line-height: 0.98;
  }

  h2 {
    font-size: 36px;
    line-height: 1;
  }

  h3 {
    font-size: 22px;
  }

  .hero-lead,
  .section-lead {
    font-size: 17px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-lead {
    max-width: 28ch;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
    white-space: normal;
  }

  .hero-quota {
    position: static;
    width: min(330px, calc(100% - 56px));
    margin: 0 auto 18px;
  }

  .hero-quota p {
    max-width: 26ch;
    font-size: 13px;
  }

  .section {
    width: min(100%, calc(100% - 18px));
    grid-template-columns: 1fr;
  }

  .section-rail {
    display: flex;
    min-height: auto;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-rail b {
    position: static;
    width: auto;
    margin: 0;
    transform: none;
  }

  .section-inner,
  .apply {
    padding: 42px 20px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 16px;
  }

  .symptom-grid,
  .precision-grid,
  .vector-list,
  .steps,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .symptom-card,
  .precision-grid article,
  .steps article {
    min-height: auto;
  }

  .cause-note {
    grid-template-columns: 1fr;
  }

  .model-visual {
    min-height: 300px;
  }

  .deliverables li {
    grid-template-columns: 1fr;
  }

  .apply {
    width: min(100%, calc(100% - 18px));
    gap: 34px;
  }

  .lead-form {
    padding: 22px;
  }

  .footer {
    width: min(100%, calc(100% - 18px));
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .legal-main {
    width: min(100%, calc(100% - 18px));
    padding: 104px 20px 42px;
  }

  .legal-document h1 {
    font-size: 38px;
  }

  .legal-document h2 {
    font-size: 24px;
  }

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