:root {
    --navy: #051c33;
    --navy-mid: #0a2f52;
    --blue: #0c5eb2;
    --blue-bright: #1f7fe8;
    --blue-soft: #d4e6fb;
    --ice: #eef4fc;
    --mist: #f6f8fc;
    --color-bg: #fafbfd;
    --color-surface: #ffffff;
    --color-border: #c9d8ec;
    --color-text: #0f1722;
    --color-muted: #4a5d72;
    --color-primary: var(--blue);
    --color-primary-hover: #094a90;
    --color-accent: var(--ice);
    --shadow-sm: 0 2px 8px rgba(5, 28, 51, 0.06);
    --shadow-md: 0 16px 48px rgba(5, 28, 51, 0.1);
    --shadow-glow: 0 0 0 1px rgba(12, 94, 178, 0.12);
    --radius: 14px;
    --radius-lg: 22px;
    --maxw: 1140px;
    --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, sans-serif;
    --font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --step--1: clamp(0.88rem, 0.85rem + 0.12vw, 0.94rem);
    --step-0: clamp(1rem, 0.96rem + 0.22vw, 1.08rem);
    --step-1: clamp(1.12rem, 1.02rem + 0.45vw, 1.28rem);
    --step-2: clamp(1.35rem, 1.12rem + 0.75vw, 1.65rem);
    --step-3: clamp(1.65rem, 1.25rem + 1.2vw, 2.1rem);
    --step-4: clamp(2.1rem, 1.35rem + 2.2vw, 3.1rem);
    --section-y: clamp(1.15rem, 2.8vw, 1.85rem);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .btn:hover,
    .bento__cell:hover,
    .press-grid__cover:hover {
        transform: none !important;
    }

    .hero__veil {
        animation: none !important;
    }

    .hero__shine {
        animation: none !important;
    }

    .hero__line {
        animation: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .partner-band__inner::before {
        animation: none !important;
    }

    .material-card:hover {
        transform: none !important;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--step-0);
    line-height: 1.65;
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image:
        radial-gradient(120% 80% at 100% 0%, rgba(12, 94, 178, 0.08), transparent 45%),
        radial-gradient(80% 50% at 0% 100%, rgba(5, 28, 51, 0.045), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(31, 127, 232, 0.04), transparent 55%);
    background-attachment: fixed;
}

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

a {
    color: var(--color-primary);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--color-primary-hover);
}

.visually-hidden {
    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 {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    padding: 0.55rem 1.1rem;
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    z-index: 1000;
    transform: translateY(-200%);
    font-weight: 600;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--blue-bright);
    outline-offset: 2px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.25s ease;
}

.site-header--compact .site-header__bar {
    box-shadow: 0 4px 20px rgba(5, 28, 51, 0.08);
}

.site-header--compact .site-header__inner {
    padding-top: 0.4rem;
    padding-bottom: 0.5rem;
}

.site-header--compact .site-logo img {
    width: min(200px, 46vw);
}

.site-header__bar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 3px solid var(--blue);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s ease;
}

.site-header__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0.55rem 1.25rem 0.85rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "logo toggle"
        "nav nav";
    align-items: center;
    gap: 0.35rem 0.75rem;
}

.site-logo {
    grid-area: logo;
}

.site-nav__item--rail {
    display: flex;
    align-items: center;
    margin-left: 0.15rem;
}

.site-nav__ig {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
    border-radius: 10px;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease;
}

.site-nav__ig:hover {
    background: transparent;
    color: var(--blue);
}

.site-nav__ig .bi {
    font-size: 1.35rem;
}

@media (min-width: 900px) {
    .site-nav__item--rail {
        margin-left: auto;
    }

    .site-nav__ig .bi {
        font-size: 1.45rem;
    }
}

.site-logo img {
    width: min(315px, 72vw);
    height: auto;
    transition: width 0.28s ease;
}

.nav-toggle {
    grid-area: toggle;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    background: var(--mist);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
    background: #fff;
    border-color: var(--blue-soft);
}

.nav-toggle__bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 1px;
}

