/* =========================================
   SYNAPSE '26
   LOADING SCREEN
========================================= */


/* -----------------------------------------
   RESET
----------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* -----------------------------------------
   BODY
----------------------------------------- */

body {

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background: #050505;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

}


/* -----------------------------------------
   LOADER
----------------------------------------- */

#loader {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    background:

        radial-gradient(
            circle at center,
            #171717 0%,
            #090909 45%,
            #030303 100%
        );

    z-index: 9999;

}


/* -----------------------------------------
   CINEMATIC RED GLOW
----------------------------------------- */

#loader::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background:

        radial-gradient(
            circle,
            rgba(180, 0, 0, 0.12) 0%,
            rgba(100, 0, 0, 0.05) 35%,
            transparent 70%
        );

    pointer-events: none;

}


/* -----------------------------------------
   SUBTLE GRID
----------------------------------------- */

#loader::after {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 30%,
            black 70%,
            transparent
        );

    pointer-events: none;

}


/* -----------------------------------------
   CONTENT
----------------------------------------- */

.loader-content {

    position: relative;

    z-index: 2;

    width: min(600px, 85%);

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}


/* -----------------------------------------
   TITLE
----------------------------------------- */

.loader-title {

    display: flex;

    align-items: baseline;

    gap: 12px;

    margin-bottom: 45px;

    letter-spacing: 0.08em;

}


.synapse {

    font-size: clamp(42px, 7vw, 82px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.08em;

}


.year {

    font-size: clamp(22px, 3vw, 36px);

    font-weight: 400;

    color: #b8b8b8;

    letter-spacing: 0.05em;

}


/* -----------------------------------------
   STATUS
----------------------------------------- */

.loader-status {

    margin-bottom: 14px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.45em;

    color: #888888;

}


/* -----------------------------------------
   PERCENTAGE
----------------------------------------- */

.loader-percentage {

    display: flex;

    align-items: baseline;

    margin-bottom: 25px;

}


#percentage {

    font-size: clamp(55px, 8vw, 90px);

    font-weight: 300;

    line-height: 1;

    letter-spacing: -0.04em;

}


.percent-symbol {

    margin-left: 5px;

    font-size: 20px;

    color: #777777;

}


/* -----------------------------------------
   PROGRESS BAR
----------------------------------------- */

.progress-container {

    position: relative;

    width: 100%;

    height: 2px;

    background: rgba(255, 255, 255, 0.12);

    overflow: hidden;

}


.progress-bar {

    width: 0%;

    height: 100%;

    background: #ffffff;

    transition: width 0.08s linear;

    box-shadow:

        0 0 10px rgba(255, 255, 255, 0.6);

}


/* -----------------------------------------
   FOOTER
----------------------------------------- */

.loader-footer {

    margin-top: 25px;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 0.28em;

    color: #555555;

}


/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */

@media (max-width: 600px) {

    .loader-content {

        width: 82%;

    }

    .loader-title {

        gap: 8px;

        margin-bottom: 35px;

    }

    .loader-status {

        font-size: 9px;

        letter-spacing: 0.35em;

    }

    .loader-footer {

        font-size: 7px;

        letter-spacing: 0.2em;

    }

}
/* =========================================
   HOMEPAGE
========================================= */

#website {

    position: relative;

    min-height: 100vh;

    background: #050505;

    color: #ffffff;

}


/* =========================================
   NAVIGATION
========================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 90px;

    z-index: 1000;

}


.nav-inner {

    width: min(1400px, 90%);

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* LOGO */

.nav-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: #ffffff;

}


.nav-mark {

    width: 28px;
    height: 28px;

    border: 2px solid #ffffff;

    transform: rotate(45deg);

    position: relative;

}


.nav-mark::after {

    content: "";

    position: absolute;

    inset: 5px;

    border: 1px solid rgba(255,255,255,0.5);

}


.nav-name {

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 0.12em;

}


.nav-name span {

    color: #888888;

    font-weight: 400;

}


/* NAV LINKS */

.nav-links {

    display: flex;

    align-items: center;

    gap: 38px;

}


.nav-links a {

    position: relative;

    color: #aaaaaa;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.18em;

    transition: color 0.3s ease;

}


.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 1px;

    background: #ffffff;

    transition: width 0.3s ease;

}


.nav-links a:hover {

    color: #ffffff;

}


.nav-links a:hover::after {

    width: 100%;

}


/* REGISTER */

.nav-register {

    padding: 13px 22px;

    border: 1px solid rgba(255,255,255,0.35);

    color: #ffffff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.16em;

    transition: all 0.3s ease;

}


.nav-register:hover {

    background: #ffffff;

    color: #050505;

}


/* MOBILE BUTTON */

.menu-button {

    display: none;

    background: transparent;

    border: none;

    cursor: pointer;

}


.menu-button span {

    display: block;

    width: 26px;

    height: 1px;

    margin: 6px 0;

    background: #ffffff;

}


/* =========================================
   HERO
========================================= */

.hero {

    position: relative;

    min-height: 100vh;

    width: 100%;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at 50% 50%,
            #151515 0%,
            #080808 48%,
            #020202 100%
        );

}


/* GRID */

.hero-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    opacity: 0.5;

}


/* RED LIGHT */

.hero-red-light {

    position: absolute;

    width: 700px;
    height: 700px;

    left: -250px;
    bottom: -300px;

    background:

        radial-gradient(
            circle,
            rgba(170,0,0,0.22),
            transparent 68%
        );

    filter: blur(30px);

}


/* BLUE LIGHT */

.hero-blue-light {

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: -250px;

    background:

        radial-gradient(
            circle,
            rgba(20,60,150,0.16),
            transparent 68%
        );

    filter: blur(35px);

}


/* =========================================
   DECORATIVE LINES
========================================= */

.hero-lines {

    position: absolute;

    width: 250px;
    height: 100%;

    opacity: 0.25;

}


.hero-lines-left {

    left: 5%;

    border-left: 1px solid #ffffff;

    transform: skewX(-15deg);

}


.hero-lines-right {

    right: 5%;

    border-right: 1px solid #ffffff;

    transform: skewX(15deg);

}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {

    position: relative;

    z-index: 5;

    text-align: center;

    width: min(1000px, 90%);

    padding-top: 50px;

}


/* INSTITUTION */

.institution-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 25px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.35em;

    color: #777777;

}


.institution-label span {

    width: 35px;

    height: 1px;

    background: #555555;

}


/* PRESENTS */

.presents {

    font-size: 10px;

    letter-spacing: 0.5em;

    color: #999999;

    margin-bottom: 18px;

}


/* TITLE */

.hero-title {

    margin: 0;

    display: flex;

    align-items: baseline;

    justify-content: center;

    line-height: 0.85;

}


.synapse-word {

    font-family: "Arial Black", Arial, sans-serif;

    font-size: clamp(75px, 14vw, 190px);

    font-weight: 900;

    letter-spacing: -0.055em;

    color: #ffffff;

    text-shadow:

        0 0 40px rgba(255,255,255,0.05);

}


.year-word {

    font-size: clamp(35px, 5vw, 70px);

    font-weight: 300;

    color: #777777;

    margin-left: 15px;

}


/* DESCRIPTION */

.hero-description {

    margin-top: 35px;

    font-size: clamp(13px, 1.5vw, 17px);

    line-height: 1.7;

    letter-spacing: 0.28em;

    color: #999999;

}


.hero-description strong {

    color: #ffffff;

    font-weight: 700;

}


/* DATE */

.hero-date {

    margin-top: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

}


.hero-date span {

    font-size: 30px;

    font-weight: 300;

}


.hero-date i {

    width: 35px;

    height: 1px;

    background: #777777;

}


.hero-date small {

    font-size: 9px;

    letter-spacing: 0.25em;

    color: #777777;

}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {

    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 12px;

}


.button {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 15px 22px;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.18em;

    transition: all 0.3s ease;

}


.button-primary {

    background: #ffffff;

    color: #050505;

}


.button-primary:hover {

    background: #dddddd;

    transform: translateY(-2px);

}


.button-secondary {

    border: 1px solid rgba(255,255,255,0.3);

    color: #ffffff;

}


.button-secondary:hover {

    border-color: #ffffff;

    background: rgba(255,255,255,0.05);

}


/* =========================================
   SIDE LABELS
========================================= */

.hero-side {

    position: absolute;

    top: 50%;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 9px;

    letter-spacing: 0.3em;

    color: #666666;

}


.hero-side div {

    width: 45px;

    height: 1px;

    background: #444444;

}


.hero-side-left {

    left: 35px;

    transform: rotate(-90deg);

}


.hero-side-right {

    right: 35px;

    transform: rotate(90deg);

}


/* =========================================
   SCROLL INDICATOR
========================================= */

.scroll-indicator {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

}


