@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/nwpStKy2OAdR1K-IwhWudF-R3wEaZfrc.woff2") format("woff2");
  unicode-range:
    U+0100-02BA,
    U+02BD-02C5,
    U+02C7-02CC,
    U+02CE-02D7,
    U+02DD-02FF,
    U+0304,
    U+0308,
    U+0329,
    U+1D00-1DBF,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20C0,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/nwpStKy2OAdR1K-IwhWudF-R3w8aZQ.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

:root {
  --primary: #005aaa;
  --primary-strong: #004381;
  --primary-deep: #032b4f;
  --primary-soft: #e9f3fb;
  --accent: #d22229;
  --accent-soft: #ffe9ea;
  --ink: #122033;
  --muted: #4c5e73;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f8f5ee;
  --surface-alt: #eff5fb;
  --surface-strong: #e5eef8;
  --line: rgba(3, 43, 79, 0.12);
  --line-strong: rgba(3, 43, 79, 0.2);
  --success-bg: #edf8f0;
  --success-line: #b5d8bb;
  --error-bg: #fff1f2;
  --error-line: #efc0c4;
  --shadow-xs: 0 10px 24px rgba(7, 29, 52, 0.06);
  --shadow-sm: 0 16px 36px rgba(7, 29, 52, 0.09);
  --shadow-md: 0 24px 64px rgba(7, 29, 52, 0.14);
  --shadow-lg: 0 36px 84px rgba(7, 29, 52, 0.2);
  --radius-sm: 1rem;
  --radius-md: 1.35rem;
  --radius-lg: 1.85rem;
  --radius-xl: 2.4rem;
  --container: min(1320px, calc(100vw - 2rem));
  --header-offset: 5.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 90, 170, 0.08), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(210, 34, 41, 0.07), transparent 18%),
    linear-gradient(180deg, #fcfbf8 0%, #f6f3eb 46%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 90, 170, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 90, 170, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  text-decoration: none;
}

p,
li,
dd {
  margin: 0;
  font-size: clamp(1.02rem, 0.45vw + 0.96rem, 1.12rem);
  line-height: 1.68;
  color: var(--muted);
  overflow-wrap: anywhere;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.85rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.32rem, 2vw, 1.75rem);
}

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

input,
textarea,
select {
  width: 100%;
}

::selection {
  background: rgba(0, 90, 170, 0.16);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(210, 34, 41, 0.38);
  outline-offset: 3px;
}

.skip-link,
.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;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 400;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-deep);
  box-shadow: var(--shadow-md);
}

.site-shell {
  overflow-x: clip;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section,
.page-hero {
  padding: clamp(3.8rem, 7vw, 6.8rem) 0;
}

.section--tight {
  padding: clamp(2.8rem, 5vw, 4.4rem) 0;
}

.section[id],
.page-hero[id] {
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.eyebrow,
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 90, 170, 0.08);
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.page-badge::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.eyebrow--light,
.page-badge--light {
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.95);
}

.lead {
  font-size: clamp(1.12rem, 0.9vw + 0.98rem, 1.34rem);
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  gap: 0.55rem;
  padding: 0.92rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

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

.button[disabled] {
  cursor: wait;
  opacity: 0.85;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ee555a 100%);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(210, 34, 41, 0.22);
}

.button--secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--primary-deep);
  box-shadow: var(--shadow-xs);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.button--text {
  min-height: auto;
  padding-inline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--primary);
}

.button--text:hover,
.button--text:focus-visible {
  transform: none;
  color: var(--primary-strong);
}

.pill-row,
.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill,
.jump-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 0.84rem;
  border-radius: 999px;
  background: rgba(0, 90, 170, 0.08);
  color: var(--primary-deep);
  font-size: 0.98rem;
  font-weight: 800;
}

.pill--light {
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.95);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 260;
  border-bottom: 1px solid rgba(3, 43, 79, 0.08);
  background: rgba(252, 250, 245, 0.82);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.6rem;
}

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

.brand img {
  width: clamp(6.6rem, 14vw, 9.8rem);
}

.nav-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-deep);
  box-shadow: var(--shadow-xs);
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 1.15rem;
  height: 0.12rem;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle__bar::before {
  transform: translateY(-0.35rem);
}

.nav-toggle__bar::after {
  transform: translateY(0.23rem);
}

body.nav-open .nav-toggle__bar {
  background: transparent;
}

