:root {
    --hero-dark: #0a0d0b;
    --hero-ink: #f6f8f7;
    --hero-green: #073dc5;
    --hero-green-dark: #052f98;
    --hero-muted: #dde2de;
    --soft-bg: #e8efe8;
    --text-dark: #17211b;
    --text-muted: #2d3a31;
}

.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 0.95rem;
}

.gallery-admin-item {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(63, 93, 153, 0.22);
    background: rgba(233, 241, 252, 0.62);
    box-shadow: 0 10px 26px rgba(8, 27, 67, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-admin-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(8, 27, 67, 0.14);
}

.gallery-admin-item.tile-portrait {
    grid-column: span 1;
}

.gallery-admin-item.tile-landscape {
    grid-column: span 2;
}

.gallery-admin-image {
    min-height: 220px;
    background: #cfdcf7;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tile-portrait .gallery-admin-image {
    aspect-ratio: 3 / 5;
    min-height: 280px;
}

.tile-landscape .gallery-admin-image {
    aspect-ratio: 16 / 13;
    min-height: 220px;
}

.gallery-admin-meta {
    padding: 0.7rem 0.78rem 0.82rem;
    background: rgba(242, 246, 252, 0.9);
}

.gallery-admin-meta h3 {
    margin: 0;
    font-size: 0.98rem;
}

.gallery-admin-meta p {
    margin: 0.32rem 0 0;
    font-size: 0.84rem;
    color: #395082;
}

.join-messages {
    width: min(100%, 460px);
    margin: 0.9rem auto 0;
}

.join-message {
    margin: 0;
    border-radius: 0.6rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.86rem;
}

.join-message.success {
    background: rgba(32, 90, 200, 0.12);
    color: #17449c;
}

.join-message.error {
    background: rgba(188, 42, 42, 0.12);
    color: #8f1f1f;
}

.dashboard-page,
.dashboard-login-page {
    background:
        linear-gradient(rgba(232, 239, 235, 0.96), rgba(232, 239, 235, 0.96)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.1),
            rgba(84, 112, 176, 0.1) 1px,
            transparent 1px,
            transparent 24px
        );
    color: #131e3a;
    min-height: 76vh;
}

.dashboard-shell {
    width: min(1320px, 96%);
    margin: 1.8rem auto 2.4rem;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1rem;
}

.dashboard-nav {
    border-radius: 0.95rem;
    background: rgba(240, 247, 255, 0.85);
    border: 1px solid rgba(88, 118, 182, 0.25);
    padding: 1rem;
    display: grid;
    align-content: start;
    gap: 0.55rem;
}

.dashboard-nav h2 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.dashboard-nav a {
    border-radius: 0.6rem;
    padding: 0.5rem 0.62rem;
    font-size: 0.92rem;
    color: #1f3767;
}

.dashboard-nav a.active {
    background: rgba(25, 79, 197, 0.14);
    color: #0b3ca9;
    font-weight: 600;
}

.dashboard-main {
    border-radius: 0.95rem;
    background: rgba(248, 252, 255, 0.9);
    border: 1px solid rgba(88, 118, 182, 0.22);
    padding: 1rem;
}

.dashboard-main h1 {
    margin: 0;
    font-size: 1.35rem;
}

.dashboard-main h2 {
    margin: 1.1rem 0 0.6rem;
    font-size: 1.04rem;
}

.dashboard-form-grid p {
    margin: 0.52rem 0;
}

.dashboard-form-grid input,
.dashboard-form-grid select,
.dashboard-form-grid textarea {
    width: 100%;
    border: 1px solid rgba(90, 117, 178, 0.35);
    border-radius: 0.55rem;
    padding: 0.5rem 0.6rem;
    font-family: inherit;
}

.dashboard-btn {
    margin-top: 0.6rem;
    border: 0;
    border-radius: 0.6rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(155deg, var(--hero-green), var(--hero-green-dark));
    color: #f6f9ff;
    font-weight: 600;
}

.dashboard-link-inline {
    margin-left: 0.7rem;
    color: #1f4fb3;
}

.dashboard-table-wrap {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.dashboard-table th,
.dashboard-table td {
    border-bottom: 1px solid rgba(94, 120, 179, 0.22);
    padding: 0.55rem 0.45rem;
    text-align: left;
}

.dashboard-table td a {
    color: #1f4fb3;
    margin-right: 0.6rem;
}

.dashboard-stats {
    margin-top: 0.85rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 0.7rem;
}

.dashboard-stats article {
    border-radius: 0.75rem;
    padding: 0.7rem;
    background: rgba(143, 169, 224, 0.18);
    border: 1px solid rgba(94, 120, 179, 0.26);
}

.dashboard-stats strong {
    display: block;
    font-size: 1.3rem;
}

.dashboard-stats span {
    display: block;
    font-size: 0.82rem;
    color: #3c4f79;
}

.dashboard-messages p {
    margin: 0 0 0.5rem;
    border-radius: 0.5rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.86rem;
}

.dashboard-messages .success {
    background: rgba(32, 90, 200, 0.12);
    color: #17449c;
}

.dashboard-messages .error {
    background: rgba(188, 42, 42, 0.12);
    color: #8f1f1f;
}

.dashboard-login-card {
    width: min(420px, 95%);
    margin: 3.4rem auto;
    border-radius: 0.95rem;
    background: rgba(248, 252, 255, 0.92);
    border: 1px solid rgba(88, 118, 182, 0.22);
    padding: 1.3rem 1rem 1.2rem;
}

.dashboard-login-card h1 {
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
}

.dashboard-login-card p {
    margin: 0.35rem 0 0.9rem;
    text-align: center;
    color: #4a5f8e;
}

.dashboard-login-form {
    display: grid;
    gap: 0.45rem;
}

.dashboard-login-form input {
    width: 100%;
    border: 1px solid rgba(90, 117, 178, 0.35);
    border-radius: 0.55rem;
    padding: 0.54rem 0.62rem;
    font-family: inherit;
}

.dashboard-login-form button {
    margin-top: 0.6rem;
    border: 0;
    border-radius: 0.62rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(155deg, var(--hero-green), var(--hero-green-dark));
    color: #f6f9ff;
    font-weight: 600;
}

@media (max-width: 1040px) {
    .gallery-admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-admin-item.tile-landscape {
        grid-column: span 2;
    }

    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .gallery-admin-grid {
        grid-template-columns: 1fr;
    }

    .gallery-admin-item.tile-landscape,
    .gallery-admin-item.tile-portrait {
        grid-column: span 1;
    }

    .gallery-admin-image,
    .tile-portrait .gallery-admin-image,
    .tile-landscape .gallery-admin-image {
        min-height: 235px;
        aspect-ratio: 4 / 5;
    }
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--hero-ink);
}

