/* ==========================================================================
   Advanced layer — Srinagar imagery, parallax, scroll choreography.
   Loads after summit.css. Everything here degrades to a static page when
   the viewer asks for reduced motion (block at the bottom of the file).
   ========================================================================== */

/* ---------- reveal choreography ---------- */

.js-motion [data-reveal] {
    opacity: 0;
    transition:
        opacity 0.85s cubic-bezier(0.22, 0.75, 0.25, 1),
        transform 0.85s cubic-bezier(0.22, 0.75, 0.25, 1),
        clip-path 0.95s cubic-bezier(0.22, 0.75, 0.25, 1);
    transition-delay: var(--d, 0ms);
    will-change: opacity, transform;
}

.js-motion [data-reveal="up"] {
    transform: translateY(38px);
}

.js-motion [data-reveal="left"] {
    transform: translateX(-46px);
}

.js-motion [data-reveal="right"] {
    transform: translateX(46px);
}

.js-motion [data-reveal="scale"] {
    transform: scale(0.93);
}

.js-motion [data-reveal="curtain"] {
    clip-path: inset(0 0 100% 0);
    transform: translateY(20px);
}

.js-motion [data-reveal="blur"] {
    filter: blur(14px);
    transform: translateY(24px);
    transition-property: opacity, transform, filter;
}

.js-motion .is-revealed[data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0 0 0 0);
}

/* ---------- headline word-by-word rise ---------- */

.js-motion .word-rise .w {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.7em) rotate(2deg);
    transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: calc(var(--i) * 55ms);
}

.js-motion .is-revealed .word-rise .w,
.js-motion .word-rise.is-revealed .w {
    opacity: 1;
    transform: none;
}

/* ---------- animated section rule ---------- */

.js-motion .rule {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

.js-motion .is-revealed .rule,
.js-motion .sec-head.is-revealed .rule {
    transform: scaleX(1);
}

/* ---------- parallax photo bands ---------- */

.band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 130px 0;
    color: #fff;
    text-align: center;
}

.band-media {
    position: absolute;
    inset: -14% 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.band-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(4, 22, 63, 0.5) 0%, rgba(4, 22, 63, 0.82) 100%),
        linear-gradient(180deg, rgba(4, 22, 63, 0.75) 0%, rgba(4, 22, 63, 0.45) 45%, rgba(4, 22, 63, 0.8) 100%);
}

.band-inner {
    max-width: 880px;
    margin: 0 auto;
}

.band h2 {
    margin: 0 0 18px;
    font-size: clamp(27px, 3.4vw, 30px);
    font-weight: 700;
    line-height: 1.22;
    text-wrap: balance;
    text-shadow: 0 4px 26px rgba(0, 0, 0, 0.5);
}

.band h2 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--saffron), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.band p {
    margin: 0 auto;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.75;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

/* stat row riding on a band */
.band-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 56px;
    margin-top: 44px;
}

.band-stat b {
    display: block;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(90deg, #fff, var(--saffron));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}

.band-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---------- Ken Burns ---------- */

.kenburns {
    animation: kb 26s ease-in-out infinite alternate;
}

@keyframes kb {
    from {
        transform: scale(1) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.12) translate3d(-1.5%, -1%, 0);
    }
}

/* ---------- split feature (image + copy) ---------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
}

.split.flip .split-media {
    order: 2;
}

.split-media {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 30px 70px rgba(4, 22, 63, 0.25);
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-media:hover img {
    transform: scale(1.14);
}

/* a chinar-orange frame that draws itself in */
.js-motion .split-media::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    pointer-events: none;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.js-motion .is-revealed .split-media::after {
    opacity: 1;
    transform: scale(1);
}

.split-badge {
    position: absolute;
    left: 26px;
    bottom: 26px;
    z-index: 2;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(4, 22, 63, 0.66);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.split-copy h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(24px, 2.9vw, 36px);
    font-weight: 700;
    line-height: 1.25;
}

.sec-navy .split-copy h2 {
    color: #fff;
}

.split-copy p {
    margin: 0 0 16px;
    color: var(--body);
    font-size: 16.5px;
    line-height: 1.78;
}

.sec-navy .split-copy p {
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- Srinagar mosaic gallery ---------- */

.mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    grid-auto-flow: dense;
    gap: 16px;
}

.mo {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--navy);
}