.site-nav {
    grid-area: nav;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav.is-open {
    max-height: min(92vh, 920px);
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.site-nav__link {
    display: block;
    padding: 0.7rem 0.9rem;
    border-radius: 2px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: color 0.18s ease, background 0.18s ease;
}

.site-nav__link:hover {
    background: transparent;
    color: var(--blue);
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 0.22em;
    text-decoration-thickness: 1px;
}

.site-nav__link.is-active {
    background: transparent;
    color: var(--blue);
    font-weight: 700;
}

.site-nav__link--cta {
    background: var(--navy);
    color: #fff;
    text-align: center;
    margin-top: 0.25rem;
    border-color: var(--navy);
    border-radius: 2px;
}

.site-nav__link--cta:hover {
    background: var(--navy-mid);
    color: #fff;
    border-color: var(--navy-mid);
    text-decoration: none;
}

.site-nav__link--cta.is-active {
    background: var(--blue);
    border-color: var(--blue);
}

.site-nav__item--dropdown {
    position: relative;
}

.site-nav__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    padding: 0.7rem 0.9rem;
    margin: 0;
    border: 0;
    border-radius: 2px;
    background: transparent;
    font: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: color 0.18s ease;
}

.site-nav__trigger:hover {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.site-nav__trigger[aria-expanded="true"] {
    color: var(--blue);
}

.site-nav__trigger-chev {
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    margin-left: 0.1em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(0, -0.08em);
}

.site-nav__trigger[aria-expanded="true"] .site-nav__trigger-chev {
    transform: rotate(-135deg) translate(0.1em, 0);
}

.site-nav__panel {
    margin: 0.25rem 0 0.5rem;
    padding: 0.35rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.site-nav__panel[hidden] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.site-nav__tile {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.65rem 0.55rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}

.site-nav__tile:hover {
    background: var(--ice);
}

.site-nav__tile.is-active {
    background: rgba(12, 94, 178, 0.08);
}

.site-nav__tile-icon {
    flex-shrink: 0;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-nav__tile-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.site-nav__tile-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
}

.site-nav__tile-sub {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.35;
}

@media (min-width: 900px) {
    .site-header__inner {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0.65rem 1.25rem;
        gap: 1.5rem;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        max-height: none !important;
        overflow: visible;
        width: auto;
    }

    .site-nav__list {
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 0.15rem;
    }

    .site-nav__link {
        font-size: 0.92rem;
        padding: 0.5rem 0.75rem;
    }

    .site-nav__link--cta {
        margin-top: 0;
        margin-left: 0.35rem;
        padding: 0.55rem 1.1rem;
    }

    .site-nav__trigger {
        width: auto;
        padding: 0.5rem 0.65rem;
        font-size: 0.92rem;
    }

    .site-nav__panel {
        position: absolute;
        top: calc(100% + 0.25rem);
        right: 0;
        left: auto;
        margin: 0;
        min-width: 17.5rem;
        max-width: min(22rem, 92vw);
        padding: 0.45rem;
        z-index: 120;
    }

    .site-nav__item--dropdown:first-of-type .site-nav__panel {
        right: auto;
        left: 0;
    }

    .site-nav__panel--dense:not([hidden]) {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.2rem;
        min-width: min(28rem, 92vw);
        max-width: min(40rem, 96vw);
    }
}

main {
    overflow-x: clip;
}

.layout {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.layout--contact-wide {
    max-width: min(72rem, 100%);
}

.contact-page__meta {
    margin: 1rem 0 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.contact-page__meta p {
    margin: 0 0 0.55rem;
}

.contact-page__meta p:last-child {
    margin-bottom: 0;
}

.contact-page__form {
    margin-top: 0.25rem;
}

.section {
    padding: var(--section-y) 0;
}

.section--tight {
    padding: var(--section-y) 0;
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--step-3);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.65rem;
    letter-spacing: -0.035em;
    color: var(--navy);
}

.section__lead {
    font-size: var(--step-1);
    color: var(--color-muted);
    max-width: none;
    margin: 0 0 1.35rem;
    line-height: 1.55;
}

.kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 0.65rem;
}

.kicker--on-dark {
    color: #9fd4ff;
}

.display-heading {
    font-family: var(--font-display);
    font-size: var(--step-4);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 1rem;
    letter-spacing: -0.045em;
    color: var(--navy);
}

.display-heading--sm {
    font-size: var(--step-3);
    letter-spacing: -0.038em;
}

.section-head {
    margin-bottom: 1.75rem;
    max-width: none;
}

.hero {
    position: relative;
    color: #fff;
    margin-bottom: 0;
    min-height: min(78vh, 38rem);
    display: flex;
    align-items: stretch;
}

.hero__media {
    position: absolute;
    inset: 0;
    background: var(--navy) center / cover no-repeat;
}

.hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(5, 28, 51, 0.92) 0%, rgba(5, 28, 51, 0.55) 48%, rgba(12, 94, 178, 0.35) 100%),
        linear-gradient(to top, rgba(5, 28, 51, 0.75), transparent 42%);
    pointer-events: none;
    animation: hero-veil-shift 22s ease-in-out infinite alternate;
}

@keyframes hero-veil-shift {
    0% {
        filter: hue-rotate(0deg) saturate(1);
        opacity: 1;
    }
    100% {
        filter: hue-rotate(-8deg) saturate(1.08);
        opacity: 1;
    }
}

.hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        100deg,
        transparent 0%,
        transparent 38%,
        rgba(255, 255, 255, 0.09) 50%,
        transparent 62%,
        transparent 100%
    );
    background-size: 220% 100%;
    animation: hero-shine 11s ease-in-out infinite;
    mix-blend-mode: overlay;
}

