/* FORMUL Public Site v2 ? Core styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("tokens.css");

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

html {
    scroll-behavior: smooth;
}

body.v2-body {
    margin: 0;
    color: var(--v2-text);
    font-family: var(--v2-font);
    font-size: 15px;
    line-height: 1.7;
    background: var(--v2-bg);
    overflow-x: hidden;
}

body.v2-body.is-preloading {
    overflow: hidden;
}

body.v2-body a {
    color: var(--v2-primary);
    text-decoration: none;
    transition: color var(--v2-transition), background var(--v2-transition), box-shadow var(--v2-transition), transform var(--v2-transition);
}

body.v2-body a:hover {
    color: var(--v2-accent);
}

body.v2-body img {
    max-width: 100%;
    height: auto;
}

/* Keep brand logo compact ? body img rules must not inflate the header */
body.v2-body .v2-brand img {
    width: auto;
    height: 48px;
    max-height: 48px;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

body.v2-body .v2-preloader-logo img {
    width: 78px;
    height: 78px;
    max-width: 78px;
    max-height: 78px;
    object-fit: contain;
}

body.v2-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.v2-main {
    min-height: 50vh;
}

/* Buttons */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1.2;
}

.v2-btn-primary {
    background: var(--v2-accent);
    color: var(--v2-white) !important;
    border-color: var(--v2-accent);
}

.v2-btn-primary:hover {
    background: var(--v2-accent-hover);
    border-color: var(--v2-accent-hover);
    color: var(--v2-white) !important;
}

.v2-btn-donate {
    background: var(--v2-donate);
    color: var(--v2-white) !important;
    border-color: var(--v2-donate);
}

.v2-btn-donate:hover {
    background: var(--v2-donate-hover);
    border-color: var(--v2-donate-hover);
    color: var(--v2-white) !important;
}

.v2-btn-outline {
    background: transparent;
    color: var(--v2-primary) !important;
    border-color: var(--v2-primary);
}

.v2-btn-outline:hover {
    background: var(--v2-primary);
    color: var(--v2-white) !important;
}

.v2-btn-sm {
    padding: 0.4rem 0.95rem;
    font-size: 0.8rem;
}

.v2-btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

/* Top bar */
.v2-topbar {
    background: var(--v2-primary-dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    min-height: var(--v2-topbar-h);
}

.v2-topbar a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.v2-topbar a:hover {
    color: #fff !important;
}

.v2-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    flex-wrap: wrap;
}

.v2-topbar-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.v2-topbar-contact span,
.v2-topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.v2-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.v2-social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.v2-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.v2-social a:hover {
    background: var(--v2-accent);
}

.v2-lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.v2-lang-switch:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* Header */
.v2-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--v2-border);
    transition: box-shadow var(--v2-transition);
    height: auto;
    overflow: visible;
}

.v2-header.is-scrolled {
    box-shadow: var(--v2-shadow-header);
}

.v2-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: var(--v2-header-h);
    max-height: 84px;
    overflow: visible;
}

.v2-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--v2-primary) !important;
    font-weight: 700;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    max-width: min(200px, 42vw);
    min-width: 0;
}

.v2-brand img {
    height: 48px;
    width: auto;
    max-height: 48px;
    max-width: 140px;
    object-fit: contain;
    flex-shrink: 0;
}

.v2-brand-name {
    font-size: 1.05rem;
    line-height: 1.2;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-menu {
    display: none;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
    max-height: 72px;
    overflow: visible;
    /* Never collide with logo / actions */
    max-width: calc(100% - 220px);
}

.v2-menu > li {
    position: relative;
    flex-shrink: 1;
    min-width: 0;
}

.v2-menu > li > a {
    display: block;
    padding: 0.55rem 0.45rem;
    color: var(--v2-text) !important;
    font-weight: 500;
    font-size: 0.82rem;
    border-radius: var(--v2-radius-sm);
    white-space: nowrap;
}

.v2-menu > li > a:hover,
.v2-menu > li.active > a,
.v2-menu > li.show > a {
    color: var(--v2-primary) !important;
    background: var(--v2-bg-soft);
}

.v2-menu .dropdown-toggle::after {
    margin-left: 0.35rem;
    vertical-align: 0.15em;
}

.v2-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    display: none;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow-hover);
    padding: 0.5rem;
    min-width: 220px;
    margin-top: 0.35rem !important;
}

.v2-menu .dropdown-menu.show {
    display: block;
}

.v2-menu .dropdown-item {
    border-radius: var(--v2-radius-sm);
    padding: 0.55rem 0.85rem;
    font-size: 0.86rem;
    color: var(--v2-text);
    white-space: normal;
}

.v2-menu .dropdown-item:hover,
.v2-menu .dropdown-item:focus {
    background: var(--v2-bg-soft);
    color: var(--v2-primary);
}

.v2-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

.v2-panel-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-sm);
    background: var(--v2-bg);
    color: var(--v2-primary);
    font-size: 1.15rem;
    line-height: 1;
    transition: background var(--v2-transition), color var(--v2-transition), border-color var(--v2-transition);
}

.v2-panel-trigger:hover {
    background: var(--v2-bg-soft);
    color: var(--v2-accent);
    border-color: rgba(22, 161, 255, 0.35);
}

.v2-panels-modal {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(15, 53, 95, 0.2);
}

.v2-panels-modal .modal-header {
    border-bottom: 1px solid var(--v2-border);
    padding: 1rem 1.25rem;
}

.v2-panels-modal .modal-title {
    font-weight: 700;
    color: var(--v2-primary);
}

.v2-panels-modal .modal-body {
    padding: 1rem 1.15rem 1.25rem;
}

.v2-panels-list {
    display: grid;
    gap: 0.75rem;
}

.v2-panels-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--v2-border);
    background: var(--v2-bg-soft);
    color: inherit !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.v2-panels-item:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 161, 255, 0.35);
    box-shadow: var(--v2-shadow);
    color: inherit !important;
}

.v2-panels-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 161, 255, 0.14);
    color: var(--v2-accent);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.v2-panels-icon.is-admin {
    background: rgba(23, 75, 133, 0.12);
    color: var(--v2-primary);
}

.v2-panels-copy {
    flex: 1;
    min-width: 0;
}

