:root {
  --imm-plum: #463238;
  --imm-plum-2: #35262b;
  --imm-red: #ef244e;
  --imm-red-dark: #c91539;
  --imm-mauve: #9c8b92;
  --imm-teal: #0f6f68;
  --imm-teal-soft: #e9f5f2;
  --imm-gold: #a36f17;
  --imm-bluegray: #405969;
  --imm-soft: #f6eef1;
  --imm-paper: #fbf8f7;
  --imm-white: #ffffff;
  --imm-border: #e8dde1;
  --imm-ink: #2c2327;
  --imm-muted: #6f6267;
  --imm-success: #476b5c;
  --imm-warning: #8a6435;
  --shadow-soft: 0 20px 60px rgba(70, 50, 56, 0.10);
  --shadow-card: 0 12px 34px rgba(70, 50, 56, 0.06);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --wide: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--imm-ink);
  background:
    radial-gradient(circle at top left, rgba(239, 36, 78, .08), transparent 34rem),
    linear-gradient(180deg, #fffaf9 0%, var(--imm-paper) 44%, #ffffff 100%);
  line-height: 1.65;
  font-size: 17px;
}
body[data-menu-open="true"] { overflow: hidden; }
img, svg { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
strong { color: var(--imm-plum); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.container-wide { width: min(var(--wide), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 1000;
  background: var(--imm-red);
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: auto;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 247, .93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 221, 225, .82);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img { width: 260px; }
.site-nav { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 720; }
.site-nav a {
  text-decoration: none;
  color: var(--imm-plum);
  border-radius: 999px;
  transition: color .18s ease, background-color .18s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--imm-red); }
.nav-cta {
  background: var(--imm-red);
  color: white !important;
  padding: .74rem 1.06rem;
  box-shadow: 0 12px 24px rgba(239, 36, 78, .18);
}
.nav-calc {
  padding: .62rem .94rem;
  border: 1px solid rgba(15, 111, 104, .24);
  background: var(--imm-teal-soft);
  color: var(--imm-teal) !important;
}
.nav-calc:hover {
  background: white;
  color: var(--imm-red) !important;
}
.nav-cta:hover { background: var(--imm-red-dark); color: white !important; }
.nav-toggle { display: none; }

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 10%, rgba(239, 36, 78, .10), transparent 24rem),
    radial-gradient(circle at 2% 70%, rgba(156, 139, 146, .14), transparent 28rem);
}
.hero { padding: 70px 0 54px; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .78fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--imm-red);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .105em;
  font-weight: 850;
}
h1, h2, h3, h4 {
  color: var(--imm-plum);
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
  hyphens: manual;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(40px, 5.3vw, 62px); letter-spacing: 0; max-width: 980px; }
h2 { font-size: clamp(32px, 4vw, 50px); letter-spacing: 0; }
h3 { font-size: 23px; letter-spacing: 0; }
h4 { font-size: 19px; letter-spacing: 0; }
.lead { font-size: clamp(18px, 1.8vw, 21px); color: var(--imm-muted); max-width: 780px; margin: 22px 0 0; }
.hero-actions, .button-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 20px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .site-nav a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .footer-links a:focus-visible {
  outline: 3px solid rgba(239, 36, 78, .35);
  outline-offset: 3px;
}
.button-primary { background: var(--imm-red); color: white; box-shadow: 0 16px 34px rgba(239, 36, 78, .20); }
.button-primary:hover { background: var(--imm-red-dark); }
.button-secondary { background: rgba(255,255,255,.62); border-color: var(--imm-plum); color: var(--imm-plum); }
.button-secondary:hover { background: white; }
.button-light { background: white; color: var(--imm-plum); }
.button-ghost { color: white; border-color: rgba(255,255,255,.5); }
.trust-list, .chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.trust-list li, .chip-list li, .chip {
  border: 1px solid var(--imm-border);
  background: rgba(255,255,255,.86);
  color: var(--imm-plum);
  padding: .55rem .82rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  max-width: 760px;
}
.hero-proof-grid div {
  min-height: 86px;
  padding: 15px 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--imm-border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}
