:root {
    --primary: #1266E3;
    --secondary: #FF8B1F;
    --dark: #07111F;
    --ink: #F2F7FF;
    --muted: #A4B3CB;
    --line: rgba(151, 186, 241, 0.16);
    --surface: rgba(8, 18, 38, 0.9);
    --surface-soft: rgba(10, 24, 49, 0.82);
    --surface-deep: rgba(4, 12, 26, 0.96);
    --surface-glow: rgba(11, 34, 70, 0.88);
    --gold: #D9A441;
    --success: #30C07C;
    --danger: #F16C6C;
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.42);
    --shadow-md: 0 18px 46px rgba(0, 0, 0, 0.24);
    --container: min(1200px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(18, 102, 227, 0.24), transparent 26%),
        radial-gradient(circle at 90% 6%, rgba(255, 139, 31, 0.16), transparent 18%),
        radial-gradient(circle at 50% 32%, rgba(21, 71, 148, 0.12), transparent 32%),
        linear-gradient(180deg, #040A15 0%, #07101F 28%, #091628 58%, #050C17 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.08;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
}

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

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

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

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 16px;
    z-index: 999;
    background: #fff;
    color: #07111F;
    padding: 0.85rem 1rem;
    border-radius: 999px;
}

.skip-link:focus {
    left: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(3, 9, 20, 0.58), rgba(3, 9, 20, 0.24));
    border-bottom: 1px solid rgba(170, 205, 255, 0.08);
    backdrop-filter: blur(16px) saturate(130%);
    transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
    background:
        linear-gradient(135deg, rgba(6, 18, 38, 0.7), rgba(13, 32, 58, 0.54)),
        rgba(7, 18, 35, 0.36);
    border-bottom-color: rgba(220, 238, 255, 0.2);
    backdrop-filter: blur(28px) saturate(160%);
}

.nav-shell {
    width: min(1320px, calc(100vw - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    min-height: 96px;
}

.brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    flex: 0 0 auto;
}

.brand-symbol {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    position: relative;
    flex: 0 0 auto;
    background: radial-gradient(circle at 30% 25%, rgba(255, 196, 107, 0.28), transparent 46%);
}

.brand-symbol::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.7;
}

.brand-symbol-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.25));
}

.brand-copy {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.brand-copy strong {
    display: block;
    font-size: 0.96rem;
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: #F7FBFF;
    text-transform: uppercase;
}

.brand-copy small {
    display: block;
    color: rgba(213, 227, 248, 0.72);
    font-size: 0.7rem;
    line-height: 1.35;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 0.3rem;
    min-width: 0;
    margin-inline: 1rem;
    padding: 0.45rem;
    border: 1px solid rgba(124, 166, 240, 0.14);
    border-radius: 999px;
    background: rgba(9, 22, 44, 0.52);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.main-nav a,
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: #C3D0E6;
    font-size: 0.92rem;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.main-nav a::before,
.nav-link::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 206, 133, 0), rgba(255, 206, 133, 0.92), rgba(118, 183, 255, 0));
    transform: scaleX(0.15);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-link:hover {
    background: linear-gradient(135deg, rgba(18, 102, 227, 0.28), rgba(255, 139, 31, 0.18));
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(188, 215, 255, 0.16), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.main-nav a:hover::before,
.main-nav a.active::before,
.nav-link:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.menu-toggle {
    display: none;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(148, 186, 245, 0.14);
    background: rgba(10, 21, 42, 0.88);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 0.9rem 0.8rem;
    gap: 0.3rem;
    flex-direction: column;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #F8FBFF;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #0D4DB0);
    box-shadow: 0 16px 38px rgba(18, 102, 227, 0.28);
}

.btn-secondary {
    color: #07111F;
    background: linear-gradient(135deg, #FFCC7C, #FF8B1F);
    box-shadow: 0 16px 38px rgba(255, 139, 31, 0.24);
}

.btn-ghost {
    color: #D5E3F8;
    background: rgba(11, 28, 56, 0.78);
    border: 1px solid rgba(124, 166, 240, 0.16);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 5.4rem 0 4rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 18%, rgba(255, 157, 66, 0.32), transparent 18%),
        radial-gradient(circle at 18% 20%, rgba(78, 154, 255, 0.3), transparent 28%),
        radial-gradient(circle at 50% 40%, rgba(72, 121, 255, 0.14), transparent 36%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -8% -6%;
    background:
        radial-gradient(circle at 32% 22%, rgba(128, 199, 255, 0.16), transparent 16%),
        radial-gradient(circle at 72% 30%, rgba(255, 196, 103, 0.14), transparent 14%);
    filter: blur(18px);
    opacity: 0.95;
    animation: heroAmbientShift 12s ease-in-out infinite;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 2.4rem;
    align-items: stretch;
}

.hero-copy {
    position: relative;
    padding: 1rem 0 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.hero-copy > *:not(.hero-copy-atmosphere) {
    position: relative;
    z-index: 1;
}

.hero-copy-atmosphere {
    position: absolute;
    inset: -10% -6% -6% -10%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.copy-beam,
.copy-smoke,
.copy-particle {
    position: absolute;
    pointer-events: none;
}

.copy-beam {
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.95;
    mix-blend-mode: screen;
    animation: copyBeamShift 6.8s ease-in-out infinite;
}

.copy-beam-one {
    left: -6%;
    top: 4%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(79, 146, 255, 0.64), rgba(79, 146, 255, 0.18) 44%, transparent 72%);
}

.copy-beam-two {
    left: 18%;
    top: 36%;
    width: 420px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 196, 103, 0.42), rgba(255, 196, 103, 0.12) 42%, transparent 74%);
    animation-delay: -3s;
}

.copy-smoke {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(151, 198, 255, 0.08) 34%, transparent 72%);
    filter: blur(32px);
    opacity: 0.7;
    animation: smokeDrift 10s ease-in-out infinite;
}