.scroll-indicator span {

    font-size: 8px;

    letter-spacing: 0.3em;

    color: #666666;

}


.scroll-line {

    width: 1px;

    height: 45px;

    background:

        linear-gradient(
            to bottom,
            #ffffff,
            transparent
        );

}


/* =========================================
   RESPONSIVE
========================================= */

/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 900px) {

    .navbar {
        height: 80px;
    }

    .nav-inner {
        width: 90%;
    }

    /* HIDE DESKTOP NAV */

    .nav-links {
        position: fixed;

        inset: 0;

        width: 100%;
        height: 100vh;
        height: 100dvh;

        display: flex;
        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        gap: 0;

        padding:
            100px 10%
            50px;

        background:
            radial-gradient(
                circle at 80% 15%,
                rgba(30, 60, 130, 0.12),
                transparent 35%
            ),
            radial-gradient(
                circle at 15% 85%,
                rgba(150, 0, 0, 0.14),
                transparent 40%
            ),
            #050505;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-20px);

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;

        z-index: 1000;

        overflow-y: auto;
    }


    /* MOBILE MENU OPEN */

    .nav-links.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    /* NAV LINKS */

    .nav-links a {

        position: relative;

        width: 100%;

        padding: 15px 0;

        color: #888888;

        font-size: 22px;

        font-weight: 700;

        letter-spacing: 0.08em;

        border-bottom:
            1px solid
            rgba(255,255,255,0.08);

        transform: translateX(-20px);

        opacity: 0;

        transition:
            color 0.25s ease,
            transform 0.4s ease,
            opacity 0.4s ease;

    }


    /* STAGGERED OPEN ANIMATION */

    .nav-links.active a {

        opacity: 1;

        transform: translateX(0);

    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.08s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.11s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.14s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.17s;
    }

    .nav-links.active a:nth-child(6) {
        transition-delay: 0.20s;
    }

    .nav-links.active a:nth-child(7) {
        transition-delay: 0.23s;
    }

    .nav-links.active a:nth-child(8) {
        transition-delay: 0.26s;
    }

    .nav-links.active a:nth-child(9) {
        transition-delay: 0.29s;
    }

    .nav-links.active a:nth-child(10) {
        transition-delay: 0.32s;
    }


    /* REMOVE DESKTOP UNDERLINE */

    .nav-links a::after {

        display: none;

    }


    .nav-links a:hover {

        color: #ffffff;

    }


    /* HAMBURGER */

    .menu-button {

        position: relative;

        z-index: 1100;

        width: 42px;
        height: 42px;

        padding: 8px;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        background: transparent;

        border:
            1px solid
            rgba(255,255,255,0.2);

        cursor: pointer;

    }


    .menu-button span {

        display: block;

        width: 22px;

        height: 1px;

        margin: 3px 0;

        background: #ffffff;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;

    }


    /* HAMBURGER → X */

    .menu-button.active span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);

    }


    .menu-button.active span:nth-child(2) {

        opacity: 0;

    }


    .menu-button.active span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);

    }


    /* PREVENT BACKGROUND SCROLL */

    body.menu-open {

        overflow: hidden;

    }


    /* REGISTER HIDDEN */

    .nav-register {

        display: none;

    }


    /* HERO SIDE LABELS */

    .hero-side {

        display: none;

    }

}

@media (max-width: 600px) {

    .navbar {
        height: 75px;
    }

    .nav-inner {
        width: 86%;
    }

    .nav-logo {
        gap: 10px;
    }

    .nav-mark {
        width: 23px;
        height: 23px;
    }

    .nav-name {
        font-size: 17px;
    }

    .nav-links {
        padding-left: 9%;
        padding-right: 9%;
    }

    .nav-links a {
        font-size: 19px;
        padding: 13px 0;
    }

   .hero-content {

        padding-top: 20px;

    }


    .institution-label {

        font-size: 7px;

        letter-spacing: 0.22em;

    }


    .institution-label span {

        width: 20px;

    }


    .hero-title {

        flex-direction: column;

        align-items: center;

    }


    .synapse-word {

        font-size: 20vw;

    }


    .year-word {

        margin-left: 0;

        margin-top: 10px;

    }


    .hero-description {

        font-size: 10px;

        letter-spacing: 0.18em;

    }


    .hero-date {

        flex-wrap: wrap;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: center;

    }


    .button {

        width: 220px;

        justify-content: center;

    }

}
/* =========================================
   SYNAPSE '26
   SPONSOR SHOWCASE
========================================= */


/* =========================================
   MAIN SECTION
========================================= */

.sponsors-section {

    position: relative;

    width: 100%;

    padding: 120px 5% 110px;

    background:
        linear-gradient(
            to bottom,
            #050505,
            #090909
        );

    overflow: hidden;

}


/* =========================================
   HEADER
========================================= */

.sponsors-header {

    position: relative;

    z-index: 2;

    width: min(900px, 90%);

    margin: 0 auto 55px;

    text-align: center;

}


.sponsors-header .eyebrow {

    margin-bottom: 18px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.4em;

    color: #777777;

}


.sponsors-header h2 {

    margin: 0;

    font-size:
        clamp(
            42px,
            6vw,
            80px
        );

    font-weight: 800;

    letter-spacing: -0.04em;

    line-height: 0.95;

    color: #ffffff;

}


.sponsors-header h2 span {

    color: #777777;

}


.sponsors-header p {

    margin: 25px auto 0;

    max-width: 500px;

    font-size: 12px;

    line-height: 1.8;

    letter-spacing: 0.08em;

    color: #666666;

}


/* =========================================
   SLIDER
========================================= */

.sponsor-slider {

    position: relative;

    width: min(1100px, 100%);

    margin: auto;

    overflow: hidden;

    /*
       IMPORTANT FOR SWIPE

       Vertical movement continues to
       scroll the webpage normally.

       Horizontal movement is handled
       by JavaScript.
    */

    touch-action: pan-y;

    -webkit-user-select: none;

    user-select: none;

}


/* =========================================
   TRACK
========================================= */

.sponsor-track {

    display: flex;

    width: 100%;

    transition:
        transform 0.6s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

    will-change: transform;

    cursor: grab;

    /*
       Prevent browser from treating
       images as draggable objects.
    */

    -webkit-user-drag: none;

}


.sponsor-track:active {

    cursor: grabbing;

}


/* =========================================
   SLIDE
========================================= */

.sponsor-slide {

    position: relative;

    flex: 0 0 100%;

    width: 100%;

    aspect-ratio: 16 / 7;

    overflow: hidden;

    display: block;

    background: #111111;

    text-decoration: none;

    color: #ffffff;

    /*
       Allow vertical scrolling,
       JavaScript handles horizontal swipe.
    */

    touch-action: pan-y;

    -webkit-user-select: none;

    user-select: none;

    -webkit-user-drag: none;

}


/* =========================================
   SPONSOR IMAGE
========================================= */

.sponsor-slide img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    /*
       Prevent image drag from
       interfering with swipe.
    */

    pointer-events: none;

    -webkit-user-drag: none;

    transition:
        transform 0.7s ease;

}


/* =========================================
   IMAGE HOVER
========================================= */

.sponsor-slide:hover img {

    transform: scale(1.025);

}


/* =========================================
   IMAGE OVERLAY
========================================= */

.sponsor-slide::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            transparent 45%
        );

    pointer-events: none;

}


/* =========================================
   VISIT SPONSOR
========================================= */

.sponsor-overlay {

    position: absolute;

    left: 35px;

    bottom: 30px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 15px;

    color: #ffffff;

    pointer-events: none;

}


.sponsor-overlay span {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.25em;

}


.sponsor-overlay strong {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;

    height: 32px;

    border:
        1px solid
        rgba(255, 255, 255, 0.5);

    font-size: 16px;

    font-weight: 300;

    transition:
        all 0.3s ease;

}


/* =========================================
   SPONSOR HOVER ARROW
========================================= */

.sponsor-slide:hover
.sponsor-overlay strong {

    background: #ffffff;

    color: #050505;

}


/* =========================================
   ARROWS
========================================= */

.sponsor-arrow {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 5;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.3);

    background:
        rgba(0, 0, 0, 0.55);

    color: #ffffff;

    font-size: 18px;

    line-height: 1;

    cursor: pointer;

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;

}


.sponsor-arrow:hover {

    background: #ffffff;

    color: #050505;

    border-color: #ffffff;

}


.sponsor-arrow:active {

    transform:
        translateY(-50%)
        scale(0.94);

}


/* =========================================
   PREVIOUS
========================================= */

.sponsor-prev {

    left: 20px;

}


/* =========================================
   NEXT
========================================= */

.sponsor-next {

    right: 20px;

}


/* =========================================
   DOTS
========================================= */

.sponsor-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

}


.sponsor-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #444444;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;

}