.v2-panels-copy strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--v2-text);
    margin-bottom: 0.15rem;
}

.v2-panels-copy small {
    display: block;
    color: var(--v2-text-muted);
    font-size: 0.82rem;
}

.v2-panels-arrow {
    color: var(--v2-text-light);
    font-size: 0.95rem;
}

.v2-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-sm);
    background: var(--v2-bg);
    color: var(--v2-primary);
    font-size: 1.2rem;
}

.v2-toggler:hover {
    background: var(--v2-bg-soft);
}

/* Mobile drawer ? overlay, does not inflate page layout when closed */
.v2-mobile-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1045;
    border-top: 1px solid var(--v2-border);
    background: var(--v2-bg);
    max-height: min(70vh, 560px);
    overflow-y: auto;
    box-shadow: var(--v2-shadow-hover);
}

.v2-mobile-nav.is-open {
    display: block;
}

.v2-mobile-nav .accordion-item {
    border: none;
    border-bottom: 1px solid var(--v2-border);
}

.v2-mobile-nav .accordion-button {
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: none !important;
    background: transparent;
    color: var(--v2-text);
    padding: 0.9rem 1rem;
}

.v2-mobile-nav .accordion-button:not(.collapsed) {
    color: var(--v2-primary);
    background: var(--v2-bg-soft);
}

.v2-mobile-nav .accordion-body {
    padding: 0.25rem 0.75rem 0.75rem;
}

.v2-mobile-nav .accordion-body a,
.v2-mobile-link {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: var(--v2-radius-sm);
    color: var(--v2-text-muted) !important;
    font-size: 0.9rem;
}

.v2-mobile-nav .accordion-body a:hover,
.v2-mobile-link:hover,
.v2-mobile-link.active {
    background: var(--v2-bg-soft);
    color: var(--v2-primary) !important;
}

.v2-mobile-cta {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/*
 * Desktop nav needs ~1100px+ of horizontal room (many items + logo + Donate).
 * Keep hamburger through tablet / small laptop so items never sit on the logo.
 */
@media (min-width: 1200px) {
    .v2-menu {
        display: flex;
    }

    .v2-toggler {
        display: none;
    }

    .v2-mobile-nav,
    .v2-mobile-nav.is-open {
        display: none !important;
    }

    .v2-brand {
        max-width: 180px;
    }

    .v2-brand-name {
        display: none;
    }
}

@media (min-width: 1400px) {
    .v2-menu {
        gap: 0.1rem;
        max-width: none;
    }

    .v2-menu > li {
        flex-shrink: 0;
    }

    .v2-menu > li > a {
        padding: 0.65rem 0.65rem;
        font-size: 0.88rem;
    }

    .v2-brand {
        max-width: 240px;
    }

    .v2-brand-name {
        display: inline;
        max-width: none;
    }
}

/* Tablet + small laptop: logo + Donate + hamburger only */
@media (max-width: 1199.98px) {
    .v2-menu {
        display: none !important;
    }

    .v2-toggler {
        display: inline-flex;
    }

    .v2-nav .v2-btn-donate {
        display: inline-flex;
    }

    .v2-header {
        position: sticky;
    }

    .v2-brand {
        max-width: min(260px, calc(100% - 160px));
    }

    .v2-brand-name {
        display: inline;
        max-width: 140px;
    }
}

@media (max-width: 575.98px) {
    .v2-nav .v2-btn-donate {
        display: none;
    }

    .v2-brand-name {
        max-width: 100px;
    }
}

/* Sections */
.v2-section {
    padding: 4rem 0;
}

.v2-section-alt {
    background: var(--v2-bg-soft);
}

.v2-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.v2-title h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--v2-primary);
    margin: 0 0 0.65rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.v2-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: var(--v2-accent);
}

.v2-title p {
    color: var(--v2-text-muted);
    margin: 0.85rem auto 0;
    max-width: 640px;
}

.v2-page-banner {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--v2-primary-dark), var(--v2-primary-light));
    color: var(--v2-white);
    overflow: hidden;
}

.v2-page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.v2-page-banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 1rem;
}

.v2-page-banner h1 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
}

/* Message blocks ? formal leadership statements */
.v2-section-message {
    position: relative;
    overflow: hidden;
}

.v2-section-message::before {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 161, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.v2-message {
    display: grid;
    gap: 2.25rem;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .v2-message {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 3rem;
    }

    .v2-message.is-reverse {
        grid-template-columns: 0.85fr 1.15fr;
    }

    .v2-message.is-reverse .v2-message-media {
        order: -1;
    }
}

.v2-message-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-message-heading {
    margin: 0 0 1.25rem;
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: var(--v2-primary);
    line-height: 1.25;
}

.v2-message-quote {
    position: relative;
    padding: 0.25rem 0 0.25rem 1.35rem;
    border-left: 3px solid var(--v2-accent);
}

.v2-message-mark {
    position: absolute;
    top: -0.55rem;
    left: 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(23, 75, 133, 0.12);
    pointer-events: none;
    user-select: none;
}

.v2-message-text {
    position: relative;
    color: var(--v2-text-muted);
    font-size: 1.02rem;
    line-height: 1.85;
}

.v2-message-text p {
    margin-bottom: 0.95rem;
}

.v2-message-text p:last-child {
    margin-bottom: 0;
}

.v2-message-media {
    margin: 0;
    text-align: center;
}

.v2-message-frame {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 360px;
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 53, 95, 0.18);
    background: var(--v2-bg-muted);
}

.v2-message-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: inherit;
    pointer-events: none;
}

.v2-message-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-message.is-inview .v2-message-frame img {
    transform: scale(1);
}

.v2-message-caption {
    margin-top: 1rem;
}

.v2-message-role {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v2-primary);
}

.v2-message-name {
    display: block;
    margin-top: 0.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--v2-text);
}

/* Formal reveal animations */
[data-v2-reveal] .v2-message-copy,
[data-v2-reveal] .v2-message-media {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-v2-reveal] .v2-message-media {
    transition-delay: 0.12s;
}

[data-v2-reveal].is-inview .v2-message-copy,
[data-v2-reveal].is-inview .v2-message-media {
    opacity: 1;
    transform: translateY(0);
}