.copy-smoke-one {
    left: 4%;
    top: 10%;
    width: 340px;
    height: 200px;
}

.copy-smoke-two {
    left: 16%;
    top: 46%;
    width: 360px;
    height: 210px;
    animation-delay: -5s;
}

.copy-particle {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(124, 184, 255, 0.16));
    box-shadow: 0 0 24px rgba(124, 184, 255, 0.72);
    animation: copyParticleFloat 6.5s linear infinite;
}

.copy-particle-one { left: 16%; top: 22%; animation-duration: 7s; }
.copy-particle-two { left: 42%; top: 30%; width: 5px; height: 5px; animation-duration: 8.5s; animation-delay: -2s; }
.copy-particle-three { left: 24%; top: 68%; width: 4px; height: 4px; animation-duration: 6.6s; animation-delay: -4s; }
.copy-particle-four { left: 52%; top: 52%; width: 6px; height: 6px; animation-duration: 9.2s; animation-delay: -3s; }

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.62rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(145, 185, 245, 0.16);
    background: rgba(8, 22, 46, 0.72);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    color: #9EC7FF;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.story-copy h2,
.content-section h2,
.card h3,
.split-panel h2,
.showcase-copy h2,
.form-shell h2,
.footer-brand h3 {
    font-family: "Cormorant Garamond", serif;
}

.hero-copy h1 {
    margin: 1.15rem 0 1rem;
    font-size: clamp(3.2rem, 7vw, 6.9rem);
    line-height: 0.86;
    letter-spacing: -0.05em;
    color: #F6FAFF;
    text-shadow: 0 0 30px rgba(102, 167, 255, 0.12), 0 18px 38px rgba(0, 0, 0, 0.22);
}

.hero-copy p {
    margin: 0;
    max-width: 620px;
    color: #B9C7DB;
    font-size: 1.12rem;
    line-height: 1.9;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-support {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3.125rem;
}

.hero-metric {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(9, 22, 44, 0.94), rgba(7, 17, 35, 0.82));
    border: 1px solid rgba(124, 166, 240, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-metric strong {
    display: block;
    font-size: 1.4rem;
    color: #F7FBFF;
}

.hero-metric span {
    color: #A2B2CA;
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    display: flex;
}

.hero-stage {
    position: relative;
    flex: 1;
    min-height: 620px;
    padding: 1.6rem;
    border-radius: 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 198, 110, 0.34), transparent 14%),
        radial-gradient(circle at 78% 28%, rgba(18, 102, 227, 0.34), transparent 22%),
        radial-gradient(circle at 22% 34%, rgba(89, 160, 255, 0.28), transparent 20%),
        linear-gradient(160deg, rgba(7, 20, 41, 0.94), rgba(12, 34, 68, 0.9));
    box-shadow: 0 44px 110px rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(167, 203, 255, 0.18);
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 110px 110px;
    opacity: 0.18;
    pointer-events: none;
}

.hero-stage::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.hero-stage > * {
    position: relative;
    z-index: 1;
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(154, 191, 255, 0.18);
    pointer-events: none;
    animation: heroPulse 5.8s ease-in-out infinite;
}

.hero-orbit-one {
    width: 480px;
    height: 480px;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-orbit-two {
    width: 340px;
    height: 340px;
    top: 112px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 6.6s;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    filter: drop-shadow(0 0 18px rgba(112, 178, 255, 0.34));
}

.hero-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(118, 183, 255, 0.16));
    box-shadow: 0 0 34px rgba(130, 196, 255, 0.9);
    animation: particleFloat 7.2s linear infinite, particleDrift 9s ease-in-out infinite;
}

.particle-a { top: 14%; left: 22%; animation-duration: 8s; }
.particle-b { top: 26%; left: 74%; width: 5px; height: 5px; animation-duration: 10s; animation-delay: -1s; }
.particle-c { top: 38%; left: 17%; width: 4px; height: 4px; animation-duration: 7s; animation-delay: -3s; }
.particle-d { top: 52%; left: 82%; animation-duration: 11s; animation-delay: -2s; }
.particle-e { top: 66%; left: 24%; width: 5px; height: 5px; animation-duration: 9s; animation-delay: -4s; }
.particle-f { top: 72%; left: 64%; width: 6px; height: 6px; animation-duration: 12s; animation-delay: -2.5s; }

.hero-beam {
    position: absolute;
    left: 50%;
    top: 5%;
    width: 410px;
    height: 520px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 244, 210, 0.42), rgba(255, 182, 82, 0.22), rgba(108, 177, 255, 0.16), transparent 78%);
    filter: blur(34px);
    opacity: 0.88;
    pointer-events: none;
    animation: beamShift 5.6s ease-in-out infinite;
}