.site-header {
    position: relative;
    z-index: 20;
    background-color: black;
}

.site-header.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: black;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 6.1rem 0.6rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(rgba(3, 9, 28, 0.3), rgba(3, 9, 28, 0.48)),
        url("/static/images/Rectangle\ 10.png");
    background-size: cover;
    background-position: center 30%;
}

.hero-mask {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        linear-gradient(90deg, rgba(7, 10, 28, 0.5), rgba(7, 10, 28, 0.5) 40%, rgba(7, 10, 28, 0.5));
}

.about-hero {
    position: relative;
    min-height: 100vh;
    padding: 7.8rem 1rem 2rem;
    background-image:url("../images/hero\ \(1\).png");
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

/* .about-hero::before, */
/* .about-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 18px solid rgba(187, 196, 107, 0.45);
    border-radius: 48% 52% 62% 38% / 52% 42% 58% 48%;
}

.about-hero::before {
    width: 560px;
    height: 300px;
    left: 130px;
    top: -110px;
    transform: rotate(-18deg);
}

.about-hero::after {
    width: 670px;
    height: 360px;
    right: -120px;
    top: 170px;
    transform: rotate(16deg);
} */

.about-hero-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35));
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1120px, 96%);
    margin: 8rem auto 0;
    text-align: center;
}

.about-hero-inner h1 {
    margin: 0;
    font-size: clamp(1.65rem, 3.45vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.about-hero-inner h1 span {
    display: block;
    color: var(--hero-green);
}

.about-hero-inner p {
    margin: 1rem auto 0;
    max-width: 1040px;
    color: rgba(240, 244, 241, 0.9);
    font-size: clamp(0.9rem, 0.95vw, 1.05rem);
    line-height: 1.38;
}

.about-hero-btn {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 290px;
    border-radius: 0.75rem;
    padding: 0.82rem 1.4rem;
    background: linear-gradient(160deg, var(--hero-green), var(--hero-green-dark));
    font-weight: 700;
    font-size: clamp(0.88rem, 0.92vw, 1rem);
}

.join-page {
    color: #111915;
    margin-top: 30px;
}

.join-page-inner {
    width: min(1260px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1.24fr;
    min-height: calc(100vh - 96px);
}

.join-visual {
    background-image:
        linear-gradient(rgba(123, 159, 227, 0.18), rgba(8, 52, 146, 0.28)),
        url("../images/image.png");
    background-size: cover;
    background-position: center 34%;
    min-height: 100%;
}

.join-form-wrap {
    position: relative;
    padding: 2.8rem 2.4rem 2.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.join-form-wrap::before {
    content: "";
    position: absolute;
    right: -118px;
    top: 36px;
    width: 620px;
    height: 240px;
    border: 14px solid rgba(201, 203, 137, 0.33);
    border-color: rgba(201, 203, 137, 0.42) transparent transparent transparent;
    border-radius: 60% 45% 0 0;
    transform: rotate(14deg);
    pointer-events: none;
}

.join-form-wrap::after {
    content: "";
    position: absolute;
    left: 38%;
    bottom: -120px;
    width: 540px;
    height: 210px;
    border: 12px solid rgba(201, 203, 137, 0.29);
    border-color: rgba(201, 203, 137, 0.29) transparent transparent transparent;
    border-radius: 70% 30% 0 0;
    transform: rotate(-14deg);
    pointer-events: none;
}

.join-form-wrap h1 {
    margin: 0;
    text-align: center;
    font-size: clamp(2.05rem, 3.25vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.join-form-wrap > p {
    margin: 0.48rem 0 0;
    text-align: center;
    color: #5e6b63;
    font-size: 0.96rem;
}

.join-form {
    margin: 1rem auto 0;
    width: min(100%, 460px);
    display: grid;
    gap: 0.58rem;
}

.join-form label {
    font-size: 0.89rem;
    color: #6a746e;
    margin-top: 0.14rem;
}

.join-form input[type="text"],
.join-form input[type="email"],
.join-form input[type="password"] {
    width: 100%;
    border: 2px solid rgba(147, 159, 151, 0.45);
    border-radius: 0.72rem;
    background: rgba(235, 242, 238, 0.72);
    min-height: 46px;
    padding: 0.68rem 0.9rem;
    font-size: 0.95rem;
    color: #1b2820;
    outline: none;
}

.join-form input::placeholder {
    color: #a4aea8;
}

.join-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.52rem;
    margin-top: 0.28rem;
}

.join-consent input {
    margin-top: 0.16rem;
}

.join-consent span {
    color: #3a463e;
    font-size: 0.88rem;
}

.join-consent a {
    color: #6b89e0;
}

.join-form button {
    margin-top: 0.52rem;
    width: 146px;
    border: 0;
    border-radius: 0.72rem;
    padding: 0.68rem 1rem;
    background: linear-gradient(160deg, #073dc5, #052f98);
    color: #f5f7f5;
    font-weight: 700;
    font-size: 0.93rem;
    cursor: pointer;
}

.sponsor-hero {
    position: relative;
    min-height: 100vh;
    padding: 7.8rem 1rem 2rem;
    background-image:url(../images/hero.svg);
    background-size: cover;
    background-position:center center ;
    overflow: hidden;
}

.sponsor-hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.38)),
        linear-gradient(90deg, rgba(8, 26, 74, 0.38), rgba(8, 26, 74, 0.18) 40%, rgba(8, 26, 74, 0.38));
}

.sponsor-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1120px, 96%);
    margin: 8rem auto 0;
    text-align: center;
}

.sponsor-hero-inner h1 {
    font-size: clamp(1.75rem, 3.85vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.sponsor-hero-inner h1 span {
    display: block;
    color: var(--hero-green);
}

.sponsor-hero-inner p {
    margin: 1rem auto 0;
    max-width: 1080px;
    color: rgba(240, 244, 241, 0.9);
    font-size: clamp(0.92rem, 1.05vw, 1.22rem);
    line-height: 1.42;
}

.events-page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:url("../images/hero.svg") ;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.events-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}



.events-page-inner {
    position: relative;
    z-index: 2;
    width: min(1120px, 96%);
    margin: 11rem auto 0;
    text-align: center;
}

.events-page-inner h1 {
    margin: 0;
    font-size: clamp(1.85rem, 4.25vw, 3.95rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.events-page-inner h1 span {
    display: block;
    color: var(--hero-green);
}

.events-listing {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(232, 239, 235, 0.96), rgba(232, 239, 235, 0.96)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.1),
            rgba(84, 112, 176, 0.1) 1px,
            transparent 1px,
            transparent 24px
        );
    padding: 1.4rem 1.2rem 2rem;
    color: #111915;
}

.events-listing::before {
    content: "";
    position: absolute;
    left: -240px;
    bottom: 40px;
    width: 920px;
    height: 210px;
    border: 14px solid rgba(201, 203, 137, 0.4);
    border-color: rgba(201, 203, 137, 0.4) transparent transparent transparent;
    border-radius: 60% 45% 0 0;
    transform: rotate(-9deg);
    pointer-events: none;
}

.events-listing::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 480px;
    width: 112px;
    height: 112px;
    background: #b52020;
    border-top-left-radius: 100%;
    pointer-events: none;
}

.events-listing-inner {
    width: min(1140px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1rem;
}

.event-card {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    background: rgba(246, 250, 255, 0.92);
    border: 1px solid rgba(79, 109, 170, 0.22);
    box-shadow: 0 12px 28px rgba(7, 29, 72, 0.1);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(7, 29, 72, 0.15);
}

.event-thumb {
    min-height: 220px;
    background-image: url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
}

.event-body {
    padding: 0.95rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.48rem;
    color: #17233d;
}

.event-body h3 {
    margin: 0;
    font-size: clamp(1.06rem, 1.35vw, 1.35rem);
    line-height: 1.3;
}

.event-body h4 {
    margin: 0.1rem 0 0;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(98, 126, 194, 0.35);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #37578f;
}

.event-body p {
    margin: 0;
    color: #455a87;
    font-size: 0.9rem;
    line-height: 1.42;
}

.event-body a {
    margin-top: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: fit-content;
    border-radius: 0.62rem;
    padding: 0.5rem 0.82rem;
    border: 1px solid rgba(31, 83, 187, 0.25);
    background: rgba(230, 240, 255, 0.72);
    color: #1f53bb;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.event-body a:hover {
    background: rgba(216, 231, 255, 0.9);
    border-color: rgba(31, 83, 187, 0.45);
}

.events-recent {
    background:
        linear-gradient(rgba(232, 239, 235, 0.96), rgba(232, 239, 235, 0.96)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.1),
            rgba(84, 112, 176, 0.1) 1px,
            transparent 1px,
            transparent 24px
        );
    padding: 1rem 1.2rem 2rem;
}

.events-recent-inner {
    width: min(1140px, 100%);
    margin: 0 auto;
    text-align: center;
}

.events-view-btn {
    display: inline-flex;
    border: 2px solid #8fc09d;
    border-radius: 0.7rem;
    padding: 0.42rem 1.3rem;
    color: #1d5d37;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(240, 247, 242, 0.66);
}

.events-recent h2 {
    margin: 0.8rem 0 0;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    line-height: 1.2;
}

.events-youtube {
    margin: 0.8rem auto 0;
    width: min(1020px, 100%);
    min-height: 255px;
    background: linear-gradient(90deg, #ece9a8 0%, #ecc3cc 56%, #df91dd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.8vw, 2.4rem);
    padding: 1rem;
}

.events-final-cta {
    position: relative;
    overflow: hidden;
    height: 22rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:url("../images/hero\ \(2\).svg");
    background-size: cover;
    margin-bottom: -8.4rem;

}


.events-final-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.events-final-inner h2 {
    margin: 0;
    font-size:clamp(1.9rem, 3vw, 3.1rem);
    line-height: 1.4;
}

.events-final-btn {
    margin-top: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    border-radius: 0.75rem;
    padding: 0.78rem 1.4rem;
    background: linear-gradient(160deg, #073dc5, #052f98);
    font-weight: 700;
    font-size: clamp(0.84rem, 0.86vw, 0.95rem);
}

.sponsor-showcase {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(232, 239, 235, 0.96), rgba(232, 239, 235, 0.96)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.1),
            rgba(84, 112, 176, 0.1) 1px,
            transparent 1px,
            transparent 24px
        );
    padding: 2.1rem 1.2rem 2.4rem;
    padding-top: 5rem;


    color: #111915;
}

.sponsor-showcase::before {
    content: "";
    position: absolute;
    left: -70px;
    bottom: 190px;
    width: 1160px;
    height: 180px;
    border: 14px solid rgba(201, 203, 137, 0.4);
    border-color: rgba(201, 203, 137, 0.4) transparent transparent transparent;
    border-radius: 60% 45% 0 0;
    transform: rotate(8deg);
    pointer-events: none;
}

.sponsor-showcase-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sponsor-showcase h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(1.45rem, 2.2vw, 2.35rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.sponsor-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.sponsor-tile {
    min-height: 260px;
    border-radius: 0.95rem;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18)),
        url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?auto=format&fit=crop&w=1500&q=80");
    background-size: cover;
    background-position: center;
}

