:root {
  --navy: #0b263f;
  --navy-2: #143b5a;
  --teal: #007f8f;
  --teal-2: #d9f2f4;
  --graphite: #24313c;
  --muted: #667582;
  --line: #d8e0e6;
  --paper: #ffffff;
  --mist: #f4f7f9;
  --warm: #e7d7bf;
  --success: #407060;
  --shadow: 0 18px 50px rgba(11, 38, 63, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(20px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 230, 0.82);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 36px));
  color: #fff;
  background-position: center;
  background-size: cover;
}

.hero-home {
  background-image: url("img/beratung-hero.png");
}

.hero-bav {
  background-image: url("img/bav-mitarbeitende.png");
}

.hero-bav .hero-content {
  max-width: var(--max);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 43, 0.88) 0%, rgba(8, 33, 54, 0.72) 43%, rgba(8, 33, 54, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 26, 43, 0.18), rgba(6, 26, 43, 0.18));
}

.section-inner {
  position: relative;
  width: calc(100vw - 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-content {
  max-width: 720px;
  padding: clamp(92px, 12vw, 148px) 0 clamp(76px, 9vw, 112px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a8eef2;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-bav h1 {
  max-width: none;
  font-size: 2.75rem;
  line-height: 1.08;
  white-space: nowrap;
}

.hero-title-bav span {
  display: inline;
  white-space: nowrap;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: #e9f8fb;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.35;
}

.hero-note {
  max-width: 620px;
  color: #d9eef2;
  font-size: 1.06rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.button-primary:hover {
  background: #006978;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.52);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-quiet {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-intro {
  padding: clamp(54px, 7vw, 82px) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.employer-note,
.contact-grid,
.lifecycle,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-grid p,
.employer-note p,
.contact-grid p,
.lifecycle p,
.faq-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading p {
  color: var(--muted);
}

.choice-grid,
.principles-grid,
.lever-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.choice-card,
.principle,
.lever-step,
.process-grid article {
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 38, 63, 0.06);
}

.choice-card {
  min-height: 100%;
}

.icon-token,
.lever-step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--teal);
  background: var(--teal-2);
  border-radius: 50%;
  font-weight: 700;
}

.card-lead {
  color: var(--navy);
  font-weight: 700;
}

.clean-list {
  padding-left: 20px;
  margin: 20px 0 24px;
  color: var(--muted);
}

.clean-list li + li {
  margin-top: 8px;
}

.text-link {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.section-tinted {
  background: var(--mist);
}

.principle p,
.lever-step p,
.process-grid p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 22px 24px 22px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline li::before {
  position: absolute;
  top: 28px;
  left: 16px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.timeline strong,
.timeline span {
  display: block;
}

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

.timeline span {
  color: var(--muted);
}

.feature-band {
  padding: clamp(72px, 9vw, 116px) 0;
  color: #fff;
  background: var(--navy);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: minmax(280px, 1fr) minmax(0, 0.85fr);
}

.feature-grid h2,
.feature-grid h3 {
  color: #fff;
}

.feature-grid p {
  color: #d5e4eb;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  margin-bottom: 0;
}

.contact-panel p {
  margin-bottom: 8px;
}

.contact-panel a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.contact-panel a:hover {
  text-decoration: underline;
}

.contact-panel .appointment-link {
  width: 100%;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
}

.contact-panel .appointment-link:hover {
  color: #fff;
  text-decoration: none;
}

#termin {
  scroll-margin-top: 92px;
}

@media (max-width: 1200px) {
  .hero-bav h1 {
    font-size: 2.55rem;
  }
}

@media (max-width: 1120px) {
  .hero-bav h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 1000px) {
  .hero-bav h1 {
    font-size: 2.05rem;
  }
}

.info-panel {
  margin-top: 30px;
  padding: 28px;
  color: var(--graphite);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
}

.info-panel h2,
.info-panel h3 {
  margin-bottom: 10px;
}

.equation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.15fr);
  gap: 12px;
  align-items: stretch;
}

.equation-item {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: var(--mist);
  border-top: 4px solid var(--teal);
}

.equation-item strong {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.equation-item span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.equation-result {
  color: #fff;
  background: var(--navy);
  border-color: #7fd5dc;
}

.equation-result strong,
.equation-result span {
  color: #fff;
}

.equation-sign {
  align-self: center;
  color: var(--teal);
  font-size: 1.8rem;
  font-weight: 700;
}

.model-note {
  max-width: 980px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.persona-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 38, 63, 0.06);
}

.persona-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
}

.persona-card-body {
  padding: 24px;
}

.persona-name {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.persona-card dl {
  margin: 22px 0 0;
}

.persona-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.persona-card dt {
  color: var(--muted);
}

.persona-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  text-align: right;
}

.persona-chart-preview {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.persona-chart-preview img {
  width: 100%;
  aspect-ratio: 47 / 44;
  object-fit: contain;
  background: #fff;
}

.persona-chart-preview figcaption {
  order: -1;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.button-card {
  width: 100%;
  margin-top: 20px;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.button-card:hover {
  background: var(--navy-2);
}

.person-detail-region {
  scroll-margin-top: 90px;
}

.person-detail {
  padding-top: 52px;
  margin-top: 52px;
  border-top: 2px solid var(--navy);
  scroll-margin-top: 92px;
  outline: none;
}

.person-detail[hidden] {
  display: none;
}

.person-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.person-back:hover {
  text-decoration: underline;
}

.person-profile {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: 32px;
}

.person-profile img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
}

.person-profile h2 {
  margin-bottom: 12px;
}

.person-profile p:last-child {
  color: var(--muted);
}

.model-variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.model-variant {
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 38, 63, 0.06);
}

.model-variant-funding {
  border-top-color: #ef6e63;
}

.model-variant-funding .eyebrow {
  color: #c44e46;
}

.calculation-formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
  margin: 24px 0;
}

.calculation-formula > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  color: var(--muted);
  background: var(--mist);
  font-size: 0.76rem;
  line-height: 1.3;
}

