/* ============================================
   Sections
   ============================================ */

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + var(--s-9));
    padding-bottom: var(--s-7);
    overflow: hidden;
    background: var(--c-paper);
    display: flex;
    flex-direction: column;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero__blob--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -150px;
    background: radial-gradient(circle, var(--c-lavender), transparent 70%);
    animation: float-1 20s ease-in-out infinite;
}

.hero__blob--2 {
    width: 500px;
    height: 500px;
    top: 20%;
    right: -200px;
    background: radial-gradient(circle, var(--c-accent-soft), transparent 70%);
    animation: float-2 25s ease-in-out infinite;
}

.hero__blob--3 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 30%;
    background: radial-gradient(circle, var(--c-mint), transparent 70%);
    animation: float-3 30s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 80px) scale(1.1); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 40px) scale(0.95); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -50px) scale(1.05); }
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 14, 26, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 14, 26, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__brand-wrap {
    margin-bottom: var(--s-6);
    animation: title-rise 1s var(--ease-out) backwards;
}

.hero__brand-logo {
    height: clamp(48px, 7vw, 88px);
    width: auto;
    display: block;
}

.hero__title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: var(--s-6);
    color: var(--c-ink);
}

.hero__title-line {
    display: block;
    animation: title-rise 1s var(--ease-out) backwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.25s; }

.hero__title-line--accent {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@keyframes title-rise {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.6;
    color: var(--c-text-soft);
    margin-bottom: var(--s-7);
    max-width: 540px;
    animation: fade-up 1s var(--ease-out) 0.5s backwards;
}

.hero__sub strong {
    color: var(--c-ink);
    font-weight: 600;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__meta {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: var(--s-5);
    padding: var(--s-6) 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    margin-bottom: var(--s-7);
    max-width: 820px;
    animation: fade-up 1s var(--ease-out) 0.7s backwards;
}

.hero__meta-value--nowrap {
    white-space: nowrap;
}

.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
}

.hero__meta-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-mute);
}

.hero__meta-value {
    font-family: var(--f-display);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: -0.01em;
}

.hero__meta-value small {
    font-size: 0.75em;
    color: var(--c-text-soft);
    font-weight: 400;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    margin-bottom: var(--s-7);
    animation: fade-up 1s var(--ease-out) 0.9s backwards;
}

/* === Countdown === */
.hero__countdown {
    display: inline-flex;
    flex-direction: column;
    gap: var(--s-3);
    padding: var(--s-5);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
    align-self: flex-start;
    animation: fade-up 1s var(--ease-out) 1.1s backwards;
}

.hero__countdown-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-text-mute);
}

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

.hero__countdown-grid > div {
    text-align: center;
    min-width: 56px;
}

.hero__countdown-grid strong {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.hero__countdown-grid span {
    display: block;
    font-family: var(--f-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--c-text-mute);
    margin-top: 6px;
}

/* === Hero Partners Strip === */
.hero__partners {
    position: relative;
    z-index: 1;
    padding-top: var(--s-7);
    border-top: 1px solid var(--c-line);
}

.hero__partners-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--c-text-mute);
    text-align: center;
    margin-bottom: var(--s-4);
}

.hero__partners-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--s-4);
    font-family: var(--f-display);
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: var(--c-text-soft);
    letter-spacing: -0.01em;
}

.hero__partners-row .dot {
    color: var(--c-text-mute);
    opacity: 0.5;
}

/* ============================================
   STRAP / MARQUEE
   ============================================ */
/* ============================================
   MARQUEE SECTION (white bg, big headline)
   ============================================ */
.marquee-section {
    background: #FFFFFF;
    padding: var(--s-10) 0 var(--s-9);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}

.marquee-section__head {
    text-align: center;
    margin-bottom: var(--s-9);
}

.marquee-section__title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin-top: var(--s-4);
    color: var(--c-ink);
}

.marquee-section__title em {
    font-style: normal;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.marquee {
    overflow: hidden;
    position: relative;
    padding: var(--s-4) 0;
}

.marquee__track {
    display: flex;
    gap: var(--s-10);
    align-items: center;
    white-space: nowrap;
    animation: scroll-x 45s linear infinite;
    width: max-content;
}

.marquee__track img {
    height: 56px;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
}



.marquee__track img:hover {
    transform: scale(1.05);
}

/* Edge fades */
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF, transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #FFFFFF, transparent);
}