body.nav-open .nav-toggle__bar::before {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle__bar::after {
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 5.9rem 1rem auto;
  z-index: 240;
  padding: 1rem;
  border-radius: 1.6rem;
  background: rgba(3, 43, 79, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.8rem);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.site-nav ul,
.site-nav__extras {
  display: grid;
  gap: 0.38rem;
}

.site-nav a {
  display: block;
  padding: 0.82rem 0.95rem;
  border-radius: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav__extras {
  margin-top: 0.7rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #eb4a50 100%);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 16px 30px rgba(210, 34, 41, 0.25);
}

.header-cta__short {
  display: none;
}

.hero {
  padding: 1.4rem 0 0;
}

.hero__shell,
.page-hero__shell,
.footer-shell,
.surface,
.card,
.agenda-item,
.quote-panel,
.form-panel,
.status-banner,
.photo-frame,
.event-summary {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hero__shell,
.page-hero__shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  border-radius: clamp(1.8rem, 3vw, 2.8rem);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(145deg, #032b4f 0%, #005aaa 56%, #0e77d6 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero__shell::before,
.page-hero__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 90%);
  pointer-events: none;
}

.hero__grid,
.page-hero__grid,
.event-shell,
.profile-shell,
.dialog-shell,
.footer-grid,
.split-grid,
.card-grid,
.form-grid,
.detail-grid {
  display: grid;
  gap: 1rem;
}

.hero__copy,
.hero__visual,
.page-hero__copy,
.page-hero__aside,
.profile-shell > *,
.dialog-shell > *,
.event-shell > * {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero .lead,
.page-hero__shell .lead,
.surface--contrast p,
.surface--contrast li,
.surface--contrast .lead,
.card--contrast p,
.card--contrast li {
  color: rgba(255, 255, 255, 0.88);
}

.hero__title,
.page-hero__title {
  margin-top: 1.2rem;
  color: var(--white);
  max-width: 13ch;
}

.hero__title {
  max-width: none;
}

.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3,
.page-badge + h1,
.page-badge + h2,
.page-badge + h3 {
  margin-top: 1.2rem;
}

.hero__lead {
  margin-top: 1.2rem;
  max-width: 44rem;
}

.hero__buttons {
  margin-top: 1.8rem;
}

.hero__frame,
.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  background: linear-gradient(180deg, #f3f8fc 0%, #dfeaf6 100%);
}

.hero__frame {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(5, 21, 37, 0.26);
}

.hero__frame img,
.photo-frame img,
.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__frame img {
  aspect-ratio: 1.12 / 1;
}

.hero__media {
  margin-top: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(5, 21, 37, 0.26);
}

.hero__media img {
  width: 100%;
  aspect-ratio: 2.15 / 1;
  object-fit: cover;
}

.hero__stats {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.stat-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-card strong {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.88);
}

.hero__marquee {
  margin-top: 1.4rem;
  overflow: hidden;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  min-width: 100%;
  animation: marquee 22s linear infinite;
}

.hero__marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  white-space: nowrap;
}

.hero__marquee-track span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.surface {
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 245, 238, 0.92));
}

.surface--contrast {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(145deg, #032b4f 0%, #004381 56%, #005aaa 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.surface--contrast h2,
.surface--contrast h3,
.surface--contrast strong,
.surface--contrast .claim {
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
  margin-bottom: clamp(1.55rem, 3vw, 2.5rem);
}

.section-heading h2,
.section-heading h3 {
  color: var(--ink);
}

.section-heading--light h2,
.section-heading--light h3 {
  color: var(--white);
}

.card-grid {
  grid-template-columns: minmax(0, 1fr);
}

.surface > h2,
.surface > h3,
.surface--contrast > h2,
.surface--contrast > h3 {
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 1.08;
}

.card,
.form-panel,
.quote-panel,
.event-summary {
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
  height: 100%;
  padding: clamp(1.2rem, 2vw, 1.55rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}

.card--accent {
  background: linear-gradient(180deg, #fff7f7 0%, #fff0f1 32%, #ffffff 100%);
  border-color: rgba(210, 34, 41, 0.14);
}

.card--soft {
  background: linear-gradient(180deg, rgba(0, 90, 170, 0.06), rgba(255, 255, 255, 0.98));
}

.card--contrast {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(150deg, #032b4f 0%, #004381 48%, #005aaa 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.card strong,
.form-panel strong,
.quote-panel strong,
.event-summary strong {
  color: var(--primary-deep);
  font-size: 1.08rem;
  line-height: 1.2;
}

.card--contrast strong,
.card--contrast .card__title {
  color: var(--white);
}

.card__eyebrow {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card--contrast .card__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.card__title,
.claim {
  color: var(--primary-deep);
  font-weight: 800;
}

.card__meta {
  color: var(--primary);
  font-weight: 700;
}

.card__footer,
.push-down {
  margin-top: auto;
}

.list {
  display: grid;
  gap: 0.62rem;
}

.list li {
  position: relative;
  padding-left: 1.15rem;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.agenda {
  display: grid;
  gap: 0.8rem;
}

.agenda-item {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
  background: rgba(0, 90, 170, 0.06);
}

.agenda-item time {
  min-width: 4.1rem;
  color: var(--primary);
  font-weight: 800;
}

.agenda-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.event-meta {
  display: grid;
  gap: 0.8rem;
}

.event-meta .card strong {
  font-size: 1.16rem;
}

.quote-panel {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.quote-panel blockquote {
  margin: 0;
  padding-left: 0.35rem;
  color: var(--primary-deep);
  font-size: clamp(1.55rem, 1.5vw + 1.25rem, 2.25rem);
  font-weight: 800;
  line-height: 1.18;
}

.profile-shell .photo-frame img,
.team-card__image img {
  aspect-ratio: 1 / 1;
}

.team-stack {
  display: grid;
  gap: 1.2rem;
}

.profile-highlights {
  margin-top: 1.25rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.team-card__image {
  overflow: hidden;
  border-radius: 1.3rem;
  background: linear-gradient(180deg, #f4f8fc 0%, #e6edf5 100%);
  border: 1px solid var(--line);
}

.team-card__role {
  color: var(--primary);
  font-weight: 800;
}

.team-card__theme {
  color: var(--muted);
}

.team-card__theme strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--primary-deep);
}

.group-photo img {
  aspect-ratio: 1.75 / 0.92;
}

.form-panel form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  grid-template-columns: minmax(0, 1fr);
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field label {
  color: var(--primary-deep);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: var(--white);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 24px rgba(7, 29, 52, 0.03);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position:
    calc(100% - 1.25rem) calc(50% - 0.12rem),
    calc(100% - 0.95rem) calc(50% - 0.12rem);
  background-size: 0.36rem 0.36rem, 0.36rem 0.36rem;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
  cursor: pointer;
}

.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(0, 90, 170, 0.55);
  box-shadow:
    0 0 0 4px rgba(0, 90, 170, 0.08),
    0 14px 30px rgba(7, 29, 52, 0.08);
  outline: none;
}

.field--full {
  grid-column: 1 / -1;
}

.field--checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
}

.field--checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.25rem;
}

.field-note {
  font-size: 0.98rem;
}

.field-note a,
.legal-copy a,
.footer-copy a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

.status-banner {
  display: none;
  gap: 0.35rem;
  border-radius: 1.2rem;
}

.status-banner.is-visible {
  display: grid;
}

.status-banner--success {
  background: var(--success-bg);
  border-color: var(--success-line);
}

.status-banner--error {
  background: var(--error-bg);
  border-color: var(--error-line);
}

.status-banner strong {
  font-size: 1rem;
}

.inline-bank {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.05rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.inline-bank code,
.iban {
  font-size: clamp(1.18rem, 1vw + 1rem, 1.55rem);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-footer {
  padding: 0 0 2.6rem;
}

.footer-shell {
  padding: clamp(1.5rem, 2.8vw, 2.3rem);
  border-radius: clamp(1.8rem, 3vw, 2.8rem);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(145deg, #032b4f 0%, #004381 56%, #005aaa 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.footer-logo {
  width: min(13rem, 100%);
}

.footer-copy,
.footer-copy p,
.footer-copy li {
  color: rgba(255, 255, 255, 0.84);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.legal-copy {
  display: grid;
  gap: 1rem;
}

.legal-copy h2,
.legal-copy h3 {
  color: var(--primary-deep);
}

.redirect-shell {
  min-height: calc(100vh - 12rem);
  display: grid;
  align-items: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

@media (min-width: 720px) {
  :root {
    --container: min(1320px, calc(100vw - 2.8rem));
  }

  .card-grid--2,
  .card-grid--3,
  .detail-grid--2,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  :root {
    --container: min(1380px, calc(100vw - 3.2rem));
  }

  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    min-height: 5rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    justify-self: center;
  }

  .site-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.62rem 0.88rem;
    border-radius: 999px;
    color: var(--primary-deep);
    font-size: 0.98rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-current,
  .site-nav a[aria-current="page"] {
    background: rgba(0, 90, 170, 0.08);
    color: var(--primary);
  }

  .site-nav__extras {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.35rem;
    align-items: stretch;
  }

  .page-hero__grid,
  .event-shell,
  .dialog-shell,
  .footer-grid,
  .split-grid,
  .detail-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .profile-shell {
    grid-template-columns: minmax(19rem, 0.84fr) minmax(0, 1.16fr);
    align-items: start;
  }

  .card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1039px) {
  .header-cta {
    padding-inline: 0.9rem;
  }

  .header-cta__full {
    display: none;
  }

  .header-cta__short {
    display: inline;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}
