:root {
  --black: #07080a;
  --ink: #14161a;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --soft-strong: #e8eaee;
  --line: #d7dbe2;
  --muted: #5e6672;
  --muted-dark: #aeb4bd;
  --red: #e30620;
  --red-dark: #b80218;
  --red-soft: #fff0f2;
  --shadow: 0 22px 55px rgba(7, 8, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

address {
  font-style: normal;
}

::selection {
  background: var(--red);
  color: white;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 4px;
  background: white;
  color: var(--black);
  padding: 12px 14px;
  font-weight: 900;
}

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 8, 10, 0.92);
  color: white;
  padding: 16px max(20px, calc((100vw - 1180px) / 2));
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
}

.brand__logo {
  display: block;
  width: min(252px, 48vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.nav a:hover,
.nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.program-card a:hover,
.program-card a:focus-visible,
.contact-card a:hover,
.contact-card a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--red);
}

.header-cta,
.student-login,
.button,
.mobile-sticky-cta {
  border-radius: 4px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.header-cta {
  background: white;
  color: var(--black);
  padding: 13px 17px;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--soft);
}

.student-login {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: white;
  padding: 12px 15px;
}

.student-login:hover,
.student-login:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

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

.button--primary {
  background: var(--red);
  color: white;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
  color: white;
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.button--outline {
  border: 1px solid var(--black);
  color: var(--black);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--black);
  color: white;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background: var(--black);
  color: white;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center right;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0%, rgba(7, 8, 10, 0.86) 37%, rgba(7, 8, 10, 0.28) 74%),
    linear-gradient(0deg, rgba(7, 8, 10, 0.78) 0%, rgba(7, 8, 10, 0) 38%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 82svh;
  width: min(1180px, calc(100% - 40px));
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 44px 0 66px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker--light {
  color: #ff6575;
}

.brand-red {
  color: var(--red);
  font-weight: inherit;
}

.hero .brand-red,
.black-band .brand-red {
  color: #ff6575;
}

.red-band .brand-red {
  display: inline-block;
  border-radius: 3px;
  background: white;
  color: var(--red);
  padding: 0 0.12em;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 950;
  line-height: 0.98;
}

h2 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.3vw, 46px);
  font-weight: 950;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
}

.hero__lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.58;
}

.hero__actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__actions {
  margin-top: 34px;
}

.trust-line {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 850;
}