[data-v2-reveal] .v2-message-mark {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

[data-v2-reveal].is-inview .v2-message-mark {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-v2-reveal] .v2-message-copy,
    [data-v2-reveal] .v2-message-media,
    [data-v2-reveal] .v2-message-mark,
    .v2-message-frame img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Cards */
.v2-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    overflow: hidden;
    box-shadow: var(--v2-shadow);
    border: 1px solid transparent;
    transition: transform var(--v2-transition), box-shadow var(--v2-transition);
    color: inherit !important;
}

.v2-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v2-shadow-hover);
    color: inherit !important;
}

.v2-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--v2-bg-muted);
    overflow: hidden;
}

.v2-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.v2-card:hover .v2-card-media img {
    transform: scale(1.05);
}

.v2-card-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.25rem 1.1rem;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(23, 75, 133, 0.92), rgba(15, 53, 95, 0.88)),
        linear-gradient(135deg, var(--v2-bg-muted), #d5deea);
}

.v2-card-placeholder-icon {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -48%);
    font-size: clamp(4.5rem, 18vw, 6.5rem);
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    pointer-events: none;
}

.v2-card-placeholder-title {
    position: relative;
    z-index: 1;
    max-width: 92%;
    margin: 0;
    font-size: clamp(0.95rem, 2.4vw, 1.15rem);
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v2-card-body {
    padding: 1.15rem 1.25rem 1.35rem;
    flex: 1;
}

.v2-card-body h3,
.v2-card-body h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--v2-text);
    line-height: 1.4;
}

.v2-card-body h6 {
    margin: 0.35rem 0 0;
    color: var(--v2-accent);
    font-weight: 500;
    font-size: 0.85rem;
}

.v2-card-member .v2-card-media {
    aspect-ratio: 1 / 1;
}

.v2-card-member .v2-card-body {
    text-align: center;
}

.v2-more {
    text-align: center;
    margin-top: 2rem;
}

/* Hero slider */
.v2-hero {
    position: relative;
    background: var(--v2-primary-dark);
}

.v2-hero .carousel-item {
    height: min(72vh, 640px);
    min-height: 320px;
}

.v2-hero .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 53, 95, 0.15), rgba(15, 53, 95, 0.55));
    pointer-events: none;
    z-index: 1;
}

.v2-hero-cta {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    z-index: 2;
}

.v2-hero .carousel-control-prev,
.v2-hero .carousel-control-next {
    z-index: 3;
    width: 8%;
}

.v2-hero-empty {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 2rem;
}

.v2-apply-float {
    /* legacy ? replaced by .v2-fab-bar */
    display: none !important;
}

/* Message blocks moved above ? see leadership message styles */

/* VMV ? conceptual Vision / Mission / Values */
.v2-vmv-hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(150deg, #0a2748 0%, #174b85 48%, #0f5f8a 100%);
}

.v2-vmv-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 25%, rgba(22, 161, 255, 0.32), transparent 40%),
        radial-gradient(circle at 88% 70%, rgba(255, 255, 255, 0.1), transparent 42%);
}

.v2-vmv-hero .container {
    position: relative;
    z-index: 1;
}

.v2-vmv-hero-inner {
    max-width: 720px;
}

.v2-vmv-hero-eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8fd4ff;
}