.hero-core-card {
    position: absolute;
    inset: 1.2rem 1.2rem 1.1rem;
    z-index: 2;
    width: auto;
    margin: 0;
    padding: 1.05rem 1.1rem 1.05rem;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(8, 20, 40, 0.08);
    border: 1px solid rgba(190, 222, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 28px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(24px) saturate(145%);
    display: flex;
    flex-direction: column;
}

.hero-logo-wrap {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 360px;
    margin-bottom: 3.125rem;
}

.hero-logo {
    width: min(100%, 430px);
    filter:
        drop-shadow(0 0 14px rgba(255, 164, 54, 0.48))
        drop-shadow(0 0 34px rgba(255, 122, 0, 0.36))
        drop-shadow(0 20px 34px rgba(0, 0, 0, 0.16));
    animation: floatSymbol 6s ease-in-out infinite;
}

.hero-badge-card,
.hero-callout {
    position: relative;
    z-index: 2;
    border-radius: 26px;
    padding: 1.3rem 1.4rem;
    background: linear-gradient(180deg, rgba(10, 20, 38, 0.18), rgba(10, 20, 38, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    color: #fff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-badge-card strong,
.hero-callout strong {
    display: block;
    font-size: 1.12rem;
    margin-bottom: 0.3rem;
}

.hero-badge-card p,
.hero-callout p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.hero-panels {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0;
}

.section {
    position: relative;
    padding: 4.8rem 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin: 0.3rem 0 0;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.92;
    color: #F5F9FF;
}

.section-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

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

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

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

.card,
.content-section,
.intro-band,
.split-panel,
.form-shell,
.story-card,
.impact-card,
.support-card {
    background: linear-gradient(180deg, rgba(10, 22, 43, 0.95), rgba(6, 16, 31, 0.92));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.card,
.content-section,
.story-card,
.impact-card,
.support-card {
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(176, 207, 255, 0.22);
}

.card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, rgba(18, 102, 227, 0.14), rgba(255, 139, 31, 0.14));
}

.card h3 {
    margin: 0 0 0.65rem;
    font-size: 2rem;
    line-height: 1;
    color: #F5F9FF;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.event-grid {
    align-items: stretch;
}

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

.event-card {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(17, 34, 60, 0.92), rgba(9, 20, 36, 0.9));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-color: rgba(173, 205, 255, 0.16);
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 34px 82px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(122, 171, 255, 0.16);
}

.event-card-page {
    min-height: 100%;
}

.event-media {
    position: relative;
}

.event-media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(113, 187, 255, 0.12), rgba(255, 190, 97, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.event-card:hover .event-media::before {
    opacity: 1;
}

.event-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, transparent, rgba(4, 10, 21, 0.86));
    pointer-events: none;
}

.event-date-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    width: 72px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    text-align: center;
    z-index: 2;
}

.event-date-badge span {
    display: block;
    padding: 0.45rem 0.3rem;
    background: linear-gradient(135deg, var(--primary), #0D4DB0);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-date-badge strong {
    display: block;
    padding: 0.72rem 0.3rem 0.22rem;
    color: #0C1C38;
    font-size: 1.8rem;
    line-height: 1;
}

.event-date-badge small {
    display: block;
    padding: 0 0.3rem 0.72rem;
    color: rgba(12, 28, 56, 0.66);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.event-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(17, 35, 66, 0.9);
    color: #C9D8F0;
    font-size: 0.79rem;
    font-weight: 700;
    border: 1px solid rgba(123, 164, 237, 0.12);
}

.event-meta .event-tag {
    background: rgba(255, 139, 31, 0.16);
    color: #FFD392;
    border-color: rgba(255, 183, 89, 0.18);
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(123, 164, 237, 0.12);
}

.event-location {
    color: #DBE7F8;
    font-size: 0.9rem;
    font-weight: 700;
}

.event-link {
    color: #8BC0FF;
    font-weight: 800;
}

.event-heading,
.impact-heading,
.gallery-heading {
    position: relative;
    padding: 1.6rem 1.8rem;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(10, 23, 46, 0.82), rgba(7, 17, 31, 0.78));
    border: 1px solid rgba(144, 186, 245, 0.12);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.event-heading::after,
.impact-heading::after,
.gallery-heading::after {
    content: "";
    position: absolute;
    inset: auto 1.8rem 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(164, 204, 255, 0.38), rgba(255, 201, 116, 0));
}

.section-link-row {
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
}

.intro-band,
.split-panel {
    border-radius: 40px;
    padding: 1.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
    gap: 1.5rem;
    align-items: stretch;
}

.intro-band .visual,
.split-panel .panel-visual {
    min-height: 360px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 198, 110, 0.2), transparent 18%),
        linear-gradient(160deg, rgba(7, 17, 31, 0.98), rgba(18, 102, 227, 0.72));
    display: grid;
    place-items: center;
    border: 1px solid rgba(175, 205, 255, 0.12);
}

.intro-band .visual.visual-bleed {
    padding: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
}

.intro-band .visual img,
.split-panel .panel-visual img {
    width: min(100%, 320px);
    object-fit: contain;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.32));
}

.fellowship-photo {
    width: 100%;
    min-height: 100%;
    height: 100%;
    border-radius: 30px;
    background-image:
        linear-gradient(180deg, rgba(8, 16, 30, 0.08), rgba(8, 16, 30, 0.18)),
        url("../img/fellowship-group.png");
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: scale(var(--zoom-scale, 1.04));
    transform-origin: center;
    transition: transform 0.18s linear;
}