.sponsor-dot.active {

    width: 28px;

    border-radius: 10px;

    background: #ffffff;

}


/* =========================================
   SWIPE HINT
========================================= */

.sponsor-swipe-hint {

    margin-top: 18px;

    text-align: center;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.3em;

    color: #444444;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .sponsors-section {

        padding:
            100px 4%
            95px;

    }


    .sponsor-slider {

        width: 96%;

    }


    .sponsor-slide {

        aspect-ratio: 16 / 8;

    }


    .sponsor-arrow {

        width: 44px;

        height: 44px;

    }


    .sponsor-prev {

        left: 15px;

    }


    .sponsor-next {

        right: 15px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sponsors-section {

        padding:
            85px 0
            80px;

    }


    .sponsors-header {

        width: 85%;

        margin:
            0 auto 35px;

    }


    .sponsors-header .eyebrow {

        font-size: 8px;

        letter-spacing: 0.3em;

    }


    .sponsors-header h2 {

        font-size: 42px;

    }


    .sponsors-header p {

        margin-top: 18px;

        font-size: 10px;

        line-height: 1.7;

    }


    .sponsor-slider {

        width: 92%;

        overflow: hidden;

        /*
           Critical for mobile swipe
        */

        touch-action: pan-y;

    }


    .sponsor-track {

        touch-action: pan-y;

    }


    .sponsor-slide {

        /*
           Taller mobile sponsor card
        */

        aspect-ratio: 4 / 3;

        touch-action: pan-y;

    }


    .sponsor-slide img {

        pointer-events: none;

    }


    .sponsor-arrow {

        width: 38px;

        height: 38px;

        font-size: 14px;

    }


    .sponsor-prev {

        left: 10px;

    }


    .sponsor-next {

        right: 10px;

    }


    .sponsor-overlay {

        left: 20px;

        bottom: 20px;

        gap: 10px;

    }


    .sponsor-overlay span {

        font-size: 8px;

        letter-spacing: 0.2em;

    }


    .sponsor-overlay strong {

        width: 28px;

        height: 28px;

        font-size: 14px;

    }


    .sponsor-dots {

        margin-top: 20px;

        gap: 8px;

    }


    .sponsor-swipe-hint {

        margin-top: 15px;

        font-size: 7px;

        letter-spacing: 0.25em;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .sponsors-header h2 {

        font-size: 36px;

    }


    .sponsor-slider {

        width: 94%;

    }


    .sponsor-arrow {

        width: 34px;

        height: 34px;

    }


    .sponsor-prev {

        left: 7px;

    }


    .sponsor-next {

        right: 7px;

    }


    .sponsor-overlay {

        left: 15px;

        bottom: 15px;

    }

}
/* =========================================
   GVMC — INSTITUTION SECTION
========================================= */

.gvmc-section {

    position: relative;

    padding: 140px 5%;

    background: #060606;

    overflow: hidden;

}


/* Background atmosphere */

.gvmc-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -300px;
    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(120, 0, 0, 0.16),
            transparent 70%
        );

    pointer-events: none;

}


.gvmc-section::after {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;

}


/* =========================================
   CONTAINER
========================================= */

.gvmc-container {

    position: relative;

    z-index: 2;

    width: min(1350px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;

}


/* =========================================
   IMAGE
========================================= */

.gvmc-visual {

    position: relative;

}


.gvmc-image {

    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #111;

}


.gvmc-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    filter: grayscale(20%);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;

}


.gvmc-image:hover img {

    transform: scale(1.04);

    filter: grayscale(0%);

}


.gvmc-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.65),
            transparent 55%
        );

    pointer-events: none;

}


/* Image frame */

.gvmc-image::before {

    content: "";

    position: absolute;

    inset: 16px;

    border: 1px solid
        rgba(255,255,255,0.2);

    z-index: 3;

    pointer-events: none;

}


/* Corner details */

.gvmc-image-corner {

    position: absolute;

    width: 55px;
    height: 55px;

    z-index: 4;

}


.gvmc-image-corner.top-left {

    top: 0;
    left: 0;

    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;

}


.gvmc-image-corner.bottom-right {

    right: 0;
    bottom: 0;

    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

}


/* Caption */

.gvmc-image-caption {

    position: absolute;

    left: 25px;
    bottom: 22px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.gvmc-image-caption span {

    font-size: 28px;

    font-weight: 900;

    letter-spacing: 0.08em;

}


.gvmc-image-caption small {

    font-size: 8px;

    letter-spacing: 0.28em;

    color: #bbbbbb;

}


/* =========================================
   CONTENT
========================================= */

.gvmc-content {

    max-width: 760px;

}


.gvmc-eyebrow {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.4em;

    color: #777777;

}


.gvmc-eyebrow span {

    width: 35px;

    height: 1px;

    background: #666666;

}


/* Title */

.gvmc-title {

    margin: 0;

    font-size: clamp(
        45px,
        5.2vw,
        78px
    );

    line-height: 0.92;

    font-weight: 900;

    letter-spacing: -0.055em;

}


.gvmc-title span {

    color: #777777;

}


/* Description */

.gvmc-description {

    max-width: 680px;

    margin-top: 32px;

    font-size: 13px;

    line-height: 1.9;

    color: #999999;

}


/* =========================================
   FACT GRID
========================================= */

.gvmc-facts {

    margin-top: 45px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.08);

}


/* Individual fact */

.gvmc-fact {

    min-height: 120px;

    padding: 20px;

    display: flex;

    align-items: flex-start;

    gap: 16px;

    background: #060606;

    transition:
        background 0.3s ease;

}


.gvmc-fact:hover {

    background: #111111;

}


/* =========================================
   ICON
========================================= */

.gvmc-icon {

    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,0.2);

    color: #ffffff;

}


.gvmc-icon svg {

    width: 20px;
    height: 20px;

}


/* =========================================
   FACT TEXT
========================================= */

.gvmc-fact-text {

    display: flex;

    flex-direction: column;

}


.gvmc-fact-text span {

    margin-bottom: 7px;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.25em;

    color: #666666;

}


.gvmc-fact-text strong {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.08em;

    color: #ffffff;

}


.gvmc-fact-text small {

    margin-top: 6px;

    font-size: 8px;

    line-height: 1.5;

    color: #666666;

}


/* =========================================
   BOTTOM LINE
========================================= */

.gvmc-bottom-line {

    margin-top: 35px;

    display: flex;

    align-items: center;

    gap: 15px;

}


.gvmc-bottom-line span {

    width: 45px;

    height: 1px;

    background: #ffffff;

}


.gvmc-bottom-line p {

    margin: 0;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.28em;

    color: #777777;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .gvmc-container {

        grid-template-columns: 1fr;

        gap: 65px;

    }


    .gvmc-visual {

        width: min(650px, 100%);

        margin: auto;

    }


    .gvmc-content {

        max-width: 100%;

    }

}


@media (max-width: 600px) {

    .gvmc-section {

        padding: 90px 6%;

    }


    .gvmc-facts {

        grid-template-columns: 1fr;

    }


    .gvmc-fact {

        min-height: 105px;

    }


    .gvmc-title {

        font-size: 43px;

    }


    .gvmc-description {

        font-size: 11px;

    }

}
/* =========================================
   SYNAPSE '26 — ABOUT SECTION
========================================= */

.synapse-about-section {

    position: relative;

    width: 100%;

    padding: 150px 5%;

    background: #050505;

    color: #ffffff;

    overflow: hidden;

}


/* =========================================
   BACKGROUND ATMOSPHERE
========================================= */

.synapse-about-section::before {

    content: "";

    position: absolute;

    width: 900px;

    height: 900px;

    right: -400px;

    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(40, 70, 150, 0.12),
            rgba(0, 0, 0, 0) 70%
        );

    pointer-events: none;

}


.synapse-about-section::after {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 75px 75px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );

    pointer-events: none;

}


/* =========================================
   MAIN CONTAINER
========================================= */

.synapse-about-container {

    position: relative;

    z-index: 2;

    width: min(1400px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 100px;

    align-items: center;

}


/* =========================================
   LEFT CONTENT
========================================= */

.synapse-about-content {

    max-width: 780px;

}


/* =========================================
   EYEBROW
========================================= */

.synapse-about-eyebrow {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 28px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.45em;

    color: #707070;

}


.synapse-about-eyebrow span {

    display: block;

    width: 42px;

    height: 1px;

    background: #707070;

}


/* =========================================
   MAIN TITLE
========================================= */

.synapse-about-title {

    margin: 0;

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(
            58px,
            7vw,
            105px
        );

    line-height: 0.84;

    font-weight: 900;

    letter-spacing: -0.065em;

    color: #ffffff;

}


.synapse-about-title span {

    color: #777777;

}


.synapse-about-title strong {

    display: inline-block;

    margin-left: 8px;

    font-family: Arial, sans-serif;

    font-size: 0.38em;

    font-weight: 300;

    letter-spacing: 0;

    color: #555555;

    vertical-align: top;

}


/* =========================================
   INTRODUCTION
========================================= */

.synapse-about-intro {

    max-width: 690px;

    margin: 42px 0 0;

    font-size: 15px;

    line-height: 1.9;

    font-weight: 400;

    letter-spacing: 0.01em;

    color: #b5b5b5;

}


.synapse-about-text {

    max-width: 680px;

    margin: 20px 0 0;

    font-size: 12px;

    line-height: 1.9;

    color: #686868;

}


/* =========================================
   THREE PILLARS
========================================= */

.synapse-pillars {

    width: 100%;

    margin-top: 52px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.08);

}