.hero-proof-grid strong {
  display: block;
  color: var(--imm-red);
  font-size: 27px;
  line-height: 1;
  margin-bottom: 9px;
}
.hero-proof-grid span {
  display: block;
  color: var(--imm-muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 760;
}
.hero-card {
  position: relative;
  background: white;
  border: 1px solid var(--imm-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(239, 36, 78, .22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 36, 78, .08), transparent 70%);
}
.hero-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hero-card-body { padding: 28px; position: relative; z-index: 1; }
.card-kicker { margin: 0 0 8px; color: var(--imm-red); font-weight: 850; font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.hero-card-body h2 { font-size: 30px; }
.hero-card-body p:last-child { color: var(--imm-muted); margin-bottom: 0; }
.hero-competence {
  padding: 60px 0 30px;
}
.competence-hero {
  position: relative;
  display: grid;
  gap: 26px;
}
.competence-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 42px;
  align-items: center;
}
.competence-hero-content {
  min-width: 0;
}
.competence-hero-copy {
  max-width: 1060px;
}
.competence-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  max-width: 1000px;
}
.competence-story p {
  margin: 0;
  color: var(--imm-muted);
  font-size: 20px;
  line-height: 1.58;
}
.competence-portrait {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--imm-border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.competence-portrait img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.competence-portrait blockquote {
  margin: 0;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #fff8f7);
}
.competence-portrait blockquote p {
  margin: 0;
  color: var(--imm-plum);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}
.competence-portrait cite {
  display: block;
  margin-top: 12px;
  color: var(--imm-red);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.competence-portrait cite span {
  display: block;
  margin-top: 2px;
  color: var(--imm-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
}
.competence-logo-row .university-logos {
  margin-top: 6px;
}
.competence-logo-row .university-logo {
  min-height: 100px;
  padding: 20px;
  background: rgba(255,255,255,.88);
}
.home-funding-intro {
  padding-top: 76px;
}
.home-funding-intro .hero-copy > h2 {
  font-size: clamp(36px, 5vw, 58px);
  max-width: 980px;
}

.page-hero { padding: 62px 0 52px; }
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 58px;
  align-items: end;
}
.page-hero-grid-expert {
  align-items: start;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--imm-muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.breadcrumb a { text-decoration: none; color: var(--imm-plum); font-weight: 750; }
.breadcrumb a:hover { color: var(--imm-red); }
.page-panel {
  background: white;
  border: 1px solid var(--imm-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.page-panel p { margin-top: 0; color: var(--imm-muted); }
.page-panel p:last-child { margin-bottom: 0; }
.expert-hero-card {
  overflow: hidden;
  padding: 0;
}
.expert-hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 16%;
}
.expert-hero-body {
  padding: 22px;
}
.expert-quote {
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--imm-border);
}
.expert-quote p {
  margin: 0;
  color: var(--imm-plum);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.42;
}
.expert-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--imm-red);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.expert-quote cite span {
  display: block;
  margin-top: 2px;
  color: var(--imm-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
}
.expert-hero-note {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}
.expert-hero-card .button {
  width: 100%;
  justify-content: center;
}
.expert-hero-card .panel-facts {
  gap: 8px;
  margin: 14px 0 18px;
}
.expert-hero-card .panel-facts span {
  padding: 10px 14px;
  border-radius: 12px;
}
.expert-hero-card .panel-facts strong {
  font-size: 17px;
}
.panel-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}
.panel-facts span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--imm-border);
  border-radius: 14px;
  background: var(--imm-paper);
  color: var(--imm-muted);
  font-size: 14px;
  line-height: 1.35;
}
.panel-facts strong {
  display: block;
  color: var(--imm-teal);
  font-size: 18px;
  line-height: 1.1;
}

