/* 2026 landing extras — keeps main.min.css untouched */
.about-challenge-section {
    background-image: url("../images/about-dhnic-2026-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 0;
}

.about-challenge-section .about-content {
    margin: 0 auto 0;
}

.welcomeEditionSection {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(2.75rem, 5vw, 4.5rem) 1.25rem;
    text-align: center;
    background:
        radial-gradient(ellipse 55% 45% at 12% 18%, rgba(33, 118, 255, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 88% 78%, rgba(14, 165, 233, 0.12) 0%, transparent 58%),
        radial-gradient(ellipse 40% 35% at 50% 100%, rgba(33, 118, 255, 0.08) 0%, transparent 55%),
        linear-gradient(165deg, #f8fafc 0%, #eef4ff 42%, #e8eef8 100%);
}

.welcomeEditionSection::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(33, 118, 255, 0.055) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(33, 118, 255, 0.055) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 20%, transparent 80%);
}

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

.welcomeEditionSection .sectionTitle {
    margin: 0 auto 2.5rem;
    max-width: none;
    font-size: clamp(2.2rem, 6vw, 3rem);
    font-weight: 500;
    color: #0f172a;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .welcomeEditionSection .sectionTitle {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .welcomeEditionSection .sectionTitle {
        font-size: 2.2rem;
        padding: 0 0.25rem;
    }
}

.welcomeEditionSection .about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.welcomeEditionSection .about-grid .card {
    background: linear-gradient(120deg, var(--black, #111) 90%, var(--primary-color, #2176ff) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    color: #fff;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.3);
    user-select: none;
}

.welcomeEditionSection .about-grid .card:hover {
    transform: translateY(-6px);
}

.welcomeEditionSection .about-grid .card img {
    width: 180px;
}

.welcomeEditionSection .about-grid .card .card-title {
    color: #fff;
    font-size: clamp(1.5rem, 1.5vw, 2rem);
    text-align: center;
    font-weight: 300;
    line-height: 1.15;
}

.welcomeEditionSection .about-grid .card p {
    font-size: 0.9rem;
    line-height: 1.35;
    text-align: center;
    color: #fff;
    margin: 0;
}

.welcomeEditionSection .closing-quote {
    text-align: center;
    line-height: 1.15;
}

.welcomeEditionSection .closing-quote strong {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    color: var(--primary-color, #2176ff);
}

@media (max-width: 900px) {
    .welcomeEditionSection .about-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }
}

#why {
    position: relative;
    z-index: 0;
    background-image: url("../images/about-dhnic-2026-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#why::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0000007d;
    z-index: -1;
}

#why .wpm-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.85rem auto 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

#why .wpm-subtitle span {
    color: #fff;
}

#why .wpm-subtitle__text {
    min-width: 0;
}

#why .wpm-subtitle__brand {
    white-space: nowrap;
}

#why .wpm-subtitle__laurel {
    flex: 0 0 auto;
    width: 40px;
    height: 38px;
    color: #fff;
}

@media (max-width: 768px) {
    #why .wpm-subtitle {
        flex-wrap: nowrap;
        gap: 0.45rem 0.55rem;
        font-size: clamp(0.68rem, 3.1vw, 0.95rem);
        padding: 0 0.5rem;
    }

    #why .wpm-subtitle__laurel {
        width: 28px;
        height: 27px;
    }

    #why .wpm-subtitle__text {
        flex: 1 1 100%;
        order: 2;
    }

    #why .wpm-subtitle__laurel:first-child {
        order: 1;
    }

    #why .wpm-subtitle__laurel:last-child {
        order: 3;
    }
}

@media (max-width: 420px) {
    #why .wpm-subtitle {
        font-size: clamp(0.62rem, 3.4vw, 0.78rem);
        letter-spacing: -0.01em;
    }
}

@media (max-width: 391px) {
    #why .wpm-subtitle__text,
    #why .wpm-subtitle span {
        font-size: 0.8rem;
    }
}

#why .why-participate-masonry .wpm-tile h3 {
    color: var(--primary-color, #2176ff);
    font-weight: 500;
}