.intro-copy,
.split-copy,
.showcase-copy {
    padding: 1rem 0.4rem;
}

.intro-copy h2,
.split-copy h2,
.showcase-copy h2,
.form-shell h2 {
    margin: 0.6rem 0 0.8rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.95;
    color: #F5F9FF;
}

.intro-copy p,
.split-copy p,
.showcase-copy p,
.form-shell p,
.content-section p,
.story-copy p {
    color: var(--muted);
    line-height: 1.85;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.35rem;
}

.stat {
    padding: 1.35rem 1rem;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11, 25, 49, 0.96), rgba(7, 17, 34, 0.92));
    border: 1px solid rgba(123, 164, 237, 0.14);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.stat strong {
    display: block;
    color: #9CC6FF;
    font-size: 2rem;
}

.stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

.pillar-card {
    position: relative;
    overflow: hidden;
    padding-top: 5.2rem;
}

.pillar-card::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(102, 172, 255, 0.14), transparent 68%);
}

.pillar-icon {
    position: absolute;
    top: 1.3rem;
    left: 1.3rem;
    width: 62px;
    height: 62px;
    padding: 0.35rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(162, 198, 255, 0.18);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.pillar-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-grid,
.impact-grid,
.support-grid {
    display: grid;
    gap: 1.2rem;
}

.story-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.story-card,
.support-card {
    border-radius: 34px;
}

.story-card.dark-card,
.support-card.dark-card {
    background:
        radial-gradient(circle at top right, rgba(255, 187, 85, 0.16), transparent 22%),
        linear-gradient(160deg, #081D3A, #10346D);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.story-card.dark-card p,
.support-card.dark-card p,
.story-card.dark-card li,
.support-card.dark-card li {
    color: rgba(255, 255, 255, 0.82);
}

.support-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1rem;
}

.support-media {
    min-height: 210px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top left, rgba(255, 205, 132, 0.22), transparent 20%),
        linear-gradient(160deg, rgba(7, 17, 31, 0.86), rgba(16, 52, 109, 0.52));
}

.support-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-media-talk {
    background:
        radial-gradient(circle at top right, rgba(118, 188, 255, 0.24), transparent 20%),
        linear-gradient(160deg, rgba(7, 17, 31, 0.86), rgba(33, 80, 128, 0.48));
}

.story-list,
.feature-list,
.support-list {
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.story-list li,
.feature-list li,
.support-list li {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    color: var(--muted);
    line-height: 1.7;
}

.story-list li::before,
.feature-list li::before,
.support-list li::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    box-shadow: 0 0 0 6px rgba(255, 139, 31, 0.12);
}

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

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

.impact-card h3,
.story-card h3,
.support-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    color: #F5F9FF;
}

.impact-card {
    position: relative;
    overflow: hidden;
    padding-top: 4.2rem;
}

.impact-step,
.impact-accent {
    position: absolute;
}

.impact-step {
    top: 1.25rem;
    left: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(156, 198, 255, 0.2);
}

.impact-accent {
    top: 1.55rem;
    right: 1.5rem;
    padding: 0.48rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(166, 202, 255, 0.14);
    color: #D7E7FB;
    font-size: 0.78rem;
    font-weight: 700;
}

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

.gallery-item {
    position: relative;
    min-height: 240px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(124, 166, 240, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(10, 25, 49, 0.96), rgba(5, 15, 30, 0.96));
    box-shadow: var(--shadow-md);
    isolation: isolate;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
    pointer-events: none;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 14, 28, 0.04), rgba(4, 10, 21, 0.72)),
        radial-gradient(circle at 20% 20%, rgba(120, 194, 255, 0.16), transparent 24%);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.06);
}

.gallery-item:hover::after {
    opacity: 0.78;
}

.gallery-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(6, 16, 31, 0.68);
    color: #fff;
    text-align: left;
    line-height: 1.35;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
    backdrop-filter: blur(14px);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(4, 11, 22, 0.9);
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: min(1000px, 100%);
}

.lightbox img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 26px;
    background: #102548;
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    line-height: 1.7;
}

.lightbox button {
    position: absolute;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
}

.lightbox .close {
    top: 16px;
    right: 16px;
}

.lightbox .prev,
.lightbox .next {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox .prev {
    left: -64px;
}

.lightbox .next {
    right: -64px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 4.6rem 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 139, 31, 0.18), transparent 18%),
        radial-gradient(circle at 15% 22%, rgba(18, 102, 227, 0.2), transparent 26%),
        linear-gradient(160deg, #061326, #0A1F40 58%, #0C2A59);
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: -18% -8%;
    background:
        radial-gradient(circle at 18% 22%, rgba(124, 184, 255, 0.22), transparent 16%),
        radial-gradient(circle at 82% 18%, rgba(255, 168, 69, 0.22), transparent 15%),
        radial-gradient(circle at 50% 66%, rgba(73, 143, 255, 0.14), transparent 24%);
    filter: blur(18px);
    opacity: 0.95;
    animation: heroAmbientShift 11s ease-in-out infinite;
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.2;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.9rem;
    max-width: 920px;
}

.page-hero h1 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
}