.v2-vmv-hero h1 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.v2-vmv-hero-lead {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.v2-vmv-hero-steps {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.v2-vmv-hero-steps i {
    color: #16a1ff;
    font-size: 0.85rem;
}

.v2-vmv-section {
    background: linear-gradient(180deg, #f7fafc 0%, #eef3f9 50%, #f7fafc 100%);
}

.v2-vmv .v2-title p {
    max-width: 540px;
    margin: 0.35rem auto 0;
    color: var(--v2-text-muted);
    font-size: 0.95rem;
}

.v2-vmv-journey {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.v2-vmv.is-compact .v2-vmv-journey {
    display: grid;
    gap: 1.15rem;
}

@media (min-width: 992px) {
    .v2-vmv.is-compact .v2-vmv-journey {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .v2-vmv.is-compact .v2-vmv-bridge {
        display: none;
    }
}

.v2-vmv-bridge {
    display: flex;
    justify-content: center;
    padding: 0.35rem 0;
}

.v2-vmv-bridge span {
    width: 2px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(23, 75, 133, 0.15), var(--v2-accent));
}

.v2-vmv-pillar {
    position: relative;
    display: grid;
    gap: 1.25rem;
    padding: 1.75rem 1.4rem;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(23, 75, 133, 0.08);
    box-shadow: 0 14px 34px rgba(23, 75, 133, 0.08);
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
    transition-delay: calc(var(--vmv-i, 0) * 0.12s);
}

.v2-vmv.is-inview .v2-vmv-pillar {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .v2-vmv.is-page .v2-vmv-pillar {
        grid-template-columns: auto 1fr minmax(120px, 0.35fr);
        align-items: center;
        padding: 2rem 1.75rem;
        min-height: 210px;
    }
}

.v2-vmv-pillar:hover {
    box-shadow: 0 18px 40px rgba(23, 75, 133, 0.14);
}

.v2-vmv-pillar.is-vision {
    background:
        linear-gradient(135deg, rgba(22, 161, 255, 0.08), transparent 42%),
        #fff;
    border-color: rgba(22, 161, 255, 0.22);
}

.v2-vmv-pillar.is-mission {
    background:
        linear-gradient(135deg, rgba(23, 75, 133, 0.08), transparent 42%),
        #fff;
    border-color: rgba(23, 75, 133, 0.18);
}

.v2-vmv-pillar.is-values {
    background:
        linear-gradient(135deg, rgba(14, 116, 144, 0.08), transparent 42%),
        #fff;
    border-color: rgba(14, 116, 144, 0.18);
}

.v2-vmv-pillar-mark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.v2-vmv-pillar-mark > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 1.7rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--v2-primary);
    background: rgba(23, 75, 133, 0.08);
}

.v2-vmv-pillar-mark img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.v2-vmv-kicker {
    margin: 0 0 0.3rem;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-vmv-pillar-copy h3 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    font-weight: 700;
    color: var(--v2-primary);
}

.v2-vmv-text {
    color: var(--v2-text-muted);
    font-size: 0.96rem;
    line-height: 1.8;
}

.v2-vmv-text p {
    margin: 0 0 0.75rem;
}

.v2-vmv-text p:last-child {
    margin-bottom: 0;
}

.v2-vmv-pillar-art {
    position: relative;
    min-height: 88px;
    display: none;
}

@media (min-width: 768px) {
    .v2-vmv.is-page .v2-vmv-pillar-art {
        display: block;
    }
}

.v2-vmv-horizon,
.v2-vmv-path,
.v2-vmv-foundation {
    position: absolute;
    inset: 10% 8%;
    border-radius: 18px;
    opacity: 0.9;
}

.v2-vmv-horizon {
    background:
        linear-gradient(180deg, rgba(22, 161, 255, 0.18), transparent 55%),
        radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.9), transparent 28%),
        linear-gradient(180deg, #d7ecff 0%, #9fd0f5 48%, #174b85 49%, #0f355f 100%);
}

.v2-vmv-path {
    background:
        linear-gradient(135deg, transparent 40%, rgba(22, 161, 255, 0.35) 50%, transparent 60%),
        linear-gradient(180deg, #e8eef5, #c5d6ea);
    clip-path: polygon(15% 100%, 40% 20%, 58% 20%, 85% 100%);
}

.v2-vmv-foundation {
    background:
        linear-gradient(180deg, transparent 35%, rgba(23, 75, 133, 0.18) 35%, rgba(23, 75, 133, 0.18) 55%, transparent 55%),
        linear-gradient(90deg, #dce7f3 0 20%, transparent 20% 40%, #dce7f3 40% 60%, transparent 60% 80%, #dce7f3 80% 100%),
        linear-gradient(180deg, #f4f7fb, #d9e6f4);
}

.v2-vmv.is-compact .v2-vmv-pillar {
    height: 100%;
    grid-template-columns: 1fr;
    text-align: left;
}

.v2-vmv.is-compact .v2-vmv-pillar-art {
    display: none;
}

.v2-vmv.is-compact .v2-vmv-bridge {
    display: none;
}

@media (max-width: 991.98px) {
    .v2-vmv.is-compact .v2-vmv-bridge {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-vmv-pillar {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Legacy VMV aliases kept for older markup */
.v2-vmv-grid {
    display: grid;
    gap: 1.25rem;
}

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

.v2-vmv-card {
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: var(--v2-shadow);
    height: 100%;
    border-top: 4px solid var(--v2-accent);
}

.v2-vmv-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.v2-vmv-card .vmv-title,
.v2-vmv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin-bottom: 0.75rem;
}

.v2-vmv-card .vmv-text,
.v2-vmv-card p {
    color: var(--v2-text-muted);
    font-size: 0.92rem;
    margin: 0;
}

/* CTA band */
.v2-cta-band {
    background: linear-gradient(120deg, var(--v2-primary-dark), var(--v2-primary-light) 55%, var(--v2-accent));
    color: #fff;
    text-align: center;
    padding: 3.5rem 1rem;
    border-radius: 0;
}

.v2-cta-band h1,
.v2-cta-band h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.v2-cta-band p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto 1.5rem;
}

.v2-cta-band .cta,
.v2-cta-band .v2-btn {
    background: #fff;
    color: var(--v2-primary) !important;
}

.v2-cta-band .cta:hover,
.v2-cta-band .v2-btn:hover {
    background: var(--v2-bg-soft);
}

/* Article / detail */
.v2-article {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
}

.v2-article-media {
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    margin-bottom: 1.75rem;
    box-shadow: var(--v2-shadow);
}

.v2-article-media img {
    width: 100%;
    display: block;
}

.v2-article-category {
    display: inline-block;
    background: var(--v2-bg-soft);
    color: var(--v2-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.v2-article h1,
.v2-article .h3 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 700;
    color: var(--v2-primary);
    margin-bottom: 1.25rem;
}

.v2-article-body,
.v2-article .conten-text {
    color: var(--v2-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.v2-article-body img,
.v2-article .conten-text img {
    border-radius: var(--v2-radius-sm);
    margin: 1rem 0;
}

.v2-donation-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1rem 4rem;
}

.v2-donation-wrap iframe {
    display: block;
    margin: 1.5rem auto 0;
}

/* Footer */
.v2-footer {
    background: var(--v2-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 3.5rem;
}

.v2-footer-brand {
    display: flex;
    justify-content: center;
    margin: 0 0 2.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.v2-footer-brand.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.v2-footer-brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
    color: inherit !important;
}

.v2-footer-brand-link:hover {
    color: inherit !important;
}

.v2-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    padding: 0.55rem;
    transition: transform 0.35s ease;
}

.v2-footer-brand-link:hover .v2-footer-logo {
    transform: translateY(-3px);
}

body.v2-body .v2-footer-logo img {
    width: 100%;
    height: 100%;
    max-width: 72px;
    max-height: 72px;
    object-fit: contain;
    display: block;
}

.v2-footer-brand-name {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.02em;
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
}

.v2-footer-brand-name > span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translateY(10px);
}

.v2-footer-brand.is-inview .v2-footer-brand-name > span {
    animation:
        v2FooterLetterIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        v2FooterLetterGlow 2.8s ease-in-out infinite;
    animation-delay:
        calc(0.12s + var(--fi, 0) * 0.055s),
        calc(0.7s + var(--fi, 0) * 0.08s);
}

@keyframes v2FooterLetterIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes v2FooterLetterGlow {
    0%, 100% {
        color: rgba(255, 255, 255, 0.88);
        text-shadow: 0 0 0 transparent;
    }
    40% {
        color: #8fd4ff;
        text-shadow: 0 0 12px rgba(22, 161, 255, 0.45);
    }
    70% {
        color: #fff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-footer-brand,
    .v2-footer-brand-name > span {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        color: #fff !important;
        text-shadow: none !important;
    }
}

.v2-footer a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.v2-footer a:hover {
    color: #fff !important;
}

.v2-footer h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.v2-footer-about {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.v2-footer-list li {
    margin-bottom: 0.55rem;
}

.v2-footer-list a {
    font-size: 0.92rem;
}

.v2-footer-contact li {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
}

.v2-footer-contact i {
    color: var(--v2-accent);
    margin-top: 0.2rem;
    width: 1.1rem;
    text-align: center;
}

.v2-footer-bottom {
    margin-top: 2.5rem;
    padding: 1.35rem 0 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.95rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.v2-footer-bottom > p {
    margin: 0;
}

.v2-footer-bottom a:not(.v2-dev-credit) {
    color: var(--v2-accent) !important;
}

/* UlanishDev credit badge */
.v2-dev-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.45rem 0.7rem 0.45rem 0.85rem;
    border-radius: 999px;
    background: #101010;
    border: 1px solid rgba(255, 178, 2, 0.28);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.v2-dev-credit:hover {
    transform: translateY(-2px);
    border-color: #ffb202;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.v2-dev-credit-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

.v2-dev-credit-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.28rem 0.65rem 0.28rem 0.3rem;
    border-radius: 999px;
    background: rgba(255, 178, 2, 0.1);
}

.v2-dev-credit-brand img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

body.v2-body .v2-dev-credit-brand img {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
}

.v2-dev-credit-brand span {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffb202 !important;
    line-height: 1;
}

.v2-auth-credit {
    margin-top: 1.15rem;
    display: flex;
    justify-content: center;
}

/* Mobile action bar: Apply + Donate equal width, side by side */
.v2-fab-bar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 1030;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
}

.v2-fab-bar:empty {
    display: none;
}

.v2-fab {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1;
    text-align: center;
    box-shadow: var(--v2-shadow-hover);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v2-fab-apply {
    background: var(--v2-primary);
    color: #fff !important;
}

.v2-fab-apply:hover {
    background: var(--v2-accent);
    color: #fff !important;
}

.v2-fab-donate {
    background: var(--v2-accent);
    color: #fff !important;
}

.v2-fab-donate:hover {
    filter: brightness(0.95);
    color: #fff !important;
}

/* Keep page content clear of the mobile fab bar */
@media (max-width: 767.98px) {
    body.v2-body {
        padding-bottom: 4.5rem;
    }
}

/* Desktop: only Donate as a corner float */
@media (min-width: 768px) {
    .v2-fab-bar {
        left: auto;
        right: 1rem;
        bottom: 1.25rem;
        width: auto;
        max-width: none;
    }

    .v2-fab-apply {
        display: none !important;
    }

    .v2-fab-donate {
        flex: 0 0 auto;
        min-width: 7.5rem;
        padding: 0 1.25rem;
    }
}

.v2-donate-float {
    /* legacy alias */
    display: none !important;
}

/* Scroll top ? opposite side so it never sits on Apply/Donate */
.v2-scroll-top {
    position: fixed;
    left: 1rem;
    right: auto;
    bottom: 5.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--v2-primary);
    color: #fff !important;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1031;
    box-shadow: var(--v2-shadow);
}

@media (min-width: 768px) {
    .v2-scroll-top {
        bottom: 1.25rem;
    }
}

.v2-scroll-top.is-visible {
    display: inline-flex;
}

.v2-scroll-top:hover {
    background: var(--v2-accent);
    color: #fff !important;
}

.ltr {
    direction: ltr;
    unicode-bidi: embed;
}

/* Legacy class bridges for gradual migration */
.programs-sec,
.products-sec,
.services-sec,
.stories-sec,
.donation-sec {
    padding: 3.5rem 0;
}

.titlepage {
    text-align: center;
    margin-bottom: 2rem;
}

.titlepage h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--v2-primary);
    margin: 0;
    display: inline-block;
    padding-bottom: 0.75rem;
    position: relative;
}

.titlepage h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: var(--v2-accent);
}

.sp-box,
.member {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    overflow: hidden;
    box-shadow: var(--v2-shadow);
    margin-bottom: 1.5rem;
    transition: transform var(--v2-transition), box-shadow var(--v2-transition);
}

a:hover .sp-box,
a:hover .member {
    transform: translateY(-6px);
    box-shadow: var(--v2-shadow-hover);
}

.sp-box .img,
.member .img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--v2-bg-muted);
}

.member .img {
    aspect-ratio: 1 / 1;
}

.sp-box .img img,
.member .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-box .sp-text,
.member .member-text {
    padding: 1.1rem 1.2rem 1.3rem;
}

.sp-box .sp-text h3,
.sp-box .sp-text h4,
.member .member-text h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--v2-text);
}

.member .member-text {
    text-align: center;
}

.member .member-text h6 {
    margin: 0.35rem 0 0;
    color: var(--v2-accent);
    font-weight: 500;
}

.thumnail {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--v2-text-light);
    background: linear-gradient(135deg, var(--v2-bg-muted), #d5deea);
}

.more-div {
    text-align: center;
    margin-top: 1rem;
}

.view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: var(--v2-primary);
    color: #fff !important;
}

