/* Shared design tokens and site styles */
:root {
    --type-page-title: 28px;
    --type-section-title: 32px;
    --type-component-title: 24px;
    --type-card-title: 20px;
    --type-body: 16px;
    --type-card: 16px;
    --type-caption: 12px;
    --type-compact-title: 14px;
    --type-form-title: 24px;
    --type-form-control: 16px;
    /* --leading-heading: 1.2;
    --leading-tight: 1.3;
    --leading-body: 1.5;
    --leading-card: 1.4;
    --leading-caption: 1.4; */
}

@media(max-width:767px) {
    :root {
        --type-page-title: 26px;
        --type-section-title: 26px;
        --type-card-title: 18px;
        --type-body: 15px;
        --type-card: 14px;
        --type-form-title: 22px;
    }
}

html {
    scroll-behavior: auto;
}

body {
    overflow-x: hidden;
}

.form-field-label {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.judging-section {
    border-top: 1px solid #c9c9c9;
    padding-top: 20px;
    font-family: Inter, sans-serif;
}

.judging-heading-row,
.judging-question-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.judging-heading-row {
    flex-direction: column;
    gap: 0;
}

.judging-heading {
    color: #222;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.judging-description,
.judging-total,
.judging-question-meta {
    color: #555;
    font-size: 12px;
    line-height: 1.4;
}

.judging-description {
    max-width: 760px;
    margin: 4px 0 0;
}

.judging-total {
    align-self: flex-start;
    flex-shrink: 0;
    margin-bottom: 8px;
    padding: 8px 0;
    text-align: left;
    font-weight: 600;
}

.judging-question {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px 16px;
    margin-top: 0;
}

.judging-question+.judging-question {
    margin-top: 16px;
}

.judging-criteria {
    list-style: disc;
    padding-left: 20px;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.judging-criteria li+li {
    margin-top: 5px;
}

.judging-criteria strong,
.judging-criteria strong+span {
    display: block;
}

.judging-criteria strong {
    color: #333;
    font-weight: 700;
}

.judging-criteria strong+span {
    margin-top: 4px;
    font-weight: 400;
}

.judging-criteria {
    list-style-type: none;
    flex: 1 1 0;
    margin: 0;
    padding-left: 0;
}

.judging-note {
    margin-top: 10px;
    color: #666;
    font-size: 12px;
    font-style: italic;
    line-height: 1.45;
}

.judging-question-meta {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.judging-question>.block {
    width: 100%;
}

.judging-section-detailed .judging-question {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 4px 16px;
}

.judging-section-detailed .judging-criteria,
.judging-section-detailed .judging-criteria li {
    display: contents;
}

.judging-section-detailed .judging-criteria strong {
    grid-column: 1;
    grid-row: 1;
}

.judging-section-detailed .judging-criteria strong+span {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0;
}

.judging-section-detailed .judging-question-meta {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
}

.judging-section-detailed .judging-question>.block {
    grid-column: 1 / -1;
}

.judging-limits {
    color: #555;
    display: none;
}

.judging-counter {
    flex-shrink: 0;
}

.judging-counter.is-over-limit,
.judging-counter.is-under-limit {
    color: #c62828;
    font-weight: 600;
}

@media(max-width:639px) {
    .judging-criteria {
        flex-basis: 100%;
    }

    .judging-question-meta {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-left: auto;
        text-align: right;
    }

    .judging-section-detailed .judging-criteria strong {
        grid-column: 1 / -1;
    }

    .judging-section-detailed .judging-question-meta {
        grid-column: 1 / -1;
        grid-row: 3;
        width: auto;
        margin-left: 0;
    }
}

.judging-textarea {
    min-height: 132px;
    width: 100%;
    resize: vertical;
    border: 1px solid #949393;
    border-radius: 4px;
    background: #fff;
    padding: 11px 12px;
    color: #1d1d1d;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.judging-textarea::placeholder {
    color: #949393;
}

.judging-textarea:focus {
    border-color: #1967d2;
    box-shadow: 0 0 0 2px rgba(25, 103, 210, .2);
}

.program-report-upload {
    display: flex;
    min-height: 92px;
    cursor: pointer;
    align-items: center;
    gap: 12px;
    border: 1px dashed #949393;
    border-radius: 8px;
    background: #fff;
    padding: 14px 16px;
    font-family: Inter, sans-serif;
    transition: border-color .2s, background-color .2s;
}

.program-report-field {
    position: relative;
}

.program-report-field.has-file .program-report-button {
    margin-right: 96px;
}

.program-report-upload:hover,
.program-report-upload:focus-within,
.program-report-upload.is-dragging {
    border-color: #1967d2;
    background: #f8fbff;
}

.program-report-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #666;
    opacity: .65;
}

.program-report-copy {
    min-width: 0;
    flex: 1;
    color: #333;
    font-size: 13px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.program-report-copy small {
    display: block;
    margin-top: 2px;
    color: #666;
    font-size: 11px;
}

.program-report-button {
    display: inline-flex;
    height: 36px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid #1967d2;
    border-radius: 4px;
    padding: 9px 16px;
    color: #1967d2;
    font-size: 13px;
    font-weight: 600;
}

.program-report-remove {
    display: inline-flex;
    height: 36px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 1;
    transform: translateY(-50%);
    border: 1px solid #dc2626;
    border-radius: 4px;
    background: #fff;
    padding: 9px 12px;
    color: #dc2626;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: background-color .2s, color .2s;
}

.program-report-remove:hover,
.program-report-remove:focus-visible {
    background: #fef2f2;
}

.program-report-remove:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.program-report-remove[hidden] {
    display: none;
}

.supporting-links-list {
    display: grid;
    gap: 10px;
}

.supporting-link-field {
    display: flex;
    align-items: center;
    gap: 8px;
}

.supporting-link-input {
    width: 100%;
    height: 42px;
    border: 1px solid #949393;
    border-radius: 4px;
    background: #fff;
    padding: 0 10px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.supporting-link-input:focus {
    border-color: #1967d2;
    box-shadow: 0 0 0 2px rgba(25, 103, 210, .2);
}

.supporting-link-add {
    margin-top: 10px;
    border: 1px solid #1967d2;
    border-radius: 4px;
    background: #fff;
    padding: 8px 14px;
    color: #1967d2;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: background-color .2s;
}

.supporting-link-add:hover {
    background: #f1f7ff;
}

.supporting-link-remove {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid #f87171;
    border-radius: 4px;
    background: #fff;
    color: #ef4444;
    font-size: 20px;
    font-weight: 600;
    transition: background-color .2s;
}

.supporting-link-remove:hover {
    background: #fef2f2;
}

@media(max-width:767px) {
    .judging-heading-row {
        display: block;
    }

    .judging-total {
        display: block;
        margin-top: 4px;
    }

    .program-report-upload {
        flex-wrap: wrap;
    }

    .program-report-copy {
        flex-basis: calc(100% - 40px);
    }

    .program-report-button {
        margin-left: 40px;
    }

    .program-report-field.has-file .program-report-button {
        margin-right: 96px;
    }

    .program-report-remove {
        top: auto;
        bottom: 14px;
        transform: none;
    }
}

section[id],
#top {
    scroll-margin-top: 76px;
}

.about-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.about-decoration {
    position: absolute;
    z-index: 0;
    display: block;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.about-decoration-left {
    left: 0;
    top: 0;
    width: 369px;
    height: 515px;
}

.about-decoration-right {
    right: 0;
    top: 0;
    width: 262px;
    height: 512px;
}

@media(max-width:1023px) {
    .about-decoration {
        opacity: .38;
    }

    .about-decoration-left {
        left: -150px;
    }

    .about-decoration-right {
        right: -110px;
    }
}

@media(max-width:639px) {
    .about-decoration {
        opacity: .22;
    }

    .about-decoration-left {
        left: -245px;
    }

    .about-decoration-right {
        right: -185px;
    }
}

.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    background: #1a65ab;
}

.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    z-index: -2;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    z-index: -1;
    background: linear-gradient(180deg,
            rgba(72, 168, 178, 0) 18.337%,
            rgba(26, 101, 171, .85) 88.951%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: min(533px, calc(100% - 40px));
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: min(454px, 85vw);
    height: auto;
}

.hero-copy {
    display: flex;
    width: 100%;
    margin-top: 21px;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-message h1 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-copy p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.hero-cta {
    display: flex;
    width: 188px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: #1963ab;
    background: linear-gradient(0deg, #00aff0 -66.67%, #ff0 53.25%);
    box-shadow: 0 8px 24px rgba(3, 91, 113, .2);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(3, 91, 113, .3);
}

.nav-brand {
    display: flex;
    width: 146px;
    height: 63px;
    align-items: center;
}

#site-header:not([data-solid]):not(.scrolled) {
    background: linear-gradient(180deg,
            rgba(26, 101, 171, .82) 0%,
            rgba(26, 101, 171, .48) 52%,
            rgba(72, 168, 178, 0) 100%);
}

#site-header:not([data-solid]) .nav-brand {
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

#site-header:not([data-solid]):not(.scrolled) .nav-brand {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

@media(min-width:1024px) {
    .desktop-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .desktop-nav a,
    .desktop-login {
        white-space: nowrap;
    }

    .desktop-nav a {
        position: relative;
    }

    .desktop-nav a::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -9px;
        left: 0;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, #f2f15d 0 50%, white 50% 100%);
        box-shadow: 0 2px 7px rgba(3, 91, 113, .28);
        opacity: 0;
        transform: scaleX(.35);
        transition: opacity .2s ease, transform .2s ease;
    }

    .desktop-nav a.is-active::after {
        opacity: 1;
        transform: scaleX(1);
    }
}

.nav-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#site-header.scrolled {
    background: linear-gradient(90deg, #326AA7 0%, #4FB3B2 89.11%, #F2F15D 116.39%);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

#mobile-menu>div {
    border-radius: 0 0 1rem 1rem;
    transition: border-radius .3s ease;
}

#site-header:not(.scrolled):not([data-solid])+#mobile-menu>div {
    border-top-width: 1px;
    border-radius: 1rem;
}

nav a {
    transition: opacity .2s, transform .2s;
}

nav a:hover {
    opacity: .78;
    transform: translateY(-1px);
}

.desktop-nav a.is-active {
    opacity: 1;
    text-shadow: 0 1px 5px rgba(3, 61, 96, .45);
}

.profile-menu {
    position: relative;
    flex: none;
}

.profile-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid #fff;
    border-radius: 999px;
    background: rgba(235, 235, 235, .9);
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(3, 61, 96, .2);
    transition: filter .2s ease, transform .2s ease;
}

.profile-avatar:hover,
.profile-avatar[aria-expanded="true"] {
    filter: brightness(.96);
    transform: translateY(-1px);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 80;
    width: 242px;
    overflow: hidden;
    border: 1px solid #d9dee7;
    border-radius: 5px;
    background: #fff;
    color: #272727;
    box-shadow: 0 10px 24px rgba(8, 41, 73, .22);
}

.profile-dropdown[hidden] {
    display: none;
}

.profile-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #cfd5df;
}

.profile-summary-avatar {
    display: grid;
    width: 23px;
    height: 23px;
    flex: none;
    place-items: center;
    border: 1px solid #111;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 11px;
    font-weight: 600;
}

.profile-summary-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.2;
}