.sponsor-inquire-btn {
    margin: 1rem auto 0;
    display: table;
    border: 2px solid #8fc09d;
    border-radius: 0.7rem;
    padding: 0.62rem 4.3rem;
    color: #1d5d37;
    font-weight: 600;
    font-size: 0.88rem;
    background: rgba(240, 247, 242, 0.66);
}

.sponsor-cta {
    position: relative;
    overflow: hidden;
    padding: 2.9rem 1.2rem;
    background:
        radial-gradient(circle at 50% -20%, rgba(19, 74, 188, 0.35), transparent 55%),
        linear-gradient(120deg, #0f2f78, #0c2868 45%, #16419e 100%);
    color: #edf2ed;
}

.sponsor-cta::before,
.sponsor-cta::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.sponsor-cta::before {
    left: -70px;
    top: 70px;
    width: 200px;
    height: 200px;
    background: #0d4fcb;
    border-radius: 0 100% 100% 0;
}

.sponsor-cta::after {
    right: -80px;
    top: 58px;
    width: 540px;
    height: 190px;
    border: 16px solid rgba(192, 203, 115, 0.38);
    border-color: rgba(192, 203, 115, 0.38) transparent transparent transparent;
    border-radius: 60% 45% 0 0;
    transform: rotate(16deg);
}

.sponsor-cta-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sponsor-cta h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sponsor-cta-btn {
    margin-top: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    border-radius: 0.75rem;
    padding: 0.78rem 1.4rem;
    background: linear-gradient(160deg, #073dc5, #052f98);
    font-weight: 700;
    font-size: clamp(0.84rem, 0.86vw, 0.95rem);
}

.about-nutshell {
    background:
        linear-gradient(rgba(232, 239, 235, 0.95), rgba(232, 239, 235, 0.95)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.12),
            rgba(84, 112, 176, 0.12) 1px,
            transparent 1px,
            transparent 22px
        );
    color: #121a16;
    padding: 2rem 1.2rem 2.2rem;
}

.about-nutshell-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    border-bottom: 1px solid rgba(98, 126, 194, 0.38);
    padding-bottom: 1.8rem;
}

.about-nutshell h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(1.7rem, 2.7vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.nutshell-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.1rem;
    align-items: center;
}