.about-challenge-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0000007d;
    z-index: -1;
}

.about-challenge-section .about-content p:not(.aboutHighlight) {
    margin-bottom: 0;
    font-size: 1.2rem;
    text-align: center;
}

.about-challenge-section .about-content p,
.about-challenge-section .about-content p strong
{
    color: #fff;
}

.problemCategoriesSection .sectionTitle,
.eligibilitySection .sectionTitle,
.eligibilitySubTitle,
.selectionCriteriaSection .sectionTitle,
.welcomeEditionSection .sectionTitle {
    font-weight: 500 !important;
}

.eligibilityCta {
    margin-top: 2.5rem;
}

.eligibilityCta p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.5;
}

.eligibilityCta p strong {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 1.2rem;
}

.eligibilityCta__link {
    display: inline-block;
    color: var(--primary-color, #2176ff);
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 700;
    line-height: 1.35;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.22em;
    cursor: pointer;
    transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
}

.eligibilityCta__link:hover {
    color: #1a63db;
    text-decoration-thickness: 3px;
}

.problemCategoriesSection .categoriesGrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    max-width: 1400px;
    gap: 0.85rem;
    width: 100%;
    margin-inline: auto;
}
.problemCategoriesSection .categoryCard {
    grid-column: span 2;
    width: 100%;
    padding: 1.5rem 2rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
/* Row 2: stretch two cards across the full width */
.problemCategoriesSection .categoryCard:nth-child(n + 4) {
    grid-column: span 3;
}
.problemCategoriesSection .categoryCard .categoryTitle {
    font-size: 1.6rem;
}
.problemCategoriesSection .categoryCard .categoryIcon {
    padding: 0;
    width: 110px;
    height: 110px;
    margin-bottom: 0.75rem;
}

@media (max-width: 1100px) {
    .problemCategoriesSection .categoriesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .problemCategoriesSection .categoryCard,
    .problemCategoriesSection .categoryCard:nth-child(n + 4) {
        grid-column: span 1;
    }
}

@media (max-width: 700px) {
    .problemCategoriesSection .categoriesGrid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    .problemCategoriesSection .categoryCard,
    .problemCategoriesSection .categoryCard:nth-child(n + 4) {
        grid-column: auto;
    }
}

.heroStats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
    /* margin-top: 2rem; */
    max-width: 1000px;
    width: 100%;
}
.heroStats__track {
    display: contents;
}
.heroStats__group {
    display: contents;
}
.heroStats__group[aria-hidden="true"] {
    display: none;
}
.heroStat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 0.85rem 1.25rem;
    min-width: 140px;
    text-align: center;
    color: #fff;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    flex-shrink: 0;
}
.heroStat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}
.heroStat > span {
    font-size: 1rem;
    opacity: 0.85;
}
.heroStat__num {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 1;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}
.heroCtaGroup {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}
.heroCtaGroup__tagline {
    margin: 0;
    max-width: 28rem;
    text-align: center;
    color: #fff;
    font-size: clamp(0.98rem, 1.6vw, 1.15rem);
    font-weight: 400;
    line-height: 1.45;
    opacity: 0.92;
}
.heroCtaGroup .submitApp,
.heroCtaGroup .ghostCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
}
.heroCtaGroup .ghostCta {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: transparent;
}
.heroEyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 2rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 0.65rem;
    color: #fff;
    text-align: center;
    line-height: 1.35;
}

.heroEyebrow__word {
    font-size: inherit;
    line-height: inherit;
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 0.55em, 0);
    animation: heroEyebrowWordIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.18s + (var(--i, 0) * 0.085s));
}