.profile-summary-copy strong {
    font-size: 16px;
    font-weight: 700;
}

.profile-summary-copy>span {
    max-width: 180px;
    overflow: hidden;
    color: #666;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-submission {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    color: #1763d6;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    transition: background-color .2s ease;
}

.profile-submission:hover,
.profile-submission:focus-visible {
    background: #eef5ff;
    outline: none;
}

.profile-submission svg {
    width: 22px;
    height: 22px;
    flex: none;
    fill: none;
    stroke: #193b70;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.submission-page .submission-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.submission-page .submission-card {
    padding: 16px;
    border: 1px solid #ebedf0;
    border-radius: 12px;
    background: #f5f5f5;
    box-shadow: 0 4px 14px rgba(31, 58, 87, .05);
}

.submission-page .submission-category {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 2px 12px;
    border-radius: 4px;
    background: #ed922d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.submission-page .submission-title {
    margin-top: 6px;
    color: #242424;
    font-size: 20px !important;
    font-weight: 700;
    line-height: 1.3;
}

.submission-page .submission-meta p {
    display: grid;
    gap: 2px;
    /* margin-top: 8px; */
    color: #A9A9A9;
    font-family: Inter, sans-serif;
    font-size: 10px !important;
    line-height: 1.4;
}

.submission-page .submission-view {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 7px 18px;
    border-radius: 2px;
    background: #193b70;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: background-color .2s ease, transform .2s ease;
}

.submission-page .submission-view:hover,
.submission-page .submission-view:focus-visible {
    background: #102c57;
    outline: none;
    transform: translateY(-1px);
}

.account-page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.account-page-main {
    display: flex;
    width: 100%;
    flex: 1 0 auto;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    padding: 105px 20px 64px;
}

.account-page .site-footer {
    flex: 0 0 auto;
}

.account-page-content {
    width: 100%;
    max-width: 440px;
    min-width: 0;
    box-sizing: border-box;
}

.account-card {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 10px;
    background: #fff;
}

.account-profile-card {
    padding: 26px 24px 24px;
    text-align: center;
}

.account-profile-avatar {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 20px auto 12px;
    place-items: center;
    border-radius: 999px;
    background: #dfc6c1;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
}

.account-profile-name {
    font-size: 20px;
    font-weight: 700;
}

.account-profile-type {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
}

.account-profile-email,
.account-profile-status {
    color: #777;
    font-size: 14px;
    line-height: 1.35;
}

.account-setting-row {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
}

.account-setting-row a,
.account-logout,
.account-cancel {
    color: #007aff;
}

.account-logout {
    display: block;
    width: max-content;
    margin: 28px auto 0;
    font-size: 16px;
    font-weight: 700;
}

.account-password-card {
    padding: 26px 24px 0;
}

.account-password-fields {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.account-password-fields label {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 16px;
}

.account-password-input-wrap {
    position: relative;
    margin-top: 6px;
}

.account-password-input {
    width: 100%;
    height: 42px;
    padding: 0 44px 0 12px;
    border: 1px solid #dedede;
    border-radius: 8px;
    outline: none;
}

.account-password-input:focus {
    border-color: #007aff;
    box-shadow: 0 0 0 2px rgba(0, 122, 255, .15);
}

.account-password-help {
    margin-top: 12px;
    color: #888;
    font-size: 12px;
    line-height: 1.4;
}

.account-password-submit {
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    border-radius: 6px;
    background: #007aff;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 7px 16px rgba(0, 122, 255, .18);
}

.account-cancel {
    display: block;
    width: max-content;
    margin: 24px auto 38px;
    font-size: 16px;
    font-weight: 700;
}

.account-disclaimer {
    margin: 0 -24px;
    padding: 24px;
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

@media(max-width:639px) {
    .account-page-main {
        padding-right: 16px;
        padding-left: 16px;
        padding-top: 96px;
    }

    .account-page-content {
        max-width: calc(100vw - 32px);
    }

    .account-profile-card,
    .account-password-card {
        padding-right: 18px;
        padding-left: 18px;
    }

    .account-disclaimer {
        margin-right: -18px;
        margin-left: -18px;
    }
}

@media(max-width:639px) {
    .submission-page .submission-card {
        padding: 14px;
    }

    .submission-page .submission-title {
        font-size: 18px !important;
    }
}

#mobile-menu a.is-active {
    color: #f2f15d;
    background: rgba(255, 255, 255, .14);
    box-shadow: inset 3px 0 0 #f2f15d;
}

.password-eye {
    position: relative;
    display: block;
    width: 18px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.password-eye::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.password-toggle:focus-visible {
    color: #007aff;
    outline: 2px solid rgba(0, 122, 255, .35);
    outline-offset: -4px;
}

.password-toggle[aria-pressed="true"] {
    color: #007aff;
}

@media(hover:hover) and (pointer:fine) {
    .password-toggle:hover {
        color: #007aff;
    }
}

.auth-card {
    width: 100%;
    max-width: 440px !important;
    min-height: 0 !important;
}

.auth-card h1 {
    font-size: var(--type-form-title) !important;
}

.auth-card label,
.auth-card input,
.auth-card button[type="submit"],
.auth-card form a {
    font-size: var(--type-form-control) !important;
}

.auth-disclaimer[hidden] {
    display: none !important;
}

.form-success-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(15, 23, 42, .56);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .25s ease;
}

.form-success-modal[hidden] {
    display: none !important;
}

.form-success-modal.open {
    opacity: 1;
}

.form-success-dialog {
    display: flex;
    width: min(100%, 400px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    padding: 24px;
    color: #333;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .26);
    text-align: center;
    transform: translateY(18px) scale(.98);
    transition: transform .25s ease;
}

.form-success-modal.open .form-success-dialog {
    transform: none;
}

.form-success-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #e8fcf3;
}

.form-success-icon img {
    display: block;
    width: 30px;
    height: 30px;
}

.form-success-dialog #form-success-title {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 20px !important;
    font-weight: 600;
    line-height: 1.4;
}