/* =========================================
   PILLAR
========================================= */

.synapse-pillar {

    position: relative;

    min-height: 155px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #050505;

    overflow: hidden;

    transition:
        background 0.35s ease,
        transform 0.35s ease;

}


.synapse-pillar::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 2px;

    background: #ffffff;

    transition: width 0.35s ease;

}


.synapse-pillar:hover {

    background: #101010;

}


.synapse-pillar:hover::before {

    width: 100%;

}


/* =========================================
   PILLAR ICON
========================================= */

.pillar-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,0.18);

    color: #ffffff;

    transition:
        background 0.35s ease,
        border-color 0.35s ease;

}


.synapse-pillar:hover .pillar-icon {

    background: #ffffff;

    color: #050505;

    border-color: #ffffff;

}


.pillar-icon svg {

    width: 19px;

    height: 19px;

}


/* =========================================
   PILLAR TEXT
========================================= */

.synapse-pillar span {

    display: block;

    margin-bottom: 5px;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.25em;

    color: #505050;

}


.synapse-pillar strong {

    display: block;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.1em;

    color: #ffffff;

}


.synapse-pillar small {

    display: block;

    margin-top: 6px;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: 0.2em;

    color: #606060;

}


/* =========================================
   BOTTOM TAGLINE
========================================= */

.synapse-about-tagline {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 38px;

}


.synapse-about-tagline span {

    display: block;

    width: 45px;

    height: 1px;

    background: #ffffff;

}


.synapse-about-tagline p {

    margin: 0;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.3em;

    color: #777777;

}


/* =========================================
   RIGHT VISUAL
========================================= */

.synapse-about-visual {

    position: relative;

    min-height: 620px;

    padding-left: 75px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-left:
        1px solid rgba(255,255,255,0.10);

}


/* =========================================
   VISUAL LABEL
========================================= */

.synapse-visual-label {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.synapse-visual-label span {

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.32em;

    color: #555555;

}


/* =========================================
   GIANT SYNAPSE TEXT
========================================= */

.synapse-giant-word {

    margin-top: 45px;

    margin-left: -8px;

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(
            55px,
            8vw,
            120px
        );

    line-height: 0.8;

    font-weight: 900;

    letter-spacing: -0.075em;

    white-space: nowrap;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.20);

    user-select: none;

}


/* =========================================
   VISUAL LINE
========================================= */

.synapse-visual-line {

    width: 100%;

    height: 1px;

    margin-top: 55px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.7),
            rgba(255,255,255,0)
        );

}


/* =========================================
   VISUAL MESSAGE
========================================= */

.synapse-visual-message {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 35px;

}


.synapse-visual-message span {

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.3em;

    color: #555555;

}


.synapse-visual-message strong {

    font-size:
        clamp(
            26px,
            3vw,
            44px
        );

    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -0.04em;

    color: #ffffff;

}


/* =========================================
   VISUAL DETAILS
========================================= */

.synapse-visual-details {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 42px;

}


.synapse-visual-details div {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.synapse-visual-details span {

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.25em;

    color: #4d4d4d;

}


.synapse-visual-details strong {

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.08em;

    color: #aaaaaa;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .synapse-about-container {

        grid-template-columns: 1fr;

        gap: 90px;

    }


    .synapse-about-content {

        max-width: 850px;

    }


    .synapse-about-visual {

        min-height: 480px;

        padding-left: 0;

        padding-top: 70px;

        border-left: none;

        border-top:
            1px solid rgba(255,255,255,0.10);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .synapse-about-section {

        padding: 95px 6%;

    }


    .synapse-about-title {

        font-size: 56px;

    }


    .synapse-about-intro {

        margin-top: 32px;

        font-size: 12px;

        line-height: 1.85;

    }


    .synapse-about-text {

        font-size: 10px;

        line-height: 1.8;

    }


    .synapse-pillars {

        grid-template-columns: 1fr;

        margin-top: 40px;

    }


    .synapse-pillar {

        min-height: 120px;

    }


    .synapse-about-visual {

        min-height: 330px;

        padding-top: 50px;

    }


    .synapse-giant-word {

        margin-top: 35px;

        font-size: 53px;

    }


    .synapse-visual-line {

        margin-top: 40px;

    }


    .synapse-visual-message {

        margin-top: 28px;

    }


    .synapse-visual-message strong {

        font-size: 30px;

    }


    .synapse-visual-details {

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 30px;

    }


    .synapse-about-tagline {

        margin-top: 30px;

    }

}
/* =========================================
   SYNAPSE '26
   OUR EVENTS — SPORTS STYLE
   FIXED 4:5 CARDS
========================================= */

.events-section {

    position: relative;

    width: 100%;

    padding: 130px 5% 150px;

    background: #080808;

    overflow: hidden;

}


/* =========================================
   HEADER
========================================= */

.events-header {

    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 55px;

}


.events-eyebrow {

    margin-bottom: 18px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.45em;

    color: #666666;

}


.events-header h2 {

    margin: 0;

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(
            50px,
            6vw,
            82px
        );

    line-height: 1;

    letter-spacing: -0.055em;

    font-weight: 900;

    color: #ffffff;

}


/* =========================================
   EVENTS GRID
========================================= */

.events-grid {

    position: relative;

    z-index: 2;

    width: min(1200px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    align-items: stretch;

}


/* =========================================
   EVENT CARD
   EXACT 4:5 RATIO
========================================= */

.event-card {

    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    min-width: 0;

    min-height: 0;

    height: auto;

    overflow: hidden;

    display: block;

    background: #090909;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 0;

    color: #ffffff;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;

}


/* =========================================
   HOVER
========================================= */

.event-card:hover {

    transform:
        translateY(-7px);

    border-color:
        #00a8ff;

}


/* =========================================
   IMAGE
   FULL CARD BACKGROUND
========================================= */

.event-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}


/* =========================================
   IMAGE
========================================= */

.event-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    filter: saturate(0.8);

    transition:
        transform 0.8s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );

}


/* =========================================
   IMAGE HOVER
========================================= */

.event-card:hover
.event-image img {

    transform:
        scale(1.08);

}


/* =========================================
   DARK OVERLAY
========================================= */

.event-card::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.96) 0%,
            rgba(0,0,0,0.72) 30%,
            rgba(0,0,0,0.20) 68%,
            rgba(0,0,0,0.08) 100%
        );

    pointer-events: none;

}


/* =========================================
   TOP ACCENT LINE
========================================= */

.event-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 2px;

    z-index: 5;

    background: #00a8ff;

    transition:
        width 0.4s ease;

}


.event-card:hover::before {

    width: 100%;

}


/* =========================================
   EVENT INFORMATION
   OVER IMAGE
========================================= */

.event-info {

    position: absolute;

    left: 28px;

    right: 28px;

    bottom: 28px;

    z-index: 3;

    padding: 0;

    text-align: left;

}


/* =========================================
   EVENT TITLE
========================================= */

.event-info h3 {

    margin: 0;

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(
            25px,
            2.5vw,
            34px
        );

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -0.05em;

    color: #ffffff;

}


/* =========================================
   EVENT TAGS
========================================= */

.event-tags {

    margin-top: 14px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 9px;

    flex-wrap: wrap;

}


.event-tags span {

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.20em;

    color: #999999;

}


.event-tags i {

    width: 2px;

    height: 2px;

    flex: 0 0 2px;

    border-radius: 50%;

    background: #555555;

}


/* =========================================
   ARROW
   SPORTS.CSS STYLE
========================================= */

.event-arrow {

    position: absolute;

    top: 20px;

    right: 20px;

    z-index: 4;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,0.35);

    background:
        rgba(0,0,0,0.45);

    backdrop-filter:
        blur(6px);

    -webkit-backdrop-filter:
        blur(6px);

    color: #ffffff;

    font-size: 16px;

    opacity: 0;

    transform:
        translateY(8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

}


/* =========================================
   ARROW HOVER
========================================= */