.mo:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.mo:nth-child(4) {
    grid-row: span 2;
}

.mo:nth-child(6) {
    grid-column: span 2;
}

.mo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

.mo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 22, 63, 0) 45%, rgba(4, 22, 63, 0.78) 100%);
    opacity: 0.75;
    transition: opacity 0.5s ease;
}

.mo:hover img {
    transform: scale(1.11);
}

.mo:hover::after {
    opacity: 0.95;
}

.mo figcaption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.mo:hover figcaption {
    transform: none;
    opacity: 1;
}

/* ---------- tilt cards ---------- */

.tilt {
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.tilt>* {
    transform: translateZ(22px);
}

/* ---------- marquee ---------- */

.marquee {
    position: relative;
    overflow: hidden;
    padding: 18px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marq 38s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marq {
    to {
        transform: translateX(-50%);
    }
}

.marquee .tag {
    flex: 0 0 auto;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

/* ---------- aurora mesh on navy sections ---------- */

.sec-navy {
    position: relative;
    overflow: hidden;
}

.sec-navy .aurora {
    position: absolute;
    inset: -30%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(closest-side, rgba(42, 217, 245, 0.2), transparent) 18% 24% / 46% 46% no-repeat,
        radial-gradient(closest-side, rgba(242, 169, 59, 0.18), transparent) 82% 70% / 52% 52% no-repeat,
        radial-gradient(closest-side, rgba(52, 240, 106, 0.12), transparent) 55% 12% / 40% 40% no-repeat;
    animation: drift 24s ease-in-out infinite alternate;
}

.sec-navy>.container {
    position: relative;
    z-index: 1;
}

@keyframes drift {
    from {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }

    to {
        transform: translate3d(3%, 2%, 0) scale(1.08);
    }
}

/* ---------- magnetic buttons ---------- */

.magnetic {
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

/* ---------- pillar number counts up its own bar ---------- */

.pillar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.pillar:hover::after {
    transform: scaleX(1);
}

/* ---------- floating shikara silhouette divider ---------- */

.wave-divider {
    display: block;
    width: 100%;
    height: 90px;
}

.wave-divider path {
    animation: waveshift 14s ease-in-out infinite alternate;
}

@keyframes waveshift {
    to {
        transform: translateX(-30px);
    }
}

/* ---------- responsive ---------- */

@media (max-width: 991px) {

    .split,
    .split.flip .split-media {
        grid-template-columns: 1fr;
        gap: 30px;
        order: 0;
    }

    .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .band {
        padding: 96px 0;
    }
}

@media (max-width: 575px) {
    .mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .mo:nth-child(1),
    .mo:nth-child(4),
    .mo:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    .mo figcaption {
        opacity: 1;
        transform: none;
    }

    .band {
        padding: 74px 0;
    }

    .band-stats {
        gap: 20px 30px;
    }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {

    [data-reveal],
    .word-rise .w,
    .rule,
    .split-media::after {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        transition: none !important;
    }

    .kenburns,
    .marquee-track,
    .sec-navy .aurora,
    .wave-divider path {
        animation: none !important;
    }

    .band-media {
        transform: none !important;
    }
}

/* ---------- headings sitting on a photo band ---------- */

.band .sec-head h2,
.band .sec-head .lede {
    color: #fff;
}

.band .sec-head h2 em {
    background: linear-gradient(90deg, var(--saffron), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.band .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: var(--saffron);
}

.band .rule {
    background: linear-gradient(90deg, var(--saffron), var(--cyan));
}

/* second marquee row runs the other way */
.marquee[style*="reverse"] .marquee-track {
    animation-direction: reverse;
    animation-duration: 44s;
}

/* ---------- glimpses (past-edition photography) ---------- */

.mosaic-events {
    grid-auto-rows: 200px;
}

/* event photos carry their own subjects — a lighter scrim than the city tiles */
.mosaic-events .mo::after {
    background: linear-gradient(180deg, rgba(4, 22, 63, 0) 52%, rgba(4, 22, 63, 0.72) 100%);
    opacity: 0.6;
}

.glimpses-note {
    margin: 28px 0 0;
    color: #7a879f;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

.glimpses-note a {
    color: var(--chinar);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 50, 26, 0.35);
}

.glimpses-note a:hover {
    color: var(--chinar-light);
}

/* "Why Participate" now sits on an event photo: keep its own gradient off */
#participate.band {
    background: none;
    padding: 96px 0;
}

#participate .sec-head {
    text-align: center;
}

/* ---------- overview collage (replaces the old facts card) ---------- */

.collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    aspect-ratio: 11 / 10;
    perspective: 1000px;
}

.collage .co {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: var(--navy);
    box-shadow: 0 16px 38px rgba(4, 22, 63, 0.18);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, z-index 0s;
}

.collage .co img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* staggered depth — the tiles sit at slightly different scales and angles */
.collage .co-1 {
    transform: rotate(-2deg) translateY(-6px);
}

.collage .co-2 {
    transform: rotate(1.5deg) translateY(10px);
    margin-top: 18px;
}

.collage .co-3 {
    transform: rotate(1deg) translateY(-10px);
    margin-bottom: 18px;
}

.collage .co-4 {
    transform: rotate(-1.5deg) translateY(4px);
}

.collage .co:hover {
    z-index: 3;
    transform: rotate(0deg) scale(1.06) translateY(-4px);
    box-shadow: 0 26px 56px rgba(4, 22, 63, 0.3);
}

.collage .co:hover img {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .collage {
        aspect-ratio: 3 / 2;
        max-width: 560px;
        margin: 0 auto 26px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .collage .co,
    .collage .co-1,
    .collage .co-2,
    .collage .co-3,
    .collage .co-4 {
        transform: none;
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* ---------- Why J&K: the collage rides along while the copy scrolls ---------- */


/* ---------- key numbers strip (sits directly under the hero) ---------- */

.stats-strip {
    position: relative;
    z-index: 5;
    padding: 40px 0 34px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    position: relative;
    text-align: center;
    padding: 4px 12px;
}

/* hairline separators between the figures, not after the last */
.stat+.stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    height: 76%;
    width: 1px;
    background: var(--line);
}

.stat b {
    display: block;
    font-size: clamp(32px, 4.4vw, 52px);
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(90deg, var(--chinar), var(--saffron));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat span {
    display: block;
    margin-top: 10px;
    color: var(--body);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .stats-strip {
        padding: 30px 0 26px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 10px;
    }

    /* separators only between columns once it wraps to 2-up */
    .stat+.stat::before {
        display: none;
    }

    .stat:nth-child(even)::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 12%;
        height: 76%;
        width: 1px;
        background: var(--line);
    }

    .stat span {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

/* ==========================================================================
   Why J&K — dark Srinagar band
   ========================================================================== */

#why-jk.band {
    padding: 44px 0;
    text-align: left;
}

/* a deeper, warmer scrim than the other bands so the copy stays readable */
/* Light over the photo, heavier only behind the text column, so the lake
   stays visible while white copy keeps its contrast. */
#why-jk .band-scrim {
    background:
        linear-gradient(90deg,
            rgba(4, 22, 63, 0.36) 0%,
            rgba(4, 22, 63, 0.46) 40%,
            rgba(4, 22, 63, 0.70) 58%,
            rgba(4, 22, 63, 0.78) 100%),
        linear-gradient(180deg,
            rgba(4, 22, 63, 0.30) 0%,
            rgba(4, 22, 63, 0.06) 28%,
            rgba(4, 22, 63, 0.10) 70%,
            rgba(3, 16, 44, 0.34) 100%);
}

/* stacked columns on narrow screens — even wash, no side bias */
@media (max-width: 991px) {
    #why-jk .band-scrim {
        background:
            linear-gradient(180deg,
                rgba(4, 22, 63, 0.76) 0%,
                rgba(4, 22, 63, 0.70) 40%,
                rgba(3, 16, 44, 0.80) 100%);
    }
}

#why-jk .sec-head {
    text-align: center;
    margin-bottom: 24px;
}

/* the panel matches the list's height instead of dictating its own, so the
   whole section lands inside one fold */
#why-jk .overview-grid {
    align-items: stretch;
}

/* drifting chinar leaves, scoped to this section */
.sec-leaves {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.sec-leaves .leaf {
    position: absolute;
    top: -50px;
    left: var(--x);
    color: var(--c);
    opacity: 0.55;
    animation: leaf-fall var(--dur) linear var(--delay) infinite;
    will-change: transform;
}

.sec-leaves .leaf svg {
    display: block;
    width: var(--size);
    height: var(--size);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    animation: leaf-sway calc(var(--dur) / 4) ease-in-out var(--delay) infinite alternate;
}

/* the question list becomes frosted glass */
#why-jk #why-jk #why-jk #why-jk .overview-copy p {
    color: rgba(255, 255, 255, 0.82);
}

#why-jk .overview-copy strong {
    color: #fff;
}

@media#why-jk #why-jk  (max-width: 767px) {
    #why-jk.band {
        padding: 64px 0;
    }

    .sec-leaves .leaf:nth-child(even) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sec-leaves {
        display: none;
    }
}