.page-hero--events {
    background:
        radial-gradient(circle at 18% 14%, rgba(18, 102, 227, 0.24), transparent 20%),
        radial-gradient(circle at 82% 10%, rgba(255, 139, 31, 0.2), transparent 16%),
        linear-gradient(160deg, #051024, #092041 52%, #0B2B5B);
}

.page-hero--about {
    background:
        radial-gradient(circle at 20% 16%, rgba(18, 102, 227, 0.22), transparent 20%),
        radial-gradient(circle at 76% 18%, rgba(255, 139, 31, 0.18), transparent 16%),
        linear-gradient(160deg, #051024, #091C38 54%, #0A2A54);
}

.page-hero--events .eyebrow {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.page-hero--events .container::after {
    content: "";
    width: min(180px, 34vw);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 178, 92, 0), rgba(255, 178, 92, 0.92), rgba(124, 184, 255, 0));
    box-shadow: 0 0 24px rgba(255, 178, 92, 0.34);
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(18, 102, 227, 0.2), transparent 25%),
        radial-gradient(circle at 80% 16%, rgba(255, 139, 31, 0.18), transparent 18%);
    pointer-events: none;
}

.about-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.about-hero-copy {
    padding: 2rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(18, 102, 227, 0.18), transparent 22%),
        linear-gradient(165deg, rgba(8, 24, 49, 0.95), rgba(6, 16, 31, 0.92));
    border: 1px solid rgba(173, 205, 255, 0.12);
    box-shadow: var(--shadow-lg);
    display: grid;
    align-content: start;
    gap: 1rem;
}

.about-hero-copy h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: #fff;
}

.about-hero-copy p {
    margin: 0;
    max-width: 54ch;
    color: rgba(229, 240, 255, 0.8);
    line-height: 1.9;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.about-fact {
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(9, 21, 42, 0.75);
    border: 1px solid rgba(145, 185, 245, 0.12);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.about-fact strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.about-fact span {
    color: rgba(213, 227, 248, 0.76);
    font-size: 0.9rem;
}

.about-hero-note {
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 22, 43, 0.95), rgba(6, 16, 31, 0.92));
    border: 1px solid rgba(173, 205, 255, 0.12);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.about-hero-note-inline {
    max-width: 640px;
}

.about-hero-note strong {
    display: block;
    margin: 0.25rem 0 0.35rem;
    font-size: 1.2rem;
    color: #fff;
}

.about-hero-note p {
    margin: 0;
    color: rgba(229, 240, 255, 0.76);
    line-height: 1.7;
}

.principle-card {
    position: relative;
    overflow: hidden;
    padding: 1.3rem 1.35rem 1.4rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(18, 102, 227, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(10, 22, 43, 0.95), rgba(6, 16, 31, 0.92));
    border: 1px solid rgba(173, 205, 255, 0.12);
    box-shadow: var(--shadow-md);
}

.principle-card-accent {
    background:
        radial-gradient(circle at top right, rgba(255, 139, 31, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(13, 28, 54, 0.98), rgba(7, 17, 33, 0.94));
}

.principle-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    color: #9CC7FF;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.principle-card h3 {
    margin: 0 0 0.55rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.95;
    color: #fff;
}

.principle-card p {
    margin: 0;
    color: rgba(229, 240, 255, 0.78);
    line-height: 1.8;
}

.about-visionaire {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.about-visionaire-single {
    align-items: center;
}

.about-visionaire-media {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 520px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 194, 101, 0.18), transparent 18%),
        linear-gradient(160deg, rgba(8, 24, 49, 0.95), rgba(7, 15, 28, 0.98));
    border: 1px solid rgba(173, 205, 255, 0.12);
    box-shadow: var(--shadow-lg);
    display: grid;
    place-items: center;
    padding: 1rem;
}

.about-visionaire-media img {
    width: 100%;
    height: 100%;
    max-width: 520px;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.2));
}

.about-visionaire-copy {
    display: grid;
    align-content: start;
    gap: 0.95rem;
}

.about-visionaire-copy h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 4.8vw, 4.8rem);
    line-height: 0.92;
    color: #fff;
}

.about-visionaire-copy p {
    margin: 0;
    color: rgba(229, 240, 255, 0.8);
    line-height: 1.9;
}

.about-visionaire-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.45rem;
}

.about-visionaire-points div {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(9, 21, 42, 0.75);
    border: 1px solid rgba(145, 185, 245, 0.12);
}

.about-visionaire-points strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #fff;
}

.about-visionaire-points span {
    color: rgba(213, 227, 248, 0.76);
    line-height: 1.6;
}

.about-section-list {
    display: grid;
    gap: 1rem;
}

.about-section-card {
    padding: 1.4rem 1.5rem 1.5rem;
    border-radius: 30px;
}

.about-section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.about-section-top h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 0.95;
}

.about-section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(18, 102, 227, 0.12);
    border: 1px solid rgba(18, 102, 227, 0.18);
    color: #9CC7FF;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-section-card .content-section-visual {
    margin-bottom: 1rem;
}

.about-section-card p {
    margin: 0;
    color: rgba(229, 240, 255, 0.8);
    line-height: 1.85;
}

.connect-page {
    background:
        radial-gradient(circle at 20% 12%, rgba(18, 102, 227, 0.24), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(255, 139, 31, 0.2), transparent 18%),
        linear-gradient(180deg, #040A15 0%, #07101F 35%, #050C17 100%);
}

.connect-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(180deg, rgba(3, 9, 20, 0.72), rgba(3, 9, 20, 0.34));
    border-bottom: 1px solid rgba(170, 205, 255, 0.08);
    backdrop-filter: blur(18px) saturate(145%);
}