.event-card:hover .event-arrow {

    opacity: 1;

    transform:
        translateY(0);

    background: #ffffff;

    color: #050505;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .events-section {

        padding:
            110px 5%
            120px;

    }


    .events-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;

        width: min(850px, 100%);

    }


    .event-card {

        aspect-ratio: 4 / 5;

    }


    .event-info {

        left: 22px;

        right: 22px;

        bottom: 22px;

    }


    .event-info h3 {

        font-size: 27px;

    }


    .event-arrow {

        width: 35px;

        height: 35px;

        top: 16px;

        right: 16px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .events-section {

        padding:
            90px 6%
            100px;

    }


    .events-header {

        margin-bottom: 40px;

    }


    .events-header h2 {

        font-size: 52px;

    }


    /* =====================================
       2 EQUAL CARDS PER ROW
       EXACT 4:5
    ===================================== */

    .events-grid {

        width: 100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;

    }


    .event-card {

        width: 100%;

        aspect-ratio: 4 / 5;

        min-height: 0;

        height: auto;

    }


    /* -------------------------------------
       IMAGE ALWAYS FILLS CARD
    ------------------------------------- */

    .event-image {

        position: absolute;

        inset: 0;

        width: 100%;

        height: 100%;

    }


    .event-image img {

        width: 100%;

        height: 100%;

        object-fit: cover;

    }


    /* -------------------------------------
       INFORMATION
    ------------------------------------- */

    .event-info {

        left: 14px;

        right: 14px;

        bottom: 16px;

    }


    .event-info h3 {

        font-size: 20px;

        line-height: 0.95;

    }


    .event-tags {

        margin-top: 9px;

        gap: 6px;

    }


    .event-tags span {

        font-size: 5px;

        letter-spacing: 0.15em;

    }


    .event-tags i {

        width: 2px;

        height: 2px;

    }


    /* -------------------------------------
       ALWAYS SHOW ARROW ON MOBILE
    ------------------------------------- */

    .event-arrow {

        opacity: 1;

        transform:
            translateY(0);

        width: 30px;

        height: 30px;

        top: 10px;

        right: 10px;

        font-size: 13px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .events-grid {

        gap: 7px;

    }


    .event-info {

        left: 11px;

        right: 11px;

        bottom: 13px;

    }


    .event-info h3 {

        font-size: 17px;

    }


    .event-tags {

        display: none;

    }


    .event-arrow {

        width: 27px;

        height: 27px;

        top: 8px;

        right: 8px;

        font-size: 12px;

    }

}
/* =========================================
   SYNAPSE '26 — PRIZE POOL
========================================= */

.prize-section {

    position: relative;

    width: 100%;

    min-height: 650px;

    padding: 130px 5%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #050505;

    overflow: hidden;

}


/* =========================================
   BACKGROUND
========================================= */

.prize-section::before {

    content: "";

    position: absolute;

    width: 850px;

    height: 850px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(150, 0, 0, 0.14),
            transparent 68%
        );

    pointer-events: none;

}


.prize-section::after {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;

}


/* =========================================
   BACKGROUND NUMBER
========================================= */

.prize-background-number {

    position: absolute;

    right: 3%;

    bottom: -45px;

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(
            180px,
            25vw,
            380px
        );

    line-height: 1;

    font-weight: 900;

    color:
        rgba(255,255,255,0.025);

    letter-spacing: -0.08em;

    user-select: none;

}


/* =========================================
   CONTAINER
========================================= */

.prize-container {

    position: relative;

    z-index: 2;

    width: min(1000px, 100%);

    text-align: center;

}


/* =========================================
   EYEBROW
========================================= */

.prize-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.45em;

    color: #666666;

}


.prize-eyebrow span {

    width: 45px;

    height: 1px;

    background: #555555;

}


/* =========================================
   LABEL
========================================= */

.prize-label {

    margin-top: 30px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.45em;

    color: #888888;

}


/* =========================================
   AMOUNT
========================================= */

.prize-amount {

    margin-top: 18px;

    display: flex;

    align-items: flex-start;

    justify-content: center;

    line-height: 0.85;

}


.prize-amount span {

    margin-top: 15px;

    margin-right: 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            35px,
            5vw,
            65px
        );

    color: #888888;

}


.prize-amount strong {

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(
            75px,
            12vw,
            165px
        );

    font-weight: 900;

    letter-spacing: -0.07em;

    color: #ffffff;

    text-shadow:
        0 0 50px
        rgba(255,255,255,0.06);

}


/* =========================================
   WORTH
========================================= */

.prize-worth {

    margin-top: 18px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.5em;

    color: #555555;

}


/* =========================================
   DESCRIPTION
========================================= */

.prize-description {

    width: min(600px, 90%);

    margin: 30px auto 0;

    font-size: 12px;

    line-height: 1.8;

    color: #777777;

}


/* =========================================
   SPORTS + CULTURALS
========================================= */

.prize-categories {

    width: min(600px, 100%);

    margin: 50px auto 0;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.08);

}


.prize-category {

    min-height: 120px;

    padding: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    background: #050505;

    transition:
        background 0.3s ease;

}


.prize-category:hover {

    background: #111111;

}


/* =========================================
   ICON
========================================= */

.prize-category-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,0.18);

    color: #ffffff;

}


.prize-category-icon svg {

    width: 20px;

    height: 20px;

}


/* =========================================
   CATEGORY TEXT
========================================= */

.prize-category div:last-child {

    text-align: left;

}


.prize-category div:last-child span {

    display: block;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: #ffffff;

}


.prize-category div:last-child small {

    display: block;

    margin-top: 6px;

    font-size: 7px;

    letter-spacing: 0.25em;

    color: #555555;

}


/* =========================================
   BOTTOM LINE
========================================= */

.prize-bottom-line {

    margin-top: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

}


.prize-bottom-line span {

    width: 40px;

    height: 1px;

    background: #444444;

}


.prize-bottom-line p {

    margin: 0;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.3em;

    color: #555555;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .prize-section {

        min-height: 550px;

        padding:
            95px 6%;

    }


    .prize-label {

        font-size: 8px;

        letter-spacing: 0.35em;

    }


    .prize-amount strong {

        font-size: 68px;

    }


    .prize-amount span {

        font-size: 30px;

        margin-right: 7px;

    }


    .prize-worth {

        font-size: 8px;

        letter-spacing: 0.35em;

    }


    .prize-description {

        font-size: 10px;

    }


    .prize-categories {

        grid-template-columns: 1fr;

    }


    .prize-category {

        min-height: 90px;

    }


    .prize-background-number {

        font-size: 180px;

    }

}
/* =========================================
   SYNAPSE '26
   REPLAY GALLERY
========================================= */

.replay-section {

    position: relative;

    width: 100%;

    padding: 150px 5% 130px;

    background: #050505;

    color: #ffffff;

    overflow: hidden;

}


/* =========================================
   BACKGROUND ATMOSPHERE
========================================= */

.replay-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: 5%;
    left: -400px;

    background:
        radial-gradient(
            circle,
            rgba(0,168,255,0.08),
            transparent 70%
        );

    pointer-events: none;

}


.replay-section::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -400px;
    bottom: 5%;

    background:
        radial-gradient(
            circle,
            rgba(255,23,68,0.08),
            transparent 70%
        );

    pointer-events: none;

}


/* =========================================
   HEADER
========================================= */

.replay-header {

    position: relative;

    z-index: 2;

    width: min(900px, 90%);

    margin: 0 auto 70px;

    text-align: center;

}


.replay-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 25px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.45em;

    color: #666666;

}


.replay-eyebrow span {

    width: 50px;

    height: 1px;

    background: #333333;

}


.replay-header h2 {

    margin: 0;

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(55px, 8vw, 105px);

    line-height: 0.82;

    letter-spacing: -0.07em;

}


.replay-header h2 span {

    display: block;

    color: #777777;

}


.replay-header p {

    max-width: 550px;

    margin: 30px auto 0;

    font-size: 12px;

    line-height: 1.8;

    color: #666666;

}


/* =========================================
   INSTAGRAM REEL
========================================= */

.replay-reel {

    position: relative;

    z-index: 2;

    width: min(1100px, 100%);

    min-height: 700px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #000000;

    border:
        1px solid
        rgba(255,255,255,0.12);

    overflow: hidden;

}


/* subtle frame */

.replay-reel::before {

    content: "";

    position: absolute;

    inset: 12px;

    border:
        1px solid
        rgba(255,255,255,0.07);

    pointer-events: none;

    z-index: 10;

}


/* Instagram */