.nutshell-image {
    min-height: 330px;
    border-radius: 1.2rem;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.22)),
        url("../images/Rectangle\ 36\ \(1\).png");
    background-size: cover;
    background-position: center;
}

.nutshell-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.7rem;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    line-height: 1;
}

.nutshell-stars .green {
    color: #2d74e1;
}

.nutshell-stars .gold {
    color: #c3be55;
}

.nutshell-stars .red {
    color: #ab2121;
}

.nutshell-copy p {
    margin: 0.45rem 0 0;
    color: #1f2d25;
    font-size: clamp(0.95rem, 1.06vw, 1.2rem);
    line-height: 1.45;
}

.about-principles {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(232, 239, 235, 0.96), rgba(232, 239, 235, 0.96)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.1),
            rgba(84, 112, 176, 0.1) 1px,
            transparent 1px,
            transparent 24px
        );
    padding: 2.8rem 1.2rem 2.8rem;
    color: #121b16;
}

.about-principles::before,
.about-principles::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.about-principles::before {
    left: -210px;
    top: 255px;
    width: 980px;
    height: 165px;
    border: 16px solid rgba(201, 203, 137, 0.45);
    border-color: rgba(201, 203, 137, 0.45) transparent transparent transparent;
    border-radius: 60% 45% 0 0;
    transform: rotate(-14deg);
}

.about-principles::after {
    right: 78px;
    top: 490px;
    width: 126px;
    height: 126px;
    background: #b52020;
    border-top-left-radius: 100%;
}

.principles-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    position: relative;
    min-height: 820px;
}

.principles-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(114, 138, 202, 0.64);
    transform: translateX(-50%);
}

.principles-line span {
    position: absolute;
    left: 50%;
    width: 14px;
    height: 14px;
    border: 2px solid #6a9739;
    border-radius: 50%;
    background: #e9f0e8;
    transform: translate(-50%, -50%);
}

.principles-line span:nth-child(1) {
    top: 15%;
}

.principles-line span:nth-child(2) {
    top: 48%;
}

.principles-line span:nth-child(3) {
    top: 80%;
}

.principle-card {
    position: absolute;
    width: min(45%, 430px);
    border-radius: 0.95rem;
    padding: 1rem 0.95rem 1rem;
    color: rgba(241, 244, 243, 0.95);
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 24px rgba(9, 18, 12, 0.12);
}

.principle-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(4, 8, 8, 0.64);
}

.principle-card > * {
    position: relative;
    z-index: 1;
}

.principle-mission {
    right: 2%;
    top: 0;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/Frame\ 2147226684\ \(1\).png");
}

.principle-vision {
    left: 3%;
    top: 245px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../images/Frame\ 2147226685\ \(1\).png");
}

.principle-work {
    right: 3%;
    top: 555px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../images/Frame\ 2147226687.png");
}

.principle-vision,
.principle-work {
    height: 282px;
}

.principle-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(236, 240, 238, 0.72);
    font-size: 1.05rem;
    font-weight: 700;
}

.principle-head .principle-spark {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
    display: block;
}

.principle-head .index {
    font-size: 1.05rem;
    color: rgba(236, 240, 238, 0.68);
}

.principle-work .principle-head {
    justify-content: flex-end;
    gap: 0.6rem;
}

.principle-card h3 {
    margin: 0.15rem 0 0;
    font-size: clamp(1.05rem, 1.18vw, 1.35rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.principle-card p {
    margin: 0.38rem 0 0;
    font-size: clamp(0.82rem, 0.78vw, 0.92rem);
    line-height: 1.38;
    color: rgba(238, 241, 240, 0.82);
}

.about-superhuman {
    background:
        linear-gradient(rgba(232, 239, 235, 0.96), rgba(232, 239, 235, 0.96)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.1),
            rgba(84, 112, 176, 0.1) 1px,
            transparent 1px,
            transparent 24px
        );
    color: #111915;
    padding: 2.3rem 1.2rem 2.6rem;
    position: relative;
    overflow: hidden;
}

.about-superhuman::before {
    content: "";
    position: absolute;
    left: -76px;
    top: 0;
    width: 180px;
    height: 180px;
    background: #0842ab;
    border-bottom-right-radius: 100%;
}

.gallery-hero {
    padding: 8.2rem 1.2rem 2.4rem;
    background:
        linear-gradient(rgba(232, 239, 235, 0.96), rgba(232, 239, 235, 0.96)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.1),
            rgba(84, 112, 176, 0.1) 1px,
            transparent 1px,
            transparent 24px
        );
    position: relative;
    overflow: hidden;
    color: #111915;
}

.gallery-hero::before,
.gallery-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 16px solid rgba(201, 203, 137, 0.42);
    border-color: rgba(201, 203, 137, 0.42) transparent transparent transparent;
    border-radius: 60% 45% 0 0;
}

.gallery-hero::before {
    left: -210px;
    top: 35px;
    width: 760px;
    height: 150px;
    transform: rotate(-12deg);
}

.gallery-hero::after {
    right: -180px;
    top: 110px;
    width: 760px;
    height: 150px;
    transform: rotate(18deg);
}

.gallery-hero-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
}