@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   OVERVIEW
   ============================================ */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--s-5);
}

.overview-card {
    position: relative;
    padding: var(--s-6);
    background: var(--c-paper);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    transition: all 0.3s var(--ease-out);
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card__num {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--c-text-mute);
    margin-bottom: var(--s-4);
}

.overview-card h3 {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.375rem;
    letter-spacing: -0.01em;
    margin-bottom: var(--s-3);
    color: var(--c-ink);
}

.overview-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--c-text-soft);
    margin-bottom: var(--s-4);
}

.overview-card p strong {
    color: var(--c-ink);
    font-weight: 600;
}

.overview-card__tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--c-paper-warm);
    color: var(--c-text-soft);
    border-radius: var(--r-pill);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   PROGRAM
   ============================================ */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--s-4);
    margin-bottom: var(--s-9);
}

.program-card {
    padding: var(--s-6);
    background: var(--c-paper);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    transition: all 0.3s var(--ease-out);
}

.program-card--accent {
    background: var(--c-ink);
    color: var(--c-paper);
    border-color: var(--c-ink);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

.program-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-paper-warm);
    border-radius: var(--r-md);
    margin-bottom: var(--s-4);
    color: var(--c-brand);
}

.program-card--accent .program-card__icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-accent);
}

.program-card__icon svg {
    width: 24px;
    height: 24px;
}

.program-card h3 {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    margin-bottom: var(--s-3);
}

.program-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--c-text-soft);
}

.program-card--accent p {
    color: rgba(250, 250, 247, 0.7);
}

.program-card p strong {
    color: var(--c-ink);
}

.program-card--accent p strong {
    color: var(--c-accent);
}

/* === Process Timeline === */
.process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
    padding-top: var(--s-7);
}

.process__line {
    position: absolute;
    top: calc(var(--s-7) + 22px);
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-line) 10%, var(--c-line) 90%, transparent);
}

.process__step {
    position: relative;
    text-align: center;
    padding-top: var(--s-7);
}

.process__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--c-paper-warm);
    border: 2px solid var(--c-brand);
    border-radius: 50%;
    z-index: 1;
}

.process__num {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--c-text-mute);
    display: block;
    margin-bottom: var(--s-2);
}

.process__step h4 {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--c-ink);
    margin-bottom: var(--s-2);
}

.process__step p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--c-text-soft);
}

.process__note {
    display: block;
    margin-top: var(--s-2);
    font-size: 0.75rem;
    color: var(--c-text-mute);
    line-height: 1.5;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--s-4);
    margin-bottom: var(--s-5);
}

.partner-card {
    padding: var(--s-6);
    background: var(--c-paper);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--c-ink);
}

.partner-card:focus-visible {
    outline: 2px solid var(--c-brand);
    outline-offset: 3px;
}

.partner-card__logo {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: var(--s-5);
    padding-bottom: var(--s-5);
    border-bottom: 1px solid var(--c-line);
}

.partner-card__logo img {
    max-height: 40px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}

/* Tatler SVG: black logo on white background */
.partner-card__logo img[src$="tatler-new.svg"],
.marquee__track img[src$="tatler-new.svg"],
.modal__logo[src$="tatler-new.svg"] {
    background: #ffffff;
    border-radius: 4px;
    padding: 5px 10px;
}



.partner-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--s-3);
    flex-wrap: wrap;
    gap: var(--s-2);
}

.partner-card__country {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--c-text-mute);
    text-transform: uppercase;
}

.partner-card__tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: var(--c-paper-warm);
    border-radius: var(--r-pill);
    color: var(--c-text-soft);
    font-weight: 500;
}

.partner-card__name {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    letter-spacing: -0.025em;
    margin-bottom: var(--s-3);
    color: var(--c-ink);
}

.partner-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--c-text-soft);
    flex: 1;
}

.partner-card__more {
    display: block;
    margin-top: var(--s-5);
    padding-top: var(--s-4);
    border-top: 1px solid var(--c-line);
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--c-brand);
    font-weight: 500;
    transition: color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.partner-card:hover .partner-card__more {
    color: var(--c-purple);
    transform: translateX(4px);
}

.partners-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--c-text-mute);
    margin-top: var(--s-7);
    padding: var(--s-4);
    background: var(--c-paper-warm);
    border-radius: var(--r-md);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--s-5);
}