.instagram-wrapper {

    position: relative;

    z-index: 2;

    width: min(540px, 100%);

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.instagram-wrapper .instagram-media {

    width: 100% !important;

    max-width: 540px !important;

    min-width: 326px !important;

    margin: 0 !important;

    border: 0 !important;

    box-shadow: none !important;

}


/* =========================================
   REEL LABELS
========================================= */

.reel-label {

    position: absolute;

    top: 28px;

    z-index: 20;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.3em;

    color: rgba(255,255,255,0.6);

    pointer-events: none;

}


.reel-label-left {

    left: 30px;

}


.reel-label-right {

    right: 30px;

}


/* =========================================
   REEL BOTTOM
========================================= */

.reel-bottom {

    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    z-index: 20;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    pointer-events: none;

}


.reel-bottom div {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.reel-bottom small {

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.35em;

    color: #777777;

}


.reel-bottom strong {

    font-size: 25px;

    line-height: 0.9;

    letter-spacing: -0.04em;

}


.reel-bottom a {

    pointer-events: auto;

    padding: 12px 18px;

    border:
        1px solid
        rgba(255,255,255,0.3);

    color: #ffffff;

    text-decoration: none;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2em;

    transition:
        background 0.3s ease,
        color 0.3s ease;

}


.reel-bottom a:hover {

    background: #ffffff;

    color: #050505;

}


/* =========================================
   MEMORY HEADING
========================================= */

.memory-heading {

    position: relative;

    z-index: 2;

    width: min(1500px, 100%);

    margin: 100px auto 35px;

    padding-bottom: 25px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    border-bottom:
        1px solid
        rgba(255,255,255,0.1);

}


.memory-heading > div:first-child {

    display: flex;

    flex-direction: column;

}


.memory-heading span {

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.35em;

    color: #555555;

}


.memory-heading h3 {

    margin: 14px 0 0;

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(30px, 4vw, 58px);

    line-height: 0.85;

    letter-spacing: -0.055em;

}


.memory-counter {

    display: flex;

    align-items: baseline;

    gap: 7px;

}


.memory-counter strong {

    font-size: 38px;

    font-weight: 300;

    color: #ffffff;

}


.memory-counter span,
.memory-counter small {

    color: #555555;

}


/* =========================================
   MEMORY GRID
========================================= */

.memory-grid {

    position: relative;

    z-index: 2;

    width: min(1500px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-flow: dense;

    gap: 12px;

}


/* =========================================
   MEMORY CARD
========================================= */

.memory-card {

    position: relative;

    width: 100%;

    min-width: 0;

    aspect-ratio: 3 / 2;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,0.08);

    background: #0c0c0c;

    cursor: pointer;

    padding: 0;

    text-align: left;

}


.memory-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s
        cubic-bezier(0.2,0.8,0.2,1),
        filter 0.6s ease;

}


.memory-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(0,0,0,0.75)
        );

    pointer-events: none;

}


.memory-card::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #ff1744,
            #00a8ff
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform 0.45s ease;

    z-index: 5;

}


/* =========================================
   ASYMMETRIC CARDS
========================================= */

.memory-card.large {

    grid-column: span 2;

    grid-row: span 2;

    aspect-ratio: 1 / 1;

}


.memory-card.wide {

    grid-column: span 2;

}


/* =========================================
   CARD NUMBER
========================================= */

.memory-number {

    position: absolute;

    top: 15px;

    left: 17px;

    z-index: 5;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: #ffffff;

}


/* =========================================
   CARD VIEW
========================================= */

.memory-view {

    position: absolute;

    left: 18px;

    bottom: 17px;

    z-index: 5;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: #ffffff;

    opacity: 0;

    transform:
        translateY(8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

}


/* =========================================
   CARD HOVER
========================================= */

.memory-card:hover img {

    transform: scale(1.08);

    filter:
        brightness(0.7);

}


.memory-card:hover::before {

    transform:
        scaleX(1);

}


.memory-card:hover .memory-view {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================
   MEMORY INDEX
========================================= */

.memory-index {

    position: relative;

    z-index: 3;

    width: min(1500px, 100%);

    margin: 45px auto 0;

    display: flex;

    align-items: center;

    gap: 25px;

}


.index-title {

    flex-shrink: 0;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.3em;

    color: #444444;

}


.index-track {

    display: flex;

    gap: 7px;

    overflow-x: auto;

    scrollbar-width: none;

}


.index-track::-webkit-scrollbar {

    display: none;

}


.index-track button {

    flex-shrink: 0;

    width: 38px;

    height: 30px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    background: transparent;

    color: #555555;

    cursor: pointer;

    font-size: 8px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;

}


.index-track button:hover,
.index-track button.active {

    background: #ffffff;

    color: #050505;

    border-color: #ffffff;

}


/* =========================================
   LIGHTBOX
========================================= */

.memory-lightbox {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background:
        rgba(0,0,0,0.96);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.memory-lightbox.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


.lightbox-inner {

    width: min(1050px, 90vw);

    height: min(88vh, 900px);

    display: flex;

    flex-direction: column;

}


.lightbox-meta,
.lightbox-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.lightbox-meta span,
.lightbox-footer span {

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.3em;

    color: #666666;

}


.lightbox-meta strong {

    font-size: 12px;

    font-weight: 400;

    letter-spacing: 0.2em;

}


.lightbox-image-wrap {

    flex: 1;

    min-height: 0;

    margin: 18px 0;

    display: flex;

    align-items: center;

    justify-content: center;

}


.lightbox-image-wrap img {

    max-width: 100%;

    max-height: 100%;

    width: auto;

    height: auto;

    object-fit: contain;

    display: block;

}


.lightbox-close,
.lightbox-arrow {

    position: absolute;

    z-index: 10;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,0.25);

    background:
        rgba(0,0,0,0.6);

    color: #ffffff;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;

}


.lightbox-close:hover,
.lightbox-arrow:hover {

    background: #ffffff;

    color: #050505;

}


.lightbox-close {

    top: 25px;

    right: 25px;

    font-size: 25px;

}


.lightbox-prev {

    left: 30px;

    top: 50%;

    transform:
        translateY(-50%);

}


.lightbox-next {

    right: 30px;

    top: 50%;

    transform:
        translateY(-50%);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .memory-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .replay-section {

        padding:
            90px 4%
            80px;

    }


    .replay-header {

        width: 90%;

        margin-bottom: 40px;

    }


    .replay-header h2 {

        font-size: 53px;

    }


    .replay-header p {

        font-size: 10px;

    }


    .replay-reel {

        min-height: 620px;

    }


    .instagram-wrapper {

        min-height: 600px;

    }


    .reel-label {

        top: 18px;

        font-size: 6px;

    }


    .reel-label-left {

        left: 18px;

    }


    .reel-label-right {

        right: 18px;

    }


    .reel-bottom {

        left: 18px;

        right: 18px;

        bottom: 18px;

    }


    .reel-bottom strong {

        font-size: 20px;

    }


    .reel-bottom a {

        display: none;

    }


    .memory-heading {

        margin-top: 70px;

    }


    .memory-heading h3 {

        font-size: 31px;

    }


    .memory-counter strong {

        font-size: 28px;

    }


    .memory-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 7px;

    }


    .memory-card {

        aspect-ratio: 1 / 1;

    }


    .memory-card.large {

        grid-column: span 2;

        grid-row: span 2;

    }


    .memory-card.wide {

        grid-column: span 2;

    }


    .memory-view {

        opacity: 1;

        transform: none;

        font-size: 7px;

    }


    .memory-index {

        gap: 12px;

    }


    .index-title {

        display: none;

    }


    .memory-lightbox {

        padding: 15px;

    }


    .lightbox-inner {

        width: 100%;

        height: 82vh;

    }


    .lightbox-prev,
    .lightbox-next {

        width: 38px;

        height: 38px;

    }


    .lightbox-prev {

        left: 7px;

    }


    .lightbox-next {

        right: 7px;

    }


    .lightbox-close {

        top: 12px;

        right: 12px;

    }

}
/* =========================================
   SYNAPSE '26
   LET'S CONNECT
========================================= */


/* =========================================
   COLOR PALETTE

   BLACK        #050505
   WHITE        #FFFFFF
   GREY         #777777
   RED          #FF1744
   BLUE         #00A8FF
========================================= */


/* =========================================
   MAIN SECTION
========================================= */

.connect-section {

    position: relative;

    width: 100%;

    padding: 120px 5%;

    background: #050505;

    overflow: hidden;

}


/* =========================================
   BACKGROUND EFFECTS
========================================= */

.connect-section::before {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -300px;
    left: -250px;

    background:
        radial-gradient(
            circle,
            rgba(0,168,255,0.07),
            transparent 70%
        );

    pointer-events: none;

}


.connect-section::after {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -250px;
    bottom: -300px;

    background:
        radial-gradient(
            circle,
            rgba(255,23,68,0.07),
            transparent 70%
        );

    pointer-events: none;

}


/* =========================================
   HEADER
========================================= */

.connect-header {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin:
        0 auto 70px;

    text-align: center;

}


.connect-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 25px;

    color: #777777;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.4em;

}