.form-success-dialog p {
    margin: 0;
    color: #666;
    font-family: Inter, sans-serif;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.5 !important;
}

.form-success-dialog button {
    width: 119px;
    min-height: 40px;
    margin: 0;
    background: #2e5ca6;
    padding: 8px 18px;
    color: #f3f7fa;
    font-family: Roboto, Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.form-success-dialog button:hover {
    background: #244a7c;
    transform: translateY(-1px);
}

.form-success-dialog button:focus-visible {
    outline: 3px solid rgba(49, 89, 142, .35);
    outline-offset: 3px;
}

@media(max-width:639px) {
    .form-success-modal {
        padding: 18px;
    }

    .form-success-dialog {
        padding: 24px 20px;
    }

    .form-success-dialog p {
        font-size: 15px !important;
    }

    .form-success-dialog button {
        min-height: 40px;
        font-size: 16px;
    }
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    line-height: 1.05;
    font-weight: 700;
    color: #2f6aa8;
}

.award-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 203px;
    border-radius: 30px;
    padding: 32px 22px;
    color: white;
    background: linear-gradient(245deg, #f2f15d 1%, #4fb3b2 20%, #1c68ab 66%, #1963ab 98%);
    box-shadow: 0 18px 45px rgba(47, 106, 168, .12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.award-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(47, 106, 168, .2);
}

.award-card-trigger {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
}

.award-card-trigger:focus-visible {
    outline: 3px solid #f2f15d;
    outline-offset: -5px;
}

.award-card-content {
    position: relative;
    z-index: 1;
}

.award-card-art {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: auto;
    max-width: 58%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.award-card:nth-child(-n+3) {
    grid-column: span 2
}

.award-card:nth-child(4) {
    grid-column: 2/span 2
}

.award-card:nth-child(5) {
    grid-column: 4/span 2
}

.award-card .num {
    display: inline-grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    margin-right: 8px;
    color: #1964ab;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(205deg, #f2f15d, #4fb3b2);
}

.award-card h3 {
    display: inline;
    font-size: 18px;
    font-weight: 700
}

.award-card p {
    margin: 8px 0 2px 43px;
    font-size: 14px;
    line-height: 1.5
}

.award-card-more {
    display: inline-block;
    margin: 14px 0 0 43px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline
}

.category-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(3, 45, 72, .62);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .25s ease
}

.category-modal[hidden] {
    display: none
}

.category-modal.open {
    opacity: 1
}

.category-dialog {
    width: min(100%, 901px);
    max-height: 88vh;
    overflow: hidden;
    border-radius: 30px;
    background: white;
    color: #1c67ab;
    transform: translateY(20px) scale(.98);
    transition: transform .25s ease
}

.category-modal.open .category-dialog {
    transform: none
}

.category-modal-header {
    position: relative;
    display: flex;
    min-height: 67px;
    align-items: center;
    padding: 12px 70px 12px 37px;
    color: white;
    background: linear-gradient(268deg, #f2f15d 5.9%, #4fb3b2 13%, #1c68ab 56.7%, #1963ab 100%)
}

.category-modal-header h2 {
    font-size: 16px !important;
    font-weight: 700;
    text-transform: uppercase
}

.category-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    color: white;
    background: #185f9d;
    box-shadow: 0 5px 14px rgba(14, 58, 96, .28);
    font-family: Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease
}

.category-modal-close:hover {
    color: #185f9d;
    background: #f2f15d;
    box-shadow: 0 7px 18px rgba(14, 58, 96, .34);
    transform: rotate(90deg)
}

.category-modal-close:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px
}

.category-modal-content {
    max-height: calc(88vh - 67px);
    overflow: auto;
    padding: 28px 90px 32px 120px;
    font-size: 20px;
    line-height: 1.3
}

.category-modal-title-row {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: -83px;
    margin-bottom: 20px
}

.category-modal-title-row span {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(205deg, #f2f15d, #4fb3b2);
    font-size: 32px;
    font-weight: 800
}

.category-modal-title-row h3 {
    font-size: 32px;
    font-weight: 700
}

.category-modal-content h4 {
    margin-top: 18px;
    font-size: 24px;
    font-weight: 700
}

.category-modal-content ul {
    margin-top: 8px;
    padding-left: 36px;
    list-style: disc
}

.category-modal-content p {
    margin-top: 8px;
    font-size: 24px
}

@media(max-width:639px) {
    .category-modal {
        padding: 14px
    }

    .category-dialog {
        border-radius: 22px
    }

    .category-modal-header {
        padding-left: 20px
    }

    .category-modal-header h2 {
        font-size: 14px !important
    }

    .category-modal-content {
        padding: 24px 22px;
        font-size: 12px
    }

    .category-modal-title-row {
        margin-left: 0;
        gap: 14px
    }

    .category-modal-title-row span {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 24px
    }

    .category-modal-title-row h3 {
        font-size: 23px
    }

    .category-modal-content h4 {
        font-size: 20px
    }

    .category-modal-content p {
        font-size: 18px
    }
}

.participant-card {
    position: relative;
    margin-top: 68px;
    min-height: 285px;
    border-radius: 40px;
    padding: 92px 38px 34px;
    color: white;
    background: linear-gradient(#4fb3b2, #008281);
}

.participant-card img {
    position: absolute;
    left: 50%;
    top: -72px;
    width: 158px;
    height: 158px;
    transform: translateX(-50%);
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid #4CB1B0;
}

.participant-card h3 {
    color: #f2f15d;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 20px
}

.participant-card ul {
    list-style: disc;
    padding-left: 20px
}

.participant-card p,
.participant-card li {
    font-size: 15px;
    line-height: 1.6
}

.beneficiaries-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(108deg, #326da9 2%, #326da9 25%, #4fb3b2 70%, #a5da91 108%);
}

.beneficiaries-content {
    position: relative;
    z-index: 1;
}

.beneficiary-decoration {
    position: absolute;
    z-index: 0;
    display: block;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.beneficiary-decoration-left {
    left: 0;
    bottom: 0;
    width: min(93.62vw, 1349px);
    height: auto;
}

.beneficiary-decoration-right {
    top: 0;
    right: 0;
    width: 241px;
    height: 315px;
}

.beneficiary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 31px;
}

.beneficiary-card {
    display: grid;
    grid-template-columns: 166px minmax(0, 1fr);
    gap: 16px;
    min-height: 409px;
    padding: 49px 12px 48px 22px;
    border-radius: 26px;
    background: #fff;
    color: #035b71;
    box-shadow: 0 12px 32px rgba(3, 91, 113, .08);
}

.beneficiary-card>img {
    width: 166px;
    height: 312px;
    border-radius: 19px;
    object-fit: cover;
}

.beneficiary-copy {
    padding-top: 1px;
}

.beneficiary-copy h3 {
    max-width: 180px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.beneficiary-copy p {
    max-width: 188px;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 297px);
    grid-auto-rows: 1fr;
    align-items: stretch;
    justify-content: center;
    justify-items: center;
    gap: 36px
}

.people-section-title {
    font-size: 32px;
    line-height: 31.2px;
    text-transform: uppercase
}

[data-jury-empty-state="true"] .people-section-title {
    font-size: 22px;
    line-height: 1.2;
}

.jury-empty-state {
    max-width: 800px;
    margin: 24px auto 0;
    text-align: center;
}

.jury-empty-members {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
}

.jury-empty-member {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.jury-empty-member img {
    display: block;
    width: 100%;
    max-width: 136px;
    height: auto;
}

.jury-empty-member span {
    width: min(100%, 104px);
    border-radius: 7px;
    background: linear-gradient(90deg, #0c9999 0%, #1bbbd9 57%, #d8e76c 100%);
    color: #fff;
    font-size: 12px;
    line-height: 36px;
}

.jury-empty-state p {
    margin: 40px 80px 0;
    padding: 22px 30px;
    border-radius: 31px;
    background: linear-gradient(267deg, #F3DF01 -27.58%, #00AFF0 38.45%, #0094CC 93.9%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

@media(min-width:640px) and (max-width:800px) {
    .jury-empty-state p {
        margin: 32px 32px 0;
    }
}

@media(max-width:639px) {
    .jury-empty-state {
        margin-top: 20px;
    }

    .jury-empty-state p {
        margin: 24px 0 0;
        padding: 16px 20px;
        font-size: 14px;
        line-height: 1.45;
        border-radius: 20px;
    }

    .jury-empty-members {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 16px 8px;
    }

    .jury-empty-member {
        flex: 0 0 calc(33.333% - 6px);
        max-width: 104px;
        gap: 9px;
    }

    .jury-empty-member img {
        width: 100%;
        max-width: 88px;
        height: auto;
    }

    .jury-empty-member span {
        width: min(100%, 96px);
        font-size: 11px;
        line-height: 30px;
        height: 30px;
        border-radius: 6px;
    }
}

.people-grid.assessors {
    grid-template-columns: repeat(4, 297px);
    gap: 32px
}

.person-card {
    display: flex;
    width: 297px;
    max-width: 100%;
    min-height: 405px;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background: #f7f7f7
}

.person-photo {
    position: relative;
    width: 100%;
    height: 297px;
    overflow: hidden;
    background: lightgray;
}

.people-grid.assessors .person-photo {
    background: linear-gradient(180deg, #f2f15d 26%, #b7e277 62%, #4fb3b2 100%)
}

.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom
}

.person-copy {
    min-height: 108px;
    height: auto;
    flex: 1;
    padding: 16px 18px;
    font-family: inherit
}

.person-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15
}

.person-card p {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.15
}

.person-card.compact p {
    font-size: 14px;
    line-height: 1.25
}

#jury-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
}

#jury-grid .person-card {
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 0;
    border: 0;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

#jury-grid .person-card:focus-visible {
    outline: 3px solid #1c67ab;
    outline-offset: 3px;
}

#jury-grid .person-photo {
    height: auto;
    aspect-ratio: 1 / 1;
}

#jury-grid .person-photo.is-empty {
    background: linear-gradient(135deg, #f3f3f3 0%, #d8d8d8 100%);
}

#jury-grid .person-name {
    display: block;
    font-size: 18px !important;
    font-weight: 600;
    line-height: 1.15;
}

#jury-grid .person-copy {
    min-height: 0;
    height: 165px;
    max-height: 165px;
    flex: 0 0 165px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 12px 14px 14px;
}

#jury-grid .person-role {
    margin-top: 4px;
    font-size: 12px !important;
    line-height: 1.3 !important;
}