.intro {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.intro__grid,
.content-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.intro__grid {
  padding: 62px 0;
}

.intro__copy > p,
.rich-copy p,
.program-card p,
.three-grid p,
.list-panel,
.steps-grid p,
.contact-layout p,
.faq-list p,
.closing-cta p,
.site-footer {
  color: var(--muted);
  line-height: 1.7;
}

.intro__copy > p,
.rich-copy > p {
  margin-bottom: 20px;
  font-size: 18px;
}

.section-block {
  padding: 82px 0;
}

.section-block--compact {
  padding-block: 58px;
}

.section-block--soft {
  background: linear-gradient(90deg, transparent 0%, transparent calc((100vw - 1180px) / 2), var(--soft) calc((100vw - 1180px) / 2), var(--soft) 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head--light {
  color: white;
}

.answer-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.answer-strip article,
.answer-box,
.program-card,
.blog-card,
.list-panel,
.contact-card,
.profile-panel,
.team-panel,
.steps-grid article,
.form-link-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.answer-strip article,
.answer-box {
  padding: 22px;
  border-left: 5px solid var(--red);
}

.answer-strip h3,
.answer-box h3 {
  font-size: 18px;
}

.answer-strip p,
.answer-box p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

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

.program-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
}

.program-card__label {
  margin-bottom: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.program-card p:not(.program-card__label) {
  margin-bottom: 22px;
}

.program-card a,
.blog-card a,
.text-link,
.contact-card a,
.contact-links a,
.site-footer a {
  color: var(--black);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(227, 6, 32, 0.38);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.program-card a {
  margin-top: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 24px;
}

.blog-card__label {
  margin-bottom: 24px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 22px;
}

.blog-card p:not(.blog-card__label) {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.blog-card a {
  margin-top: auto;
}

.blog-card--listing {
  min-height: 260px;
}

.blog-card--listing h2 {
  font-size: clamp(24px, 3.2vw, 34px);
}

.blog-feature {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.blog-feature__head {
  display: grid;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 30px;
}

.blog-feature__head h3 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(28px, 3.8vw, 42px);
}

.blog-feature__head p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.blog-feature__body {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.blog-feature__section {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.blog-feature__section:first-child {
  border-top: 0;
  padding-top: 0;
}

.blog-feature__number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 4px;
  background: var(--black);
  color: white;
  font-size: 15px;
  font-weight: 950;
}

.blog-feature__section h4,
.blog-feature__closing h4 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 23px;
  font-weight: 950;
  line-height: 1.18;
}

.blog-feature__section p,
.blog-feature__closing p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.blog-feature__section p:last-child,
.blog-feature__closing p:last-child {
  margin-bottom: 0;
}

.value-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.6;
  list-style: none;
}

.value-list li {
  border-left: 4px solid var(--red);
  background: var(--red-soft);
  padding: 9px 12px;
  font-weight: 850;
}

.blog-feature__closing {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.blog-feature__closing .check-list {
  margin: 16px 0 22px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  border-radius: 8px;
  background: var(--black);
  color: white;
  padding: 24px;
}

.cta-panel p {
  margin: 0;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.25;
}

.cta-panel--split {
  margin-top: 34px;
}

.contrast-block,
.black-band {
  background: var(--black);
  color: white;
}

.answer-box--dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.answer-box--dark p {
  color: rgba(255, 255, 255, 0.76);
}

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

.three-grid article {
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.three-grid p,
.rich-copy--light p {
  color: rgba(255, 255, 255, 0.76);
}

.rich-copy .answer-box,
.rich-copy .list-panel {
  margin-top: 24px;
}

.section-photo {
  margin: 34px 0 0;
}

.section-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1428 / 803;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.list-panel {
  padding: 24px;
}

.list-panel h3 {
  margin-bottom: 16px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 26px;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--red);
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.black-band .section-shell {
  padding-block: 4px;
}

.content-grid--center {
  align-items: center;
}

.text-link--light {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.32);
}

.profile-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  padding: 34px;
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.team-panel {
  overflow: hidden;
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.team-panel__head {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-bottom: 1px solid var(--line);
}

.team-panel__head h2 {
  margin-bottom: 0;
}

.team-panel__head p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: white;
}

.team-card__media {
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 4 / 3;
}

.team-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__media--sascha img {
  object-position: center 28%;
}

.team-card__media--marvin img {
  object-position: center 22%;
}

.team-card__body {
  padding: 26px;
}

.team-card__role {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 10px;
  font-size: clamp(27px, 3vw, 36px);
}

.team-card__meta {
  margin: 0 0 18px;
  color: var(--black);
  font-weight: 900;
  line-height: 1.45;
}

.team-card p:not(.team-card__role):not(.team-card__meta) {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 24px;
  color: var(--muted);
}

.contact-card strong {
  color: var(--black);
  font-size: 20px;
}

.red-band {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: white;
}

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

.steps-grid article {
  min-height: 270px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.98);
  color: var(--black);
  padding: 24px;
}

.steps-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 4px;
  background: var(--black);
  color: white;
  font-weight: 950;
}

.steps-grid h3 {
  margin-top: 22px;
}

.answer-box--red {
  margin-top: 18px;
  border-color: rgba(255, 255, 255, 0.24);
  background: white;
  color: var(--black);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  margin-top: 34px;
  align-items: start;
}

.contact-layout h3 {
  font-size: 30px;
}

.contact-layout p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-links {
  display: grid;
  gap: 8px;
}

.contact-links a {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.42);
}

.form-link-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  color: var(--black);
  box-shadow: var(--shadow);
}

.form-link-card__label {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.form-link-card h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.form-link-card p:not(.form-link-card__label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-link-card .button {
  width: max-content;
}

.form-link-card__note {
  font-size: 14px;
  font-weight: 800;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--black);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.3;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.closing-cta {
  background: var(--black);
  color: white;
}

.closing-cta__inner {
  padding: 78px 0;
}

.closing-cta h2 {
  max-width: 760px;
}

.closing-cta p:not(.section-kicker) {
  max-width: 700px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px 0;
}

.site-footer__brand {
  display: grid;
  gap: 8px;
}

.footer-logo {
  display: block;
  width: min(210px, 52vw);
  height: auto;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--black);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  background: var(--black);
  color: white;
}

.legal-hero__inner {
  padding: 76px 0 54px;
}

.legal-hero h1 {
  max-width: 860px;
  font-size: clamp(38px, 5.5vw, 64px);
}

.legal-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.legal-document {
  padding: 54px 0 86px;
}

.legal-card {
  display: grid;
  gap: 30px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: white;
  padding: 34px;
  box-shadow: var(--shadow);
}

.legal-section {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.legal-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-section h2 {
  font-size: clamp(24px, 3.2vw, 34px);
}

.legal-section h3 {
  margin: 8px 0 0;
  font-size: 20px;
}

.legal-section p,
.legal-section address,
.legal-section li {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-section address {
  font-style: normal;
}

.legal-section a {
  color: var(--black);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(227, 6, 32, 0.38);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-meta {
  color: var(--black);
  font-weight: 900;
}

.blog-page {
  background: var(--paper);
}

.blog-article-hero .post-meta {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  font-weight: 850;
}

.post-article {
  padding: 54px 0 86px;
}

.post-body {
  max-width: 880px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: white;
  padding: 34px;
  box-shadow: var(--shadow);
}

.post-body h2 {
  margin-top: 34px;
  font-size: clamp(26px, 3.4vw, 38px);
}

.post-body h2:first-child {
  margin-top: 0;
}

.post-body h3 {
  margin-top: 26px;
}

.post-body p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.post-body .check-list {
  margin: 18px 0 22px;
}

.post-cta {
  display: flex;
  max-width: 880px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  border-radius: 8px;
  background: var(--black);
  color: white;
  padding: 24px;
}

.post-cta p {
  margin: 0;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.3;
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 18;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white;
  box-shadow: 0 16px 42px rgba(7, 8, 10, 0.22);
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .program-grid,
  .blog-grid,
  .blog-list,
  .three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 78px;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 14px 16px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__image {
    opacity: 0.44;
    object-position: 72% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 0.86)),
      linear-gradient(0deg, rgba(7, 8, 10, 0.8), rgba(7, 8, 10, 0.18));
  }

  .hero__content {
    min-height: auto;
    padding: 56px 0 62px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .intro__grid,
  .content-grid,
  .profile-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .section-block {
    padding: 62px 0;
  }

  .section-block--compact {
    padding-block: 44px;
  }

  .section-block--soft {
    background: var(--soft);
  }

  .section-head,
  .cta-panel,
  .post-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .answer-strip,
  .answer-grid,
  .program-grid,
  .blog-grid,
  .blog-list,
  .three-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .program-card,
  .blog-card,
  .three-grid article,
  .steps-grid article {
    min-height: 0;
  }

  .blog-feature__section {
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (max-width: 520px) {
  .brand__logo {
    width: min(188px, 54vw);
  }

  .hero__actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-line {
    font-size: 14px;
  }

  .profile-panel,
  .team-panel__head,
  .team-card__body,
  .legal-card,
  .post-body,
  .post-cta,
  .form-link-card,
  .blog-feature__head,
  .blog-feature__body,
  .cta-panel,
  .list-panel,
  .answer-box,
  .answer-strip article,
  .program-card,
  .blog-card,
  .three-grid article,
  .steps-grid article,
  .contact-card {
    padding: 20px;
  }
}