.modal.is-open {
    display: flex;
    animation: modal-fade 0.25s var(--ease-out);
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal__panel {
    position: relative;
    background: var(--c-paper);
    border-radius: var(--r-xl);
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: var(--sh-xl);
    animation: modal-pop 0.3s var(--ease-out);
}

.modal__close {
    position: absolute;
    top: var(--s-4);
    right: var(--s-4);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-paper-warm);
    border-radius: 50%;
    color: var(--c-ink);
    cursor: pointer;
    z-index: 1;
    transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.modal__close:hover {
    background: var(--c-ink);
    color: var(--c-paper);
    transform: rotate(90deg);
}

.modal__header {
    padding: var(--s-7) var(--s-7) var(--s-5);
    border-bottom: 1px solid var(--c-line);
}

.modal__logo {
    height: 40px;
    width: auto;
    max-width: 240px;
    margin-bottom: var(--s-4);
    display: block;
}



.modal__title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.025em;
    color: var(--c-ink);
    margin-bottom: var(--s-2);
}

.modal__subtitle {
    font-size: 0.875rem;
    color: var(--c-text-soft);
    font-family: var(--f-mono);
    letter-spacing: 0.04em;
}

.modal__body {
    padding: var(--s-6) var(--s-7) var(--s-7);
}

.modal__topic {
    margin-bottom: var(--s-6);
}

.modal__topic:last-child {
    margin-bottom: 0;
}

.modal__topic-title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--c-ink);
    margin-bottom: var(--s-3);
    letter-spacing: -0.015em;
    display: flex;
    align-items: baseline;
    gap: var(--s-2);
}

.modal__topic-num {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    color: var(--c-brand);
    font-weight: 500;
    flex-shrink: 0;
}

.modal__topic-list {
    list-style: none;
    padding-left: 0;
    margin-left: calc(var(--s-5) + 4px);
}

.modal__topic-list li {
    position: relative;
    padding-left: var(--s-4);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--c-text-soft);
    word-break: keep-all;
}

.modal__topic-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--c-brand);
}

@keyframes modal-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modal-pop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

body.modal-open {
    overflow: hidden;
}

/* === Announcement Modal === */
.modal__panel--announcement {
    max-width: 920px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
}

.announcement__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--s-5);
    padding: var(--s-6) var(--s-7);
    flex-wrap: wrap;
}

.announcement__badge {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--c-text-mute);
    padding: 4px 10px;
    background: var(--c-paper-warm);
    border-radius: var(--r-pill);
    margin-bottom: var(--s-3);
}

.announcement__download {
    flex-shrink: 0;
    padding: 12px 20px;
    font-size: 0.875rem;
}

.announcement__body {
    flex: 1;
    padding: 0 var(--s-7) var(--s-6);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.announcement__viewer {
    width: 100%;
    flex: 1;
    min-height: 60vh;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    background: var(--c-paper-warm);
}

.announcement__fallback {
    margin-top: var(--s-3);
    font-size: 0.8125rem;
    color: var(--c-text-mute);
    text-align: center;
}

/* ============================================
   SCHEDULE
   ============================================ */
.schedule {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.schedule::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 90%, transparent);
}

.schedule__row {
    display: grid;
    grid-template-columns: 140px 24px 1fr;
    gap: var(--s-5);
    padding: var(--s-4) 0;
    align-items: start;
    transition: opacity 0.3s var(--ease-out);
}

.schedule__row:hover {
    opacity: 0.9;
}

.schedule__date {
    font-family: var(--f-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(250, 250, 247, 0.6);
    letter-spacing: 0.02em;
    padding-top: 2px;
    text-align: right;
}

.schedule__dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--c-ink);
    border-radius: 50%;
    margin-top: 6px;
    justify-self: center;
    box-shadow: 0 0 0 4px var(--c-ink);
    position: relative;
    z-index: 1;
}

.schedule__row--highlight .schedule__dot {
    background: var(--c-accent);
    width: 14px;
    height: 14px;
}

.schedule__row--final .schedule__dot {
    background: var(--c-mint);
}

.schedule__body h4 {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    color: var(--c-paper);
}

.schedule__row--highlight .schedule__body h4 {
    color: var(--c-accent);
}

.schedule__body p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(250, 250, 247, 0.65);
}

/* ============================================
   MENTORS
   ============================================ */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--s-4);
}