#jury-grid .person-description {
    margin-top: 10px;
    color: #333;
    font-size: 11px !important;
    line-height: 1.35 !important;
}

#jury-grid .person-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

#jury-grid .person-description-toggle {
    align-self: flex-start;
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0869b2;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
}

#jury-grid .person-description-toggle:hover,
#jury-grid .person-description-toggle:focus-visible {
    color: #004f89;
}

.jury-dialog {
    width: min(100%, 680px);
}

.jury-modal-content {
    max-height: calc(88vh - 67px);
    overflow: auto;
    padding: 32px 42px 38px;
    color: #1f2937;
}

.jury-modal-content h3 {
    color: #1c67ab;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.jury-modal-content .jury-modal-role {
    margin-top: 6px;
    color: #116a80;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.jury-modal-content .jury-modal-description {
    margin-top: 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.65;
    white-space: pre-line;
}

@media(max-width:639px) {
    .jury-modal-content {
        padding: 26px 22px 30px;
    }

    .jury-modal-content h3 {
        font-size: 23px;
    }

    .jury-modal-content .jury-modal-description {
        font-size: 14px;
    }
}

@media(max-width:900px) {
    #jury-grid {
        grid-template-columns: repeat(2, minmax(0, 297px));
        gap: 24px;
    }
}

@media(max-width:639px) {
    #jury-grid {
        grid-template-columns: minmax(0, 297px);
    }
}