.connect-header-shell {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.connect-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
}

.connect-brand-mark {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(145, 185, 245, 0.14);
}

.connect-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.connect-brand-copy {
    display: grid;
    gap: 0.14rem;
}

.connect-brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.connect-brand-copy small {
    color: rgba(229, 240, 255, 0.72);
}

.connect-hero {
    position: relative;
    overflow: hidden;
    padding: 4.2rem 0 3.5rem;
}

.connect-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 18%, rgba(79, 146, 255, 0.3), transparent 24%),
        radial-gradient(circle at 78% 12%, rgba(255, 171, 67, 0.24), transparent 18%);
    pointer-events: none;
}

.connect-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: 1.4rem;
    align-items: stretch;
}

.connect-story {
    padding: 2rem;
    background:
        radial-gradient(circle at top left, rgba(18, 102, 227, 0.18), transparent 20%),
        linear-gradient(165deg, rgba(8, 24, 49, 0.94), rgba(6, 16, 31, 0.9));
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(173, 205, 255, 0.12);
    display: grid;
    gap: 1.1rem;
}

.connect-story h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: 0.94;
    color: #fff;
}

.connect-story p {
    margin: 0;
    max-width: 58ch;
    color: rgba(229, 240, 255, 0.78);
    line-height: 1.85;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.35rem;
}

.social-card {
    --card-accent: #7ea7ff;
    --card-accent-soft: rgba(126, 167, 255, 0.18);
    --card-glow: rgba(126, 167, 255, 0.35);
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 0.75rem;
    padding: 1.1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, var(--card-accent-soft), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    border: 1px solid color-mix(in srgb, var(--card-accent) 24%, rgba(255, 255, 255, 0.09));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 54px rgba(0, 0, 0, 0.24);
}

.social-card-band {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
    box-shadow: 0 0 18px var(--card-glow);
}

.social-card::before,
.social-card::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.social-card::before {
    inset: auto -15% -20% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--card-glow), transparent 65%);
    opacity: 0.65;
    animation: socialGlow 6.5s ease-in-out infinite;
}

.social-card::after {
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.11) 48%, transparent 56%),
        radial-gradient(circle at 20% 18%, var(--card-accent-soft), transparent 28%);
    transform: translateX(-24%);
    animation: socialSheen 8s linear infinite;
    opacity: 0.36;
}

.social-card--youtube {
    --card-accent: #ff2a23;
    --card-accent-soft: rgba(255, 42, 35, 0.22);
    --card-glow: rgba(255, 42, 35, 0.38);
}

.social-card--facebook {
    --card-accent: #1877f2;
    --card-accent-soft: rgba(24, 119, 242, 0.22);
    --card-glow: rgba(24, 119, 242, 0.38);
}

.social-card--instagram {
    --card-accent: #ff4f8b;
    --card-accent-soft: rgba(255, 79, 139, 0.22);
    --card-glow: rgba(255, 79, 139, 0.38);
}

.social-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 20%, rgba(255, 255, 255, 0.08)), rgba(255, 255, 255, 0.05));
    color: var(--card-accent);
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid color-mix(in srgb, var(--card-accent) 40%, rgba(255, 255, 255, 0.12));
    overflow: hidden;
}

.social-icon svg {
    width: 68%;
    height: 68%;
    display: block;
}

.social-card-copy {
    display: grid;
    gap: 0.2rem;
}

.social-card strong {
    display: block;
    font-size: 1rem;
    color: color-mix(in srgb, var(--card-accent) 14%, #ffffff);
    letter-spacing: 0.01em;
}

.social-card small {
    color: color-mix(in srgb, var(--card-accent) 18%, rgba(229, 240, 255, 0.72));
}

.social-card p {
    color: rgba(229, 240, 255, 0.82);
    line-height: 1.65;
}

.connect-spotlight {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.connect-card-large {
    position: relative;
    overflow: hidden;
    min-height: 490px;
    padding: 1.5rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 194, 101, 0.22), transparent 18%),
        radial-gradient(circle at 74% 26%, rgba(18, 102, 227, 0.2), transparent 22%),
        linear-gradient(160deg, #081D3A, #10346D);
    border: 1px solid rgba(173, 205, 255, 0.14);
    box-shadow: var(--shadow-lg);
}

.connect-card-large h2 {
    margin: 0.35rem 0 0.4rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.92;
    color: #fff;
}

.connect-card-large p {
    margin: 0;
    max-width: 34ch;
    color: rgba(229, 240, 255, 0.78);
    line-height: 1.8;
}

.connect-graphic {
    position: absolute;
    inset: auto 1.5rem 1.5rem;
    height: 300px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.connect-graphic::before,
.connect-graphic::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    animation: heroPulse 6.5s ease-in-out infinite;
}

.connect-graphic::before {
    width: 260px;
    height: 260px;
}

.connect-graphic::after {
    width: 170px;
    height: 170px;
    animation-delay: -1.5s;
}

.connect-graphic-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    border: 1px solid rgba(255, 195, 108, 0.18);
    animation: ringSpin 18s linear infinite;
}

.connect-graphic-ring.ring-two {
    width: 190px;
    height: 190px;
    border-color: rgba(118, 188, 255, 0.18);
    animation-direction: reverse;
    animation-duration: 12s;
}