/* ---------- indexed points (Why J&K) ---------- */

.q-index {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: qi;
}

.q-index li {
    display: block;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    transition: border-color 0.35s ease;
}

.q-index li:first-child {
    border-top: 0;
    padding-top: 0;
}

.q-index li:last-child {
    padding-bottom: 0;
}

.qi-body h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    line-height: 1.25;
}

.qi-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15.5px;
    line-height: 1.62;
    max-width: 52ch;
}

/* the whole row warms up on hover */
.q-index li:hover {
    border-color: rgba(242, 169, 59, 0.45);
}

@media (max-width: 575px) {
    .q-index li {
        gap: 14px;
        padding: 18px 0;
    }

    .qi-body h3 {
        font-size: 15.5px;
        letter-spacing: 1.1px;
    }

    .qi-body p {
        font-size: 15px;
    }
}

/* ---------- Why J&K: visual panel that follows the active point ---------- */

.qi-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
    outline: 1px solid rgba(255, 255, 255, 0.16);
    outline-offset: -1px;
}

.qi-visual .qv {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.7s cubic-bezier(0.22, 0.75, 0.25, 1),
                transform 1.1s cubic-bezier(0.22, 0.75, 0.25, 1);
}

.qi-visual .qv.is-active {
    opacity: 1;
    transform: scale(1);
}