.timeline-section {
    position: relative;
    isolation: isolate;
    padding: 44px clamp(24px, 9.7vw, 139px) 60px;
    overflow: hidden;
    background: linear-gradient(121deg, #f2f15d 6.5%, #4fb3b2 35.5%, #008281 100%)
}

.timeline-content {
    position: relative;
    z-index: 1;
}

.timeline-decoration {
    position: absolute;
    top: 17px;
    z-index: 0;
    display: block;
    width: 254px;
    height: 666px;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.timeline-decoration-left {
    left: 0;
}

.timeline-decoration-right {
    right: 0;
    transform: scaleX(-1);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.timeline-row {
    display: grid;
    align-items: start;
    justify-content: center
}

.timeline-row-top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px
}

.timeline-row-bottom {
    grid-template-columns: repeat(3, minmax(0, 270px));
    width: min(100%, 960px);
    margin: 0 auto;
    gap: 36px
}

.timeline-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-align: center
}

@media(min-width:1024px) {
    .timeline-card:not(:last-child)::after {
        position: absolute;
        top: 145px;
        right: -24px;
        color: rgba(255, 255, 255, .78);
        content: "\2192";
        font-size: 28px;
        line-height: 1;
    }

    .timeline-row-bottom .timeline-card:not(:last-child)::after {
        right: -31px;
    }
}

.timeline-image-wrap {
    display: flex;
    height: 140px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center
}

.timeline-row-bottom .timeline-image-wrap {
    height: 140px;
    align-items: center
}

.timeline-image-wrap img {
    display: block;
    width: 135px;
    max-width: 100%;
    height: 110px;
    max-height: 100%;
    object-fit: contain
}

.timeline-copy {
    display: flex;
    min-height: 76px;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.timeline-card h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -.2px
}

.timeline-card time {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px
}

.timeline-card p {
    display: flex;
    width: min(100%, 240px);
    min-height: 54px;
    padding: 8px 12px;
    align-items: center;
    justify-content: center;
    background: #035b71;
    color: #f2f15d;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.16px
}

.selection-section {
    overflow: hidden;
    background: #fff;
    padding: 82px clamp(20px, 4.8vw, 69px) 92px;
}

.selection-content {
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
}

.selection-content>h2 {
    color: #336ba8;
    font-size: 32px;
    font-weight: 700;
    line-height: .975;
    text-align: center;
    text-transform: uppercase;
}

/*
 * Legacy Alur Penyaringan: overview mobile lama.
 * Dipertahankan agar mudah diaktifkan kembali jika desain berbasis card digunakan lagi.
 */
.selection-mobile-overview {
    display: none;
}

/* End legacy overview mobile. */

/* Alur Penyaringan aktif: satu gambar responsif untuk desktop dan mobile. */
.selection-flow-image {
    display: block;
    width: min(100%, 650px);
    height: auto;
    margin: 50px auto 0;
    object-fit: contain;
}

/*
 * Legacy safety rule untuk menyembunyikan markup flow lama.
 * Tidak lagi aktif karena markup lamanya sudah dihapus dari HTML.
 *
 * .selection-flow[hidden] {
 *     display: none !important;
 * }
 */

/*
 * Legacy Alur Penyaringan desktop: funnel, panah, dan card per tahap.
 * Markup lamanya sudah dihapus karena tersedia di backup; CSS tetap disimpan untuk referensi.
 */
/*
.selection-flow {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 50px;
}

.selection-step {
    display: grid;
    grid-template-columns: minmax(0, 57.3%) minmax(0, 42.7%);
    align-items: center;
}

.selection-funnel-stage {
    position: relative;
    min-height: 118px;
}

.selection-mobile-stat {
    display: none;
}

.selection-funnel-visual {
    position: absolute;
    top: 50%;
    left: 47.3%;
    z-index: 1;
    width: var(--funnel-width);
    transform: translate(-50%, -50%);
}

.selection-funnel-visual>img {
    display: block;
    width: 100%;
    height: auto;
}

.selection-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    left: calc(47.3% + var(--funnel-half) + 10px);
    width: calc(52.7% - var(--funnel-half) - 18px);
    height: 24px;
    transform: translateY(-50%);
}

.selection-card {
    min-height: 118px;
    border-radius: 9px;
    padding: 13px 30px 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.95;
}

.selection-card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.56;
}

.selection-card ul {
    list-style: disc;
    padding-left: 24px;
}

.selection-card p {
    margin: 0;
}

.selection-card-admin {
    background: #035b71;
}

.selection-card-category {
    min-height: 159px;
    background: #00a2b9;
}

.selection-card-quality {
    min-height: 159px;
    background: #326aa7;
}

.selection-card-final {
    min-height: 158px;
    background: #00aff0;
}

.selection-card-feasibility {
    min-height: 153px;
    background: #4fb3b2;
}

.selection-card-winner {
    min-height: 199px;
    background: #f2f15d;
    color: #035b71;
}

.selection-step-admin .selection-funnel-stage {
    min-height: 175px;
}

.selection-step-category .selection-funnel-stage {
    min-height: 159px;
}

.selection-step-quality .selection-funnel-stage {
    min-height: 159px;
}

.selection-step-final .selection-funnel-stage {
    min-height: 158px;
}

.selection-step-feasibility .selection-funnel-stage {
    min-height: 153px;
}

.selection-step-winner .selection-funnel-stage {
    min-height: 199px;
}
*/
/* End legacy Alur Penyaringan desktop. */

@media (max-width: 767px) {
    .selection-section {
        scroll-margin-top: 76px;
        padding: 64px 20px 72px;
    }

    .selection-content>h2 {
        font-size: 25px;
        line-height: 1.1;
    }

    /*
     * Legacy overview mobile lama.
     * Dipertahankan untuk opsi restore desain sebelumnya.
     */
    /*
    .selection-mobile-overview {
        display: block;
        width: min(100%, 330px);
        height: auto;
        margin: 28px auto 0;
        object-fit: contain;
    }
    */

    .selection-flow-image {
        width: 100%;
        margin-top: 28px;
    }

    /*
     * Legacy card Alur Penyaringan mobile.
     * Tidak aktif selama section menggunakan timeline-flow.png.
     */
    /*
    .selection-flow {
        gap: 28px;
        margin-top: 32px;
    }

    .selection-step {
        position: relative;
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        align-items: start;
    }

    .selection-funnel-stage {
        display: none;
    }

    .selection-mobile-stat {
        display: inline-flex;
        width: fit-content;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 4px;
        align-self: start;
        margin-bottom: 10px;
        border: 1px solid rgba(255, 255, 255, .55);
        border-radius: 999px;
        padding: 5px 10px;
        color: #035b71;
        background: rgba(255, 255, 255, .92);
        text-align: center;
        box-shadow: 0 4px 10px rgba(3, 91, 113, .1);
    }

    .selection-mobile-stat strong {
        font-size: 13px;
        font-weight: 700;
        line-height: 1.2;
    }

    .selection-mobile-stat span {
        margin-top: 0;
        font-size: 11px;
        font-weight: 500;
        line-height: 1.2;
    }

    .selection-mobile-stat-winner {
        color: #035b71;
    }

    .selection-card {
        position: relative;
        z-index: 1;
        min-height: 0;
        border-radius: 12px;
        padding: 16px;
        font-size: 13px;
        line-height: 1.55;
    }

    .selection-card h3 {
        margin-bottom: 6px;
        font-size: 16px;
        line-height: 1.35;
    }

    .selection-card ul {
        padding-left: 18px;
    }

    .selection-card li+li {
        margin-top: 3px;
    }
    */
}

.requirements-section {
    padding: 47px clamp(24px, 5.5vw, 79px) 42px;
    background: rgba(0, 181, 248, .24)
}

.requirements-layout {
    display: grid;
    grid-template-columns: minmax(0, 689px) minmax(0, 517px);
    gap: clamp(36px, 5.55vw, 80px);
    width: 100%;
    max-width: 1286px;
    margin: 0 auto;
    align-items: start
}

.requirement-card {
    display: flex;
    min-height: 666px;
    margin-top: 45px;
    flex-direction: column;
    gap: 24px;
    border-radius: 30px;
    padding: 39px 63px 63px 54px;
    color: white;
    background: linear-gradient(111deg, #008396 2.5%, #00a2b9 62%, #f2f15d 110%)
}

.requirement-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.requirement-card h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 31.2px;
    text-transform: uppercase
}

.requirement-card ol {
    list-style: decimal;
    padding-left: 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 31.2px
}

.admin-visuals {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.admin-visual {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain
}

.admin-visual-one {
    max-width: 437px
}

.admin-visual-two {
    max-width: 517px
}

@media(max-width:1199px) {
    .requirements-layout {
        grid-template-columns: 1fr
    }

    .requirement-card {
        width: 100%;
        max-width: 689px;
        min-height: 0;
        margin: 0 auto
    }

    .admin-visuals {
        max-width: 689px;
        margin: 0 auto
    }
}

@media(min-width:900px) and (max-width:1199px) {
    .requirements-section {
        padding-right: 36px;
        padding-left: 36px
    }

    .requirements-layout {
        grid-template-columns: minmax(0, 1.55fr) minmax(260px, .85fr);
        gap: 28px;
        align-items: center
    }

    .requirement-card {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 34px 38px 40px
    }

    .requirement-card h2 {
        font-size: 28px;
        line-height: 1.2
    }

    .admin-visuals {
        max-width: none;
        margin: 0;
        gap: 16px
    }
}

@media(max-width:639px) {
    .requirements-section {
        padding: 36px 20px
    }

    .requirement-card {
        gap: 28px;
        border-radius: 24px;
        padding: 28px 22px 34px
    }

    .requirement-card h2 {
        font-size: 23px;
        line-height: 1.2
    }

    .requirement-card ol {
        padding-left: 24px;
        font-size: 16px;
        line-height: 1.55
    }

    .admin-visuals {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        gap: 12px;
    }

    .admin-visual-one,
    .admin-visual-two {
        width: 100%;
        max-width: none;
    }
}

.winner-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 16px;
    background: #00a2b9;
    box-shadow: 0 12px 30px rgba(0, 91, 135, .12);
    transition: transform .2s ease, box-shadow .2s ease
}

.winner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 91, 135, .2)
}

.winner-card-trigger {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
    background: transparent;
    cursor: pointer
}

.winner-card-trigger:focus-visible {
    outline: 3px solid #f2f15d;
    outline-offset: -5px
}

.winner-image {
    padding: 15px
}

.winner-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 455 / 241;
    object-fit: cover;
    border-radius: 16px
}