.gallery-hero h1 {
    margin: 0;
    max-width: 980px;
    font-size: clamp(1.4rem, 2.7vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.gallery-filters {
    margin-top: 0.35rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.gallery-pill {
    border: 1px solid #26362d;
    background: rgba(235, 242, 237, 0.66);
    color: #1e2a22;
    border-radius: 0.65rem;
    padding: 0.46rem 0.92rem;
    font-size: 0.9rem;
    line-height: 1;
}

.gallery-pill.active {
    border-color: #2468d9;
    color: #1a56c8;
}

.gallery-wall {
    background:
        linear-gradient(rgba(232, 239, 235, 0.96), rgba(232, 239, 235, 0.96)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.1),
            rgba(84, 112, 176, 0.1) 1px,
            transparent 1px,
            transparent 24px
        );
    padding: 0.2rem 1.2rem 2.4rem;
    position: relative;
    overflow: hidden;
}

.gallery-wall::before,
.gallery-wall::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 14px solid rgba(201, 203, 137, 0.4);
    border-color: rgba(201, 203, 137, 0.4) transparent transparent transparent;
    border-radius: 60% 45% 0 0;
}

.gallery-wall::before {
    left: -220px;
    top: 24px;
    width: 760px;
    height: 150px;
    transform: rotate(-10deg);
}

.gallery-wall::after {
    right: -230px;
    bottom: 40px;
    width: 800px;
    height: 180px;
    transform: rotate(15deg);
}

.gallery-wall-inner {
    width: min(1140px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: 132px;
    gap: 0.8rem;
}

.g-item {
    border-radius: 0.95rem;
    background-size: cover;
    background-position: center;
}

.g-1 {
    grid-column: span 1;
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1593508512255-86ab42a8e620?auto=format&fit=crop&w=700&q=80");
}

.g-2 {
    grid-column: span 1;
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=700&q=80");
}

.g-3 {
    grid-column: span 2;
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1200&q=80");
}

.g-4 {
    grid-column: span 1;
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&w=700&q=80");
}

.g-5 {
    grid-column: span 2;
    grid-row: span 2;
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1200&q=80");
    filter: grayscale(100%);
}

.g-6 {
    grid-column: span 1;
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1592478411213-6153e4ebc07d?auto=format&fit=crop&w=700&q=80");
}

.g-7 {
    grid-column: span 2;
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?auto=format&fit=crop&w=1200&q=80");
}

.g-8 {
    grid-column: span 1;
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=700&q=80");
}

.g-9 {
    grid-column: span 1;
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop&w=700&q=80");
}

.gallery-album-btn {
    margin: 1rem auto 0;
    display: table;
    border: 1px solid #3f8a5f;
    border-radius: 0.58rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.76rem;
    color: #1b3024;
    background: rgba(242, 247, 243, 0.7);
}

.gallery-cta {
    position: relative;
    overflow: hidden;
    padding: 3rem 1.2rem;
    background:
        radial-gradient(circle at 50% -20%, rgba(19, 74, 188, 0.35), transparent 55%),
        linear-gradient(120deg, #0f2f78, #0c2868 45%, #16419e 100%);
    color: #edf2ed;
}

.gallery-cta::before,
.gallery-cta::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.gallery-cta::before {
    left: -70px;
    top: 70px;
    width: 200px;
    height: 200px;
    background: #0d4fcb;
    border-radius: 0 100% 100% 0;
}

.gallery-cta::after {
    right: -80px;
    top: 58px;
    width: 540px;
    height: 190px;
    border: 16px solid rgba(192, 203, 115, 0.38);
    border-color: rgba(192, 203, 115, 0.38) transparent transparent transparent;
    border-radius: 60% 45% 0 0;
    transform: rotate(16deg);
}

.gallery-cta-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gallery-cta h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gallery-cta-btn {
    margin-top: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    border-radius: 0.75rem;
    padding: 0.78rem 1.4rem;
    background: linear-gradient(160deg, #073dc5, #052f98);
    font-weight: 700;
    font-size: clamp(0.84rem, 0.86vw, 0.95rem);
}

.superhuman-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.superhuman-inner h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.superhuman-inner > p {
    margin: 0.55rem auto 0;
    text-align: center;
    max-width: 860px;
    color: #1f2c24;
    font-size: clamp(0.95rem, 1.05vw, 1.18rem);
}

.superhuman-grid {
    margin-top: 1.15rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
    align-items: end;
}

.superhuman-lead {
    position: relative;
    min-height: 420px;
    border-radius: 1rem;
    overflow: hidden;
    background: #b5cb53;
}

.superhuman-lead-image {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
}

.superhuman-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.05rem 1.15rem;
    background: rgba(198, 209, 194, 0.52);
    backdrop-filter: blur(5px);
}

.superhuman-meta span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.superhuman-meta h3 {
    margin: 0.5rem 0 0;
    font-size: 1.65rem;
    letter-spacing: 0.06em;
}

.superhuman-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    gap: 0.8rem;
}

.superhuman-card {
    min-height: 350px;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
}

.sh-1 {
    background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=700&q=80");
}

.sh-2 {
    background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=700&q=80");
}

.sh-3 {
    background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=700&q=80");
}

.sh-4 {
    background-image: url("https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=700&q=80");
}

.sh-5 {
    background-image: url("https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=700&q=80");
}

.navbar,
.hero-content {
    position: relative;
    z-index: 1;
}

.navbar {
    width: min(1360px, calc(100% - 8px));
    margin: 0 auto;
    padding: 0.65rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(9, 11, 10, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: clamp(1.45rem, 1.5vw, 1.85rem);
    line-height: 1;
}

.logo-mark {
    width: 1.2em;
    height: 1.2em;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    margin-top: -8px;
}

.logo span span {
    color: var(--hero-green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2.3rem);
    font-size: clamp(0.86rem, 0.88vw, 1rem);
    color: rgba(246, 248, 247, 0.96);
    font-weight: 500;
}

.nav-links a {
    position: relative;
}

.nav-links a.active {
    color: var(--hero-green);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: -0.05rem;
    right: -0.05rem;
    bottom: -0.7rem;
    height: 2px;
    background: var(--hero-green);
}

.btn-join-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    padding: 0.75rem 1.4rem;
    border-radius: 0.7rem;
    background: linear-gradient(160deg, var(--hero-green), var(--hero-green-dark));
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-join-nav.active {
    box-shadow: inset 0 0 0 1px rgba(246, 248, 247, 0.32);
}

.hero-content {
    width: min(1080px, 94%);
    margin: 0 auto 7.5rem;
    text-align: center;
}

.hero-content h1 {
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-size: clamp(1.9rem, 4.3vw, 3.95rem);
}

.hero-content h1 > span {
}


.hero-content h1 strong {
    color: var(--hero-green);
}

.word-wrap {
    display: inline-block;
    position: relative;
    padding: 0;
    border: 2px dashed rgba(7, 61, 197, 0.75);
}

.word-wrap::after {
    content:url("../images/hugeicons_cursor-edit-02.svg");
    position: absolute;
    right: -2.45rem;
    top: -1.75rem;
    color: var(--hero-green);
    font-size: 0.65em;
}

.hero-content p {
    margin: 1.1rem auto 0;
    max-width: 85%;
    font-size: clamp(0.96rem, 1.15vw, 1.3rem);
    line-height: 1.35;
    color: rgba(247, 249, 248, 0.93);
}

.hero-btns {
    margin-top: 1.85rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.45rem;
    border-radius: 0.85rem;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: clamp(0.88rem, 0.9vw, 1rem);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover,
.btn-join-nav:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.btn-primary {
    background: linear-gradient(160deg, var(--hero-green), var(--hero-green-dark));
}

.btn-secondary {
    border-color: rgba(246, 248, 247, 0.72);
    background: rgba(8, 14, 42, 0.3);
}

.btn-icon {
    font-size: 1.05em;
    line-height: 1;
}

.btn-icon.material-symbols-outlined {
    font-size: 1.12em;
    font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}

.about {
    background:
        linear-gradient(rgba(234, 240, 250, 0.9), rgba(234, 240, 250, 0.9)),
        repeating-linear-gradient(
            -35deg,
            rgba(45, 73, 128, 0.11),
            rgba(45, 73, 128, 0.11) 1px,
            transparent 1px,
            transparent 22px
        );
    color: var(--text-dark);
    padding: 3.8rem 1.2rem 3.2rem;
}

.about-inner {
    width: min(1360px, 100%);
    margin: 0 auto;
}

.about-copy h2 {
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-size: clamp(1.65rem, 3vw, 2.9rem);
}

.about-copy h2 span {
    color: #073DC5;
}

.about-copy p {
    max-width: 900px;
    margin: 1rem 0 2rem;
    color: var(--text-muted);
    line-height: 1.42;
    font-size: clamp(0.95rem, 1.05vw, 1.15rem);
}

.collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    align-items: end;
}
.collage img{
    width: 80%;
}

.tile {
    min-height: 360px;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
}

.tile-a {
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url("/static/images/Rectangle\ 15.png");
    width: 85%;
}

.tile-b {
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url("/static/images/Rectangle\ 16.png");
    width: 85%;
}

.tile-c {
    min-height: 520px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url("/static/images/Rectangle\ 14.png");
    width: 85%;
}

.shape {
    position: absolute;
    right: -2.5rem;
}

.shape-green {
    top: 0;
    width: 7.4rem;
    height: 7.4rem;
    background: #0844b6;
    border-bottom-right-radius: 100%;
}



.shape-gold {
    top: 36%;
    width: 6.8rem;
    height: 6.8rem;
    border-radius: 50%;
    background: #c8c35f;
}

.shape-red {
    bottom: 0;
    width: 7.6rem;
    height: 7.6rem;
    background: #b41b1c;
    border-top-left-radius: 100%;
}

.about-footnote {
    margin: 1.6rem 0 0;
    color: #203026;
    font-size: clamp(0.92rem, 0.95vw, 1.06rem);
    line-height: 1.48;
}

.impact {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(oklch(87.093% 0.04052 263.672 / 0.9), rgba(221, 232, 252, 0.9)),url("../images/2nd\ \(1\).png");
    padding: 4rem 1.2rem 3.6rem;
    color: #101813;
    background-size: cover;
    background-position: center center;

}

/* .impact::before,
.impact::after {
    content: "";
    position: absolute;
    background: rgba(96, 156, 255, 0.23);
    pointer-events: none;
}

.impact::before {
    right: -2.5rem;
    top: 26%;
    width: 22rem;
    height: 22rem;
    transform: rotate(45deg);
}

.impact::after {
    right: 8%;
    bottom: -4rem;
    width: 7rem;
    height: 13rem;
}*/

.impact-inner {
    width: min(1360px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.28fr;
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.impact-mosaic {
    display: grid;
    grid-template-columns: 0.7fr 0.7fr;
    gap: 1rem;
} 

.impact-card {
    position: relative;
    min-height: 250px;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
}
.impact-card h3{
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: -2rem;
    z-index: 1;
}

.impact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.48));
} */

.impact-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #f2f5f3;
    font-size: clamp(1.05rem, 1.7vw, 1.95rem);
    letter-spacing: 0.04em;
}

.impact-growth {
    min-height: 318px;
    background-image: url("../images/Rectangle\ 21.png");
    width: 100%;
}

.impact-collab {
    min-height: 285px;
    background-image: url("../images/Rectangle\ 21\ \(1\).png");
    width: 100%;
    transform: translate(0px,-60px);

}

.impact-community {
    min-height: 338px;
    background-image: url("../images/Rectangle\ 21\ \(3\).png");
    width: 100%;

}

.impact-mentorship {
    min-height: 370px;
    background-image: url("../images/Rectangle\ 21\ \(2\).png");
    width: 100%;
    transform: translate(0px,-60px);


}

.spark-icon {
    position: absolute;
    z-index: 2;
    left: -0.35rem;
    top: -0.55rem;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.impact-copy {
    position: relative;
    padding: 1rem 0.2rem 0 0.5rem;
}

.impact-copy h2 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(1.7rem, 2.6vw, 2.8rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.impact-copy p {
    margin: 0.75rem 0 0;
    max-width: 760px;
    color: #1d2f56;
    font-size: clamp(0.95rem, 0.98vw, 1.08rem);
    line-height: 1.5;
}

.ideas-mark {
    position: relative;
    display: inline-block;
}

.ideas-mark::after {
    content: "";
    position: absolute;
    left: -0.08em;
    right: -0.05em;
    height: 0.22em;
    bottom: 0.04em;
    background: #2b6de2;
    border-radius: 999px;
    z-index: -1;
    transform: rotate(-4deg);
}

.impact-btn {
    display: inline-flex;
    margin-top: 1.5rem;
    padding: 0.78rem 1.9rem;
    border-radius: 0.75rem;
    background: linear-gradient(155deg, var(--hero-green), var(--hero-green-dark));
    color: #eff8f1;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.impact-stats {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    gap: 0.9rem;
    max-width: 860px;
}

.stat-item {
    background: rgba(102, 136, 205, 0.34);
    border: 1px solid rgba(67, 107, 189, 0.28);
    border-radius: 0.75rem;
    padding: 0.85rem 0.7rem 0.95rem;
}

.stat-item strong {
    display: block;
    font-size: clamp(1.45rem, 1.9vw, 2rem);
    line-height: 1;
}

.stat-item span {
    display: block;
    margin-top: 0.45rem;
    color: #29406f;
    font-size: clamp(0.85rem, 0.86vw, 1rem);
}

.team {
    background:
        linear-gradient(rgba(232, 239, 235, 0.95), rgba(232, 239, 235, 0.95)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.12),
            rgba(84, 112, 176, 0.12) 1px,
            transparent 1px,
            transparent 22px
        );
    color: #121a16;
    padding: 4rem 1.2rem 2.2rem;
}

.team-inner {
    width: min(1360px, 100%);
    margin: 0 auto;
}

.team-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.2rem;
}

.team-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2.8vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.team-head p {
    margin: 0.65rem 0 0;
    max-width: 720px;
    color: #2a3830;
    font-size: clamp(0.95rem, 1.05vw, 1.3rem);
    line-height: 1.45;
}

.team-btn {
    flex-shrink: 0;
    margin-top: 0.35rem;
    border: 1px solid #3f8a5f;
    border-radius: 0.85rem;
    padding: 0.9rem 1.8rem;
    font-size: 0.96rem;
    font-weight: 600;
    color: #16261d;
    background: rgba(237, 246, 240, 0.65);
}

.team-grid {
    margin-top: 1.9rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 1.8rem;
    align-items: end;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(50, 88, 166, 0.3);
}

.lead-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 430px;
    background: #b4cb4d;
}