.calculation-formula strong {
  color: var(--navy);
  font-size: 1rem;
}

.calculation-formula > b {
  align-self: center;
  color: var(--teal);
  font-size: 1.15rem;
}

.calculation-formula .formula-result {
  color: #fff;
  background: var(--navy);
}

.calculation-formula .formula-result strong {
  color: #fff;
}

.model-chart {
  display: flex;
  flex-direction: column;
  margin: 0 0 24px;
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-chart img {
  width: 100%;
  aspect-ratio: 47 / 44;
  object-fit: contain;
  background: #fff;
}

.model-chart figcaption {
  order: -1;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
}

.model-chart.is-interactive > img {
  display: none;
}

.growth-chart-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 16px;
  align-items: stretch;
}

.growth-chart-stage {
  min-width: 0;
}

.growth-chart-plot {
  width: 100%;
  aspect-ratio: 31 / 17;
}

.growth-chart-svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--navy);
  background: #f9fcfd;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.growth-chart-svg:focus-visible {
  outline: 3px solid rgba(0, 145, 160, 0.28);
  outline-offset: 3px;
}

.growth-chart-gridline {
  stroke: #dce7eb;
  stroke-width: 1;
}

.growth-chart-axis-label {
  fill: #5d7180;
  font-size: 12px;
  font-weight: 700;
}

.growth-chart-area {
  fill: rgba(0, 145, 160, 0.08);
  pointer-events: none;
}

.growth-chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.growth-chart-line-private {
  stroke: #123f5c;
}

.growth-chart-line-bav {
  stroke: #0091a0;
}