.winner-action {
    display: grid;
    min-height: 102px;
    place-items: center;
    padding: 20px;
    background: linear-gradient(90deg, #34c2c0, #f2f15d)
}

.winner-button {
    display: grid;
    width: min(100%, 204px);
    min-height: 40px;
    place-items: center;
    border-radius: 38px;
    color: white;
    background: linear-gradient(180deg, #00aff0, #0086b8);
    font-size: 18px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease
}

.winner-card:hover .winner-button {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 91, 135, .25)
}

.winner-modal-close:focus-visible {
    outline: 3px solid #f2f15d;
    outline-offset: 3px
}

.winner-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(3, 45, 72, .62);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .25s ease
}

.winner-modal[hidden] {
    display: none
}

.winner-modal.open {
    opacity: 1
}

.winner-dialog {
    width: min(100%, 1100px);
    max-height: min(88vh, 760px);
    overflow: hidden;
    border-radius: 30px;
    background: white;
    box-shadow: 0 24px 70px rgba(3, 45, 72, .32);
    transform: translateY(20px) scale(.98);
    transition: transform .25s ease
}

.winner-modal.open .winner-dialog {
    transform: translateY(0) scale(1)
}

.winner-modal-header {
    position: relative;
    display: flex;
    min-height: 67px;
    align-items: center;
    padding: 12px 70px 12px 37px;
    color: white;
    background: linear-gradient(268deg, #f2f15d 5.9%, #4fb3b2 13%, #1c68ab 56.7%, #1963ab 100%)
}

.winner-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 31.2px
}

.winner-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    color: white;
    background: #185f9d;
    box-shadow: 0 5px 14px rgba(14, 58, 96, .28);
    font-family: Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease
}

.winner-modal-close:hover {
    color: #185f9d;
    background: #f2f15d;
    box-shadow: 0 7px 18px rgba(14, 58, 96, .34);
    transform: rotate(90deg)
}

.winner-table-wrap {
    max-height: calc(min(88vh, 760px) - 67px);
    overflow: auto
}

.winner-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #1c67ab;
    font-size: 14px;
    line-height: 1.5
}

.winner-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 67px;
    padding: 14px 20px;
    background: #c1d8e9;
    text-align: left;
    font-weight: 700
}

.winner-table th:first-child,
.winner-table td:first-child {
    width: 6%;
    text-align: center
}

.winner-table th:nth-child(2) {
    width: 20%
}

.winner-table th:nth-child(3) {
    width: 10%
}

.winner-table th:nth-child(4) {
    width: 28%
}

.winner-table th:nth-child(5) {
    width: 36%
}

.winner-table td {
    padding: 12px 16px;
    vertical-align: top;
    border-right: 1px solid #1c67ab;
    border-bottom: 1px solid #1c67ab;
    background: white;
    font-weight: 500
}

.winner-table td:last-child {
    border-right: 0
}

.winner-modal-empty {
    padding: 70px 24px;
    color: #1c67ab;
    text-align: center;
    font-size: 18px;
    font-weight: 600
}

body.modal-open {
    overflow: hidden
}

.faq-item {
    border-radius: 14px;
    background: white;
    color: #2f6aa8;
    overflow: hidden
}

.faq-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    text-align: left;
    font-size: 18px;
    font-weight: 700
}

.faq-plus {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    height: 34px;
    margin-left: 16px;
    border-radius: 50%;
    color: white;
    background: #2f6aa8;
    font-size: 0;
    transition: transform .25s
}

.faq-plus::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: currentColor;
    -webkit-mask: url("../assets/ic--round-plus.svg") center / contain no-repeat;
    mask: url("../assets/ic--round-plus.svg") center / contain no-repeat;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: #334155;
    transition: max-height .35s, padding .35s
}

.faq-item.open .faq-answer {
    max-height: 160px;
    padding: 0 22px 20px
}

.faq-item.open .faq-plus {
    transform: none
}

.faq-item.open .faq-plus::before {
    -webkit-mask-image: url("../assets/ic--round-minus.svg");
    mask-image: url("../assets/ic--round-minus.svg");
}

.faq-page .faq-panel {
    /* min-height: 1119px; */
    border-radius: 10px;
    padding: 39px 38px 48px;
    background: #f5f5f5;
}

.faq-page .faq-item {
    overflow: visible;
    border-bottom: 1px solid #2f7fba;
    border-radius: 0;
    background: transparent;
    color: #326aa7;
}

.faq-page .faq-button {
    min-height: 45px;
    padding: 7px 0 4px;
    gap: 20px;
    color: #326aa7;
    font-size: 16px;
    line-height: 1.55;
}

.faq-page .faq-plus {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    margin-left: 0;
    background: #2f79b5;
    font-size: 0;
    line-height: 1;
    transform: none;
}

.faq-page .faq-plus::before {
    width: 18px;
    height: 18px;
}

.faq-page .faq-answer {
    max-height: 0;
    padding: 0;
    color: #1c67ab;
    font-size: 16px;
    line-height: 25px;
    opacity: 0;
    transition: max-height .35s ease, padding .35s ease, opacity .25s ease;
}

.faq-page .faq-answer p {
    max-width: 897px;
}

.faq-page .faq-item.open .faq-answer {
    max-height: 360px;
    padding: 0 43px 12px 0;
    opacity: 1;
}

.faq-page .faq-item.open .faq-plus {
    transform: none;
}

.faq-page .faq-item.open .faq-plus::before {
    -webkit-mask-image: url("../assets/ic--round-minus.svg");
    mask-image: url("../assets/ic--round-minus.svg");
}