.connect-eyebrow span {

    width: 50px;

    height: 1px;

    background: #333333;

}


.connect-header h2 {

    margin: 0;

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(
            50px,
            7vw,
            90px
        );

    line-height: 0.85;

    letter-spacing: -0.06em;

    color: #FFFFFF;

}


.connect-header h2 span {

    display: block;

    color: #777777;

}


.connect-header p {

    max-width: 550px;

    margin:
        25px auto 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.7;

}



/* =========================================
   THREE COLUMN GRID
========================================= */

.connect-grid {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1400px;

    min-height: 560px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.2fr
        1fr
        1fr;

    grid-template-rows:
        1fr
        1fr;

    gap: 14px;

}


/* =========================================
   GENERAL
   LEFT COLUMN
========================================= */

.general-card {

    grid-column: 1;

    grid-row: 1 / span 2;

}


/* =========================================
   CULTURAL
   MIDDLE TOP
========================================= */

.cultural-card {

    grid-column: 2;

    grid-row: 1;

}


/* =========================================
   SPORTS
   MIDDLE BOTTOM
========================================= */

.sports-card {

    grid-column: 2;

    grid-row: 2;

}


/* =========================================
   INSTAGRAM
   RIGHT COLUMN
========================================= */

.social-card {

    grid-column: 3;

    grid-row: 1 / span 2;

}



/* =========================================
   CARD
========================================= */

.connect-card {

    position: relative;

    display: flex;

    flex-direction: column;

    padding: 32px;

    min-width: 0;

    background: #090909;

    border:
        1px solid #1c1c1c;

    overflow: hidden;

    color: #FFFFFF;

    text-decoration: none;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

}


.connect-card:hover {

    transform:
        translateY(-4px);

    background: #0b0b0b;

}


/* =========================================
   CARD HOVER COLORS
========================================= */

.general-card:hover {

    border-color: #00A8FF;

}


.cultural-card:hover {

    border-color: #FF1744;

}


.sports-card:hover {

    border-color: #00A8FF;

}


.social-card:hover {

    border-color: #FF1744;

}



/* =========================================
   CARD NUMBER
========================================= */

.card-number {

    position: absolute;

    top: 20px;

    right: 22px;

    color: #333333;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2em;

}



/* =========================================
   CARD CATEGORY
========================================= */

.card-category {

    margin-bottom: 25px;

    color: #777777;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.3em;

}



/* =========================================
   CONTACT GROUP
========================================= */

.contact-group {

    margin-bottom: 25px;

}


.contact-role {

    margin-bottom: 8px;

    color: #444444;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.25em;

}



/* =========================================
   CONTACT PERSON
========================================= */

.contact-person {

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 12px;

    padding: 16px 0;

    border-bottom:
        1px solid #171717;

}


.person-details {

    width: 100%;

}


.person-details strong {

    display: block;

    color: #FFFFFF;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-weight: 500;

}



/* =========================================
   BUTTON AREA
========================================= */

.contact-actions {

    display: flex;

    width: 100%;

    gap: 6px;

}


.contact-btn {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 0;

    padding: 9px 6px;

    background: #0c0c0c;

    border:
        1px solid #252525;

    color: #777777;

    text-decoration: none;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.1em;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;

}


/* PHONE */

.phone-btn:hover {

    color: #FFFFFF;

    background: #0e0e0e;

    border-color: #00A8FF;

}


/* WHATSAPP */

.whatsapp-btn:hover {

    color: #FFFFFF;

    background: #0e0e0e;

    border-color: #FF1744;

}



/* =========================================
   SOCIAL MEDIA
========================================= */

.social-card {

    justify-content: center;

}


.social-content {

    width: 100%;

}


.social-icon {

    margin-bottom: 25px;

    color: #FF1744;

    font-size: 48px;

    line-height: 1;

}


.social-card .card-category {

    margin-bottom: 15px;

}


.social-card h3 {

    margin: 0 0 18px;

    color: #FFFFFF;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            22px,
            2vw,
            32px
        );

    font-weight: 500;

}


.social-card p {

    max-width: 280px;

    margin: 0 0 30px;

    color: #666666;

    font-size: 11px;

    line-height: 1.8;

}


.social-arrow {

    color: #00A8FF;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.25em;

}



/* =========================================
   INSTAGRAM ACCENT
========================================= */

.social-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #FF1744,
            #00A8FF
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform 0.4s ease;

}


.social-card:hover::after {

    transform:
        scaleX(1);

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .connect-grid {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            auto;

        min-height: auto;

    }


    .general-card {

        grid-column:
            1 / span 2;

        grid-row: auto;

    }


    .cultural-card {

        grid-column: 1;

        grid-row: auto;

    }


    .sports-card {

        grid-column: 2;

        grid-row: auto;

    }


    .social-card {

        grid-column:
            1 / span 2;

        grid-row: auto;

        min-height: 300px;

    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .connect-section {

        padding:
            80px 4%;

    }


    .connect-header {

        margin-bottom: 45px;

    }


    .connect-header h2 {

        font-size: 48px;

    }


    .connect-header p {

        font-size: 11px;

    }


    .connect-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 10px;

    }


    .general-card,
    .cultural-card,
    .sports-card,
    .social-card {

        grid-column: 1;

        grid-row: auto;

    }


    .connect-card {

        padding: 25px 22px;

    }


    .contact-person {

        gap: 10px;

    }


    .contact-btn {

        padding:
            11px 5px;

        font-size: 7px;

    }


    .social-card {

        min-height: 280px;

    }

}
/* =========================================
   SYNAPSE '26
   FOOTER
========================================= */

.site-footer {

    position: relative;

    width: 100%;

    padding: 100px 5% 30px;

    background: #030303;

    color: #ffffff;

    overflow: hidden;

}


/* =========================================
   BACKGROUND ATMOSPHERE
========================================= */

.site-footer::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    bottom: -520px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(0, 168, 255, 0.08),
            transparent 70%
        );

    pointer-events: none;

}


.site-footer::after {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );

    pointer-events: none;

}


/* =========================================
   FOOTER TOP
========================================= */

.footer-top {

    position: relative;

    z-index: 2;

    width: min(1400px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        0.8fr;

    gap: 70px;

    padding-bottom: 80px;

    border-bottom:
        1px solid #171717;

}


/* =========================================
   BRAND
========================================= */

.footer-brand {

    max-width: 420px;

}


.footer-logo {

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(
            38px,
            5vw,
            65px
        );

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -0.06em;

    color: #ffffff;

}


.footer-logo span {

    color: #666666;

    font-weight: 300;

}


.footer-brand p {

    max-width: 320px;

    margin-top: 25px;

    font-size: 9px;

    line-height: 1.9;

    font-weight: 600;

    letter-spacing: 0.22em;

    color: #555555;

}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 13px;

}


.footer-heading {

    margin-bottom: 12px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.35em;

    color: #555555;

}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-column a {

    position: relative;

    color: #888888;

    text-decoration: none;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.16em;

    transition:
        color 0.3s ease;

}


.footer-column a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 1px;

    background: #ffffff;

    transition:
        width 0.3s ease;

}


.footer-column a:hover {

    color: #ffffff;

}


.footer-column a:hover::after {

    width: 100%;

}


/* =========================================
   SOCIAL
========================================= */

.footer-social a {

    color: #ffffff;

}


.footer-social span {

    font-size: 8px;

    letter-spacing: 0.18em;

    color: #444444;

}


/* =========================================
   LARGE SYNAPSE WORDMARK
========================================= */

.footer-wordmark {

    position: relative;

    z-index: 1;

    width: 100%;

    margin-top: 65px;

    text-align: center;

    font-family:
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(
            75px,
            16vw,
            240px
        );

    line-height: 0.75;

    font-weight: 900;

    letter-spacing: -0.08em;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.10);

    user-select: none;

}


.footer-wordmark span {

    color: #333333;

    -webkit-text-stroke: 0;

    font-weight: 300;

}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {

    position: relative;

    z-index: 2;

    width: min(1400px, 100%);

    margin: 55px auto 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.22em;

    color: #3f3f3f;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .site-footer {

        padding:
            85px 6%
            30px;

    }


    .footer-top {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 55px 35px;

    }


    .footer-brand {

        grid-column:
            1 / -1;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 12px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .site-footer {

        padding:
            75px 7%
            25px;

    }


    .footer-top {

        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 55px;

    }


    .footer-brand {

        grid-column: auto;

    }


    .footer-logo {

        font-size: 48px;

    }


    .footer-brand p {

        font-size: 8px;

        max-width: 280px;

    }


    .footer-column {

        gap: 12px;

    }


    .footer-heading {

        margin-bottom: 8px;

    }


    .footer-wordmark {

        margin-top: 45px;

        font-size: 24vw;

    }


    .footer-bottom {

        margin-top: 40px;

        font-size: 6px;

        line-height: 1.5;

        letter-spacing: 0.15em;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .footer-logo {

        font-size: 42px;

    }


    .footer-wordmark {

        font-size: 23vw;

    }

}
/* =========================================
   SYNAPSE '26
   SOCIAL RESPONSIBILITY INITIATIVE
   SAY NO TO DRUGS
   DRUG FREE TAMILNADU
========================================= */


/* =========================================
   MAIN SECTION
========================================= */

.social-responsibility-section {

    position: relative;

    width: 100%;

    padding: 130px 5% 110px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(150, 0, 0, 0.14),
            transparent 34%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(25, 60, 150, 0.10),
            transparent 32%
        ),
        #050505;

}