.view-more h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

a:hover .view-more {
    background: var(--v2-accent);
}

.banner {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    background: var(--v2-primary-dark);
}

.banner img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    opacity: 0.75;
}

.show-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
}

.show-content .content-img {
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--v2-shadow);
}

.show-content .content-img img {
    width: 100%;
    display: block;
}

.show-content .content-category {
    display: inline-block;
    background: var(--v2-bg-soft);
    color: var(--v2-primary);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.show-content .h3 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 700;
    color: var(--v2-primary);
    margin-bottom: 1rem;
}

.show-content .conten-text {
    color: var(--v2-text-muted);
    line-height: 1.8;
}

.about .titlepage {
    margin-bottom: 1.5rem;
}

.hero {
    background: linear-gradient(120deg, var(--v2-primary-dark), var(--v2-primary-light) 55%, var(--v2-accent));
    color: #fff;
    text-align: center;
    padding: 3.5rem 1rem;
}

.hero h1 {
    color: #fff;
    font-weight: 700;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0.75rem auto 1.5rem;
}

.hero .cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: var(--v2-primary) !important;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
}

.apply-btn {
    background: var(--v2-accent) !important;
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
}

.btn-apply-mobile {
    /* legacy ? replaced by .v2-fab-bar */
    display: none !important;
}

.vision-mission {
    padding: 3.5rem 0;
    background: var(--v2-bg-soft);
}