@media(max-width:639px) {
    .faq-page .faq-panel {
        min-height: 0;
        padding: 20px 18px 28px;
    }

    .faq-page .faq-button {
        min-height: 48px;
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-page .faq-plus {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }

    .faq-page .faq-answer {
        font-size: 14px;
        line-height: 1.55;
    }

    .faq-page .faq-item.open .faq-answer {
        padding-right: 0;
    }
}

.home-faq-section {
    background: linear-gradient(108deg, #2f6aa8 3%, #2f6aa8 39%, #4fb3b2 78%, #f2f15d 116%);
}

.home-faq-card {
    align-self: start;
    min-height: 69px;
    border-radius: 10px;
    background: #fff;
    color: #2f6aa8;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-faq-card.open {
    height: 100%;
    align-self: stretch;
}

.home-faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(8, 61, 113, .2);
}

.home-faq-button {
    min-height: 69px;
    gap: 10px;
    padding: 17px 14px;
    font-size: 20px;
    line-height: 1.25;
}

@media(min-width:1280px) {
    .home-faq-button>span:first-child {
        white-space: nowrap;
    }
}

.home-faq-plus {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    background: #2f6aa8;
    color: #fff;
    font-size: 0;
    line-height: 1;
    transition: transform .3s ease;
}

.home-faq-icon {
    display: block;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.home-faq-icon-minus {
    display: none;
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 21px;
    color: #334155;
    font-size: 15px;
    line-height: 1.55;
    opacity: 0;
    transition: max-height .35s ease, padding .35s ease, opacity .25s ease;
}

.home-faq-card.open .home-faq-answer {
    max-height: 180px;
    padding: 0 21px 20px;
    opacity: 1;
}

.home-faq-card.open .home-faq-plus {
    transform: none;
}

.home-faq-card.open .home-faq-icon-plus {
    display: none;
}

.home-faq-card.open .home-faq-icon-minus {
    display: block;
}

.home-faq-more {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 11px;
    border-radius: 999px;
    background: linear-gradient(100deg, #f2f15d 4%, #48d2d0 100%);
    padding: 8px 15px 8px 21px;
    color: #2f6aa8;
    font-size: 16px;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-faq-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(8, 61, 113, .22);
}

.home-faq-arrow {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.contact-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-decoration {
    position: absolute;
    bottom: 0;
    z-index: 0;
    display: block;
    max-width: none;
    object-fit: contain;
    opacity: .55;
    pointer-events: none;
    user-select: none;
}

.contact-decoration-left {
    left: 0;
    width: 514px;
    height: 704px;
}

.contact-decoration-right {
    right: 0;
    width: 370px;
    height: 584px;
}

@media(max-width:1023px) {
    .contact-decoration {
        opacity: .38;
    }

    .contact-decoration-left {
        left: -165px;
    }

    .contact-decoration-right {
        right: -125px;
    }
}

.contact-input {
    display: block;
    width: 100%;
    height: 43px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #fff;
    padding: 0 18px;
    color: #334155;
    font-size: 12px;
    line-height: 1.5;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-input::placeholder {
    color: #999;
    opacity: 1;
}

.contact-input:focus {
    border-color: #2f6aa8;
    box-shadow: 0 0 0 3px rgba(47, 106, 168, .2);
}

.contact-input.contact-message {
    height: 163px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(184.2069deg, #ff0 27.016%, #00aff0 122.43%);
    padding: 12px 21px;
    color: #326aa7;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact-submit img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    object-fit: contain;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(50, 106, 167, .2);
    filter: saturate(1.05);
}

.contact-submit:focus-visible {
    outline: 3px solid rgba(50, 106, 167, .35);
    outline-offset: 3px;
}

.contact-submit:active {
    transform: translateY(0);
}

.site-footer {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 155px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
    color: #121212;
}

.footer-energy {
    position: absolute;
    top: 4px;
    z-index: 0;
    width: 479px;
    height: 151px;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.footer-energy-left {
    left: -55px;
}

.footer-energy-right {
    right: -55px;
    transform: scaleX(-1);
}

.footer-center {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 480px);
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
}

.footer-pln-logo {
    display: block;
    width: 144px;
    height: 51px;
    object-fit: contain;
}

.footer-center p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.41;
}

@media(max-width:1199px) {
    .footer-energy {
        top: 18px;
        width: 380px;
        height: auto;
        opacity: .8;
    }

    .footer-energy-left {
        left: -170px;
    }

    .footer-energy-right {
        right: -170px;
    }
}

@media(max-width:767px) {
    .site-footer {
        min-height: 170px;
    }

    .footer-energy {
        top: 19px;
        width: 300px;
        height: auto;
        opacity: .5;
    }

    .footer-energy-left {
        left: -225px;
    }

    .footer-energy-right {
        right: -225px;
    }

    .footer-center {
        gap: 10px;
        padding: 24px 54px;
    }

    .footer-pln-logo {
        width: 120px;
        height: 43px;
    }

    .footer-center p {
        font-size: 12px;
    }
}

@media (max-width: 639px) {
    .contact-decoration {
        opacity: .3;
    }

    .contact-decoration-left {
        left: -285px;
        width: 430px;
        height: auto;
    }

    .contact-decoration-right {
        right: -210px;
        width: 320px;
        height: auto;
    }

    .home-faq-button {
        min-height: 64px;
        padding: 15px 16px;
        font-size: 16px;
    }

    .home-faq-card.open .home-faq-answer {
        padding: 0 16px 17px;
    }
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 16px;
    transform: translateX(-50%)
}

.scroll-cue span {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: white;
    transform: translateX(-50%);
    animation: scrollCue 1.8s infinite
}

@keyframes scrollCue {
    0% {
        opacity: 0;
        transform: translate(-50%, 0)
    }

    40% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 16px)
    }
}

@media(max-width:1199px) {
    .beneficiary-decoration-left {
        width: 1120px;
        max-width: none;
        opacity: .72;
    }

    .beneficiary-decoration-right {
        right: -50px;
        opacity: .72;
    }

    .beneficiary-grid {
        gap: 20px
    }

    .beneficiary-card {
        grid-template-columns: 135px 1fr;
        padding-left: 18px
    }

    .beneficiary-card>img {
        width: 135px
    }
}

@media(max-width:1023px) {
    .timeline-decoration {
        width: 230px;
        height: auto;
        opacity: .68;
    }

    .timeline-decoration-left {
        left: -70px;
    }

    .timeline-decoration-right {
        right: -70px;
    }

    .people-grid,
    .people-grid.assessors {
        grid-template-columns: repeat(2, 297px)
    }

    .timeline-row-top,
    .timeline-row-bottom {
        grid-template-columns: repeat(2, minmax(0, 270px));
        width: 100%;
        gap: 36px 24px
    }

    .timeline-row-bottom .timeline-card:last-child {
        grid-column: 1 / -1
    }

    .award-card,
    .award-card:nth-child(n) {
        grid-column: span 1
    }

    .beneficiary-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto
    }

    .beneficiary-card {
        grid-template-columns: 166px 1fr;
        min-height: 360px;
        padding-right: 28px
    }

    .beneficiary-card>img {
        width: 166px
    }

    .beneficiary-copy h3,
    .beneficiary-copy p {
        max-width: none
    }
}

@media(min-width:768px) and (max-width:1279px) {
    #award-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .award-card,
    .award-card:nth-child(n) {
        grid-column: span 1;
        width: 100%;
    }

    .award-card:nth-child(5) {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        justify-self: center;
    }
}

@media(max-width:767px) {
    .timeline-section {
        padding: 48px 16px 56px;
    }

    .timeline-content>h2 {
        font-size: 26px;
        line-height: 1.1;
    }

    .timeline-decoration {
        top: 90px;
        width: 205px;
        opacity: .42;
    }

    .timeline-decoration-left {
        left: -112px;
    }

    .timeline-decoration-right {
        right: -112px;
    }

    .beneficiary-decoration-left {
        left: -360px;
        width: 980px;
        opacity: .45;
    }

    .beneficiary-decoration-right {
        top: -35px;
        right: -105px;
        width: 210px;
        height: auto;
        opacity: .5;
    }

    .people-grid,
    .people-grid.assessors {
        grid-template-columns: 1fr
    }

    .timeline-row-top,
    .timeline-row-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 14px
    }

    .timeline {
        gap: 30px
    }

    .timeline-image-wrap,
    .timeline-row-bottom .timeline-image-wrap {
        height: 95px;
        margin-bottom: 10px;
        align-items: center
    }

    .timeline-image-wrap img {
        width: 125px;
        height: 90px
    }

    .timeline-card h3 {
        font-size: 14px;
        line-height: 1.25;
        letter-spacing: -.14px
    }

    .timeline-card time {
        font-size: 11px;
        line-height: 1.3;
        margin-bottom: 7px
    }

    .timeline-card p {
        max-width: 170px;
        font-size: 11px;
        line-height: 1.35;
        letter-spacing: -.11px
    }

    .timeline-copy {
        gap: 3px
    }

    .timeline-row-bottom .timeline-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 7px)
    }

    .participant-card {
        margin-top: 80px
    }

    .nav-brand {
        width: 112px;
        height: 50px
    }

    .hero-logo {
        width: min(350px, 82vw)
    }

    .hero-copy {
        margin-top: 12px;
        gap: 30px
    }

    .hero-copy p {
        font-size: 13px;
        line-height: 1.35
    }

    .hero-cta {
        width: 168px;
        min-height: 44px;
        font-size: 14px
    }

    .winner-modal {
        padding: 14px
    }

    .winner-dialog {
        max-height: 92vh;
        border-radius: 22px
    }

    .winner-modal-header {
        min-height: 64px;
        padding: 12px 58px 12px 20px
    }

    .winner-modal-header h2 {
        font-size: 18px;
        line-height: 1.3
    }

    .winner-modal-close {
        top: 11px;
        right: 12px;
        width: 40px;
        height: 40px
    }

    .winner-table-wrap {
        max-height: calc(92vh - 64px)
    }

    .winner-table {
        min-width: 1000px
    }

    .section-title {
        font-size: 28px
    }

    .beneficiary-card {
        grid-template-columns: 1fr;
        padding: 22px;
        min-height: 0
    }

    .beneficiary-card>img {
        width: 100%;
        height: 260px
    }

    .beneficiary-copy {
        padding: 4px 4px 8px
    }

    .beneficiary-copy h3 {
        font-size: 20px
    }

    .beneficiary-copy p {
        font-size: 15px
    }

    .beneficiaries-section h2 {
        font-size: 28px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .scroll-cue span {
        animation: none
    }

    * {
        transition: none !important
    }
}