.lead-image {
    position: absolute;
    inset: 0;
    background-image: url("../images/Rectangle\ 26.png");
    background-size: cover;
    background-position: center;
}

.lead-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.1rem 1.2rem;
    background: rgba(204, 214, 200, 0.45);
    backdrop-filter: blur(6px);
}

.lead-meta span {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.lead-meta h3 {
    margin: 0.55rem 0 0;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
}

.member-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(105px, 1fr));
    gap: 0.9rem;
}

.member-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 340px;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
}

.member-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.62) 0%, rgba(10, 14, 26, 0.08) 55%);
}

.member-meta {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0.72rem 0.78rem 0.88rem;
    background: rgba(5, 8, 16, 0.58);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #f3f7ff;
}

.member-meta span {
    display: block;
    font-size: 0.67rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(235, 242, 255, 0.86);
}

.member-meta h4 {
    margin: 0.34rem 0 0;
    font-size: 0.95rem;
    line-height: 1.2;
}

.member-1 {
    background-image: url("../images/Rectangle\ 26\ \(9\).png");
}

.member-2 {
    background-image: url("../images/Rectangle\ 26\ \(11\).png");
}

.member-3 {
    background-image: url("../images/Rectangle\ 26\ \(12\).png");
}

.member-4 {
    background-image: url("../images/Rectangle\ 26\ \(7\).png");
}