.qi-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* lift the photo toward the valley palette so it sits in the band */
.qi-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(4, 22, 63, 0.04) 0%, rgba(4, 22, 63, 0.26) 100%);
}

@media (min-width: 992px) {
    #why-jk .qi-visual {
        aspect-ratio: auto;
        height: 100%;
        min-height: 320px;
    }
}

@media (max-width: 991px) {
    .qi-visual {
        aspect-ratio: 3 / 2;
        /* every child is absolutely positioned, so a shrink-to-fit grid item
           would collapse to 0 — the explicit width keeps it filling the cell */
        width: 100%;
        max-width: 560px;
        margin: 0 auto 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qi-visual .qv {
        transition: opacity 0.2s linear;
        transform: none;
    }
}

/* ---------- separators: a rule above the first and below the last ---------- */

.q-index {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

/* The list now draws its own top rule, so the first row keeps the same 14px
   of air as the others — with padding-top: 0 its heading touched the line. */
.q-index li:first-child {
    border-top: 0;
    padding-top: 14px;
}

.q-index li:last-child {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.q-index li {
    border-top-color: rgba(255, 255, 255, 0.22);
    cursor: default;
}

/* the active point is marked by a saffron rule and a brightened number */
.q-index li.is-current {
    border-top-color: var(--saffron);
}

.q-index li.is-current .qi-body h3 {
    color: var(--saffron);
}


/* ---------- fixed (parallax-locked) band background ---------- */

.band-fixed {
    inset: 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

/* iOS/Android ignore or mis-render background-attachment: fixed, and it is
   costly to composite on touch hardware — pin it only where it behaves. */
@media (hover: none), (max-width: 991px) {
    .band-fixed {
        background-attachment: scroll;
    }
}

@media (prefers-reduced-motion: reduce) {
    .band-fixed {
        background-attachment: scroll;
    }
}

/* ==========================================================================
   Why Participate — hub-and-spoke infographic
   Five audiences arranged on a circle around the Summit. Positions come from
   one --i index, so the ring scales with a single --r change and collapses to
   a plain timeline on narrow screens.
   ========================================================================== */

.orbit {
    --r: 270px;
    position: relative;
    width: 100%;
    max-width: 760px;
    aspect-ratio: 1;
    margin: 0 auto;
}

/* faint concentric guides */
.orbit-rings span {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.16);
}

.orbit-rings span:nth-child(1) {
    width: calc(var(--r) * 2);
    height: calc(var(--r) * 2);
}

.orbit-rings span:nth-child(2) {
    width: calc(var(--r) * 1.06);
    height: calc(var(--r) * 1.06);
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.09);
}

/* spokes run from the hub out to each node */
.orbit-spokes i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: var(--r);
    transform-origin: 50% 0;
    transform: translateX(-50%) rotate(calc(180deg + var(--i) * 72deg));
    background: linear-gradient(180deg, rgba(242, 169, 59, 0.55) 0%, rgba(242, 169, 59, 0.06) 78%);
}

/* the hub */
.orbit-core {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    display: grid;
    place-items: center;
    gap: 4px;
    width: calc(var(--r) * 0.98);
    height: calc(var(--r) * 0.98);
    padding: 16px;
    border-radius: 50%;
    text-align: center;
    background:
        radial-gradient(circle at 50% 30%, rgba(242, 169, 59, 0.28) 0%, rgba(242, 169, 59, 0) 60%),
        linear-gradient(160deg, #0a2a6b 0%, #04163f 100%);
    border: 1px solid rgba(242, 169, 59, 0.45);
    box-shadow: 0 0 0 10px rgba(4, 22, 63, 0.35), 0 22px 50px rgba(0, 0, 0, 0.45);
}

.oc-date {
    color: var(--saffron);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.orbit-core strong {
    color: #fff;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    line-height: 1;
}

.oc-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11.5px;
    line-height: 1.45;
}

/* the five audience nodes */
.orbit-ring {
    margin: 0;
    padding: 0;
    list-style: none;
}

.orbit-node {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 216px;
    padding: 16px 18px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(4, 22, 63, 0.72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
    /* ride out to the rim, then counter-rotate so the card stays upright */
    transform:
        translate(-50%, -50%)
        rotate(calc(var(--i) * 72deg))
        translateY(calc(var(--r) * -1))
        rotate(calc(var(--i) * -72deg));
    transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.orbit-node:hover {
    border-color: rgba(242, 169, 59, 0.7);
    background: rgba(10, 42, 107, 0.9);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 169, 59, 0.3);
}

.orbit-node i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
    border-radius: 11px;
    background: rgba(242, 169, 59, 0.16);
    color: var(--saffron);
    font-size: 16px;
}

.orbit-node h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1.3;
}

.orbit-node p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12.5px;
    line-height: 1.55;
}