.vision-mission .vmv {
    background: #fff;
    border-radius: var(--v2-radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: var(--v2-shadow);
    height: 100%;
    border-top: 4px solid var(--v2-accent);
    margin-bottom: 1.25rem;
}

.vision-mission .vmv-img img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.vision-mission .vmv-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin-bottom: 0.75rem;
}

.vision-mission .vmv-text {
    color: var(--v2-text-muted);
    font-size: 0.92rem;
}

#preloader {
    display: none !important;
}

/* ?? KPI impact band (soft, calm palette) ?? */
.v2-kpi {
    position: relative;
    padding: 4.75rem 0 5rem;
    color: var(--v2-text);
    overflow: hidden;
    background:
        linear-gradient(180deg, #f7fafc 0%, #eef4f9 48%, #f5f8fb 100%);
}

.v2-kpi-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.v2-kpi-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.55;
    animation: v2KpiOrb 10s ease-in-out infinite alternate;
}

.v2-kpi-orb-a {
    width: min(48vw, 380px);
    height: min(48vw, 380px);
    top: -18%;
    left: -8%;
    background: radial-gradient(circle, rgba(23, 75, 133, 0.08), transparent 68%);
}

.v2-kpi-orb-b {
    width: min(40vw, 320px);
    height: min(40vw, 320px);
    right: -6%;
    bottom: -22%;
    background: radial-gradient(circle, rgba(22, 161, 255, 0.08), transparent 70%);
    animation-delay: -3s;
}

.v2-kpi-orb-c {
    width: min(28vw, 220px);
    height: min(28vw, 220px);
    top: 35%;
    left: 42%;
    background: radial-gradient(circle, rgba(23, 75, 133, 0.05), transparent 70%);
    animation-delay: -5s;
}

.v2-kpi .container {
    position: relative;
    z-index: 1;
}

.v2-kpi-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-kpi.is-inview .v2-kpi-head {
    opacity: 1;
    transform: translateY(0);
}

.v2-kpi-eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-kpi-head h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    font-weight: 700;
    color: var(--v2-primary);
    line-height: 1.25;
}

.v2-kpi-subtitle {
    margin: 0 auto;
    max-width: 520px;
    color: var(--v2-text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.v2-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 992px) {
    .v2-kpi-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.v2-kpi-item {
    position: relative;
    text-align: center;
    padding: 1.85rem 1.15rem 1.55rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(23, 75, 133, 0.08);
    box-shadow: 0 10px 28px rgba(23, 75, 133, 0.06);
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    transition-delay: calc(0.15s + var(--kpi-i, 0) * 0.1s);
}

.v2-kpi.is-inview .v2-kpi-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.v2-kpi-item:hover {
    border-color: rgba(23, 75, 133, 0.16);
    box-shadow: 0 16px 36px rgba(23, 75, 133, 0.1);
    transform: translateY(-4px) scale(1);
}

.v2-kpi-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(23, 75, 133, 0.04) 48%, transparent 62%);
    transform: translateX(-120%);
    pointer-events: none;
}

.v2-kpi.is-inview .v2-kpi-item .v2-kpi-shine {
    animation: v2KpiShine 1.4s ease calc(0.45s + var(--kpi-i, 0) * 0.1s) both;
}

.v2-kpi-ring {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0 auto 1.05rem;
}

.v2-kpi-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    display: block;
}

.v2-kpi-ring-track,
.v2-kpi-ring-progress {
    fill: none;
    stroke-width: 5;
}

.v2-kpi-ring-track {
    stroke: rgba(23, 75, 133, 0.1);
}

.v2-kpi-ring-progress {
    stroke: #5b8fc7;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.45s cubic-bezier(0.22, 1, 0.36, 1);
    filter: none;
}

.v2-kpi-icon {
    position: absolute;
    inset: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(160deg, #f3f7fb, #e7eef6);
    color: var(--v2-primary);
    font-size: 1.15rem;
    box-shadow: inset 0 0 0 1px rgba(23, 75, 133, 0.06);
    animation: v2KpiIconPulse 2.8s ease-in-out infinite;
}

.v2-kpi-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.08rem;
    margin-bottom: 0.4rem;
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: clamp(2.05rem, 4.2vw, 2.75rem);
    line-height: 1;
    color: var(--v2-primary);
    letter-spacing: -0.03em;
    text-shadow: none;
}

.v2-kpi-suffix {
    font-size: 0.55em;
    font-weight: 700;
    color: #5b8fc7;
    transform: translateY(-0.12em);
}

.v2-kpi-label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--v2-text-muted);
    line-height: 1.35;
}

@keyframes v2KpiOrb {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(18px, -14px) scale(1.08); }
}

@keyframes v2KpiShine {
    from { transform: translateX(-120%); }
    to { transform: translateX(120%); }
}

@keyframes v2KpiIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .v2-kpi-orb,
    .v2-kpi-icon,
    .v2-kpi.is-inview .v2-kpi-item .v2-kpi-shine {
        animation: none !important;
    }

    .v2-kpi-head,
    .v2-kpi-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .v2-kpi-item:hover {
        transform: none;
    }
}

/* ?? Organization chart page hero ?? */
.v2-org-hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(145deg, #0a2748 0%, #174b85 55%, #1268a8 100%);
}

.v2-org-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(22, 161, 255, 0.35), transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.12), transparent 40%);
}

.v2-org-hero .container {
    position: relative;
    z-index: 1;
}

.v2-org-hero-inner {
    max-width: 720px;
}

.v2-org-hero-eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8fd4ff;
}

.v2-org-hero h1 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.v2-org-hero-lead {
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.v2-org-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.v2-org-hero-stats > div {
    min-width: 140px;
    padding: 0.95rem 1.15rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.v2-org-hero-stats strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.v2-org-hero-stats span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
}

.v2-org-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.v2-org-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.75rem 1.6rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow);
}

.v2-org-cta h2 {
    margin: 0 0 0.45rem;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--v2-primary);
}

.v2-org-cta p {
    margin: 0;
    max-width: 520px;
    color: var(--v2-text-muted);
}

.v2-org-cta .v2-org-eyebrow {
    margin-bottom: 0.25rem;
}