.growth-chart-focus-line {
  stroke: #ef6e63;
  stroke-dasharray: 6 5;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.growth-chart-point {
  stroke: #fff;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.growth-chart-point-private {
  fill: #123f5c;
}

.growth-chart-point-bav {
  fill: #0091a0;
}

.growth-chart-hit-area {
  cursor: crosshair;
  touch-action: pan-y;
}

.growth-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.growth-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.growth-chart-legend i {
  width: 20px;
  height: 4px;
  border-radius: 2px;
}

.growth-chart-legend .legend-private {
  background: #123f5c;
}

.growth-chart-legend .legend-bav {
  background: #0091a0;
}

.growth-chart-range-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.growth-chart-range-row input {
  width: 100%;
  accent-color: var(--teal);
}

.growth-chart-range-age {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.growth-chart-readout {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px;
  background: var(--mist);
  border-left: 4px solid var(--teal);
}

.growth-chart-readout-heading {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.growth-chart-readout-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.growth-chart-readout-row span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.growth-chart-readout-row strong {
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.2;
}

.model-metrics {
  border-top: 1px solid var(--line);
}

.model-metrics > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.model-metrics span {
  color: var(--muted);
}

.model-metrics strong {
  color: var(--navy);
  text-align: right;
}

.model-metrics .metric-advantage {
  padding: 16px;
  color: #fff;
  background: var(--navy);
  border-bottom: 0;
}

.model-metrics .metric-advantage span,
.model-metrics .metric-advantage strong {
  color: #fff;
}

.growth-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(28px, 4vw, 44px);
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
}

.growth-strip .eyebrow {
  color: #a8eef2;
}

.growth-strip strong,
.growth-strip span {
  display: block;
}

.growth-strip strong {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.growth-strip span {
  margin-top: 10px;
  color: #d5e4eb;
}

.growth-value {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.funding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.funding-grid p {
  color: var(--muted);
}

.funding-values {
  border-top: 4px solid var(--teal);
}

.funding-values div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.funding-values span {
  color: var(--muted);
}

.funding-values strong {
  color: var(--navy);
  text-align: right;
}

.funding-values .funding-total {
  color: #fff;
  background: var(--navy);
  border-bottom: 0;
}

.funding-values .funding-total span,
.funding-values .funding-total strong {
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 700;
}

details p {
  padding: 0 22px 22px;
  margin: 0;
}

.sources-section {
  padding-top: 54px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.sources-section h2 {
  font-size: 1.45rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.source-links a {
  padding: 10px 12px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.92rem;
  text-decoration: none;
}

.source-links a:hover {
  color: var(--teal);
}

.site-footer {
  padding: 38px 0;
  color: #d4e0e8;
  background: #071c2f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 28px;
}

.site-footer strong,
.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.site-footer p {
  margin-bottom: 0;
  color: #b6c8d5;
  font-size: 0.94rem;
}

.site-footer a {
  display: block;
  color: #d4e0e8;
  text-decoration: none;
}

.site-footer a + a {
  margin-top: 8px;
}

.site-footer a:hover {
  color: #fff;
}

.legal-page {
  min-height: calc(100vh - 72px);
  background: var(--mist);
}

.narrow {
  max-width: 820px;
}

.legal-intro {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-stack {
  border-top: 1px solid var(--line);
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-contact-list {
  margin: 0;
}

.legal-contact-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 8px 0;
}

.legal-contact-list dt {
  color: var(--muted);
  font-weight: 700;
}

.legal-contact-list dd {
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.legal-links a,
.legal-rule-list a,
.legal-contact-list a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-rule-list {
  margin: 0;
  padding-left: 20px;
}

.legal-rule-list li + li {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open,
  .main-nav.is-static {
    display: flex;
  }

  .hero-bav h1 {
    font-size: 1.95rem;
  }

  .main-nav a {
    padding: 12px;
  }

  .main-nav.is-static {
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .intro-grid,
  .employer-note,
  .contact-grid,
  .lifecycle,
  .faq-layout,
  .feature-grid,
  .feature-grid.reverse {
    grid-template-columns: 1fr;
  }

  .choice-grid,
  .principles-grid,
  .lever-grid,
  .process-grid,
  .persona-grid,
  .funding-grid,
  .model-variant-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .person-profile {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .calculation-formula {
    grid-template-columns: 1fr;
  }

  .calculation-formula > b {
    line-height: 1;
  }

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

  .equation-sign {
    line-height: 1;
  }

  .equation-item {
    min-height: 0;
  }

  .growth-strip {
    grid-template-columns: 1fr;
  }

  .growth-value {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .hero-bav h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 760px) {
  .hero-bav h1 {
    font-size: 1.55rem;
  }
}

@media (max-width: 700px) {
  .hero-bav h1 {
    font-size: 1.65rem;
    white-space: normal;
  }

  .hero-title-bav span {
    display: block;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

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

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

  .main-nav {
    top: 66px;
    right: 14px;
    left: 14px;
  }

  .section-inner {
    width: calc(100% - 28px);
    max-width: 350px;
    margin-left: 14px;
    margin-right: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 28px);
    max-width: 350px;
    padding: 86px 0 70px;
  }

  .hero-content h1,
  .hero-content p,
  .hero-content a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .hero-bav h1 {
    font-size: 1.45rem;
    line-height: 1.08;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .button {
    width: 100%;
  }

  .persona-card dl div,
  .funding-values div,
  .model-metrics > div {
    align-items: flex-start;
  }

  .person-profile {
    grid-template-columns: 1fr;
  }

  .person-profile img {
    max-width: none;
  }

  .growth-chart-shell {
    grid-template-columns: 1fr;
  }

  .growth-chart-readout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    border-top: 4px solid var(--teal);
    border-left: 0;
  }

  .growth-chart-readout-heading {
    grid-column: 1 / -1;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 26, 43, 0.92) 0%, rgba(8, 33, 54, 0.76) 100%),
      linear-gradient(0deg, rgba(6, 26, 43, 0.28), rgba(6, 26, 43, 0.28));
  }
}

@media (max-width: 360px) {
  .hero-bav h1 {
    font-size: 1.2rem;
  }
}

@media (max-width: 300px) {
  .hero-bav h1 {
    font-size: 1.05rem;
  }
}