@keyframes hero-shine {
    0% {
        background-position: 120% 0;
    }
    100% {
        background-position: -120% 0;
    }
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(2.5rem, 8vw, 4.5rem);
    padding-bottom: clamp(2.5rem, 7vw, 4rem);
    width: 100%;
    min-height: min(78vh, 38rem);
}

.hero__line {
    opacity: 0;
    transform: translateY(22px);
    animation: hero-line-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__line:nth-child(1) {
    animation-delay: 0.06s;
}

.hero__line:nth-child(2) {
    animation-delay: 0.16s;
}

.hero__line:nth-child(3) {
    animation-delay: 0.26s;
}

.hero__line:nth-child(4) {
    animation-delay: 0.36s;
}

@keyframes hero-line-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--step-4);
    font-weight: 700;
    line-height: 1.02;
    margin: 0 0 1rem;
    max-width: 14ch;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.28);
}

@media (min-width: 600px) {
    .hero__title {
        max-width: 20ch;
    }
}

.hero__deck {
    font-size: var(--step-1);
    max-width: 46ch;
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__actions--split {
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    max-width: min(46ch, 100%);
}

.hero__actions-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__ig {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.55rem 0.75rem 0.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.hero__ig:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
}

.hero__ig-icon.bi {
    font-size: 1.75rem;
    line-height: 1;
}

.hero__ig-label {
    opacity: 0.92;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.78rem 1.35rem;
    border-radius: 11px;
    font-weight: 650;
    font-size: 0.98rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:focus-visible {
    outline: 3px solid var(--blue-bright);
    outline-offset: 2px;
}

/* Kein "blauer Rahmen" nach Mouse/Touch-Klick – nur bei Tastatur-Fokus */
.btn:focus:not(:focus-visible) {
    outline: none;
}

@media (hover: hover) {
    .btn:hover {
        transform: translateY(-1px);
    }
}

.btn--primary {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
    background: var(--ice);
    color: var(--navy);
    border-color: var(--ice);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn--solid {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(12, 94, 178, 0.28);
}

.btn--solid:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.layout .btn--outline {
    color: var(--navy);
    border-color: var(--color-border);
    box-shadow: none;
}

.layout .btn--outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--ice);
}

.section--bento-wrap {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

.bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 820px) {
    .bento {
        grid-template-columns: 1.35fr 1fr;
        grid-template-rows: auto auto;
        gap: 1.1rem;
    }

    .bento__cell--hero {
        grid-row: span 2;
    }
}

.bento__cell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

.bento__cell::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(12, 94, 178, 0.07), transparent 65%);
    pointer-events: none;
}