.section { padding: 96px 0; }
.section-compact { padding: 68px 0; }
.section-soft { background: var(--imm-soft); }
.section-white { background: white; }
.section-dark { background: var(--imm-plum); color: white; }
.section-dark h2, .section-dark h3, .section-dark h4, .section-dark .eyebrow { color: white; }
.section-dark .eyebrow { color: #ff8aa1; }
.section-dark p { color: rgba(255,255,255,.79); }
.split { display: grid; grid-template-columns: .85fr 1fr; gap: 72px; align-items: start; }
.split-balanced { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; align-items: start; }
.problem-layout {
  display: grid;
  gap: 34px;
}
.problem-layout > div:first-child {
  max-width: 860px;
}
.text-block p:first-child { margin-top: 0; }
.text-block p { font-size: 19px; color: var(--imm-muted); }
.text-block .small-note, .small-note { font-size: 14px; color: var(--imm-muted); }
.section-dark .text-block p { color: rgba(255,255,255,.82); }
.section-heading { max-width: 860px; margin-bottom: 38px; }
.section-heading.narrow { max-width: 720px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.kicker-line { width: 48px; height: 3px; background: var(--imm-red); border-radius: 999px; margin: 0 0 18px; }

.cards { display: grid; gap: 20px; }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.cases { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: white;
  border: 1px solid var(--imm-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.card.tint { background: linear-gradient(145deg, #fff, var(--imm-soft)); }
.card.feature-card { min-height: 274px; }
.card-number {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 18px;
  padding: 0 .62rem;
  border: 1px solid rgba(239, 36, 78, .24);
  border-radius: 999px;
  background: rgba(239, 36, 78, .08);
  color: var(--imm-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
.card p { color: var(--imm-muted); margin-bottom: 0; }
.card ul { color: var(--imm-muted); padding-left: 1.1rem; margin-bottom: 0; }
.card li + li { margin-top: .45rem; }
.card-link { display: inline-flex; margin-top: 20px; color: var(--imm-red); font-weight: 850; text-decoration: none; }
.card-link:hover { text-decoration: underline; }

.fact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.fact {
  background: rgba(255,255,255,.8);
  border: 1px solid var(--imm-border);
  border-radius: 20px;
  padding: 22px;
}
.fact strong { display: block; font-size: 28px; line-height: 1; color: var(--imm-red); margin-bottom: 10px; }
.fact span { display: block; color: var(--imm-muted); font-size: 14px; }

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: 44px;
  align-items: start;
}
.calculator-copy { max-width: 760px; }
.insight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.insight-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .45rem .75rem;
  border: 1px solid rgba(15, 111, 104, .22);
  border-radius: 999px;
  background: var(--imm-teal-soft);
  color: var(--imm-teal);
  font-size: 14px;
  font-weight: 820;
}
.calculator-card {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(145deg, #ffffff 0%, #fff8f8 54%, #f4fbf9 100%);
  border: 1px solid var(--imm-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.calculator-teaser .button {
  justify-self: start;
  margin-right: 8px;
}
.program-mini-grid {
  display: grid;
  gap: 10px;
}
.program-mini-grid span {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid var(--imm-border);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  color: var(--imm-muted);
  font-size: 15px;
}
.program-mini-grid strong {
  color: var(--imm-plum);
  font-size: 16px;
}
.calculator-card-head h3 { font-size: 28px; }
.calc-field {
  display: grid;
  gap: 8px;
  color: var(--imm-plum);
  font-weight: 820;
}
.calc-field input {
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}
.calc-segment {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 0;
  margin: 0;
  padding: 0;
}
.calc-segment legend {
  flex-basis: 100%;
  color: var(--imm-plum);
  font-weight: 820;
  margin-bottom: 2px;
}
.calc-segment label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--imm-border);
  border-radius: 999px;
  background: white;
  color: var(--imm-plum);
  font-weight: 820;
}
.calc-segment input, .calc-check input { accent-color: var(--imm-red); }
.calc-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--imm-muted);
  font-size: 14px;
  line-height: 1.45;
}
.calc-check input {
  width: auto;
  margin-top: .26rem;
}
.calculator-result {
  display: grid;
  gap: 7px;
  padding: 22px;
  border-radius: 20px;
  background: var(--imm-plum);
  color: white;
}
.calculator-result span {
  color: rgba(255,255,255,.76);
  font-weight: 820;
}
.calculator-result strong {
  color: white;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.calculator-result small {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.fit-grid > div {
  padding: 26px;
  border: 1px solid var(--imm-border);
  border-radius: var(--radius-lg);
  background: var(--imm-paper);
}
.fit-grid > div:first-child {
  border-color: rgba(15, 111, 104, .24);
  background: var(--imm-teal-soft);
}
.fit-grid h3 { margin-bottom: 12px; }
.fit-grid ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--imm-muted);
}
.fit-grid li + li { margin-top: .45rem; }

.process-list, .timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.process-list { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.process-list li, .timeline-list li {
  background: white;
  border: 1px solid var(--imm-border);
  border-radius: 20px;
  padding: 24px;
}
.process-list span, .timeline-list span { color: var(--imm-red); font-weight: 900; display: block; margin-bottom: 16px; }
.process-list strong, .timeline-list strong { display: block; color: var(--imm-plum); font-size: 19px; margin-bottom: 8px; }
.process-list p, .timeline-list p { margin: 0; color: var(--imm-muted); font-size: 15px; }
.timeline-list { counter-reset: step; }
.timeline-list li { position: relative; padding-left: 72px; }
.timeline-list span { position: absolute; left: 24px; top: 24px; }

.name-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 10px; }
.name-list span { border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: .55rem .85rem; color: white; }
.name-list.light span { color: var(--imm-plum); background: white; border-color: var(--imm-border); }
.university-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.university-logo {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: white;
  border: 1px solid var(--imm-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.university-logo img {
  width: auto;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}
.university-logo.logo-wide img {
  width: min(100%, 210px);
  max-height: 96px;
}
.university-logo.tall img { max-height: 96px; }
.team-card { text-align: center; }
.team-card img { width: 142px; height: 142px; object-fit: cover; border-radius: 999px; margin: 0 auto 20px; background: var(--imm-soft); }
.role { color: var(--imm-red) !important; font-weight: 800; margin: 6px 0 12px; }

.faq-list { display: grid; gap: 12px; }
details { background: white; border: 1px solid var(--imm-border); border-radius: 18px; padding: 20px 24px; }
summary { cursor: pointer; font-weight: 850; color: var(--imm-plum); }
details p { color: var(--imm-muted); margin-bottom: 0; }

.source-list { display: grid; gap: 12px; padding: 0; margin: 22px 0 0; list-style: none; }
.source-list a { color: var(--imm-plum); font-weight: 780; text-decoration: none; }
.source-list a:hover { color: var(--imm-red); text-decoration: underline; }

.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.article-card { display: flex; min-height: 280px; flex-direction: column; }
.article-card .tag { align-self: flex-start; }
.article-card p { flex: 1; }
.tag { display: inline-flex; border-radius: 999px; padding: .35rem .7rem; background: var(--imm-soft); color: var(--imm-red); font-size: 13px; font-weight: 850; margin-bottom: 18px; }
.article-body { max-width: 820px; margin-inline: auto; }
.article-body > * + * { margin-top: 1.1rem; }
.article-body h2 { margin-top: 3rem; font-size: clamp(29px, 3vw, 40px); }
.article-body h3 { margin-top: 2rem; }
.article-body p, .article-body li { color: var(--imm-muted); font-size: 18px; }
.article-body ul, .article-body ol { padding-left: 1.25rem; }
.article-note { border-left: 4px solid var(--imm-red); background: var(--imm-soft); padding: 20px 22px; border-radius: 0 18px 18px 0; }
.meta-row { display: flex; flex-wrap: wrap; gap: 12px; color: var(--imm-muted); font-size: 14px; margin-top: 24px; }

.contact-section { padding-top: 44px; }
.contact-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 161, .24), transparent 24rem),
    var(--imm-plum);
  color: white;
  border-radius: var(--radius-xl);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr .52fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.contact-card h2, .contact-card .eyebrow { color: white; }
.contact-card .eyebrow { color: #ff8aa1; }
.contact-card p { color: rgba(255,255,255,.79); }
.contact-actions p { margin: 18px 0 0; }
.contact-form {
  display: grid;
  gap: 18px;
  background: white;
  border: 1px solid var(--imm-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label, .checkbox-field { font-weight: 780; color: var(--imm-plum); }
.form-field span { color: var(--imm-red); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--imm-border);
  border-radius: 14px;
  padding: .86rem .95rem;
  font: inherit;
  color: var(--imm-ink);
  background: #fffdfd;
}
textarea { min-height: 150px; resize: vertical; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.45; }
.checkbox-field input { width: auto; margin-top: .25rem; }
.honeypot { display: none; }
.form-status { margin: 0; color: var(--imm-success); font-weight: 780; }

.legal-box {
  border: 1px solid rgba(138, 100, 53, .35);
  background: #fff8ed;
  border-radius: 18px;
  padding: 20px 22px;
  color: #684a26;
}

.funding-modal[hidden] { display: none; }
.funding-modal {
  position: fixed;
  inset: 0;
  z-index: 105;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
}
.funding-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 35, 39, .48);
  backdrop-filter: blur(8px);
}
.funding-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0, rgba(15, 111, 104, .08), transparent 20rem),
    white;
  border: 1px solid var(--imm-border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(44, 35, 39, .24);
}
.funding-dialog h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
  max-width: 720px;
  margin-right: 56px;
}
.funding-dialog > p:not(.eyebrow) {
  color: var(--imm-muted);
  max-width: 760px;
  margin: 4px 64px 18px 0;
}
.funding-programs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  width: min(620px, 100%);
  padding: 4px;
  border: 1px solid var(--imm-border);
  border-radius: 16px;
  background: var(--imm-paper);
  margin-bottom: 16px;
}
.funding-tab {
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  padding: 0 12px;
  background: transparent;
  color: var(--imm-muted);
  font: inherit;
  font-size: 14px;
  font-weight: 820;
  white-space: nowrap;
  cursor: pointer;
}
.funding-tab[aria-selected="true"] {
  background: white;
  color: var(--imm-plum);
  box-shadow: 0 6px 18px rgba(70, 50, 56, .08);
}
.funding-form {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(350px, .78fr);
  align-items: start;
  align-content: start;
  gap: 16px 22px;
  flex: 0 1 auto;
  min-height: 0;
}
.funding-panel {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  max-height: min(540px, calc(100dvh - 300px));
  overflow: auto;
  padding-right: 4px;
}
.funding-panel-note {
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 111, 104, .16);
  border-radius: 16px;
  background: var(--imm-teal-soft);
  color: var(--imm-teal);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}
.funding-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
}
.funding-field {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 104px;
  padding: 12px 14px;
  border: 1px solid var(--imm-border);
  border-radius: 16px;
  background: rgba(255, 253, 253, .92);
  color: var(--imm-plum);
  font-weight: 800;
}
.funding-field--wide {
  grid-column: span 2;
}
.funding-field span {
  font-size: 14px;
  line-height: 1.35;
  color: var(--imm-plum);
}
.funding-field input,
.funding-field select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  font-size: 15px;
  font-weight: 680;
  text-overflow: ellipsis;
  background: white;
}
.funding-field input + select {
  margin-top: 4px;
}
.funding-question {
  display: flex;
  align-items: center;
  gap: 7px;
}
.funding-help {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 111, 104, .3);
  border-radius: 999px;
  background: var(--imm-teal-soft);
  color: var(--imm-teal);
  font-size: 13px;
  font-weight: 900;
  cursor: help;
}
.funding-help::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 3;
  width: min(300px, calc(100vw - 48px));
  padding: 10px 12px;
  border: 1px solid rgba(44, 35, 39, .14);
  border-radius: 12px;
  background: white;
  color: var(--imm-plum);
  box-shadow: 0 14px 36px rgba(44, 35, 39, .16);
  content: attr(data-tooltip);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity .16s ease, transform .16s ease;
}
.funding-help:hover::after,
.funding-help:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.funding-choice-group {
  display: grid;
  gap: 8px;
}
.funding-choice-group--compact {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.funding-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  min-height: 48px;
  padding: 9px 10px;
  border: 1px solid rgba(232, 221, 225, .95);
  border-radius: 13px;
  background: white;
  color: var(--imm-plum);
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.funding-choice:hover {
  border-color: rgba(15, 111, 104, .34);
}
.funding-choice:has(input:checked) {
  border-color: rgba(15, 111, 104, .55);
  background: var(--imm-teal-soft);
  box-shadow: inset 0 0 0 1px rgba(15, 111, 104, .08);
}
.funding-choice input[type="radio"] {
  appearance: none;
  display: grid;
  place-items: center;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 2px solid rgba(15, 111, 104, .42);
  border-radius: 5px;
  background: white;
}
.funding-choice input[type="radio"]::before {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--imm-red);
  content: "";
  transform: scale(0);
  transition: transform .14s ease;
}
.funding-choice input[type="radio"]:checked {
  border-color: var(--imm-red);
}
.funding-choice input[type="radio"]:checked::before {
  transform: scale(1);
}
.funding-choice input[type="radio"]:focus-visible {
  outline: 3px solid rgba(239, 36, 78, .35);
  outline-offset: 3px;
}
.funding-choice-title {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}
.funding-choice small {
  display: block;
  margin-top: 2px;
  color: var(--imm-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}
.funding-result {
  display: grid;
  gap: 9px;
  max-height: none;
  overflow: visible;
  padding: 18px;
  border: 1px solid var(--imm-border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
  color: var(--imm-plum);
  box-shadow: var(--shadow-card);
}
.funding-result span {
  color: var(--imm-teal);
  font-weight: 850;
}
.funding-result strong {
  color: var(--imm-plum);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.funding-result small {
  color: var(--imm-muted);
  font-size: 14px;
}
.funding-result ul {
  margin: 4px 0 0;
  padding-left: 1.1rem;
  color: var(--imm-muted);
  font-size: 13px;
  line-height: 1.4;
}
.funding-more-notes {
  margin-top: 2px;
  color: var(--imm-muted);
  font-size: 13px;
}
.funding-more-notes summary {
  color: var(--imm-teal);
  font-weight: 850;
  cursor: pointer;
}
.funding-more-notes summary:focus-visible {
  outline: 3px solid rgba(239, 36, 78, .35);
  outline-offset: 3px;
  border-radius: 8px;
}
.funding-more-notes ul { margin-top: 6px; }
.funding-year-table {
  display: grid;
  gap: 1px;
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid var(--imm-border);
  border-radius: 14px;
  background: var(--imm-border);
}
.funding-year-head,
.funding-year-row {
  display: grid;
  grid-template-columns: .58fr 1.15fr .9fr 1.15fr;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  font-size: 13px;
}
.funding-year-head {
  background: var(--imm-paper);
  color: var(--imm-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.funding-year-row {
  background: white;
  color: var(--imm-muted);
  font-variant-numeric: tabular-nums;
}
.funding-year-row strong {
  color: var(--imm-plum);
  font-size: 14px;
  line-height: 1.2;
}
.funding-result--warn {
  border-color: rgba(138, 100, 53, .35);
  background: #fff8ed;
}
.funding-side {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 16px;
  align-content: start;
}
.funding-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-self: start;
}
.funding-actions .button {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: 14px;
  white-space: nowrap;
}

.quiz-modal[hidden] { display: none; }
.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
}
.quiz-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 35, 39, .58);
  backdrop-filter: blur(10px);
}
.quiz-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  height: min(720px, calc(100vh - 40px));
  max-height: calc(100vh - 40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0, rgba(239, 36, 78, .09), transparent 18rem),
    white;
  border: 1px solid var(--imm-border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(44, 35, 39, .28);
}
.quiz-dialog h2 { font-size: clamp(30px, 4vw, 44px); }
.quiz-dialog > p:not(.eyebrow) { color: var(--imm-muted); margin-bottom: 24px; }
.quiz-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--imm-border);
  background: white;
  color: var(--imm-plum);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.quiz-form {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 20px;
  flex: 1;
  min-height: 0;
}
.quiz-step {
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}
.quiz-step h3 { margin-bottom: 18px; }
.quiz-help {
  margin: -8px 0 16px;
  color: var(--imm-muted);
  font-size: 15px;
  line-height: 1.5;
}
.quiz-step label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--imm-border);
  border-radius: 16px;
  background: #fffdfd;
  color: var(--imm-plum);
  font-weight: 760;
  line-height: 1.42;
  text-align: left;
  cursor: pointer;
}
.quiz-step label + label { margin-top: 10px; }
.quiz-step input { width: auto; margin-top: .3rem; accent-color: var(--imm-red); }
.quiz-result .button { margin: 8px 8px 0 0; }
.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-top: 4px;
}
.quiz-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: var(--imm-border);
  cursor: pointer;
}
.quiz-dot[aria-current="step"] { background: var(--imm-red); transform: scale(1.18); }
.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.quiz-actions .button { min-width: 126px; }