@keyframes heroEyebrowWordIn {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 768px) {
    .heroEyebrow {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .heroEyebrow {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .heroEyebrow__word {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.heroSubcopy {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.75rem;
    line-height: 1.45;
    color: #fff;
}
.heroSubcopy__date {
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.35;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: rgba(33, 118, 255, 0.38);
    border: 1px solid rgba(120, 180, 255, 0.45);
    box-shadow:
        0 0 28px rgba(33, 118, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.heroHosted {
    margin-top: 1.35rem;
    padding: 0.7rem 1.35rem;
    text-align: center;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 6px;
    max-width: 92vw;
}

/* ─── Journey snapshot (after hero) ─── */
.dhnSnapshot {
    --journey-blue: #2176ff;
    --journey-navy: #0f2744;
    --journey-muted: #64748b;
    padding: clamp(4rem, 7vw, 5.75rem) 1.5rem clamp(4.5rem, 8vw, 6rem);
    color: var(--journey-navy);
    background-color: #f5f8fc;
    background-image:
        radial-gradient(rgba(33, 118, 255, 0.09) 1px, transparent 1px);
    background-size: 22px 22px;
}
.dhnSnapshot .container {
    max-width: 1180px;
    margin: 0 auto;
}
.dhnSnapshot__header {
    text-align: center;
    margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}
.dhnSnapshot__accent {
    display: block;
    width: 42px;
    height: 4px;
    margin: 0 auto 1.15rem;
    border-radius: 999px;
    background: var(--journey-blue);
}
.dhnSnapshot__title {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--journey-navy);
}
.dhnSnapshot__title em {
    font-style: normal;
    color: var(--journey-blue);
}
.dhnSnapshot__lead {
    margin: 0 auto;
    max-width: 34rem;
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
    font-weight: 400;
    line-height: 1.55;
    color: var(--journey-muted);
}
.dhnSnapshot__stage {
    position: relative;
}
.dhnSnapshot__row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.dhnSnapshot__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 1.5rem 0.85rem 1.35rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(15, 39, 68, 0.06);
    box-shadow:
        0 10px 28px rgba(15, 39, 68, 0.06),
        0 2px 8px rgba(15, 39, 68, 0.04);
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dhnSnapshot__card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 34px rgba(15, 39, 68, 0.1),
        0 4px 10px rgba(15, 39, 68, 0.05);
}
.dhnSnapshot__icon {
    --icon-ring: var(--tone, var(--journey-blue));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 116px;
    height: 116px;
    margin-bottom: 0.55rem;
    border-radius: 50%;
    background:#eef3fa;
    color: var(--icon-ring);
}

.dhnSnapshot__icon img,
.dhnSnapshot__icon svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 42%;
    height: 42%;
    object-fit: contain;
}
.dhnSnapshot__card[data-tone="blue"] { --tone: var(--primary-color); }
.dhnSnapshot__card[data-tone="sky"] { --tone: var(--primary-color); }
.dhnSnapshot__card[data-tone="teal"] { --tone: var(--primary-color); }
.dhnSnapshot__card[data-tone="orange"] { --tone: var(--primary-color); }
.dhnSnapshot__card[data-tone="violet"] { --tone: var(--primary-color); }

.dhnSnapshot__card strong {
    display: block;
    font-size: clamp(2rem, 2.8vw, 2.55rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--tone, var(--journey-blue));
    margin: 1rem 0 0.35rem;
}
.dhnSnapshot__card .heroStat__num {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    opacity: 1;
    font-variant-numeric: tabular-nums;
}
.dhnSnapshot__card > span {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--journey-muted);
}

.dhnSnapshot__wave {
    position: relative;
    max-width: 1100px;
    margin: 0.35rem auto 0;
    height: 52px;
}
.dhnSnapshot__waveSvg {
    position: absolute;
    inset: 10px 4% 0;
    width: 92%;
    height: 36px;
    color: var(--journey-blue);
}
.dhnSnapshot__waveSvg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    opacity: 0.85;
}
.dhnSnapshot__nodes {
    position: absolute;
    inset: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    height: 100%;
    pointer-events: none;
}
.dhnSnapshot__nodes span {
    width: 12px;
    height: 12px;
    margin: 16px auto 0;
    border-radius: 50%;
    background: var(--journey-blue);
    box-shadow: 0 0 0 4px rgba(33, 118, 255, 0.14);
}
.dhnSnapshot__nodes span:nth-child(even) {
    margin-top: 28px;
}

.dhnSnapshot__hosted {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2.25rem auto 0;
    max-width: 720px;
    text-align: center;
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--journey-blue);
}
.dhnSnapshot__hosted span {
    max-width: 28rem;
    font-size: 1.2rem;
}
.dhnSnapshot__laurel {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    color: var(--journey-blue);
    opacity: 0.9;
}
.dhnSnapshot__laurel--flip {
    transform: scaleX(-1);
}