.member-5 {
    background-image: url("../images/Rectangle\ 26\ \(8\).png");
}

.events-highlight {
    background:
        linear-gradient(rgba(232, 239, 235, 0.95), rgba(232, 239, 235, 0.95)),
        repeating-linear-gradient(
            -45deg,
            rgba(84, 112, 176, 0.12),
            rgba(84, 112, 176, 0.12) 1px,
            transparent 1px,
            transparent 22px
        );
    color: #111915;
    padding: 2rem 1.2rem 4.2rem;
}

.events-inner {
    width: min(1360px, 100%);
    margin: 0 auto;
    padding-top: 2.2rem;
    text-align: center;
}

.events-inner h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.events-feature {
    margin: 1rem auto 0;
    width: 100%;
    min-height: 25rem;
    background: linear-gradient(90deg, #ece9a8 0%, #ecc3cc 56%, #df91dd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.8vw, 2.4rem);
    padding: 1rem;
}

.yt-badge {
    width: clamp(140px, 17vw, 250px);
    height: clamp(100px, 11vw, 170px);
    border-radius: 25% / 34%;
    background: #f8150d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-play {
    width: 0;
    height: 0;
    border-top: clamp(16px, 1.5vw, 24px) solid transparent;
    border-bottom: clamp(16px, 1.5vw, 24px) solid transparent;
    border-left: clamp(26px, 2.6vw, 42px) solid #ffffff;
    margin-left: 0.35rem;
}

.yt-text {
    font-size: clamp(2.6rem, 10vw, 8.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #222429;
    line-height: 1;
}

.events-link {
    display: inline-block;
    margin-top: 0.9rem;
    color: #1a56c8;
    text-decoration: underline;
    font-size: 1rem;
}

.join-cta {
    position: relative;
    overflow: hidden;
    color: #edf2ed;
    background-image:url(../images/hero.svg);
    background-size: cover;
    background-position: center center ;
        
    padding: 4rem 1.2rem 4.4rem;
}


.join-inner {
    position: relative;
    z-index: 1;
    width: min(1360px, 100%);
    margin: 0 auto;
    text-align: center;
}

.join-inner h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.5vw, 2.65rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.join-inner > p {
    margin: 0.7rem auto 0;
    max-width: 820px;
    color: rgba(237, 242, 237, 0.8);
    font-size: clamp(0.95rem, 1.02vw, 1.15rem);
}

.join-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.1rem;
}

.join-card {
    min-height: 340px;
    background: rgba(2, 9, 7, 0.82);
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.6rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.join-card h3 {
    margin: 0;
    font-size: clamp(1.25rem, 1.45vw, 1.7rem);
    letter-spacing: 0.06em;
}

.join-card p {
    margin: 0.6rem 0 0;
    color: rgba(229, 236, 229, 0.62);
    font-size: clamp(0.92rem, 0.95vw, 1.08rem);
    line-height: 1.65;
}

.join-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #f2f6f2;
    font-size: clamp(0.95rem, 0.95vw, 1.08rem);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #090b0e;
    color: #f0f2f1;
    padding: 4.2rem 1.2rem 1.3rem;
}

.footer-inner {
    width: min(1360px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand p {
    margin: 1rem 0 0;
    max-width: 430px;
    color: rgba(224, 228, 226, 0.72);
    line-height: 1.45;
    font-size: clamp(0.95rem, 1.02vw, 1.18rem);
}

.footer-logo {
    font-size: clamp(1.45rem, 1.4vw, 1.9rem);
}

.footer-socials {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.9rem;
}

.footer-socials a {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 0.35rem;
    color: #0f1115;
    font-size: 0.68rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a img {
    width: 1rem;
    height: 1rem;
    display: block;
}

.footer-links h3 {
    margin: 0;
    font-size: clamp(1.15rem, 1.2vw, 1.4rem);
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 0.7rem;
}

.footer-links a {
    color: rgba(224, 228, 226, 0.72);
    font-size: clamp(0.95rem, 1vw, 1.18rem);
}

.footer-bottom {
    margin-top: 2rem;
    padding: 1.1rem 0 0.9rem;
    border-top: 1px solid rgba(124, 136, 132, 0.24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(224, 228, 226, 0.82);
    font-size: clamp(1rem, 1.15vw, 1.4rem);
}

.to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(240, 242, 241, 0.95);
    font-size: clamp(0.95rem, 1vw, 1.2rem);
}

.to-top span {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(224, 228, 226, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-mark {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    color: rgba(170, 176, 184, 0.14);
    pointer-events: none;
}

.footer-mark span {
    font-size: clamp(10rem, 16vw, 14rem);
    line-height: 1;
}

.footer-mark strong {
    font-size: clamp(5rem, 12vw, 10.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

@media (max-width: 1040px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        margin-bottom: 5rem;
    }

    .collage {
        grid-template-columns: 1fr 1fr;
        row-gap: 1.5rem;
    }

    .tile-c {
        grid-column: span 2;
        min-height: 340px;
    }

    .impact-inner {
        grid-template-columns: 1fr;
    }

    .impact-copy {
        padding-left: 0;
    }

    .impact-mentorship {
    min-height: 370px;
    background-image: url("../images/Rectangle\ 21\ \(2\).png");
    width: 100%;
    transform: translate(0px,0px);


}
    .impact-collab {
    min-height: 370px;
    background-image: url("../images/Rectangle\ 21\ \(2\).png");
    width: 100%;
    transform: translate(0px,0px);


}


    .team-head {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .lead-card {
        max-width: 360px;
    }

    .events-feature {
        min-height: 250px;
    }

    .join-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero {
        min-height: 78vh;
    }

    .sponsor-hero {
        min-height: 78vh;
    }

    .events-page-hero {
        min-height: 78vh;
    }

    .join-page-inner {
        grid-template-columns: 1fr;
    }

    .join-visual {
        min-height: 320px;
    }

    .events-grid {
        grid-template-columns: 1fr 1fr;
    }

    .events-youtube {
        min-height: 220px;
    }

    .sponsor-tile {
        min-height: 230px;
    }

    .sponsor-cta h2 {
        font-size: clamp(1.25rem, 2vw, 1.85rem);
    }

    .nutshell-grid {
        grid-template-columns: 1fr;
    }

    .principles-inner {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .principles-line {
        display: none;
    }

    .principle-card {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .superhuman-grid {
        grid-template-columns: 1fr;
    }

    .superhuman-lead {
        max-width: 360px;
    }

    .superhuman-track {
        grid-template-columns: repeat(3, minmax(110px, 1fr));
    }

    .gallery-hero {
        min-height: 62vh;
    }

    .gallery-filters {
        justify-content: flex-start;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .g-3,
    .g-5,
    .g-7 {
        grid-column: span 2;
    }

    .gallery-cta h2 {
        font-size: clamp(1.25rem, 2vw, 1.85rem);
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: 88vh;
        padding: 5.3rem 0.5rem 0.8rem;
    }

    .navbar {
        padding: 0.8rem 0.9rem;
    }

    .logo {
        font-size: 1.45rem;
    }

    .btn-join-nav {
        min-width: auto;
    }

    .hero-content {
        margin-bottom: 2.8rem;
    }

    .hero-content p {
        line-height: 1.45;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .collage {
        grid-template-columns: 1fr;
        row-gap: 1.5rem;
    }

    .tile,
    .tile-c {
        min-height: 250px;
        grid-column: auto;
    }

    .shape {
        display: none;
    }

    .impact {
        padding: 2.6rem 0.8rem 2.4rem;
    }

    .impact-mosaic {
        grid-template-columns: 1fr;
    }

    .impact-card,
    .impact-growth,
    .impact-collab,
    .impact-community,
    .impact-mentorship {
        min-height: 240px;
    }

    .impact-stats {
        grid-template-columns: 1fr 1fr;
    }

    .team {
        padding: 2.6rem 0.8rem 1.8rem;
    }

    .member-track {
        grid-template-columns: 1fr 1fr;
    }

    .member-card {
        min-height: 260px;
    }

    .events-highlight {
        padding: 1.7rem 0.8rem 2.8rem;
    }

    .events-inner {
        padding-top: 1.6rem;
    }

    .events-feature {
        min-height: 180px;
        gap: 0.8rem;
    }

    .join-cta {
        padding: 2.8rem 0.8rem 2.9rem;
    }

    .join-card {
        min-height: 280px;
        padding: 1.2rem 1rem;
    }

    .site-footer {
        padding: 2.8rem 0.8rem 1.1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-hero {
        padding: 6.3rem 0.8rem 1.6rem;
    }

    .about-hero::before,
    .about-hero::after {
        display: none;
    }

    .about-hero-inner {
        margin-top: 4.4rem;
    }

    .about-hero-inner h1 {
        font-size: clamp(1.55rem, 6.5vw, 2.3rem);
    }

    .about-hero-btn {
        min-width: auto;
        width: 100%;
        max-width: 360px;
    }

    .sponsor-hero {
        padding: 6.3rem 0.8rem 1.6rem;
    }

    .sponsor-hero::before,
    .sponsor-hero::after {
        display: none;
    }

    .sponsor-hero-inner {
        margin-top: 4.6rem;
    }

    .sponsor-hero-inner h1 {
        font-size: clamp(1.6rem, 6.8vw, 2.45rem);
    }

    .events-page-hero {
        padding: 6.3rem 0.8rem 1.6rem;
    }

    .events-decor {
        display: none;
    }

    .events-page-inner {
        margin-top: 6.4rem;
    }

    .events-page-inner h1 {
        font-size: clamp(1.7rem, 7.2vw, 2.6rem);
    }

    .events-listing {
        padding: 1rem 0.8rem 1.6rem;
    }

    .events-listing::before,
    .events-listing::after {
        display: none;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .event-thumb {
        min-height: 200px;
    }

    .events-recent {
        padding: 0.8rem 0.8rem 1.5rem;
    }

    .events-youtube {
        min-height: 170px;
    }

    .events-final-cta {
        padding: 2.1rem 0.8rem;
    }

    .events-final-cta::before,
    .events-final-cta::after {
        display: none;
    }

    .events-final-btn {
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }

    .join-form-wrap {
        padding: 1.6rem 1rem 2rem;
    }

    .join-form-wrap::before {
        display: none;
    }

    .join-form button {
        width: 100%;
        max-width: 280px;
    }

    .sponsor-showcase {
        padding: 1.4rem 0.8rem 1.8rem;
    }

    .sponsor-showcase::before {
        display: none;
    }

    .sponsor-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .sponsor-tile {
        min-height: 200px;
    }

    .sponsor-inquire-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 0.62rem 1rem;
    }

    .sponsor-cta {
        padding: 2.1rem 0.8rem;
    }

    .sponsor-cta::before,
    .sponsor-cta::after {
        display: none;
    }

    .sponsor-cta-btn {
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }

    .about-nutshell {
        padding: 1.6rem 0.8rem 1.8rem;
    }

    .about-nutshell-inner {
        padding-bottom: 1.3rem;
    }

    .nutshell-image {
        min-height: 240px;
    }

    .nutshell-stars {
        font-size: 1.6rem;
    }

    .about-principles {
        padding: 1.8rem 0.8rem 1.9rem;
    }

    .about-principles::before,
    .about-principles::after {
        display: none;
    }

    .about-superhuman {
        padding: 1.7rem 0.8rem 2rem;
    }

    .superhuman-track {
        grid-template-columns: 1fr 1fr;
    }

    .superhuman-card {
        min-height: 260px;
    }

    .gallery-hero {
        min-height: 56vh;
        padding: 6.5rem 0.8rem 1.8rem;
        background-image: url("../images/Rectangle\ 75\ \(1\).png");
        background-size: cover;
        background-position: center center;
    }


    .gallery-pill {
        font-size: 0.82rem;
        padding: 0.42rem 0.75rem;
    }

    .gallery-wall {
        padding: 0.1rem 0.8rem 1.8rem;
    }

    .gallery-wall::before,
    .gallery-wall::after {
        display: none;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
        gap: 0.6rem;
    }

    .g-item,
    .g-3,
    .g-5,
    .g-7 {
        grid-column: span 1;
        grid-row: span 2;
    }

    .gallery-cta {
        padding: 2.1rem 0.8rem;
    }

    .gallery-cta::before,
    .gallery-cta::after {
        display: none;
    }

    .gallery-cta-btn {
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
}