.mentor-card {
    padding: var(--s-5);
    background: var(--c-paper);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    transition: all 0.3s var(--ease-out);
    text-align: center;
}

.mentor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
}

.mentor-card__photo {
    width: 96px;
    height: 96px;
    margin: 0 auto var(--s-4);
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-purple) 100%);
    padding: 3px;
    box-shadow: 0 4px 12px rgba(59, 174, 234, 0.15);
}

.mentor-card__photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: var(--c-paper);
}

.mentor-card h4 {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--c-ink);
    margin-bottom: 4px;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.mentor-card__role {
    display: block;
    font-size: 0.75rem;
    color: var(--c-text-soft);
    margin-bottom: var(--s-3);
    padding-bottom: var(--s-3);
    border-bottom: 1px solid var(--c-line);
    line-height: 1.35;
    word-break: keep-all;
}

.mentor-card ul {
    text-align: left;
}

.mentor-card ul li {
    font-size: 0.75rem;
    line-height: 1.55;
    color: var(--c-text-soft);
    padding-left: var(--s-3);
    position: relative;
    margin-bottom: 4px;
    word-break: keep-all;
}

.mentor-card ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--c-text-mute);
}

.mentors-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--c-text-mute);
    margin-top: var(--s-7);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    max-width: 760px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--c-line);
    padding: var(--s-5) 0;
    transition: all 0.3s var(--ease-out);
}

.faq__item:first-child {
    border-top: 1px solid var(--c-line);
}

.faq__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-4);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--c-ink);
    letter-spacing: -0.01em;
    position: relative;
    padding-right: var(--s-7);
}

.faq__item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-text-soft);
    transition: transform 0.3s var(--ease-out);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.faq__item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    color: var(--c-brand);
}

.faq__item p {
    margin-top: var(--s-4);
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--c-text-soft);
    padding-right: var(--s-7);
    animation: faq-open 0.4s var(--ease-out);
}

@keyframes faq-open {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   APPLY CTA
   ============================================ */
.apply {
    padding: var(--s-9) 0;
    background: var(--c-paper);
}

.apply__inner {
    position: relative;
    padding: clamp(var(--s-8), 8vw, var(--s-10)) clamp(var(--s-6), 6vw, var(--s-9));
    background: var(--c-ink);
    color: var(--c-paper);
    border-radius: var(--r-xl);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--sh-xl);
}

.apply__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 174, 234, 0.28), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 109, 209, 0.32), transparent 50%);
    pointer-events: none;
}

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

.apply__title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: var(--s-4) 0 var(--s-4);
}

.apply__title em {
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(90deg, #5DC7F2 0%, #B98DDE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.apply__sub {
    font-family: var(--f-mono);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: rgba(250, 250, 247, 0.7);
    margin-bottom: var(--s-7);
}

.apply__contact {
    margin-top: var(--s-9);
    padding-top: var(--s-6);
    border-top: 1px solid rgba(250, 250, 247, 0.1);
}

.apply__contact-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(250, 250, 247, 0.5);
    text-transform: uppercase;
    margin-bottom: var(--s-4);
}

.apply__contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-7);
}

.apply__contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: opacity 0.2s var(--ease-out);
}

.apply__contact-item:hover {
    opacity: 0.7;
}

.apply__contact-item span {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: rgba(250, 250, 247, 0.5);
}

.apply__contact-item strong {
    font-family: var(--f-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-paper);
    letter-spacing: -0.005em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--s-8) 0 var(--s-6);
    background: var(--c-paper-warm);
    border-top: 1px solid var(--c-line);
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--s-6);
    padding-bottom: var(--s-6);
    border-bottom: 1px solid var(--c-line);
    margin-bottom: var(--s-5);
}

.footer__brand-logo {
    height: 32px;
    width: auto;
    display: block;
    margin-bottom: var(--s-3);
}

.footer__brand-name {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.footer__brand-desc {
    font-size: 0.875rem;
    color: var(--c-text-soft);
}

.footer__orgs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-7);
    align-items: flex-end;
}

.footer__org {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.footer__org-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--c-text-mute);
    text-transform: uppercase;
}

.footer__org-logo {
    height: 32px;
    width: auto;
    display: block;
    opacity: 0.92;
}

.footer__org-logo--brinc {
    /* brinc is white-on-black originally; on light footer keep brand orange */
    height: 28px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-3);
    font-size: 0.8125rem;
    color: var(--c-text-mute);
}