@media (max-width: 1000px) {
    .dhnSnapshot__row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        max-width: 720px;
    }
    .dhnSnapshot__wave {
        display: none;
    }
}

@media (max-width: 700px) {
    .dhnSnapshot {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
    .dhnSnapshot__row {
        grid-template-columns: 1fr 1fr;
        max-width: 460px;
        gap: 0.85rem;
    }
    .dhnSnapshot__card {
        padding: 1.25rem 0.7rem 1.15rem;
    }
    .dhnSnapshot__icon {
        width: 96px;
        height: 96px;
    }
    .dhnSnapshot__card:last-child {
        grid-column: 1 / -1;
        max-width: 220px;
        margin: 0 auto;
        width: 100%;
    }
    .dhnSnapshot__hosted {
        flex-wrap: nowrap;
        gap: 0.45rem 0.65rem;
        margin-top: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dhnSnapshot__card {
        transition: none;
    }
    .dhnSnapshot__card:hover {
        transform: none;
    }
}
/* ─── DHN HTIC Impact (2026) ─── */
.impactSection {
    --impact-blue: #2176ff;
    --impact-ink: #0f172a;
    --impact-muted: #475569;
    position: relative;
    padding: clamp(4.5rem, 8vw, 6.5rem) 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(33, 118, 255, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #f3f4f6 0%, #e8eaee 100%);
    color: var(--impact-ink);
}

.impactSection__grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 20%, transparent 78%);
}

@media (max-width: 768px) {
    .impactSection__grid {
        background-size: 36px 36px;
    }
}

.impactSection__inner {
    position: relative;
    z-index: 1;
}

.impactSection__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2.75rem;
}

.impactSection__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--impact-blue);
    background: rgba(33, 118, 255, 0.1);
    border: 1px solid rgba(33, 118, 255, 0.35);
    border-radius: 999px;
}

.impactSection__title {
    color: var(--impact-ink);
    margin-bottom: 0.75rem;
}

.impactSection__lead {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 1rem;
    color: var(--impact-ink);
}

.impactSection__intro {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--impact-muted);
    margin: 0;
}

/* Featured partnership story */
.impactFeature {
    max-width: 860px;
    margin: 0 auto 2.75rem;
    padding: clamp(1.75rem, 4vw, 2.65rem);
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.impactFeature__badge {
    display: inline-flex;
    margin-bottom: 1.5rem;
    padding: 0.35rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--impact-blue);
    background: rgba(33, 118, 255, 0.1);
    border: 1px solid rgba(33, 118, 255, 0.35);
}

.impactFeature__media {
    width: 100%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f1f5f9;
}

.impactFeature__media img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.impactFeature__lockup {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1.15rem;
    margin-bottom: 1.35rem;
}

.impactFeature__brand {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--impact-ink);
}

.impactFeature__handshake {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(33, 118, 255, 0.08);
    border: 1px solid rgba(33, 118, 255, 0.22);
    box-shadow: 0 0 0 6px rgba(33, 118, 255, 0.06);
}

.impactFeature__handshake img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.impactFeature__headline {
    max-width: 36rem;
    margin: 0 auto 1rem;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 650;
    letter-spacing: -0.015em;
    line-height: 1.35;
    color: var(--impact-ink);
}

.impactFeature__story {
    max-width: 40rem;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--impact-muted);
}

.impactFeature__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: var(--impact-blue);
    border: 1px solid transparent;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.impactFeature__cta:hover {
    background: #1a63db;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(33, 118, 255, 0.28);
    color: #fff;
}

.impactFeature__cta svg {
    transition: transform 0.25s ease;
}

.impactFeature__cta:hover svg {
    transform: translateX(3px);
}