.connect-graphic-core {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.connect-graphic-core span {
    color: #9CC7FF;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}

.connect-graphic-core strong {
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.05;
    text-align: center;
    max-width: 9ch;
    text-wrap: balance;
}

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

.contact-card {
    display: grid;
    gap: 0.45rem;
    padding: 1.15rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 22, 43, 0.95), rgba(6, 16, 31, 0.92));
    border: 1px solid rgba(173, 205, 255, 0.12);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    animation: connectFloat 6.5s ease-in-out infinite;
}

.contact-card:nth-child(2) {
    animation-delay: -1.5s;
}

.contact-card:nth-child(3) {
    animation-delay: -3s;
}

.contact-card-label {
    color: #9CC7FF;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-card strong {
    color: #fff;
    font-size: 1.2rem;
}

.contact-card small {
    color: rgba(229, 240, 255, 0.7);
    line-height: 1.6;
}

.content-stack {
    display: grid;
    gap: 1rem;
}

.content-section h2 {
    margin: 0 0 0.6rem;
    font-size: 2.2rem;
    line-height: 0.95;
    color: #F5F9FF;
}

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

.showcase-media {
    border-radius: 32px;
    overflow: hidden;
    min-height: 100%;
    background: linear-gradient(145deg, #102548, #0D4DB0);
    box-shadow: var(--shadow-lg);
}

.showcase-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.form-shell {
    border-radius: 34px;
    padding: 2rem;
}

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

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

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

.field label {
    color: #E7F0FF;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(130, 171, 242, 0.16);
    background: rgba(7, 18, 35, 0.92);
    padding: 1rem 1.05rem;
    color: #EAF2FF;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(18, 102, 227, 0.56);
    box-shadow: 0 0 0 4px rgba(18, 102, 227, 0.16);
    background: rgba(8, 22, 43, 0.98);
}

.success-box,
.notice {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    line-height: 1.6;
}

.success-box {
    background: rgba(48, 192, 124, 0.12);
    border: 1px solid rgba(48, 192, 124, 0.2);
    color: #8BE0B7;
}

.notice {
    background: rgba(18, 102, 227, 0.12);
    border: 1px solid rgba(18, 102, 227, 0.18);
    color: #9DC7FF;
}

.notice.danger {
    background: rgba(241, 108, 108, 0.08);
    border-color: rgba(241, 108, 108, 0.18);
    color: #FFB3B3;
}

.donation-card {
    border-radius: 34px;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 191, 94, 0.16), transparent 20%),
        linear-gradient(165deg, #081C39, #10346D);
    color: #fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.donation-card p {
    color: rgba(255, 255, 255, 0.82);
}

.quick-links {
    position: fixed;
    right: 18px;
    bottom: 82px;
    z-index: 40;
    display: grid;
    gap: 0.7rem;
}

.quick-links a,
.whatsapp-float {
    min-width: 58px;
    height: 58px;
    padding: 0 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 18px 40px rgba(4, 13, 27, 0.18);
}

.quick-links a:first-child {
    background: linear-gradient(135deg, var(--secondary), #D26F12);
}

.quick-links a:last-child {
    background: linear-gradient(135deg, var(--primary), #0D4DB0);
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: linear-gradient(135deg, #1FB861, #138B47);
    z-index: 41;
}

.site-footer {
    position: relative;
    margin-top: 3rem;
    padding: 4rem 0 2rem;
    background:
        radial-gradient(circle at 10% 0%, rgba(18, 102, 227, 0.16), transparent 20%),
        radial-gradient(circle at 90% 10%, rgba(255, 171, 67, 0.12), transparent 16%),
        linear-gradient(180deg, #030914, #071221 55%, #040B16);
    color: #E5F0FF;
    border-top: 1px solid rgba(147, 183, 241, 0.12);
}

.footer-shell {
    display: grid;
    gap: 2rem;
}

.footer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1rem;
}

.footer-brand {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.15rem;
    align-items: center;
    padding: 1.25rem 1.4rem;
    border-radius: 30px;
    background: rgba(8, 18, 38, 0.7);
    border: 1px solid rgba(147, 183, 241, 0.12);
}

.footer-logo-badge {
    width: 108px;
    min-height: 108px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(147, 183, 241, 0.16);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    padding: 0.75rem;
}

.footer-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.12));
}

.footer-brand-copy {
    display: grid;
    align-content: center;
    gap: 0.3rem;
}

.footer-brand h3 {
    margin: 0;
    font-size: 2.4rem;
    line-height: 0.92;
    color: #FFFFFF;
}

.footer-brand p {
    margin: 0;
    color: rgba(229, 240, 255, 0.76);
    max-width: 320px;
}

.footer-motto {
    display: inline-block;
    margin-top: 0.75rem;
    color: #F7D78B;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-spotlight {
    padding: 1.4rem 1.5rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(8, 18, 38, 0.76), rgba(10, 27, 51, 0.88));
    border: 1px solid rgba(147, 183, 241, 0.12);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.footer-spotlight-label {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #F7D78B;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-spotlight p {
    margin: 0;
    color: rgba(229, 240, 255, 0.8);
    line-height: 1.8;
}

.footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.footer-pills span {
    padding: 0.45rem 0.76rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #E6F1FF;
    font-size: 0.76rem;
    font-weight: 700;
}

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