@media (hover: hover) {
    .bento__cell:hover {
        border-color: rgba(12, 94, 178, 0.45);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

    .bento__cell:hover .bento__go {
        color: var(--blue-bright);
    }
}

.bento__cell--hero {
    background: linear-gradient(135deg, #071f38 0%, #0a3a63 45%, #0c4a7a 100%);
    color: #e8f1fb;
    border-color: rgba(255, 255, 255, 0.12);
    min-height: 100%;
}

.bento__cell--hero .bento__eyebrow {
    color: #7ec8ff;
}

.bento__cell--hero .bento__title {
    color: #fff;
}

.bento__cell--hero .bento__text {
    color: rgba(232, 241, 251, 0.88);
}

.bento__cell--hero .bento__go {
    color: #9fd4ff;
}

.bento__cell--hero::after {
    background: radial-gradient(circle at 85% 120%, rgba(31, 127, 232, 0.22), transparent 58%);
}

.bento__cell--accent {
    background: linear-gradient(135deg, var(--ice) 0%, #fff 60%);
    border-color: var(--blue-soft);
}

.bento__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.bento__title {
    font-family: var(--font-display);
    font-size: var(--step-2);
    margin: 0 0 0.65rem;
    line-height: 1.2;
    color: var(--navy);
}

.bento__cell--hero .bento__title {
    font-size: clamp(1.45rem, 1.1rem + 1.2vw, 1.85rem);
}

.bento__text {
    margin: 0 0 1.25rem;
    font-size: 0.96rem;
    color: var(--color-muted);
    flex: 1;
    line-height: 1.55;
    max-width: none;
}

.bento__go {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--blue);
    margin-top: auto;
}

.section--splitband {
    background: linear-gradient(180deg, var(--mist) 0%, var(--color-bg) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.splitband {
    display: grid;
    gap: 2rem;
    align-items: stretch;
    padding: 0;
}

@media (min-width: 880px) {
    .splitband {
        grid-template-columns: 1fr 1.05fr;
        gap: 2rem;
    }

    .splitband--reverse {
        direction: rtl;
    }

    .splitband--reverse > * {
        direction: ltr;
    }
}

.splitband__text p {
    margin: 0 0 1rem;
    color: var(--color-muted);
    max-width: none;
}

.splitband__figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 14rem;
    align-self: stretch;
}

.splitband__figure img {
    flex: 1 1 auto;
    width: 100%;
    min-height: 12rem;
    object-fit: cover;
    display: block;
}

.splitband__figure--offset {
    transform: none;
}

.section--press {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

.press-grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 800px) {
    .press-grid {
        grid-template-columns: 1.2fr 0.75fr;
        gap: 2.5rem;
        align-items: stretch;
    }
}

.press-grid__main p {
    margin: 0 0 1rem;
    color: var(--color-muted);
    max-width: none;
}

.press-grid__lead {
    font-size: var(--step-1);
    color: var(--color-text);
}

.press-grid__cover {
    display: flex;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    align-self: stretch;
    min-height: 14rem;
}

.press-grid__cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--mist);
}

.press-grid__cover:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(5, 28, 51, 0.15);
}