/* ?? Organization chart ?? */
.v2-org {
    position: relative;
    padding: 4.5rem 0 5rem;
    background:
        linear-gradient(180deg, #f4f7fb 0%, #eef3f9 45%, #f7fafc 100%);
    overflow: hidden;
}

.v2-org::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(22, 161, 255, 0.08), transparent 36%),
        radial-gradient(circle at 92% 88%, rgba(23, 75, 133, 0.08), transparent 40%);
    pointer-events: none;
}

.v2-org .container {
    position: relative;
    z-index: 1;
}

.v2-org-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.v2-org-eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-org-head h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--v2-primary);
}

.v2-org-subtitle {
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.v2-org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.v2-org-level {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    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: calc(var(--org-i, 0) * 0.12s);
}

.v2-org.is-inview .v2-org-level {
    opacity: 1;
    transform: translateY(0);
}

.v2-org-connector {
    width: 2px;
    height: 36px;
    margin: 0.15rem 0 0.85rem;
    background: linear-gradient(180deg, rgba(23, 75, 133, 0.15), var(--v2-accent));
    border-radius: 999px;
    position: relative;
}

.v2-org-connector::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--v2-accent);
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(22, 161, 255, 0.15);
}

.v2-org-level-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--v2-primary);
}

.v2-org-level-label em {
    font-style: normal;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 161, 255, 0.12);
    color: var(--v2-accent);
    font-size: 0.78rem;
    font-weight: 700;
}

.v2-org-nodes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1rem;
    position: relative;
    padding-top: 0.35rem;
}

.v2-org-nodes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(23, 75, 133, 0.18), transparent);
}

.v2-org-level:first-child .v2-org-nodes::before {
    display: none;
}

.v2-org-node {
    width: min(100%, 210px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 0.95rem 1.1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(23, 75, 133, 0.08);
    box-shadow: 0 10px 28px rgba(23, 75, 133, 0.08);
    color: inherit !important;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.v2-org-node:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 161, 255, 0.35);
    box-shadow: 0 16px 36px rgba(23, 75, 133, 0.14);
    color: inherit !important;
}

.v2-org-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow:
        0 0 0 2px rgba(22, 161, 255, 0.35),
        0 8px 18px rgba(15, 53, 95, 0.16);
    background: linear-gradient(145deg, #174b85, #16a1ff);
}

body.v2-body .v2-org-avatar img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
}

.v2-org-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.55rem;
    font-weight: 700;
    text-transform: uppercase;
}

.v2-org-meta {
    min-width: 0;
    width: 100%;
}

.v2-org-meta strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--v2-text);
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.v2-org-meta span {
    display: block;
    font-size: 0.8rem;
    color: var(--v2-accent);
    line-height: 1.35;
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .v2-org-node {
        width: calc(50% - 0.5rem);
        padding: 0.95rem 0.65rem 0.9rem;
    }

    .v2-org-avatar {
        width: 64px;
        height: 64px;
    }

    .v2-org-meta strong {
        font-size: 0.86rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-org-level {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ?? Public site preloader ?? */
.v2-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #0a2748 0%, #174b85 48%, #0f355f 100%);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.65s step-end;
}

.v2-preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.65s;
}

.v2-preloader-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.v2-preloader-bg::before,
.v2-preloader-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.35;
    animation: v2PreOrb 7s ease-in-out infinite alternate;
}

.v2-preloader-bg::before {
    width: min(55vw, 420px);
    height: min(55vw, 420px);
    top: -12%;
    right: -8%;
    background: radial-gradient(circle, rgba(22, 161, 255, 0.55), transparent 70%);
}

.v2-preloader-bg::after {
    width: min(45vw, 340px);
    height: min(45vw, 340px);
    bottom: -10%;
    left: -6%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    animation-delay: -2.5s;
}

.v2-preloader-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    padding: 1.5rem;
    text-align: center;
}

.v2-preloader-logo {
    position: relative;
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: v2PreLogoIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.v2-preloader-logo img {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    max-width: 78px;
    max-height: 78px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.55rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    animation: v2PreLogoFloat 2.4s ease-in-out infinite;
}

.v2-preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.85);
    border-right-color: rgba(22, 161, 255, 0.55);
    animation: v2PreSpin 1.15s linear infinite;
}

.v2-preloader-brand {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.05rem;
    margin: 0;
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: clamp(1.15rem, 4.2vw, 1.65rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #fff;
    line-height: 1.2;
    direction: ltr;
    unicode-bidi: isolate;
}

.v2-preloader-letter,
.v2-preloader-dot,
.v2-preloader-dash {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
    animation: v2PreLetter 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.45s + var(--i) * 0.055s);
}

.v2-preloader-dot {
    opacity: 0;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.v2-preloader-dash {
    margin: 0 0.15rem;
    color: var(--v2-accent);
}

.v2-preloader-bar {
    width: min(220px, 56vw);
    height: 3px;
    margin-top: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.v2-preloader-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #16a1ff, #ffffff, #16a1ff);
    background-size: 200% 100%;
    animation: v2PreBar 1.6s cubic-bezier(0.45, 0, 0.2, 1) 0.35s forwards, v2PreShimmer 1.2s linear 0.35s infinite;
}

.v2-preloader.is-done .v2-preloader-inner {
    animation: v2PreExit 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes v2PreOrb {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-18px, 22px) scale(1.08); }
}

@keyframes v2PreLogoIn {
    from { opacity: 0; transform: scale(0.72); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes v2PreLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes v2PreSpin {
    to { transform: rotate(360deg); }
}

@keyframes v2PreLetter {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes v2PreBar {
    to { width: 100%; }
}

@keyframes v2PreShimmer {
    to { background-position: -200% 0; }
}

@keyframes v2PreExit {
    to { opacity: 0; transform: translateY(-18px) scale(0.96); }
}

@media (prefers-reduced-motion: reduce) {
    .v2-preloader-bg::before,
    .v2-preloader-bg::after,
    .v2-preloader-logo,
    .v2-preloader-logo img,
    .v2-preloader-ring,
    .v2-preloader-letter,
    .v2-preloader-dot,
    .v2-preloader-dash,
    .v2-preloader-bar-fill,
    .v2-preloader.is-done .v2-preloader-inner {
        animation: none !important;
    }

    .v2-preloader-letter,
    .v2-preloader-dot,
    .v2-preloader-dash {
        opacity: 1;
        transform: none;
    }

    .v2-preloader-bar-fill {
        width: 100%;
    }
}

/* Get Involved opportunity cards */
.v2-opp-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .v2-opp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.v2-opp-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    background: var(--v2-white);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow);
    color: var(--v2-text) !important;
}

.v2-opp-card:hover {
    border-color: var(--v2-accent);
    box-shadow: var(--v2-shadow-hover);
    color: var(--v2-primary) !important;
}

.v2-opp-card h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.v2-opp-card .arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--v2-accent);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.v2-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--v2-text-muted);
    background: var(--v2-bg-soft);
    border-radius: var(--v2-radius);
}