@media (max-width: 1199px) {
    .orbit {
        --r: 232px;
        max-width: 660px;
    }

    .orbit-node {
        width: 190px;
        padding: 14px 15px;
    }

    .orbit-node p {
        font-size: 12px;
    }
}

/* Below 992px a circle cannot hold five cards legibly — it becomes a rail. */
@media (max-width: 991px) {
    .orbit {
        aspect-ratio: auto;
        max-width: 560px;
    }

    .orbit-rings,
    .orbit-spokes {
        display: none;
    }

    .orbit-core {
        position: static;
        translate: none;
        width: auto;
        height: auto;
        margin: 0 auto 30px;
        padding: 20px 28px;
        border-radius: 18px;
    }

    .orbit-ring {
        display: grid;
        gap: 14px;
        position: relative;
        padding-left: 26px;
    }

    /* a single rail linking the stacked nodes back to the hub */
    .orbit-ring::before {
        content: "";
        position: absolute;
        left: 7px;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: linear-gradient(180deg, rgba(242, 169, 59, 0.6), rgba(242, 169, 59, 0.05));
    }

    .orbit-node {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        transform: none;
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 14px;
        align-items: start;
    }

    .orbit-node::before {
        content: "";
        position: absolute;
        left: -23px;
        top: 26px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--saffron);
        box-shadow: 0 0 0 4px rgba(242, 169, 59, 0.18);
    }

    .orbit-node i {
        margin: 0;
        grid-row: span 2;
    }

    .orbit-node h3 {
        margin: 2px 0 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .orbit-node {
        transition: none;
    }
}