.footer-grid h4 {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 215, 139, 0.96);
}

.footer-grid a {
    display: block;
}

.footer-grid a,
.footer-grid p,
.footer-bar p {
    color: rgba(229, 240, 255, 0.76);
    line-height: 1.8;
}

.footer-grid a:hover {
    color: #FFFFFF;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hidden-honeypot {
    display: none !important;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes particleFloat {
    0% { transform: translate3d(0, 0, 0) scale(0.8); opacity: 0.2; }
    20% { opacity: 1; }
    50% { transform: translate3d(22px, -42px, 0) scale(1.22); opacity: 0.92; }
    100% { transform: translate3d(-12px, -88px, 0) scale(0.65); opacity: 0; }
}

@keyframes beamShift {
    0%, 100% { transform: translateX(-50%) scaleY(0.96); opacity: 0.72; }
    50% { transform: translateX(-50%) scaleY(1.08); opacity: 1; }
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(0.96); }
    50% { opacity: 0.82; transform: translateX(-50%) scale(1.04); }
}

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

@keyframes copyBeamShift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(0.95); opacity: 0.72; }
    50% { transform: translate3d(26px, -14px, 0) scale(1.12); opacity: 1; }
}

@keyframes smokeDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(0.92); opacity: 0.22; }
    30% { opacity: 0.5; }
    50% { transform: translate3d(34px, -22px, 0) scale(1.08); opacity: 0.54; }
    100% { transform: translate3d(-12px, -28px, 0) scale(0.96); opacity: 0.18; }
}

@keyframes copyParticleFloat {
    0% { transform: translate3d(0, 0, 0) scale(0.7); opacity: 0; }
    15% { opacity: 0.9; }
    50% { transform: translate3d(18px, -38px, 0) scale(1.1); opacity: 1; }
    100% { transform: translate3d(-10px, -94px, 0) scale(0.6); opacity: 0; }
}

@keyframes heroAmbientShift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.78; }
    50% { transform: translate3d(16px, -12px, 0) scale(1.06); opacity: 1; }
}

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

@keyframes ringSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes socialGlow {
    0%, 100% { transform: scale(0.92); opacity: 0.48; }
    50% { transform: scale(1.06); opacity: 0.84; }
}

@keyframes socialSheen {
    0% { transform: translateX(-34%) rotate(0.001deg); }
    100% { transform: translateX(34%) rotate(0.001deg); }
}

@media (max-width: 1160px) {
    .nav-shell {
        display: flex;
    }

    .main-nav,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav.open {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        display: grid;
        justify-self: stretch;
        gap: 0.2rem;
        padding: 1rem;
        border-radius: 26px;
        background: rgba(6, 17, 34, 0.92);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(18px);
    }

    .main-nav.open a {
        justify-content: flex-start;
        padding-inline: 1rem;
    }

    .main-nav.open a::before {
        left: 14px;
        right: auto;
        width: 72px;
    }

    .hero-grid,
    .story-grid,
    .showcase,
    .grid-4,
    .impact-grid,
    .gallery-grid,
    .intro-band,
    .split-panel {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 620px;
    }

    .hero-core-card {
        inset: 1rem;
        padding: 0.9rem;
        border-radius: 28px;
        width: auto;
    }

    .hero-logo-wrap {
        min-height: 250px;
        margin-bottom: 1.2rem;
    }

    .hero-logo {
        width: min(82vw, 320px);
    }

    .hero-copy-atmosphere {
        inset: -8% -2% 6% -4%;
    }

    .hero-support,
    .grid-3,
    .stats,
    .footer-grid,
    .social-grid,
    .contact-grid,
    .connect-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-panels {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .footer-hero {
        grid-template-columns: 1fr;
    }

    .connect-card-large {
        min-height: 420px;
    }

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

    .lightbox .prev {
        left: 12px;
    }

    .lightbox .next {
        right: 12px;
    }
}

@media (max-width: 760px) {
    .brand {
        gap: 0.7rem;
    }

    .brand-symbol {
        width: 54px;
        height: 54px;
    }

    .brand-copy strong {
        font-size: 0.82rem;
    }

    .brand-copy small {
        font-size: 0.62rem;
    }

    .footer-logo-badge {
        width: 92px;
        min-height: 92px;
    }

    .footer-logo {
        width: 100%;
    }

    .hero {
        padding-top: 3.4rem;
    }

    .hero-grid {
        gap: 1.2rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 12vw, 3.4rem);
    }

    .hero-copy p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .hero-actions,
    .button-row {
        margin-top: 1.3rem;
    }

    .hero-support {
        margin-top: 1.6rem;
    }

    .hero-stage {
        min-height: 560px;
    }

    .hero-support,
    .grid-2,
    .grid-3,
    .event-grid-page-list,
    .stats,
    .form-grid,
    .footer-grid,
    .footer-brand,
    .social-grid,
    .contact-grid,
    .connect-layout {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.4rem 0;
    }

    .section-heading,
    .footer-bar {
        display: grid;
    }

    .connect-header-shell {
        display: grid;
    }

    .connect-card-large {
        min-height: 380px;
    }

    .connect-graphic {
        inset: auto 1rem 1rem;
        height: 240px;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox button {
        width: 42px;
        height: 42px;
    }

    .quick-links a,
    .whatsapp-float {
        min-width: 52px;
        height: 52px;
        padding-inline: 0.8rem;
    }
}