.section--team {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

.grid-3 {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 720px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-family: var(--font-display);
    margin: 0 0 0.5rem;
    font-size: var(--step-1);
    color: var(--navy);
}

.card__text {
    margin: 0 0 1rem;
    color: var(--color-muted);
    flex: 1;
}

.card__link {
    font-weight: 700;
    text-decoration: none;
}

.surface {
    background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.split {
    display: grid;
    gap: 1.75rem;
    align-items: stretch;
}

.split figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    min-height: 12rem;
    align-self: stretch;
}

.split figure img {
    flex: 1 1 auto;
    width: 100%;
    min-height: 10rem;
    object-fit: cover;
    display: block;
}

@media (min-width: 880px) {
    .split {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.prose {
    max-width: none;
}

.prose p {
    margin: 0 0 1rem;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: var(--step-2);
    margin: 2rem 0 0.75rem;
    color: var(--navy);
}

.prose h3 {
    font-size: var(--step-1);
    margin: 1.5rem 0 0.5rem;
    color: var(--navy);
}

.prose ul {
    padding-left: 1.2rem;
}

.prose li {
    margin-bottom: 0.35rem;
}

.note {
    font-size: var(--step--1);
    color: var(--color-muted);
    border-left: 4px solid var(--blue);
    padding: 0.85rem 1.1rem;
    background: var(--ice);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.site-footer {
    background: linear-gradient(180deg, var(--navy) 0%, #020d18 100%);
    color: #b5c9df;
    padding: 2.75rem 1.25rem 1.75rem;
    margin-top: 0;
    border-top: 4px solid var(--blue);
}

.site-footer a {
    color: #e8f1fb;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.site-footer__grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

@media (min-width: 720px) {
    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.site-footer__brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    color: #fff;
}

.site-footer__heading {
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: #fff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li {
    margin-bottom: 0.45rem;
}

.site-footer__muted {
    margin: 0 0 0.4rem;
    color: #9fb4cc;
    font-size: 0.94rem;
    line-height: 1.5;
}

.site-footer__tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.85rem 0 0;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(232, 241, 251, 0.92);
    font-size: 0.92rem;
    line-height: 1.2;
    max-width: 100%;
}

.site-footer__flag svg {
    display: block;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.site-footer__copy {
    max-width: var(--maxw);
    margin: 2.25rem auto 0;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.86rem;
    color: #7a93ad;
    text-align: center;
}

.site-footer__credits {
    display: inline-block;
    margin-top: 0.35rem;
    color: rgba(154, 177, 204, 0.9);
}

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

.form__grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 560px) {
    .form__grid2 {
        grid-template-columns: 1fr;
    }
}

.form label {
    font-weight: 650;
    display: block;
    margin-bottom: 0.35rem;
    color: var(--navy);
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
    width: 100%;
    padding: 0.7rem 0.95rem;
    border-radius: 11px;
    border: 1px solid var(--color-border);
    font: inherit;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form input:focus-visible,
.form textarea:focus-visible {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(12, 94, 178, 0.15);
}

.form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-page__form {
    margin-top: 0.75rem;
}

.contact-page__form button[type="submit"] {
    justify-self: start;
}

.contact-page__hint {
    margin: -0.35rem 0 0;
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.form__check {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.form__check input {
    margin-top: 0.28rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert--ok {
    background: #e3f4e8;
    border: 1px solid #9ed4ae;
    color: #1a4d28;
}

.alert--err {
    background: #fdecea;
    border: 1px solid #f0b4b0;
    color: #6b1c1c;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
}

.pill-row li {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.stat-block {
    display: grid;
    gap: 1rem;
    align-items: start;
}

@media (min-width: 720px) {
    .stat-block {
        grid-template-columns: 200px 1fr;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.material-grid {
    display: grid;
    gap: 1.1rem;
}

@media (min-width: 780px) {
    .material-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.material-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
    .material-card:hover {
        border-color: rgba(12, 94, 178, 0.35);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }
}

.material-card--accent {
    background: linear-gradient(160deg, var(--ice) 0%, #fff 55%);
    border-color: var(--blue-soft);
}

.material-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: var(--navy);
}

.material-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.material-card__link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.partner-band {
    padding-top: 0;
    padding-bottom: 0;
}

.partner-band__inner {
    background: linear-gradient(135deg, #071f38 0%, var(--navy-mid) 45%, #0c4a7a 100%);
    color: #dbe7f5;
    padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.25rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.partner-band__inner::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto;
    height: 80%;
    background: radial-gradient(ellipse at 30% 0%, rgba(31, 127, 232, 0.35), transparent 55%);
    pointer-events: none;
    animation: partner-blob 14s ease-in-out infinite alternate;
}

@keyframes partner-blob {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(6%, 4%) scale(1.08);
        opacity: 1;
    }
}

.partner-band__inner--light {
    background: linear-gradient(180deg, #fff 0%, var(--ice) 100%);
    color: var(--color-text);
    border-color: var(--color-border);
}

.partner-band__inner--light::before {
    background: radial-gradient(ellipse at 20% 0%, rgba(12, 94, 178, 0.12), transparent 60%);
    animation: none;
}

.partner-band__title {
    font-family: var(--font-display);
    font-size: var(--step-2);
    margin: 0 0 0.75rem;
    position: relative;
    z-index: 1;
    color: #fff;
}

.partner-band__inner--light .partner-band__title {
    color: var(--navy);
}

.partner-band__text {
    margin: 0 0 1.25rem;
    max-width: none;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: rgba(232, 241, 251, 0.92);
}

.partner-band__inner--light .partner-band__text {
    color: var(--color-muted);
}

.partner-band .btn {
    position: relative;
    z-index: 1;
}

.travel-teaser {
    position: relative;
}

.travel-teaser__grid {
    display: grid;
    gap: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    align-items: stretch;
}

@media (min-width: 860px) {
    .travel-teaser__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    }
}

.travel-teaser__photo {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 14rem;
}

.travel-teaser__photo img {
    flex: 1 1 auto;
    width: 100%;
    min-height: 14rem;
    object-fit: cover;
    display: block;
}

.travel-teaser__col {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(180deg, var(--ice) 0%, var(--color-surface) 50%);
}

@media (min-width: 860px) {
    .travel-teaser__col {
        border-top: 0;
        border-left: 1px solid var(--color-border);
    }
}

.travel-teaser__copy {
    padding: clamp(1.35rem, 4vw, 2.25rem);
    flex: 1;
}

.travel-teaser__copy p {
    margin: 0 0 1rem;
    color: var(--color-muted);
    max-width: none;
}

.bank-box {
    margin-top: 1.25rem;
    padding: 1.1rem 1.25rem;
    background: var(--navy);
    color: #dbe7f5;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    line-height: 1.55;
}

.bank-box__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9fd4ff;
    margin: 0 0 0.65rem;
    font-weight: 700;
}

.bank-box__line {
    margin: 0 0 0.35rem;
}

.bank-box__line:last-child {
    margin-bottom: 0;
}

.bank-footer {
    margin-top: 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #0c4a7a 0%, #082a48 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid var(--blue);
    font-size: 0.88rem;
    line-height: 1.38;
    color: #e8f1fb;
}

.bank-footer__label {
    margin: 0 0 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}

.bank-footer__row {
    margin: 0 0 0.12rem;
    color: #e8f1fb;
}

.bank-footer__row:last-child {
    margin-bottom: 0;
}

.bank-footer strong {
    color: #b8d4f0;
    font-weight: 600;
}

.read-rich__tight {
    margin-bottom: 0.65rem !important;
    font-size: var(--step--1);
    line-height: 1.55;
    color: var(--color-muted);
}

.press-block__split {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 800px) {
    .press-block__split {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
        gap: 1.75rem;
        align-items: stretch;
    }
}

.press-block__main .kicker {
    margin-top: 0;
}

.press-block__main .display-heading {
    margin-top: 0.25rem;
}

.press-block__figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--mist);
}

.press-block__figure--side img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    max-height: 16rem;
}

@media (min-width: 800px) {
    .press-block__figure--side img {
        min-height: 100%;
        max-height: none;
        aspect-ratio: auto;
        height: 100%;
        object-fit: cover;
    }

    .press-block__figure--side {
        min-height: 14rem;
        display: flex;
        flex-direction: column;
    }
}

.press-block__figure figcaption {
    margin: 0;
    padding: 0.5rem 0.75rem 0.55rem;
    font-size: var(--step--1);
    color: var(--color-muted);
    line-height: 1.45;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(180deg, #fff 0%, var(--ice) 100%);
}

.press-block__actions {
    margin: 1rem 0 0;
}

.travel-teaser--landscape .travel-teaser__grid {
    display: flex;
    flex-direction: column;
}

.travel-teaser--landscape .travel-teaser__photo {
    order: 0;
    min-height: 0;
    max-height: none;
}

.travel-teaser--landscape .travel-teaser__photo img {
    width: 100%;
    min-height: 0;
    max-height: min(42vw, 15rem);
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

@media (min-width: 860px) {
    .travel-teaser--landscape .travel-teaser__photo img {
        max-height: min(32vw, 13.5rem);
        aspect-ratio: 21 / 9;
    }
}

.travel-teaser--landscape .travel-teaser__col {
    border-left: 0;
    border-top: 1px solid var(--color-border);
}

.help-dark-band {
    margin-top: 2rem;
    padding: 1.5rem 1.2rem 1.6rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #082830 0%, #051820 100%);
    color: #b5c9df;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--blue);
    box-shadow: var(--shadow-md);
}

.help-dark-band__title {
    font-family: var(--font-display);
    font-size: var(--step-2);
    margin: 0 0 1rem;
    color: #fff;
}

.help-dark-band__list {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

@media (min-width: 640px) {
    .help-dark-band__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

.help-dark-band__item {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.7rem 0.65rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--step--1);
    line-height: 1.45;
    color: #d5e4f2;
}

.help-dark-band__ic {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    color: #7ec8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-dark-band__ic svg {
    width: 1.45rem;
    height: 1.45rem;
    display: block;
}

.help-dark-band__hint {
    margin: 0 0 1rem;
    font-size: var(--step--1);
    color: #9fb4cc;
    line-height: 1.55;
}

.help-dark-band__hint a {
    color: #b8e8ff;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.help-dark-band__hint a:hover {
    color: #fff;
}

.help-dark-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.help-dark-band .btn--solid {
    background: linear-gradient(135deg, #0f766e 0%, #0c6b9e 100%);
    border-color: transparent;
    color: #fff;
}

.help-dark-band .btn--outline {
    color: #e8f1fb;
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
}

.help-dark-band .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.help-dark-band__link {
    color: #b8e8ff;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.help-dark-band__link:hover {
    color: #fff;
}

/* .read-rich h2 / .prose h2 and .layout .btn--outline override dark CTA typography */
.read-rich .help-dark-band h2,
.read-rich .help-dark-band h2.help-dark-band__title,
.prose .help-dark-band h2 {
    color: #fff;
    margin-top: 0;
}

.read-rich .help-dark-band p.help-dark-band__hint {
    color: #d8ebfb;
}

.read-rich .help-dark-band__item {
    color: #eaf4fc;
}

.read-rich .bank-footer p {
    margin: 0 0 0.22rem;
    color: #f2f7fc;
}

.read-rich .bank-footer p:last-child {
    margin-bottom: 0;
}

.read-rich .bank-footer strong {
    color: #e3f2ff;
}

.layout .help-dark-band .btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.layout .help-dark-band .btn--outline:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.ig-reveal__head {
    margin-bottom: 1rem;
}

.ig-reveal__lead {
    margin-bottom: 0;
}

.ig-reveal__gate {
    padding: 1.1rem 1.15rem 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(12, 107, 155, 0.35);
    background: rgba(232, 244, 252, 0.45);
    margin-bottom: 1.25rem;
}

.ig-reveal__consent-text {
    margin: 0 0 0.85rem;
    font-size: var(--step--1);
    color: var(--color-muted);
    line-height: 1.55;
}

.ig-reveal__gate .btn {
    margin-bottom: 1rem;
}

.ig-preview__label {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.ig-preview__row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.ig-preview__card {
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.75);
    padding: 0.45rem;
    min-height: 5.5rem;
}

.ig-preview__ph {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    max-height: 3.2rem;
    border-radius: 4px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    margin-bottom: 0.4rem;
}

.ig-preview__line {
    display: block;
    height: 0.35rem;
    border-radius: 2px;
    background: #e2e8f0;
    margin-bottom: 0.25rem;
}

.ig-preview__line--short {
    width: 55%;
}

.ig-reveal__grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 720px) {
    .ig-reveal__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ig-embed-slot {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
    min-height: 420px;
}

.ig-embed-frame {
    width: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

.ig-embed-fallback {
    margin: 0;
    font-size: var(--step--1);
    color: var(--color-muted);
    line-height: 1.55;
    grid-column: 1 / -1;
}

.ig-reveal__more-wrap {
    margin: 0;
    text-align: center;
}

.btn--subtle {
    font-weight: 600;
    font-size: var(--step--1);
    padding: 0.55rem 1.1rem;
}

.splitband__figure--mag {
    position: relative;
}

.splitband__figure--mag img {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
    .splitband__figure--mag:hover img {
        transform: scale(1.04);
    }
}

.section--tone-band {
    background: linear-gradient(180deg, rgba(12, 94, 178, 0.07) 0%, transparent 92%);
}

.media-strip {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    background: var(--color-surface);
}

.media-strip img {
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: min(36vw, 12rem);
    max-height: min(50vh, 26rem);
    object-fit: cover;
    display: block;
}

@media (max-width: 639px) {
    .media-strip img {
        aspect-ratio: 4 / 3;
        min-height: 11rem;
        max-height: 46vh;
    }
}

.media-strip__caption {
    margin: 0;
    font-size: var(--step--1);
    color: var(--color-muted);
    padding: 0.65rem 1rem 0.85rem;
    line-height: 1.5;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(180deg, #fff 0%, var(--ice) 100%);
}

.section-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 2vw, 1.25rem);
}

.material-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0 0 0.6rem;
}

.material-card__icon {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    margin-top: 0.1rem;
    color: var(--blue);
}

.material-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.material-card__head .material-card__title {
    margin: 0;
}

.page-sub-hero {
    position: relative;
    min-height: min(26rem, 48vw);
    max-height: 28rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.page-sub-hero__media {
    position: absolute;
    inset: 0;
    background: var(--navy) center / cover no-repeat;
    pointer-events: none;
}

.page-sub-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 40, 52, 0.82) 0%, rgba(10, 58, 72, 0.55) 50%, rgba(12, 90, 140, 0.4) 100%),
        linear-gradient(to top, rgba(8, 35, 48, 0.75), transparent 55%);
    pointer-events: none;
}

.page-sub-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.75rem, 4vw, 2.75rem) 1.25rem;
    color: #fff;
    min-height: min(22rem, 42vw);
}

.page-sub-hero__text {
    max-width: 52ch;
}

.page-sub-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 1rem + 2vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 22ch;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.page-sub-hero__lead {
    margin: 0 0 0.5rem;
    font-size: var(--step-0);
    line-height: 1.5;
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.92);
}

.page-sub-hero__symbol {
    margin: 1rem 0 0;
    font-size: var(--step--1);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    max-width: 60ch;
}

.page-sub {
    padding-top: var(--section-y);
    padding-bottom: calc(var(--section-y) * 1.25);
}

.section-divider--hairline {
    border-top: 1px solid rgba(12, 107, 155, 0.12);
}

.section-divider--soft {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.section-divider--none {
    border-top: 0;
    box-shadow: none;
}

.subpage-panel-figure {
    margin: 1rem 0 1.35rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--ice, #f4fafc);
}

.subpage-panel-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.subpage-panel-figure figcaption {
    margin: 0;
    font-size: var(--step--1);
    color: var(--color-muted);
    padding: 0.55rem 0.85rem 0.7rem;
    line-height: 1.55;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(180deg, #fff 0%, var(--ice, #f4fafc) 100%);
}

.page-sub > .section:first-of-type {
    padding-top: clamp(0.65rem, 1.8vw, 1.1rem);
}

.news-teaser-grid {
    display: grid;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 720px) {
    .news-teaser-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-teaser-grid--compact .news-teaser__teaser {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-teaser {
    margin: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.news-teaser__link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.news-teaser__link:hover .news-teaser__title {
    color: var(--blue);
}

.news-teaser__media {
    aspect-ratio: 16 / 9;
    background: var(--ice);
    overflow: hidden;
}

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

.news-teaser__body {
    padding: 0.75rem 0.9rem 1rem;
}

.news-teaser__date {
    display: block;
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
}

.news-teaser__title {
    margin: 0 0 0.35rem;
    font-size: 1.02rem;
    line-height: 1.3;
    font-family: var(--font-display);
}

.news-teaser__teaser {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.45;
}

.news-teaser__more {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--blue);
}

.news-article__head .kicker a {
    color: inherit;
    text-decoration: none;
}

.news-article__head .kicker a:hover {
    text-decoration: underline;
}

.news-article__time {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.news-article__fig {
    margin: 1rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.news-article__fig img {
    width: 100%;
    height: auto;
    display: block;
}

.news-article__body {
    font-size: 1rem;
    line-height: 1.7;
}

.news-article__body ul {
    padding-left: 1.2rem;
}

.news-article__src {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.news-pager {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 1.25rem;
}

.news-pager__link,
.news-pager__cur {
    display: inline-flex;
    min-width: 2.25rem;
    justify-content: center;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    font-weight: 600;
    font-size: 0.88rem;
}

.news-pager__link {
    text-decoration: none;
    color: var(--blue);
    background: #fff;
}

.news-pager__cur {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