/* Shared typography system */
body h1 {
    font-size: var(--type-page-title) !important;
    font-weight: 700;
    line-height: var(--leading-heading) !important;
}

body h2 {
    font-size: var(--type-section-title) !important;
    font-weight: 700;
    line-height: var(--leading-heading) !important;
}

body p {
    font-size: var(--type-body) !important;
    line-height: var(--leading-body) !important;
}

.hero-message h1 {
    font-size: 20px !important;
    line-height: var(--leading-tight) !important;
}

.winner-modal-header h2,
.form-success-dialog h2 {
    font-size: var(--type-component-title) !important;
}

#registration-form>header h2 {
    font-size: 20px !important;
    line-height: var(--leading-card) !important;
}

.award-card h3,
.participant-card h3,
.beneficiary-copy h3,
.person-card h3,
.selection-card h3,
.timeline-card h3 {
    font-size: var(--type-card-title) !important;
    line-height: var(--leading-tight) !important;
}

.award-card p,
.participant-card p,
.participant-card li,
.beneficiary-copy p,
.person-card p,
.selection-card p,
.selection-card li {
    font-size: var(--type-card) !important;
    line-height: var(--leading-card) !important;
}

.timeline-card p {
    font-size: 14px !important;
    line-height: var(--leading-card) !important;
}

.requirement-card li,
.category-modal-content li {
    font-size: var(--type-body) !important;
    line-height: var(--leading-body) !important;
}

#registration-form p {
    font-size: var(--type-caption) !important;
    line-height: var(--leading-caption) !important;
}

.footer-center p {
    font-size: 14px !important;
    line-height: var(--leading-caption) !important;
}

@media(max-width:767px) {
    .timeline-card p {
        font-size: var(--type-caption) !important;
        line-height: var(--leading-caption) !important;
    }

    .timeline-card h3 {
        font-size: var(--type-compact-title) !important;
    }

    .footer-center p {
        font-size: var(--type-caption) !important;
    }
}

/* Sticky timeline summary — geometry follows Figma node 825:4683 (878.0645 × 100). */
.sticky-timeline {
    --sticky-active-inset: 15px;
    position: fixed;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    z-index: 45;
    width: min(878.0645px, calc(100% - 20px));
    height: 100px;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(90deg, #058685 0%, #4cb199 63.462%, #51ccbf 100%);
    box-shadow: 0 3px 10px rgba(2, 55, 72, .16), 0 12px 32px rgba(2, 55, 72, .22);
    color: #86dace;
    font-family: Raleway, sans-serif;
    transition: height .25s ease, opacity .25s ease, transform .25s ease;
}

.sticky-timeline.is-hidden {
    opacity: 0;
    transform: translateY(calc(100% + 16px));
    pointer-events: none;
}

.sticky-timeline-toggle {
    display: none;
}

.sticky-timeline-scroll {
    width: 100%;
    height: 100px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}

.sticky-timeline-scroll::-webkit-scrollbar {
    display: none;
}

.sticky-timeline-scroll:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

.sticky-timeline-track {
    position: relative;
    width: 878.0645px;
    height: 100px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sticky-timeline-track::before,
.sticky-timeline-track::after {
    position: absolute;
    z-index: 0;
    top: 78.07px;
    left: 68.7066px;
    height: 2px;
    border-radius: 999px;
    content: "";
}

.sticky-timeline-track::before {
    width: 744.3198px;
    background: rgba(134, 218, 206, .72);
}

.sticky-timeline-track::after {
    width: var(--sticky-progress-width, 0px);
    background: #fff;
    transition: width .45s ease;
}

.sticky-timeline-item {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 120px;
    height: 100px;
    text-align: center;
    transition: color .3s ease;
}

.sticky-timeline-item:nth-child(1) { left: 26px; width: 95.582px; }
.sticky-timeline-item:nth-child(2) { left: 133.784px; width: 119.986px; }
.sticky-timeline-item:nth-child(3) { left: 266px; width: 120px; }
.sticky-timeline-item:nth-child(4) { left: 398.16px; width: 119.986px; }
.sticky-timeline-item:nth-child(5) { left: 530.348px; width: 108.801px; }
.sticky-timeline-item:nth-child(6) { left: 651.351px; width: 84.397px; }
.sticky-timeline-item:nth-child(7) { left: 748px; width: 120px; }

.sticky-timeline-copy {
    position: absolute;
    top: 14px;
    left: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 4.067px;
}

.sticky-timeline-title {
    display: flex;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    word-break: break-word;
}

.sticky-timeline-date {
    display: block;
    width: 100%;
    font-size: 10px;
    font-weight: 500;
    line-height: 11px;
}

.sticky-timeline-marker {
    position: absolute;
    top: 75.007px;
    display: block;
    width: 8.135px;
    height: 8.135px;
    border-radius: 50%;
    background: #86dace;
    transform: translateX(-50%);
}

.sticky-timeline-item:nth-child(1) .sticky-timeline-marker { left: 42.776px; }
.sticky-timeline-item:nth-child(2) .sticky-timeline-marker { left: 59.993px; }
.sticky-timeline-item:nth-child(3) .sticky-timeline-marker { left: 60px; }
.sticky-timeline-item:nth-child(4) .sticky-timeline-marker { left: 55.925px; }
.sticky-timeline-item:nth-child(5) .sticky-timeline-marker { left: 54.909px; }
.sticky-timeline-item:nth-child(6) .sticky-timeline-marker { left: 42.706px; }
.sticky-timeline-item:nth-child(7) .sticky-timeline-marker { left: 65.027px; }

.sticky-timeline-item.is-active {
    color: #fff;
}

.sticky-timeline-item.is-active .sticky-timeline-marker {
    background: #fff;
}

.sticky-timeline-item.is-complete {
    color: rgba(255, 255, 255, .62);
}

.sticky-timeline-item.is-complete .sticky-timeline-marker {
    background: rgba(255, 255, 255, .72);
}

@media(max-width:1022px) {
    .sticky-timeline-scroll {
        scroll-padding-inline-start: var(--sticky-active-inset);
        scroll-snap-type: x proximity;
    }

    .sticky-timeline-item {
        scroll-snap-align: start;
    }

    .has-sticky-timeline #back-to-top {
        bottom: 118px !important;
    }

    .has-sticky-timeline.sticky-timeline-hidden #back-to-top {
        bottom: 16px !important;
    }
}

@media(max-width:767px) {
    .sticky-timeline {
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: visible;
        border-radius: 0;
    }

    .sticky-timeline-title {
        min-height: 24px;
        font-size: 12px;
        line-height: 12px;
    }

    .sticky-timeline-date {
        font-size: 10px;
        line-height: 11px;
    }

    .sticky-timeline-toggle {
        position: absolute;
        top: -13px;
        left: 50%;
        z-index: 5;
        display: grid;
        width: 24px;
        height: 24px;
        place-items: center;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 2px 8px rgba(2, 55, 72, .2);
        transform: translateX(-50%);
        cursor: pointer;
    }

    .sticky-timeline-toggle img {
        display: block;
        width: 12px;
        height: 12px;
        filter: brightness(0) saturate(100%) invert(36%) sepia(61%) saturate(1137%) hue-rotate(134deg) brightness(91%) contrast(96%);
        transition: transform .2s ease;
    }

    .sticky-timeline.is-collapsed {
        height: 15px;
    }

    .sticky-timeline.is-collapsed .sticky-timeline-scroll {
        opacity: 0;
        pointer-events: none;
    }

    .sticky-timeline.is-collapsed .sticky-timeline-toggle img {
        transform: rotate(180deg);
    }

    .has-sticky-timeline.sticky-timeline-collapsed #back-to-top {
        bottom: 46px !important;
    }

    .has-sticky-timeline.sticky-timeline-hidden #back-to-top {
        bottom: 16px !important;
    }
}