/* Outcomes */
.impactOutcomes {
    max-width: 980px;
    margin: 0 auto;
}

.impactOutcomes__heading {
    text-align: center;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 500;
    margin: 0 0 1.35rem;
    color: var(--impact-ink);
    line-height: 1.3;
}

.impactOutcomes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.impactOutcome {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.55);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.impactOutcome:hover {
    background: rgba(255, 255, 255, 0.55);
    border-top-color: rgba(33, 118, 255, 0.55);
}

.impactOutcome__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.impactOutcome__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.impactOutcome__label {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.4;
    color: #1e293b;
}

@media (max-width: 900px) {
    .impactOutcomes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .impactFeature {
        padding: 1.4rem 1.15rem;
    }

    .impactFeature__lockup {
        flex-direction: column;
        gap: 0.75rem;
    }

    .impactOutcomes__grid {
        grid-template-columns: 1fr;
    }
}

.finalCtaSection {
    padding: 4rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #0a2740 0%, #123a5c 50%, #0b4f6c 100%);
    color: #fff;
}
.finalCtaSection h2 {
    margin-bottom: 0.75rem;
}
.finalCtaSection p {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}
.juryGallery {
    position: relative;
    z-index: 0;
    background-image: url("../images/jury-dhnic-2026-bg.jpg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.juryGallery::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0000004a;
    z-index: -1;
}

.juryGallery .juryHeader h5,
.juryGallery .juryCard .juryText h3,
.juryGallery .juryCard .juryText p
{
    color: #fff;
    opacity: 1;
}

.juryGallery .juryText__nowrap {
    white-space: nowrap;
    font: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
    opacity: inherit;
}

.juryCard.placeholder .juryImage {
    background: #1a2f42;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    color: #9fb3c4;
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
}
.partnersNote {
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

/* 2026 Partners — single Incubation & Accelerator card */
.partnersSection .partnersGrid {
    display: grid;
    grid-template-columns: minmax(280px, 480px);
    justify-content: center;
    margin-top: 2.5rem;
}

.partnersSection .partnersCard {
    width: 100%;
}

.partnersSection .partnersGrid .partnersCard .partnersList
{
    background: #fff;
}

.partnersSection .partnersGrid .partnersCard .partnersTitle {
    color: #000;
}

.partnersSection .partnersList img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.aboutHighlight {
    font-size: clamp(1.45rem, 3.2vw, 2.4rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    text-align: center;
    margin: 1.35rem 0 1.5rem;
    color: var(--primary-color, #2176ff) !important;
    /* -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.6px var(--primary-color, #2176ff); */
}
@media (max-width: 768px) {
    .heroStats {
        display: block;
        max-width: 100%;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
        mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }
    .heroStats__track {
        display: flex;
        width: max-content;
        gap: 0.75rem;
        animation: heroStatsSlide 28s linear infinite;
        will-change: transform;
    }
    .heroStats__group {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.75rem;
    }
    .heroStats__group[aria-hidden="true"] {
        display: flex;
    }
    .heroStat {
        min-width: 148px;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .heroStats__track {
        animation: none;
        padding: 0 1rem;
    }
    .heroStats__group[aria-hidden="true"] {
        display: none;
    }
    .heroStats {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@keyframes heroStatsSlide {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* 2026 brand logo sizing */
.homeHero--atmosphere .brandingLogo,
.homeHero .brandingLogo {
    max-width: min(420px, 88vw);
    min-width: 0;
    width: 100%;
    height: auto;
}
nav .navLogo {
    height: auto;
    max-height: 52px;
    width: auto;
    max-width: min(220px, 55vw);
    object-fit: contain;
}
.siteFooter .footerLogo--current {
    max-width: min(280px, 80vw);
    width: 100%;
    height: auto;
}
.siteFooter .footerBrand {
    display: inline-block;
    line-height: 0;
}
.siteFooter .footerContact {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem 1.5rem;
}
.siteFooter .footerArchives {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.85rem 1.25rem;
}
.siteFooter .footerArchives a {
    display: inline-block;
    line-height: 0;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}
.siteFooter .footerArchives a:hover {
    opacity: 1;
}
.siteFooter .footerLogo--archive {
    max-width: 160px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 0;
}
.siteFooter .footerLogo--2025 {
    max-height: 85px;
}
.loginSection .logo,
.registrationSection .logo {
    max-width: min(320px, 85%);
    height: auto;
    object-fit: contain;
}

/* Hero video background (2026) */
.homeHero--atmosphere.homeHero--video {
    justify-content: flex-end !important;
    align-items: center;
    padding-bottom: clamp(2.5rem, 6vh, 4.5rem) !important;
}
.homeHero--atmosphere.homeHero--video .heroLoop {
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.homeHero--atmosphere.homeHero--video .heroVideoOverlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 50% 55%, rgba(7, 20, 38, 0.28) 0%, rgba(7, 20, 38, 0.72) 100%),
        linear-gradient(180deg, rgba(7, 20, 38, 0.25) 0%, transparent 30%, rgba(7, 20, 38, 0.55) 75%, rgba(7, 20, 38, 0.8) 100%);
}
.homeHero--atmosphere.homeHero--video .heroContent {
    position: relative;
    z-index: 2;
    justify-content: flex-end;
    margin-top: auto;
    margin-bottom: 4rem;
    width: 100% !important;
    max-width: min(920px, 92vw);
    padding-bottom: 0.25rem;
}
.homeHero.homeHero--video .heroContent h1,
.homeHero .heroContent h1 {
    margin-top: 0 !important;
}
.homeHero--atmosphere .heroCtaGroup {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}
/* Reset legacy .homeHero a absolute styles for Apply Now */
.homeHero.homeHero--video .heroCtaGroup a,
.homeHero.homeHero--video .heroCtaGroup .submitApp {
    position: static !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--primary-color) !important;
    border: 0 !important;
    border-radius: 20px !important;
    color: var(--default-text-color, #fff) !important;
    padding: 0.5rem 1.5rem !important;
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    z-index: 2;
}
.homeHero.homeHero--video .heroCtaGroup .submitApp:hover {
    box-shadow: 0 0 20px #4eb6fc;
}
/* Bottom-right archive link to 2025 (same pattern as 2025 → 2024) */
.homeHero.homeHero--video a.heroArchiveLink {
    position: absolute;
    z-index: 9;
    bottom: 9%;
    right: 5%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    border: 1px solid #5ac0fc;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: scale(0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.homeHero.homeHero--video a.heroArchiveLink img {
    width: 180px;
    max-width: 40vw;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .homeHero.homeHero--video a.heroArchiveLink {
        bottom: 4%;
        right: 3%;
        padding: 0.65rem 0.9rem;
        transform: scale(0.7);
    }
    .homeHero.homeHero--video a.heroArchiveLink img {
        width: 140px;
    }
}

/* Coming soon popup */
.dhnComingSoon {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.dhnComingSoon.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.dhnComingSoon__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 38, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.dhnComingSoon__card {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 2.25rem 1.75rem 1.75rem;
    border-radius: 18px;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(33, 118, 255, 0.22) 0%, transparent 40%),
        linear-gradient(180deg, #0f2744 0%, #0b1f3a 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.28s ease;
}
.dhnComingSoon.is-open .dhnComingSoon__card {
    transform: translateY(0) scale(1);
}
.dhnComingSoon__close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}
.dhnComingSoon__close:hover {
    color: #fff;
}
.dhnComingSoon__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.28);
}
.dhnComingSoon__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #00d4ff;
}
.dhnComingSoon__title {
    margin: 0 0 0.75rem;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
}
.dhnComingSoon__text {
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}
.dhnComingSoon__text strong {
    color: #fff;
    font-weight: 700;
}
.dhnComingSoon__cta {
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: 8px;
    background: #2176ff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.dhnComingSoon__cta:hover {
    background: #1a63db;
}
body.dhn-coming-soon-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .homeHero .heroContent .initiativeBy {
        padding: 0.2rem 1.2rem;
    }
}
