:root {
    --primary-blue: #1b3480;
    --primary-yellow: #fcb71e;
    --primary-orange: #f78847;
    --primary-red: #a6271e;
    --white: #ffffff;
    --ink: #162031;
    --muted: #5f6f87;
    --surface: #f6f8fb;
    --surface-alt: #fff6e5;
    --shadow: 0 18px 40px rgba(21, 37, 66, 0.12);
    --radius: 26px;
    --font-heading: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    --font-body: "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.is-menu-open,
body.is-menu-open { overflow: hidden; height: 100vh; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: #fff; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.v2-shell { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }

.v2-header { position: fixed; inset: 0 0 auto; z-index: 1000; overflow: visible; padding: 1rem 0; transition: background .25s ease, box-shadow .25s ease, transform .3s ease; }
.v2-header.is-solid { background: rgba(255,255,255,.94); backdrop-filter: blur(12px); box-shadow: 0 10px 28px rgba(19,34,60,.08); }
.v2-header.is-hidden { transform: translateY(-110%); }
.v2-header.is-menu-open { transform: none; background: rgba(255,255,255,.98); backdrop-filter: blur(14px); box-shadow: 0 10px 28px rgba(19,34,60,.08); }
.v2-header.is-menu-open .v2-brand { color: var(--primary-blue); }
.v2-header.is-menu-open .v2-menu { border-color: rgba(27,52,128,.18); background: #fff; }
.v2-header.is-menu-open .v2-menu span { background: var(--primary-blue); }
.v2-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.v2-brand { display: inline-flex; align-items: center; gap: .75rem; min-width: 0; }
.v2-brand__logo { display: block; width: 70px; height: 70px; object-fit: contain; }

.v2-nav { display: flex; align-items: center; gap: 1.1rem; }
.v2-nav__item { position: relative; display: inline-flex; align-items: center; gap: .35rem; padding: .85rem 0 1.35rem; margin: -.85rem 0 -1.35rem; }
.v2-nav__utility { display: inline-flex; align-items: center; margin-left: .45rem; }
.v2-nav__item > a { font: 700 .92rem/1 var(--font-heading); color: var(--white); letter-spacing: .03em; }
.v2-header.is-solid .v2-nav__item > a { color: var(--primary-blue); }
.v2-nav__item.is-active > a { color: var(--primary-yellow); }
.v2-nav__toggle { border: 0; background: transparent; color: inherit; cursor: pointer; font-size: .9rem; padding: 0; }
.v2-nav__dropdown { position: absolute; top: calc(100% - .25rem); left: 0; min-width: 240px; display: grid; gap: .1rem; padding: .8rem; border-radius: 20px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.v2-nav__item:hover .v2-nav__dropdown, .v2-nav__item.is-open .v2-nav__dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.v2-nav__dropdown a { padding: .8rem .9rem; border-radius: 14px; color: var(--primary-blue); font-weight: 600; }
.v2-nav__dropdown a:hover { background: var(--surface); }

.v2-header__actions { display: flex; align-items: center; gap: .75rem; }
.v2-language-toggle,
.v2-donate,
.v2-menu {
    min-height: 2.85rem;
}
.v2-account-btn,
.v2-mobile__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 2.9rem;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
    color: var(--white);
    font: 700 .8rem/1 var(--font-heading);
    letter-spacing: .05em;
    cursor: pointer;
}
.v2-account-btn--secondary,
.v2-mobile__action--outline { background: transparent; }
.v2-header.is-solid .v2-account-btn {
    color: var(--primary-blue);
    border-color: rgba(27,52,128,.18);
    background: #fff;
}
.v2-account-btn__icon {
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 999px;
    position: relative;
}
.v2-account-btn__icon::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 14px;
    height: 7px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    transform: translateX(-50%);
}
.v2-account-btn__icon--plus::before {
    content: '+';
    position: absolute;
    inset: -4px 0 0;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
}
.v2-language-toggle,
.v2-join,
.v2-donate { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; }
.v2-language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 3px;
    overflow: hidden;
    background: rgba(255,255,255,.14);
    flex: 0 0 auto;
}
.v2-language-toggle__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-height: calc(2.85rem - 6px);
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    font: 700 .82rem/1 var(--font-heading);
    cursor: pointer;
    flex: 0 0 auto;
    appearance: none;
    -webkit-appearance: none;
}
.v2-language-toggle__button.is-active {
    background: #fff;
    color: var(--primary-blue);
    box-shadow: inset 0 0 0 1px rgba(27,52,128,.08);
}
.v2-language-toggle__button:focus-visible {
    outline: 2px solid rgba(252,183,30,.55);
    outline-offset: 2px;
}
.v2-header.is-solid .v2-language-toggle { color: var(--primary-blue); border-color: rgba(27,52,128,.18); background: rgba(255,255,255,.95); }
.v2-join {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-height: 2.85rem;
    min-width: 6.6rem;
    padding: 0 1.2rem;
    background: rgba(255,255,255,.18);
    color: var(--white);
    font: 700 .9rem/1 var(--font-heading);
    border-color: rgba(255,255,255,.48);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.v2-join:hover,
.v2-join:focus-visible {
    background: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.62);
}
.v2-donate { background: linear-gradient(135deg, var(--primary-red), var(--primary-orange)); color: var(--white); border-color: transparent; }
.v2-donate { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; padding: 0 1rem; font: 700 .85rem/1 var(--font-heading); }
.v2-header.is-solid .v2-join {
    border-color: rgba(27,52,128,.18);
    background: rgba(255,255,255,.95);
    color: var(--primary-blue);
    box-shadow: inset 0 0 0 1px rgba(27,52,128,.08);
}
.v2-menu { display: none; position: relative; width: 2.85rem; height: 2.85rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.35); background: transparent; }
.v2-menu span { position: absolute; left: 50%; width: 20px; height: 2px; margin: 0; background: var(--white); transform-origin: center; transition: transform .22s ease, opacity .18s ease, background .2s ease; }
.v2-menu span:first-child { top: calc(50% - 4px); transform: translateX(-50%); }
.v2-menu span:last-child { top: calc(50% + 4px); transform: translateX(-50%); }
.v2-menu.is-open span:first-child { top: 50%; transform: translateX(-50%) rotate(45deg); }
.v2-menu.is-open span:last-child { top: 50%; transform: translateX(-50%) rotate(-45deg); }
.v2-header.is-solid .v2-menu { border-color: rgba(27,52,128,.18); background: #fff; }
.v2-header.is-solid .v2-menu span { background: var(--primary-blue); }
.v2-mobile { display: none; background: rgba(255,255,255,.98); border-top: 1px solid rgba(27,52,128,.1); }
.v2-mobile.is-open { display: block; }
.v2-mobile[hidden] { display: none !important; }
.v2-mobile__inner { display: grid; gap: .35rem; padding: 1rem 0 1.25rem; }
.v2-mobile__inner a { padding: .85rem 0; font-weight: 700; color: var(--primary-blue); }
.v2-mobile__child { padding-left: 1.25rem !important; color: var(--muted) !important; font-weight: 600 !important; }
.v2-mobile__action {
    width: 100%;
    margin-top: .4rem;
    color: var(--primary-blue);
    border-color: rgba(27,52,128,.16);
    background: #fff;
}
.v2-mobile__language {
    display: grid;
    gap: .65rem;
    margin-top: .7rem;
    padding-top: .9rem;
    border-top: 1px solid rgba(27,52,128,.1);
}
.v2-mobile__label {
    color: var(--muted);
    font: 700 .78rem/1 var(--font-heading);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.v2-hero, .v2-page-hero { position: relative; display: flex; align-items: center; background: linear-gradient(120deg, rgba(9,20,42,.82), rgba(27,52,128,.6) 45%, rgba(166,39,30,.42)), var(--hero-image) center/cover no-repeat; }
.v2-hero { background-position: center 74%; }
.v2-page-hero { background-position: center 54%; }
.v2-hero { min-height: 100vh; }
.v2-page-hero { min-height: 72vh; }
.v2-hero__inner, .v2-page-hero__inner { padding-top: 7.5rem; padding-bottom: 4rem; color: var(--white); max-width: 780px; }
.v2-kicker { margin: 0 0 1rem; color: var(--primary-yellow); text-transform: uppercase; letter-spacing: .18em; font: 700 .88rem/1.3 var(--font-heading); }
.v2-hero h1, .v2-page-hero h1 { margin: 0; font: 800 clamp(2.45rem, 6vw, 5rem)/.94 var(--font-heading); }
.v2-hero__text, .v2-page-hero p { margin-top: 1.1rem; font-size: clamp(1rem, 1.5vw, 1.14rem); line-height: 1.6; color: rgba(255,255,255,.9); }
.v2-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.45rem; }
.v2-button { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; padding: .9rem 1.4rem; border-radius: 999px; font: 700 .92rem/1 var(--font-heading); }
.v2-button--primary { background: var(--primary-yellow); color: var(--primary-blue); }
.v2-button--secondary { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.3); }