.site-footer { padding: 48px 0; background: white; border-top: 1px solid var(--imm-border); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: start; }
.site-footer img { width: 240px; }
.site-footer p { color: var(--imm-muted); margin: 8px 0 0; max-width: 380px; }
.footer-links { display: grid; gap: 10px; }
.footer-links strong { display: block; margin-bottom: 3px; }
.footer-links a { color: var(--imm-muted); text-decoration: none; }
.footer-links a:hover { color: var(--imm-red); }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--imm-border); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: var(--imm-muted); font-size: 14px; }

@media (max-width: 1080px) {
  .process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fact-grid, .cards.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--imm-border);
    background: white;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .nav-toggle-line, .nav-toggle-line::before, .nav-toggle-line::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--imm-plum);
    content: "";
    position: relative;
    transition: transform .18s ease, top .18s ease;
  }
  .nav-toggle-line::before { position: absolute; top: -7px; }
  .nav-toggle-line::after { position: absolute; top: 7px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-line { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-line::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-line::after { top: 0; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 86px 20px auto 20px;
    background: white;
    border: 1px solid var(--imm-border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: .75rem .8rem; }
  .nav-calc { text-align: center; margin-top: 8px; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .hero-grid, .split, .split-balanced, .page-hero-grid, .contact-card, .calculator-layout { grid-template-columns: 1fr; }
  .competence-hero-main { grid-template-columns: 1fr; }
  .competence-story { grid-template-columns: 1fr; }
  .competence-portrait { max-width: 560px; }
  .calculator-card { max-width: 680px; }
  .cards.three, .cards.cases { grid-template-columns: 1fr 1fr; }
  .university-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding-top: 64px; }
  .page-panel { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .funding-dialog { width: min(100%, calc(100vw - 32px)); }
  .funding-form { display: flex; flex-direction: column; gap: 14px; flex: none; }
  .funding-panel, .funding-side, .funding-result, .funding-actions { grid-column: auto; grid-row: auto; }
  .funding-panel, .funding-side { flex: 0 0 auto; }
  .funding-field--wide { grid-column: auto; }
  .funding-panel { max-height: none; overflow: visible; padding-right: 0; }
  .funding-actions .button { flex: 1 1 190px; }
}

@media (max-width: 720px) {
  .container, .container-wide { width: min(100% - 28px, var(--container)); }
  .brand img { width: 216px; }
  .header-inner { min-height: 78px; }
  .site-nav { inset: 78px 14px auto 14px; }
  .section { padding: 70px 0; }
  .section-compact { padding: 52px 0; }
  .hero { padding: 54px 0 60px; }
  .hero-competence { padding: 46px 0 36px; }
  .competence-hero { gap: 20px; }
  .competence-story p { font-size: 17px; line-height: 1.55; }
  .competence-portrait {
    grid-template-rows: auto auto;
    border-radius: 22px;
  }
  .competence-portrait img {
    min-height: 0;
    aspect-ratio: 16 / 13;
    object-position: center 18%;
  }
  .competence-portrait blockquote { padding: 18px; }
  .competence-portrait blockquote p { font-size: 15px; }
  .expert-hero-card img { aspect-ratio: 16 / 11; }
  .expert-hero-body { padding: 20px; }
  .expert-quote p { font-size: 16px; }
  .home-funding-intro { padding-top: 58px; }
  h1 { font-size: 32px; line-height: 1.12; }
  .home-funding-intro .hero-copy > h2 { font-size: 32px; line-height: 1.12; }
  .page-hero { padding: 42px 0 46px; }
  .cards.two, .cards.three, .cards.four, .cards.cases, .process-list, .fact-grid, .article-grid, .form-grid, .hero-proof-grid, .fit-grid { grid-template-columns: 1fr; }
  .hero-proof-grid div { min-height: 0; }
  .calculator-card { padding: 22px; }
  .calculator-teaser .button { width: 100%; margin-right: 0; }
  .calculator-result { padding: 18px; }
  .funding-modal, .quiz-modal { align-items: start; justify-items: center; padding: 10px; }
  .funding-dialog { width: min(100%, calc(100vw - 20px)); height: auto; max-height: calc(100dvh - 20px); overflow: auto; padding: 20px 16px 16px; border-radius: 22px; }
  .funding-dialog h2 { font-size: 24px; line-height: 1.08; margin: 0 48px 12px 0; }
  .funding-dialog > p:not(.eyebrow) { display: none; }
  .funding-programs { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 5px; margin-bottom: 12px; border-radius: 18px; }
  .funding-tab:first-child { grid-column: 1 / -1; }
  .funding-tab { min-height: 38px; padding: 0 10px; font-size: 13px; }
  .funding-form { grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; flex: none; }
  .funding-panel { grid-column: auto; grid-row: auto; max-height: none; overflow: visible; padding-right: 0; }
  .funding-panel-note { margin-bottom: 9px; padding: 10px 12px; border-radius: 14px; font-size: 13px; line-height: 1.4; }
  .funding-grid { grid-template-columns: 1fr; gap: 9px; }
  .funding-field--wide { grid-column: auto; }
  .funding-field { min-height: 0; padding: 12px; gap: 6px; font-size: 14px; line-height: 1.34; }
  .funding-field span { font-size: 13px; }
  .funding-field input, .funding-field select { padding: .68rem .72rem; border-radius: 12px; font-size: 14px; }
  .funding-choice-group--compact { grid-template-columns: 1fr; }
  .funding-choice { min-height: 44px; padding: 9px 10px; }
  .funding-choice-title { font-size: 13px; }
  .funding-choice small { font-size: 11.5px; }
  .funding-help::after { left: auto; right: -4px; transform: translate(0, 4px); }
  .funding-help:hover::after, .funding-help:focus-visible::after { transform: translate(0, 0); }
  .funding-result { grid-column: auto; grid-row: auto; position: static; max-height: none; overflow: visible; padding: 14px; border-radius: 18px; gap: 8px; }
  .funding-result strong { font-size: 28px; }
  .funding-year-table { border-radius: 12px; }
  .funding-year-head { display: none; }
  .funding-year-row { grid-template-columns: 1fr; gap: 6px; padding: 10px 12px; font-size: 13px; }
  .funding-year-row span, .funding-year-row strong { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; width: 100%; min-width: 0; }
  .funding-year-row strong { font-size: 13px; line-height: 1.3; }
  .funding-year-row span::before, .funding-year-row strong::before { color: var(--imm-muted); font-weight: 850; }
  .funding-year-row span:nth-child(1)::before { content: "Jahr"; }
  .funding-year-row span:nth-child(2)::before { content: "Basis"; }
  .funding-year-row span:nth-child(3)::before { content: "Pauschale"; }
  .funding-year-row strong::before { content: "Zulage"; }
  .funding-side, .funding-actions { grid-column: auto; grid-row: auto; }
  .funding-actions { flex-wrap: wrap; }
  .funding-actions .button { flex: 1 1 140px; min-width: 0; min-height: 46px; padding-inline: 10px; }
  .university-logos { grid-template-columns: 1fr; }
  .timeline-list li { padding-left: 24px; }
  .timeline-list span { position: static; }
  .contact-card { padding: 30px; }
  .quiz-dialog { width: min(100%, calc(100vw - 20px)); height: min(640px, calc(100dvh - 20px)); max-height: calc(100dvh - 20px); padding: 20px 20px 16px; border-radius: 24px; }
  .quiz-dialog h2 { font-size: 25px; line-height: 1.08; margin: 0 0 14px; }
  .quiz-dialog > p:not(.eyebrow) { display: none; }
  .quiz-form { gap: 10px; }
  .quiz-step { padding-right: 2px; padding-bottom: 6px; }
  .quiz-step h3 { font-size: 19px; line-height: 1.12; margin-bottom: 10px; }
  .quiz-step label { gap: 10px; padding: 10px 11px; border-radius: 14px; font-size: 14px; line-height: 1.36; font-weight: 760; }
  .quiz-step label + label { margin-top: 8px; }
  .quiz-step input { flex: 0 0 auto; margin-top: .22rem; }
  .quiz-help { margin: -3px 0 10px; font-size: 13.5px; line-height: 1.42; }
  .quiz-progress { padding-top: 0; }
  .quiz-result .button { width: 100%; margin: 8px 0 0; }
  .quiz-actions { flex-wrap: nowrap; }
  .quiz-actions .button { flex: 1; min-width: 0; padding-inline: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