.v2-member-profile {
    max-width: 720px;
    margin: 0 auto;
    background: var(--v2-white);
    border-radius: var(--v2-radius-lg);
    box-shadow: var(--v2-shadow);
    overflow: hidden;
}

.v2-member-profile .v2-card-media {
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin: 2rem auto 0;
    border-radius: var(--v2-radius);
    overflow: hidden;
}

.v2-member-meta {
    padding: 1.5rem 1.75rem 2rem;
    text-align: center;
}

.v2-member-meta h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin: 0 0 0.35rem;
}

.v2-member-meta .role {
    color: var(--v2-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.v2-member-meta .detail {
    color: var(--v2-text-muted);
    margin: 0.35rem 0;
    font-size: 0.95rem;
}

.v2-member-bio {
    text-align: right;
    margin-top: 1.25rem;
    color: var(--v2-text-muted);
    line-height: 1.8;
}

body.v2-body:not([dir="rtl"]) .v2-member-bio {
    text-align: left;
}

/* Share bar */
.v2-share {
    max-width: 860px;
    margin: 0 auto 3rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    background: var(--v2-bg-soft);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.v2-article + .v2-share,
.v2-section .v2-share {
    margin-top: 0.5rem;
}

.v2-share-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--v2-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.v2-share-label i {
    color: var(--v2-accent);
}

.v2-share-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.v2-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: var(--v2-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--v2-transition), box-shadow var(--v2-transition), background var(--v2-transition);
    box-shadow: var(--v2-shadow);
}

.v2-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--v2-shadow-hover);
    color: #fff !important;
}

.v2-share-btn.is-facebook { background: #1877f2; }
.v2-share-btn.is-x { background: #0f1419; }
.v2-share-btn.is-telegram { background: #229ed9; }
.v2-share-btn.is-whatsapp { background: #25d366; }
.v2-share-btn.is-linkedin { background: #0a66c2; }
.v2-share-btn.is-copy { background: var(--v2-primary); }

.v2-share-toast {
    position: absolute;
    right: 1rem;
    bottom: calc(100% + 0.5rem);
    background: var(--v2-primary-dark);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.v2-share-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.v2-body[dir="rtl"] .v2-share-toast {
    right: auto;
    left: 1rem;
}

/* ?? Auth / Login ?? */
body.v2-auth-body {
    min-height: 100vh;
    background: #0f355f;
}

.v2-auth {
    min-height: 100vh;
    display: grid;
}

@media (min-width: 992px) {
    .v2-auth {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.v2-auth-visual {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    overflow: hidden;
    background: linear-gradient(155deg, #0a2748 0%, #174b85 48%, #1268a8 100%);
}

@media (min-width: 992px) {
    .v2-auth-visual {
        display: flex;
    }
}

.v2-auth-visual::before,
.v2-auth-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.v2-auth-visual::before {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(22, 161, 255, 0.4), transparent 70%);
}

.v2-auth-visual::after {
    width: 260px;
    height: 260px;
    bottom: -40px;
    left: -40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.v2-auth-visual-inner {
    position: relative;
    z-index: 1;
    max-width: 420px;
    text-align: center;
    color: #fff;
}

body.v2-body .v2-auth-visual-inner img {
    width: 96px;
    height: 96px;
    max-width: 96px;
    object-fit: contain;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.7rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.25rem;
}

.v2-auth-brand {
    margin: 0 0 0.85rem;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.v2-auth-tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    font-size: 1rem;
}

.v2-auth-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    background:
        radial-gradient(circle at 90% 10%, rgba(22, 161, 255, 0.08), transparent 35%),
        #f4f7fb;
}

.v2-auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(23, 75, 133, 0.08);
    box-shadow: 0 18px 48px rgba(23, 75, 133, 0.12);
    padding: 1.75rem 1.5rem 1.5rem;
}

@media (min-width: 576px) {
    .v2-auth-card {
        padding: 2rem 1.85rem 1.75rem;
    }
}

.v2-auth-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.35rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--v2-text-muted) !important;
}

.v2-auth-back:hover {
    color: var(--v2-primary) !important;
}

.v2-auth-head {
    margin-bottom: 1.35rem;
}

.v2-auth-head h1 {
    margin: 0 0 0.4rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--v2-primary);
}

.v2-auth-head p {
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.95rem;
}

.v2-auth-alert {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #b02a37;
    font-size: 0.9rem;
}

.v2-auth-alert.is-success {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.25);
    color: #0f766e;
}

.v2-auth-alert p {
    margin: 0 0 0.2rem;
}

.v2-auth-alert p:last-child {
    margin-bottom: 0;
}

.v2-auth-field {
    margin-bottom: 1rem;
}

.v2-auth-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--v2-text);
}

.v2-auth-input {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0 0.95rem;
    border: 1px solid var(--v2-border);
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-auth-input:focus-within {
    border-color: rgba(22, 161, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(22, 161, 255, 0.12);
}

.v2-auth-input i {
    color: var(--v2-text-light);
}

.v2-auth-input input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    color: var(--v2-text);
}

.v2-auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0 1.25rem;
    font-size: 0.9rem;
    color: var(--v2-text-muted);
    cursor: pointer;
}

.v2-auth-submit {
    width: 100%;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.98rem;
}

.v2-auth-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--v2-border);
}

.v2-auth-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--v2-text-muted) !important;
}

.v2-auth-footer a:hover {
    color: var(--v2-primary) !important;
}