.v2-section, .v2-what, .v2-impact, .v2-verse, .v2-cta { padding: 5rem 0; }
.v2-section--tint, .v2-what { background: var(--surface); }
.v2-verse { background: linear-gradient(135deg, var(--surface-alt), #fff); text-align: center; }
.v2-verse h2 { margin: 0 auto; max-width: 900px; font: 700 clamp(2rem, 4vw, 3.4rem)/1.06 var(--font-heading); }
.v2-verse p { margin-top: 1rem; color: var(--muted); font-weight: 700; }
.v2-section__head { margin-bottom: 2rem; }
.v2-section__head--center { text-align: center; max-width: 860px; margin-inline: auto; margin-bottom: 2.5rem; }
.v2-section__head h2 { margin: 0; font: 800 clamp(1.9rem, 4vw, 3.2rem)/1 var(--font-heading); color: var(--primary-blue); }
.v2-section__head p { color: var(--muted); line-height: 1.8; }

.v2-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.v2-gallery__item { aspect-ratio: .92; border-radius: var(--radius); background-size: cover; background-position: center; box-shadow: var(--shadow); }

.v2-impact { background: linear-gradient(135deg, #0f1e38, #1c3264); }
.v2-impact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.v2-impact__card { padding: 2rem; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--white); text-align: center; }
.v2-impact__card strong { display: block; font: 800 clamp(2rem, 5vw, 3.4rem)/1 var(--font-heading); }
.v2-impact__card span { display: block; margin-top: .6rem; color: rgba(255,255,255,.78); }

.v2-grid { display: grid; gap: 1rem; }
.v2-grid--two { grid-template-columns: repeat(2, 1fr); }
.v2-grid--three { grid-template-columns: repeat(3, 1fr); }
.v2-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1rem; }
.v2-panel, .v2-card, .v2-quote { padding: 1.6rem; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.v2-panel--lead { background: linear-gradient(135deg, #ffffff, #fff6ed); }
.v2-panel p, .v2-card p, .v2-quote p { line-height: 1.8; color: var(--muted); }
.v2-card h3, .v2-panel h3, .v2-quote h3 { margin: 0 0 .8rem; font: 700 1.35rem/1.15 var(--font-heading); color: var(--primary-blue); }
.v2-mini { margin: 0 0 .6rem; text-transform: uppercase; letter-spacing: .16em; color: var(--primary-red); font: 700 .75rem/1.4 var(--font-heading); }
.v2-meta { display: inline-block; margin-top: 1rem; color: var(--primary-blue); font-weight: 700; }
.v2-card--cta {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    border: 1px solid rgba(27,52,128,.08);
}
.v2-card--cta:hover,
.v2-card--cta:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(15,42,68,.14);
    border-color: rgba(27,52,128,.18);
    outline: none;
}
.v2-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    padding: .78rem 1.05rem;
    min-height: 2.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-yellow), #ffd24d);
    color: var(--primary-blue);
    font: 700 .84rem/1 var(--font-heading);
}
.v2-member-card {
    cursor: pointer;
    border: 1px solid rgba(27,52,128,.08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.v2-member-card:hover,
.v2-member-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(15,42,68,.14);
    border-color: rgba(27,52,128,.18);
    outline: none;
}
.v2-member-card__media {
    margin: -1.6rem -1.6rem 1rem;
    height: 260px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 18px 18px;
}
.v2-member-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v2-timeline { display: grid; gap: 1rem; }
.v2-timeline__item { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 1.4rem 1.5rem; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.v2-timeline__item > span { color: var(--primary-orange); font: 800 1rem/1 var(--font-heading); }

.v2-cta { background: linear-gradient(135deg, #0e1a32, #1e376f); }
.v2-cta__inner { display: grid; grid-template-columns: 1fr .9fr; gap: 2rem; align-items: center; }
.v2-cta__copy h2 { margin: 0; color: var(--white); font: 800 clamp(2rem, 4vw, 3.2rem)/1 var(--font-heading); }
.v2-cta__copy p { color: rgba(255,255,255,.82); line-height: 1.8; }
.v2-cta__visual { position: relative; min-height: 340px; }
.v2-cta__visual figure { position: absolute; margin: 0; border-radius: 28px; background-size: cover; background-position: center; box-shadow: 0 26px 50px rgba(0,0,0,.25); }
.v2-cta__visual figure:first-child { inset: 0 6rem 6rem 0; }
.v2-cta__visual figure:last-child { inset: 9rem 0 0 8rem; }

.v2-footer { padding: 3rem 0; background: #0f1726; color: rgba(255,255,255,.82); }
.v2-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.25rem; }
.v2-footer h3, .v2-footer h4 { margin: 0 0 1rem; color: var(--white); font-family: var(--font-heading); }
.v2-footer a, .v2-footer span, .v2-footer p { display: block; margin-bottom: .6rem; line-height: 1.7; }
.v2-footer__version {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-yellow);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: .18em;
}
.v2-footer__version:hover,
.v2-footer__version:focus-visible {
    color: #ffd45c;
}
.v2-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    margin-right: .5rem;
    padding: 0 .85rem;
    border: 1px solid rgba(255,255,255,.16);
    background: transparent;
    color: rgba(255,255,255,.82);
    cursor: pointer;
}
.v2-mini-newsletter {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .65rem;
    margin-top: 1rem;
}
.v2-mini-newsletter input,
.v2-mini-newsletter button {
    min-height: 3rem;
    padding: 0 .9rem;
    border: 1px solid rgba(255,255,255,.16);
}
.v2-mini-newsletter input { background: rgba(255,255,255,.06); color: white; }
.v2-mini-newsletter button {
    border: 0;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    font-weight: 700;
    cursor: pointer;
}

.v2-modal[hidden] { display: none; }
.v2-modal {
    position: fixed;
    inset: 0;
    display: grid;
    align-items: center;
    padding: 20px 12px;
    overflow-y: auto;
    z-index: 1200;
}
.v2-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 32, .62);
    backdrop-filter: blur(6px);
}
.v2-modal__dialog {
    position: relative;
    width: min(760px, calc(100% - 24px));
    max-height: calc(100svh - 40px);
    margin: auto;
    overflow: auto;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.26);
}
.v2-modal__dialog--small { width: min(520px, calc(100% - 24px)); }
.v2-modal__dialog--member { width: min(880px, calc(100% - 24px)); }
.v2-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}
.v2-modal__eyebrow {
    margin-bottom: .8rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: .16em;
    font: 700 .8rem/1.4 var(--font-heading);
}
.v2-modal__dialog h2 {
    margin: 0;
    font: 800 clamp(1.9rem, 4vw, 3rem)/1 var(--font-heading);
    color: var(--primary-blue);
}
.v2-modal__copy {
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.8;
}
.v2-member-modal__grid {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 1.25rem;
    align-items: start;
}
.v2-member-modal__photo {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #e7ebf3;
}
.v2-member-modal__photo img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}
.v2-modal__form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}
.v2-modal__form label {
    display: grid;
    gap: .45rem;
    font-weight: 600;
}
.v2-modal__form input,
.v2-modal__form select,
.v2-modal__form textarea {
    width: 100%;
    min-height: 3.25rem;
    padding: .85rem 1rem;
    border: 1px solid rgba(0,0,0,.14);
}
.v2-modal__form textarea {
    min-height: 120px;
    resize: vertical;
}
.v2-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.v2-amounts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}
.v2-amount {
    min-height: 3rem;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff8e8;
    font-weight: 700;
    cursor: pointer;
}
.v2-amount.is-selected {
    border-color: var(--primary-orange);
    background: rgba(247,136,71,.15);
}
.v2-modal__submit {
    min-height: 3.3rem;
    border: 0;
    background: linear-gradient(135deg, var(--primary-blue), #27479f);
    color: white;
    font: 700 .9rem/1 var(--font-heading);
    letter-spacing: .08em;
    cursor: pointer;
}
.v2-modal__submit--link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.v2-modal__submit--ghost {
    background: linear-gradient(135deg, rgba(27,52,128,.12), rgba(39,71,159,.08));
    color: var(--primary-blue);
    border: 1px solid rgba(27,52,128,.16);
}
.v2-developer__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .9rem;
    margin-top: 1.5rem;
}
.v2-modal__tabs {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .4rem;
    margin-bottom: 1.2rem;
    padding: .35rem;
    background: var(--surface);
    border-radius: 999px;
}
.v2-modal__tab {
    min-height: 2.8rem;
    padding: 0 1rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    font: 700 .82rem/1 var(--font-heading);
    cursor: pointer;
}
.v2-modal__tab.is-active {
    background: #fff;
    box-shadow: 0 10px 20px rgba(16, 32, 61, .08);
}
.v2-account-panel { display: none; }
.v2-account-panel.is-active { display: block; }
.v2-prototype-success {
    padding: .9rem 1rem;
    background: rgba(17, 97, 73, .08);
    color: #0f5d43;
    font-weight: 600;
}