/* =========================================
   BACKGROUND GRID
========================================= */

.social-bg-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    opacity: 0.45;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 18%,
            black 82%,
            transparent
        );

    pointer-events: none;

}


/* =========================================
   RED GLOW
========================================= */

.social-red-glow {

    position: absolute;

    width: 650px;
    height: 650px;

    left: -330px;
    top: 25%;

    background:
        radial-gradient(
            circle,
            rgba(180,0,0,0.18),
            transparent 68%
        );

    filter: blur(35px);

    pointer-events: none;

}


/* =========================================
   BLUE GLOW
========================================= */

.social-blue-glow {

    position: absolute;

    width: 550px;
    height: 550px;

    right: -300px;
    top: 5%;

    background:
        radial-gradient(
            circle,
            rgba(25,60,150,0.13),
            transparent 68%
        );

    filter: blur(40px);

    pointer-events: none;

}


/* =========================================
   CONTAINER
========================================= */

.social-container {

    position: relative;

    z-index: 2;

    width: min(1250px, 100%);

    margin: 0 auto;

}


/* =========================================
   EYEBROW
========================================= */

.social-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    margin-bottom: 35px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.4em;

    color: #777777;

    text-align: center;

}


.social-eyebrow span {

    width: 45px;

    height: 1px;

    background: #444444;

}


/* =========================================
   CIRCULAR LOGO
========================================= */

.social-logo {

    position: relative;

    width: 155px;

    height: 155px;

    margin: 0 auto 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid
        rgba(255,255,255,0.25);

    box-shadow:

        0 0 0 8px
        rgba(255,255,255,0.025),

        0 0 0 1px
        rgba(255,255,255,0.08),

        0 0 50px
        rgba(170,0,0,0.16);

}


.social-logo::before {

    content: "";

    position: absolute;

    inset: -1px;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,0.18);

    pointer-events: none;

}


.social-logo img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


/* =========================================
   HEADING
========================================= */

.social-heading {

    text-align: center;

}


.social-small-title {

    margin-bottom: 20px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.36em;

    color: #555555;

}


/* =========================================
   MAIN TITLE
========================================= */

.social-heading h2 {

    margin: 0;

    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(
            65px,
            10vw,
            150px
        );

    line-height: 0.82;

    font-weight: 900;

    letter-spacing: -0.075em;

    color: #ffffff;

}


.social-heading h2 span {

    display: block;

    color: #777777;

}


/* =========================================
   SUB HEADING
========================================= */

.social-subheading {

    margin-top: 35px;

    font-size:
        clamp(
            22px,
            3vw,
            40px
        );

    font-weight: 300;

    letter-spacing: 0.18em;

    color: #aaaaaa;

}


.social-subheading strong {

    color: #ffffff;

    font-weight: 800;

}


/* =========================================
   DIVIDER
========================================= */

.social-divider {

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 20px;

    margin: 70px 0 55px;

}


.social-divider span {

    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            #333333
        );

}


.social-divider span:last-child {

    background:
        linear-gradient(
            to left,
            transparent,
            #333333
        );

}


.social-divider div {

    font-size: 9px;

    letter-spacing: 0.25em;

    color: #555555;

}


/* =========================================
   CONTENT
========================================= */

.social-content {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: start;

}


.social-intro {

    border-left:
        2px solid
        rgba(255,255,255,0.35);

    padding-left: 30px;

}


.social-intro p {

    margin: 0;

    font-size:
        clamp(
            18px,
            2vw,
            25px
        );

    line-height: 1.65;

    font-weight: 300;

    color: #dddddd;

}


.social-message {

    padding-top: 5px;

}


.social-message p {

    margin: 0 0 22px;

    font-size: 12px;

    line-height: 1.9;

    letter-spacing: 0.025em;

    color: #777777;

}


.social-message p:last-child {

    margin-bottom: 0;

}


/* =========================================
   THREE PILLARS
========================================= */

.social-pillars {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 75px;

    border-top:
        1px solid #202020;

    border-bottom:
        1px solid #202020;

}


.social-pillar {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    min-height: 115px;

    padding: 30px 25px;

    border-right:
        1px solid #202020;

}


.social-pillar:first-child {

    padding-left: 0;

}


.social-pillar:last-child {

    border-right: none;

}


.social-pillar > span {

    font-size: 9px;

    letter-spacing: 0.2em;

    color: #555555;

}


.social-pillar div {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.social-pillar strong {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.16em;

    color: #ffffff;

}


.social-pillar small {

    font-size: 8px;

    line-height: 1.5;

    letter-spacing: 0.12em;

    color: #666666;

}


/* =========================================
   FINAL MESSAGE
========================================= */

.social-final {

    margin-top: 80px;

    text-align: center;

}


.social-final-line {

    width: 1px;

    height: 45px;

    margin: 0 auto 25px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            #666666
        );

}


.social-final span {

    display: block;

    margin-bottom: 15px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.35em;

    color: #555555;

}


.social-final strong {

    display: block;

    font-size:
        clamp(
            25px,
            3vw,
            42px
        );

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: 0.08em;

    color: #ffffff;

}


.social-final .social-life {

    margin-top: 5px;

    color: #777777;

    font-weight: 300;

}


/* =========================================
   BOTTOM BRANDING
========================================= */

.social-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 75px;

    padding-top: 22px;

    border-top:
        1px solid #181818;

}


.social-bottom span {

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.22em;

    color: #444444;

}


.social-bottom span:first-child {

    color: #777777;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .social-responsibility-section {

        padding:
            105px 6%
            90px;

    }


    .social-content {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .social-intro {

        max-width: 700px;

    }


    .social-pillars {

        grid-template-columns: 1fr;

    }


    .social-pillar {

        border-right: none;

        border-bottom:
            1px solid #202020;

    }


    .social-pillar:first-child {

        padding-left: 25px;

    }


    .social-pillar:last-child {

        border-bottom: none;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .social-responsibility-section {

        padding:
            85px 7%
            75px;

    }


    .social-eyebrow {

        margin-bottom: 28px;

        gap: 9px;

        font-size: 7px;

        letter-spacing: 0.22em;

    }


    .social-eyebrow span {

        width: 20px;

    }


    /* LOGO */

    .social-logo {

        width: 115px;

        height: 115px;

        margin-bottom: 30px;

        box-shadow:

            0 0 0 6px
            rgba(255,255,255,0.025),

            0 0 35px
            rgba(170,0,0,0.14);

    }


    .social-small-title {

        margin-bottom: 16px;

        font-size: 7px;

        letter-spacing: 0.25em;

    }


    .social-heading h2 {

        font-size: 18vw;

        line-height: 0.84;

    }


    .social-subheading {

        margin-top: 25px;

        font-size: 16px;

        letter-spacing: 0.12em;

    }


    .social-divider {

        margin:
            50px 0 40px;

        gap: 12px;

    }


    .social-content {

        gap: 30px;

    }


    .social-intro {

        padding-left: 20px;

    }


    .social-intro p {

        font-size: 16px;

        line-height: 1.65;

    }


    .social-message p {

        font-size: 10px;

        line-height: 1.85;

    }


    .social-pillars {

        margin-top: 50px;

    }


    .social-pillar {

        padding:
            24px 0;

        gap: 15px;

    }


    .social-pillar:first-child {

        padding-left: 0;

    }


    .social-pillar strong {

        font-size: 9px;

    }


    .social-pillar small {

        font-size: 7px;

    }


    .social-final {

        margin-top: 60px;

    }


    .social-final span {

        font-size: 6px;

        letter-spacing: 0.25em;

    }


    .social-final strong {

        font-size: 21px;

        letter-spacing: 0.06em;

    }


    .social-bottom {

        flex-direction: column;

        gap: 10px;

        margin-top: 55px;

        text-align: center;

    }


    .social-bottom span {

        font-size: 6px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .social-logo {

        width: 100px;

        height: 100px;

    }


    .social-heading h2 {

        font-size: 17vw;

    }


    .social-subheading {

        font-size: 14px;

    }


    .social-intro p {

        font-size: 14px;

    }

}