/* ---------- past partners: three drifting logo rails ---------- */

.pp-wall {
    display: grid;
    gap: 16px;
}

.pp-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.pp-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: pp-scroll 64s linear infinite;
}

.pp-marquee.reverse .pp-track {
    animation-direction: reverse;
    animation-duration: 74s;
}

.pp-wall:hover .pp-track {
    animation-play-state: paused;
}

@keyframes pp-scroll {
    to {
        transform: translateX(-50%);
    }
}

.pp-logo {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 166px;
    height: 84px;
    padding: 9px 13px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pp-logo:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 169, 59, 0.6);
    box-shadow: 0 14px 30px rgba(4, 22, 63, 0.12);
}

.pp-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.pp-logo:hover img {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .pp-logo {
        width: 134px;
        height: 70px;
        padding: 7px 10px;
    }

    .pp-wall {
        gap: 12px;
    }

    .pp-track {
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pp-track {
        animation: none;
    }

    .pp-marquee {
        overflow-x: auto;
    }
}

/* ==========================================================================
   Contact band
   ========================================================================== */

/* Nothing scoped to #contactus on purpose — the contact block is the same
   markup as register.html, so .contact in style.css governs both pages. */

.contact-band {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 46px;
    align-items: center;
    padding: 44px 48px;
    border-radius: 24px;
    background:
        radial-gradient(ellipse 70% 90% at 90% 10%, rgba(42, 217, 245, 0.14) 0%, rgba(42, 217, 245, 0) 60%),
        radial-gradient(ellipse 60% 80% at 5% 95%, rgba(242, 169, 59, 0.16) 0%, rgba(242, 169, 59, 0) 60%),
        linear-gradient(150deg, #0a2a6b 0%, #04163f 100%);
    box-shadow: 0 30px 70px rgba(4, 22, 63, 0.24);
}

.cb-left h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 700;
    line-height: 1.25;
    text-wrap: balance;
}

.cb-left p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
    max-width: 46ch;
}

.cb-left .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: var(--saffron);
}

.cb-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 20px;
}

.cb-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    font-weight: 600;
}

.cb-meta i {
    color: var(--saffron);
}

/* the contact card */
.cb-card {
    padding: 30px 28px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.cb-avatar {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 2px solid var(--saffron);
    background: rgba(242, 169, 59, 0.14);
    color: var(--saffron);
    font-size: 26px;
}

.cb-card h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.cb-role {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.cb-mail {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cb-mail i {
    color: var(--saffron);
}

.cb-mail:hover {
    color: var(--saffron);
    border-color: var(--saffron);
}

.cb-btn {
    display: flex;
    width: 100%;
    min-width: 0;
}

@media (max-width: 991px) {
    .contact-band {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 34px 26px;
    }
}

@media (max-width: 575px) {
    #contactus {
        padding-top: 54px;
    }

    .contact-band {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .cb-card {
        padding: 26px 20px;
    }
}