.reveal {
    --reveal-stagger: 68ms;
    --reveal-offset: 28px;
    opacity: 1;
}
.reveal-child {
    --child-offset-y: var(--reveal-offset);
    --child-scale: 1;
    --child-rotate: 0deg;
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, var(--child-offset-y), 0) scale(var(--child-scale)) rotate(var(--child-rotate));
    transform-origin: center;
    transition:
        opacity .72s cubic-bezier(.2,.7,.2,1),
        transform .88s cubic-bezier(.16,1,.3,1),
        filter .88s cubic-bezier(.16,1,.3,1);
    transition-delay: calc(var(--reveal-index, 0) * var(--reveal-stagger));
    will-change: transform, opacity, filter;
}
.reveal-child--text {
    --child-offset-y: 32px;
}
.reveal-child--media {
    --child-offset-y: 42px;
    --child-scale: 1.035;
    --child-rotate: -.75deg;
}
.reveal-child--icon {
    --child-offset-y: 18px;
    --child-scale: .82;
}
.reveal.is-visible .reveal-child {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}
.reveal--hero .reveal-child {
    transition-duration: .95s;
}
.reveal--hero.is-visible .reveal-child {
    transition-timing-function: cubic-bezier(.14,1,.34,1);
}
@media (min-width: 981px) {
    .v2-header {
        padding: .45rem 0;
    }
    .v2-brand__logo {
        width: 35px;
        height: 35px;
    }
    .v2-nav__item {
        padding: .42rem 0 .7rem;
        margin: -.42rem 0 -.7rem;
    }
    .v2-language-toggle,
    .v2-join,
    .v2-donate,
    .v2-menu {
        min-height: 2.25rem;
    }
    .v2-language-toggle__button {
        width: 34px;
        min-height: calc(2.25rem - 6px);
        font-size: .76rem;
    }
    .v2-join,
    .v2-donate {
        min-width: 5.5rem;
        padding-inline: .85rem;
        font-size: .8rem;
    }
    .v2-menu {
        width: 2.25rem;
        height: 2.25rem;
    }
    .v2-menu span {
        width: 16px;
    }
    .v2-hero {
        min-height: 100svh;
        background-position: center 68%;
    }
    .v2-page-hero {
        min-height: 100svh;
        background-position: center 56%;
    }
    .v2-hero__inner {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: min(52vw, 590px);
        padding-top: 6.2rem;
        padding-bottom: 1.4rem;
    }
    .v2-page-hero__inner {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: min(54vw, 620px);
        padding-top: 6.1rem;
        padding-bottom: 1.25rem;
    }
    .v2-hero h1 {
        font-size: clamp(2.85rem, 4.9vw, 4.65rem);
        line-height: .9;
        text-wrap: balance;
    }
    .v2-page-hero h1 {
        font-size: clamp(2.35rem, 4.25vw, 3.95rem);
        line-height: .94;
        text-wrap: balance;
    }
    .v2-hero__text {
        max-width: 31rem;
        margin-top: .9rem;
        font-size: clamp(.98rem, 1.05vw, 1.06rem);
        line-height: 1.5;
    }
    .v2-page-hero p {
        max-width: 34rem;
        margin-top: .82rem;
        font-size: clamp(.95rem, .98vw, 1.02rem);
        line-height: 1.5;
    }
    .v2-hero__actions {
        margin-top: 1.15rem;
    }
    .v2-hero .v2-button,
    .v2-page-hero .v2-button {
        min-height: 2.72rem;
        padding: .74rem 1.15rem;
        font-size: .86rem;
    }
}
@media (min-width: 981px) and (max-width: 1440px) {
    .v2-hero__inner {
        max-width: min(50vw, 540px);
    }
    .v2-hero h1 {
        font-size: clamp(2.55rem, 4.4vw, 4rem);
    }
    .v2-page-hero__inner {
        max-width: min(53vw, 580px);
    }
    .v2-page-hero h1 {
        font-size: clamp(2.18rem, 3.85vw, 3.45rem);
    }
    .v2-page-hero p {
        font-size: clamp(.92rem, .92vw, .98rem);
    }
}
@media (min-width: 981px) and (max-height: 820px) {
    .v2-hero {
        background-position: center 70%;
    }
    .v2-page-hero {
        background-position: center 58%;
    }
    .v2-hero__inner {
        padding-top: 5.8rem;
        padding-bottom: 1.1rem;
        max-width: min(50vw, 540px);
    }
    .v2-page-hero__inner {
        padding-top: 5.7rem;
        padding-bottom: 1rem;
        max-width: min(52vw, 560px);
    }
    .v2-hero h1 {
        font-size: clamp(2.3rem, 4vw, 3.7rem);
    }
    .v2-page-hero h1 {
        font-size: clamp(2rem, 3.45vw, 3.2rem);
    }
    .v2-hero__text {
        margin-top: .72rem;
        font-size: .96rem;
        line-height: 1.45;
    }
    .v2-page-hero p {
        margin-top: .66rem;
        font-size: .92rem;
        line-height: 1.44;
    }
    .v2-hero__actions {
        margin-top: .9rem;
    }
    .v2-hero .v2-button,
    .v2-page-hero .v2-button {
        min-height: 2.55rem;
        padding: .66rem 1rem;
        font-size: .82rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .reveal-child {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .v2-nav { display: none; }
    .v2-menu { display: inline-block; }
    .v2-join { display: none; }
    .v2-language-toggle {
        color: var(--primary-blue);
        border-color: rgba(27,52,128,.18);
        background-color: rgba(255,255,255,.96);
    }
    .v2-menu {
        border-color: rgba(27,52,128,.18);
        background: rgba(255,255,255,.96);
    }
    .v2-menu span {
        background: var(--primary-blue);
    }
    .v2-mobile {
        position: fixed;
        inset: 76px 0 0;
        z-index: 995;
        display: block;
        overflow-y: auto;
        padding-bottom: 2rem;
        background: rgba(255,255,255,.99);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }
    .v2-mobile.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .v2-mobile__inner {
        min-height: calc(100vh - 76px);
        align-content: start;
    }
    .v2-hero, .v2-page-hero { min-height: auto; }
    .v2-hero__inner, .v2-page-hero__inner { padding-top: 8rem; padding-bottom: 3rem; }
    .v2-impact__grid, .v2-grid--three, .v2-grid--two, .v2-split, .v2-cta__inner, .v2-footer__inner, .v2-gallery { grid-template-columns: 1fr; }
    .v2-cta__visual { min-height: 440px; }
    .v2-modal__grid, .v2-amounts, .v2-mini-newsletter { grid-template-columns: 1fr; }
    .v2-member-modal__grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) and (orientation: portrait) {
    .v2-hero {
        min-height: 100svh;
    }

    .v2-hero__inner {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 6.5rem;
        padding-bottom: 2.5rem;
    }
}
@media (max-width: 640px) {
    .v2-shell { width: min(100% - 1.25rem, 1180px); }
    .v2-brand__logo { width: 54px; height: 54px; }
    .v2-mobile { inset: 72px 0 0; }
    .v2-mobile__inner { min-height: calc(100vh - 72px); }
    .v2-language-toggle { padding: 3px; }
    .v2-language-toggle__button { width: 34px; min-height: calc(2.7rem - 6px); font-size: .76rem; }
    .v2-language-toggle,
    .v2-donate,
    .v2-menu { min-height: 2.7rem; }
    .v2-donate { padding-inline: .95rem; font-size: .8rem; }
    .v2-menu { width: 2.7rem; height: 2.7rem; }
    .v2-modal {
        align-items: start;
        padding: 10px;
    }
    .v2-modal__dialog {
        width: 100%;
        max-height: calc(100svh - 20px);
        padding: 20px 16px;
        border-radius: 20px;
    }
    .v2-modal__tabs {
        width: 100%;
    }
    .v2-cta__visual { min-height: 320px; }
    .v2-cta__visual figure:first-child { inset: 0 2rem 5rem 0; }
    .v2-cta__visual figure:last-child { inset: 8rem 0 0 3.2rem; }
    .v2-timeline__item { grid-template-columns: 1fr; }
}
