        :root {
            --pink: #F100CC;
            --purple: #6617ef;
            --blue: #0d38f2;
            --blue-dark: #0716c9;
            --text: #111111;
            --muted: #686868;
            --soft: #f6f6f6;
            --line: #d8d8d8;
            --gold: #f5c542;
            --gold-light: #ffeb4f;
            --banner: #b1a2a4;
            --container: 1180px;
            --font: Arial, Helvetica, sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font);
            color: var(--text);
            background: #ffffff;
            line-height: 1.35;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(100% - 48px, var(--container));
            margin-inline: auto;
        }

        .top-banner {
            width: 100%;
            aspect-ratio: 1920 / 760;
            min-height: 0;
            max-height: 760px;
            background: var(--banner);
            position: relative;
            display: block;
            overflow: hidden;
        }

        .top-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .top-banner::after {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: rgba(255, 255, 255, 0.55);
            font-size: clamp(2rem, 5vw, 5rem);
            font-weight: 800;
            letter-spacing: 0.08em;
        }

        .intro-section {
            padding: clamp(36px, 5vw, 54px) 0 20px;
            background: #fff;
        }

        .intro-grid {
            display: flex;
            gap: clamp(28px, 5vw, 58px);
            align-items: center;
            justify-content: space-between;
        }

        .intro-grid>* {
            flex: 1 1 0;
            min-width: 0;
        }

        .intro-image {
            min-height: clamp(240px, 30vw, 330px);
        }

        .intro-image img {
            width: min(100%, 520px);
            max-height: 300px;
            object-fit: contain;
        }

        .intro-content {
            max-width: 520px;
            font-size: 15px;
            letter-spacing: 0.01em;
            text-align: justify;
        }

        .intro-content p {
            margin: 0 0 16px;
        }

        .intro-content strong {
            display: block;
            margin-top: 18px;
            margin-bottom: 2px;
            font-weight: 800;
        }

        .section {
            padding: 20px 0;
        }

        .section-title-wrap {
            text-align: center;
            margin-bottom: 28px;
        }

        .title-line {
            width: 68px;
            height: 4px;
            margin: 0 auto 40px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--pink), var(--purple), #0c7cff);
        }

        .section-title {
            margin: 0;
            color: #6b6b6b;
            font-size: clamp(1.9rem, 4vw, 2.5rem);
            line-height: 1.05;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .objectives-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 36px 72px;
            max-width: 920px;
            margin: 0 auto;
        }

        .objectives-grid>.objective-item {
            flex: 1 1 calc(50% - 36px);
            min-width: 360px;
        }

        .objective-item {
            display: flex;
            gap: 18px;
            align-items: center;
        }

        .objective-number {
            flex: 0 0 96px;
        }

        .objective-number {
            color: #fff;
            -webkit-text-stroke: 1.5px var(--pink);
            font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1;
            font-weight: bold;
        }

        .objective-text {
            margin: 0;
            font-size: 20px;
            line-height: 1.1;
        }

        .award-stage {
            min-height: 500px;
            position: relative;
            margin-top: 28px;
        }

        .award-card {
            --size: 180px;
            width: var(--size);
            height: calc(var(--size) * 1.15);
            position: absolute;
            text-align: center;
            background: transparent;
            filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.05));
        }

        .award-shape {
            position: absolute;
            inset: 22px 0 0;
            width: 100%;
            height: calc(100% - 22px);
            object-fit: contain;
            z-index: 0;
            pointer-events: none;
        }

        .award-card.center {
            --size: 180px;
            left: 50%;
            top: 42px;
            transform: translateX(-50%);
        }

        .award-card.left-1 {
            left: 7%;
            top: 260px;
        }

        .award-card.left-2 {
            left: 24%;
            top: 150px;
        }

        .award-card.right-1 {
            right: 24%;
            top: 150px;
        }

        .award-card.right-2 {
            right: 7%;
            top: 260px;
        }

        .medal {
            width: 72px;
            height: 72px;
            position: absolute;
            left: 50%;
            top: -16px;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .medal img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .medal span {
            position: relative;
            z-index: 1;
            color: #fff;
            font-family: Georgia, serif;
            font-size: 2.25rem;
            line-height: 1;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
        }

        .award-content {
            position: absolute;
            left: 50%;
            top: calc(22px + ((100% - 22px) * 0.52));
            z-index: 1;
            width: 76%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .award-card h3 {
            max-width: 118px;
            margin: 0 auto;
            font-size: 15px;
            line-height: 1.05;
        }

        .award-card p {
            max-width: 112px;
            margin: 7px auto 0;
            font-size: 10px;
            line-height: 1.1;
        }

        .curation-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            max-width: 1080px;
            margin: 0 auto;
            justify-content: center;
            align-items: stretch;
        }

        .curation-grid>.curation-card {
            flex: 1 1 calc(20% - 13px);
            min-width: 185px;
            max-width: 210px;
        }

        .curation-card {
            min-height: 170px;
            background: #fff;
            border-radius: 6px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
            overflow: hidden;
        }

        .curation-head {
            min-height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 8px;
            color: #fff;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            font-weight: 800;
            text-align: center;
            font-size: 15px;
            line-height: 1.1;
        }

        .curation-card p {
            margin: 0;
            padding: 24px 18px 18px;
            text-align: center;
            font-size: 13px;
            line-height: 1.18;
        }

        .curation-note {
            max-width: 650px;
            margin: 28px auto 0;
            text-align: center;
            font-size: 13px;
            font-weight: 800;
            font-style: italic;
        }

        /* Evaluation Criteria */
        .criteria-layout {
            max-width: 980px;
            min-height: 300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .criteria-layout>.criteria-side {
            flex: 1 1 0;
            min-width: 250px;
        }

        .criteria-center {
            width: 330px;
            position: relative;
        }

        .criteria-center img {
            width: 100%;
            height: auto;
            display: block;
        }

        .criteria-side {
            display: flex;
            flex-direction: column;
            gap: 72px;
        }

        .criteria-item {
            display: block;
        }

        .criteria-left {
            text-align: right;
        }

        .criteria-right {
            text-align: left;
        }

        .criteria-copy h3 {
            margin: 0 0 5px;
            font-size: 20px;
            line-height: 1.05;
        }

        .criteria-copy p {
            margin: 0;
            font-size: 15px;
            line-height: 1.16;
        }

        .judges-section {
            padding: 64px 0 56px;
            color: #fff;
            background: linear-gradient(135deg, var(--blue-dark), #0877ff);
        }

        .judges-section .section-title {
            color: #fff;
        }

        .judges-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 42px 32px;
            max-width: 1080px;
            margin: 44px auto 0;
            align-items: flex-start;
            justify-content: center;
        }

        .judges-grid>.judge-card {
            flex: 0 1 calc(25% - 24px);
            min-width: 210px;
        }

        .judge-card {
            position: relative;
            min-height: 285px;
            text-align: center;
            padding: 0 14px 22px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .judge-card::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 118px;
            transform: translateX(-50%);
            width: 100%;
            max-width: 235px;
            height: calc(100% - 118px);
            border-radius: 18px;
            z-index: 0;
        }

        .judge-photo {
            position: relative;
            width: 108px;
            height: 182px;
            margin: 0 auto;
            border-radius: 0 50px 0 0;
            overflow: visible;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.95) 0%,
                    rgba(255, 255, 255, 0.95) 6%,
                    rgba(255, 255, 255, 0.35) 39%,
                    rgba(255, 255, 255, 0) 100%);
            z-index: 1;
        }

        .judge-photo img {
            position: absolute;
            left: 50%;
            bottom: 0;
            max-width: none;
            transform: translateX(-50%);
            object-fit: contain;
            object-position: center bottom;
            z-index: 2;
        }

        .judge-card:nth-child(2) .judge-photo {
            width: 108px;
            height: 182px;
            overflow: hidden;
            border-radius: 0 50px 0 0;
        }

        .judge-card:nth-child(2) .judge-photo img {
            width: 117px;
            height: 92%;
            max-width: 100%;
            left: 0;
            bottom: 0;
            transform: none;
            object-fit: cover;
            object-position: center top;
            border-radius: 0 50px 0 0;
        }

        .judge-card:nth-child(7) .judge-photo img {
            left: 34%;
        }

        .judge-name {
            position: relative;
            z-index: 3;
            width: 180px;
            min-height: 30px;
            margin: -14px auto 10px;
            padding: 7px 16px 6px;
            border-radius: 999px;
            color: #fff;
            background: linear-gradient(90deg,
                    #140097 0%,
                    #140097 50%,
                    var(--pink) 100%);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
            font-size: 14px;
            line-height: 1.1;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 700;
        }

        .judge-role {
            position: relative;
            z-index: 3;
            max-width: 220px;
            min-height: 64px;
            margin: 0 auto;
            padding: 8px 10px 0;
            font-size: 13px;
            line-height: 1.3;
        }

        .timeline-line-wrap {
            max-width: 980px;
            margin: 44px auto 0;
            position: relative;
            min-height: 170px;
        }

        .timeline-line {
            position: absolute;
            top: 46px;
            left: 0;
            right: 0;
            border-top: 2px dotted #8a8a8a;
            z-index: 0;
        }

        .timeline-line::before,
        .timeline-line::after {
            content: "";
            position: absolute;
            top: -5px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #777777;
        }

        .timeline-line::before {
            left: 0;
        }

        .timeline-line::after {
            right: 0;
        }

        .timeline-items {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 120px;
        }

        .timeline-item {
            position: relative;
            display: grid;
            grid-template-rows: 46px 42px 74px;
            text-align: center;
        }

        .timeline-item h3 {
            margin: 0;
            font-size: 16px;
            line-height: 1.05;
            font-weight: 900;
            text-transform: uppercase;
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 48px;
            height: 34px;
            border-left: 2px dotted #2524ff;
            transform: translateX(-50%);
            z-index: 1;
        }

        .timeline-dot {
            width: 7px;
            height: 7px;
            margin: 0 auto;
            align-self: end;
            border-radius: 50%;
            background: #0700ff;
            position: relative;
            z-index: 2;
        }

        .timeline-dot::before {
            display: none;
        }

        .timeline-date-box {
            width: 100%;
            min-height: 74px;
            margin-top: 18px;
            display: grid;
            place-items: center;
            border-radius: 0 0 5px 5px;
            background: #fff;
            box-shadow: 0 3px 8px rgba(0, 0, 0, .12);
            font-size: 18px;
            font-weight: 600;
            line-height: 1.1;
        }


        .call-box {
            max-width: 820px;
            min-height: 210px;
            margin: 36px auto 0;
            padding: 30px 58px;
            border-radius: 6px;
            background: linear-gradient(135deg, #60a5fa, #93c5fd);
            color: #fff;
        }

        .call-box h3 {
            margin: 0 0 16px;
            font-size: 20px;
        }

        .call-box ul {
            margin: 0;
            padding-left: 22px;
            font-size: 20px;
        }

        .call-actions {
            margin-top: 22px;
            gap: 12px;
            text-align: center;
        }

        .btn {
            position: relative;
            display: inline-flex;
            min-height: 42px;
            align-items: center;
            justify-content: center;
            padding: 0 22px;
            border-radius: 999px;
            border: 0;
            overflow: hidden;
            isolation: isolate;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 8px 18px rgba(102, 23, 239, 0.22);
            transition:
                transform 0.22s ease,
                box-shadow 0.22s ease,
                filter 0.22s ease;
        }

        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -80%;
            z-index: -1;
            width: 55%;
            height: 100%;
            background: linear-gradient(120deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.35) 50%,
                    transparent 100%);
            transform: skewX(-22deg);
            transition: left 0.55s ease;
        }

        .btn:hover,
        .btn:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 12px 26px rgba(241, 0, 204, 0.28);
            filter: brightness(1.05);
        }

        .btn:hover::before,
        .btn:focus-visible::before {
            left: 130%;
        }

        .btn:active {
            transform: translateY(0) scale(0.98);
        }



        /* Floating Nomination Button + Dialog */
        .nominate-fixed-btn {
            position: fixed;
            right: 24px;
            bottom: 28px;
            z-index: 999;
            min-height: 42px;
            padding: 0 18px;
            border: 0;
            border-radius: 999px;
            color: #fff;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
            font-size: 13px;
            font-weight: 900;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            cursor: pointer;
        }

        /* Nominate fixed button - subtle attention effect */
        .nominate-fixed-btn {
            position: fixed;
            overflow: hidden;
            isolation: isolate;
            animation: nominatePulse 2.4s ease-in-out infinite;
            transition:
                transform 0.22s ease,
                box-shadow 0.22s ease,
                filter 0.22s ease;
        }

        .nominate-fixed-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -80%;
            z-index: -1;
            width: 55%;
            height: 100%;
            background: linear-gradient(120deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.35) 50%,
                    transparent 100%);
            transform: skewX(-22deg);
            animation: nominateShine 3.2s ease-in-out infinite;
        }

        .nominate-fixed-btn:hover,
        .nominate-fixed-btn:focus-visible {
            transform: translateY(-3px) scale(1.035);
            box-shadow: 0 12px 28px rgba(241, 0, 204, 0.34);
            filter: brightness(1.05);
        }

        .nominate-fixed-btn:active {
            transform: translateY(-1px) scale(0.98);
        }

        @keyframes nominatePulse {

            0%,
            100% {
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
            }

            50% {
                box-shadow:
                    0 10px 26px rgba(241, 0, 204, 0.28),
                    0 0 0 7px rgba(241, 0, 204, 0.08);
            }
        }

        @keyframes nominateShine {
            0% {
                left: -80%;
            }

            45%,
            100% {
                left: 130%;
            }
        }

        /* Reduce animation for users who prefer less motion */
        @media (prefers-reduced-motion: reduce) {

            .nominate-fixed-btn,
            .nominate-fixed-btn::before {
                animation: none;
            }
        }

        .nomination-modal {
            position: fixed;
            inset: 0;
            z-index: 1100;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 22px;
            background: rgba(0, 0, 0, 0.45);
        }

        .nomination-modal.is-open {
            display: flex;
        }

        .nomination-dialog {
            width: min(100%, 545px);
            max-height: calc(100vh - 44px);
            overflow: auto;
            position: relative;
            padding: 28px 42px 20px;
            border-radius: 16px;
            background: #f7f7f7;
            box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
        }

        .nomination-close {
            position: absolute;
            top: 14px;
            right: 16px;
            width: 34px;
            height: 34px;
            border: 0;
            border-radius: 50%;
            background: transparent;
            color: #111;
            font-size: 26px;
            line-height: 1;
            cursor: pointer;
        }

        .nomination-dialog h2 {
            margin: 0 0 24px;
            font-size: 26px;
            line-height: 1.1;
            font-weight: 900;
        }

        .nomination-form {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 24px;
        }

        .nomination-field {
            flex: 1 1 calc(50% - 12px);
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 210px;
        }

        .nomination-field.full {
            flex-basis: 100%;
            max-width: 100%;
        }

        .nomination-field label {
            color: #6f6f6f;
            font-size: 14px;
            line-height: 1.1;
        }

        .nomination-field input,
        .nomination-field select,
        .nomination-field textarea {
            width: 100%;
            border: 1px solid #9f9f9f;
            border-radius: 12px;
            background: #fff;
            color: var(--text);
            font-family: var(--font);
            font-size: 15px;
            outline: none;
        }

        .nomination-field input,
        .nomination-field select {
            height: 41px;
            padding: 0 12px;
        }

        .nomination-field select {
            cursor: pointer;
            appearance: auto;
        }

        .nomination-field textarea {
            min-height: 95px;
            padding: 12px;
            resize: vertical;
        }

        .nomination-hint {
            margin: -2px 0 0 4px;
            color: #555;
            font-size: 12px;
            font-style: italic;
            line-height: 1.1;
        }

        .nomination-error {
            display: none;
            margin: 0 0 0 4px;
            color: #d71920;
            font-size: 12px;
            line-height: 1.2;
        }

        .nomination-field.is-error input,
        .nomination-field.is-error select,
        .nomination-field.is-error textarea {
            border-color: #d71920;
        }

        .nomination-field.is-error .nomination-error {
            display: block;
        }


        .nomination-message {
            flex: 0 0 100%;
            display: none;
            margin: 4px 0 0;
            padding: 10px 12px;
            border-radius: 10px;
            font-size: 13px;
            line-height: 1.35;
        }

        .nomination-message.is-success {
            display: block;
            color: #0f6b25;
            background: #eaf8ee;
        }

        .nomination-message.is-error {
            display: block;
            color: #b00020;
            background: #fff0f0;
        }

        .nomination-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .nomination-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .nomination-submit .submit-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            line-height: 1;
            transform: translateY(-1px);
        }

        .nomination-submit-wrap {
            flex: 0 0 100%;
            display: flex;
            justify-content: center;
            padding-top: 14px;
        }

        .nomination-submit {
            min-width: 220px;
            min-height: 44px;
            border: 0;
            border-radius: 999px;
            color: #fff;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            font-family: var(--font);
            font-size: 20px;
            font-weight: 600;
            line-height: 1;
            cursor: pointer;
        }

        .floating-social-bar {
            position: fixed;
            top: 50%;
            right: 0;
            z-index: 998;
            display: flex;
            flex-direction: column;
            transform: translateY(-50%);
        }

        .floating-social-item {
            width: 56px;
            height: 56px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            overflow: visible;
            color: #fff;
            text-decoration: none;
            margin-bottom: 2px;
        }


        .floating-social-icon {
            position: relative;
            z-index: 5;
            width: 56px;
            height: 56px;
            flex: 0 0 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            line-height: 1;
        }

        .floating-social-icon svg,
        .floating-social-icon img {
            width: 28px;
            height: 28px;
            display: block;
            object-fit: contain;
            fill: currentColor;
        }

        .floating-social-item.facebook .floating-social-icon svg,
        .floating-social-item.facebook .floating-social-icon img {
            width: 23px;
            height: 23px;
        }

        .floating-social-item.linkedin .floating-social-icon svg,
        .floating-social-item.linkedin .floating-social-icon img {
            width: 21px;
            height: 21px;
        }

        .floating-social-item.website .floating-social-icon svg,
        .floating-social-item.website .floating-social-icon img {
            width: 30px;
            height: 30px;
        }

        .floating-social-text {
            position: absolute;
            top: 0;
            right: 56px;
            z-index: 4;
            width: 150px;
            height: 56px;
            padding: 0 18px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: #fff;
            opacity: 0;
            visibility: hidden;
            transform: translateX(18px);
            transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.28s ease;
            box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.16);
            border-radius: 12px 0 0 12px;
            pointer-events: none;
        }

        .floating-social-item:hover .floating-social-text,
        .floating-social-item:focus-visible .floating-social-text {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            pointer-events: auto;
        }

        .floating-social-text strong {
            display: block;
            font-size: 15px;
            line-height: 1;
            font-weight: 800;
            white-space: nowrap;
        }

        .floating-social-text small {
            display: none;
        }

        .floating-social-item.facebook .floating-social-icon,
        .floating-social-item.facebook .floating-social-text {
            background: #0073FF;
        }

        .floating-social-item.linkedin .floating-social-icon,
        .floating-social-item.linkedin .floating-social-text {
            background: #2600FF;
        }

        .floating-social-item.website .floating-social-icon,
        .floating-social-item.website .floating-social-text {
            background: linear-gradient(135deg, var(--pink), #FF00A1);
        }

        .floating-social-item.facebook .floating-social-icon {
            border-radius: 14px 0 0 0;
        }

        .floating-social-item.website .floating-social-icon {
            border-radius: 0 0 0 14px;
        }

        .floating-social-item:hover .floating-social-icon,
        .floating-social-item:focus-visible .floating-social-icon {
            border-radius: 0;
        }

        .linkedin-section {
            padding: 34px 0 52px;
            background: #fff;
        }

        .linkedin-embed-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: center;
            align-items: stretch;
            max-width: 1080px;
            margin: 0 auto;
        }

        .linkedin-embed-card {
            flex: 1 1 calc(33.333% - 12px);
            min-width: 280px;
            max-width: 360px;
            min-height: 460px;
            overflow: hidden;
            border: 1px solid #e2e2e2;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
        }

        .linkedin-embed-card iframe {
            width: 100%;
            height: 460px;
            display: block;
            border: 0;
        }

        .footer {
            padding: 15px 0;
            text-align: center;
            color: #fff;
            font-size: 13px;
            background: #2600FF;
        }

        @media (max-width: 980px) {

            .intro-grid {
                flex-direction: column;
            }

            .objectives-grid>.objective-item {
                flex-basis: 100%;
                min-width: 0;
            }

            .intro-content {
                max-width: none;
            }

            .intro-image {
                max-width: 620px;
                width: 100%;
                margin: 0 auto;
            }

            .award-stage {
                min-height: auto;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 64px 28px;
                margin-top: 34px;
            }

            .award-card,
            .award-card.center,
            .award-card.left-1,
            .award-card.left-2,
            .award-card.right-1,
            .award-card.right-2 {
                position: relative;
                left: auto;
                right: auto;
                top: auto;
                inset: auto;
                transform: none;
                margin: 0 auto;
            }

            .award-card.center {
                order: 1;
                flex-basis: 100%;
                align-self: center;
            }

            .award-card.left-2 {
                order: 2;

            }

            .award-card.right-1 {
                order: 3;

            }

            .award-card.left-1 {
                order: 4;

            }

            .award-card.right-2 {
                order: 5;

            }

            .curation-grid {
                max-width: 760px;
                gap: 20px;
                justify-content: center;
            }

            .curation-grid>.curation-card {
                flex: 0 1 calc(33.333% - 14px);
                max-width: 240px;
                min-width: 210px;
                min-height: 170px;
            }

            .judges-grid {
                gap: 34px 24px;
            }

            .judges-grid>.judge-card {
                flex-basis: calc(50% - 12px);
                min-width: 220px;
            }

            .criteria-layout {
                flex-direction: column;
                gap: 28px;
            }

            .criteria-center {
                width: min(330px, 80vw);
                margin: 0 auto;
                order: -1;
            }

            .criteria-side {
                max-width: 680px;
                width: 100%;
                margin: 0 auto;
                gap: 24px;
            }

            .criteria-left,
            .criteria-right {
                text-align: center;
            }

            .timeline-items {
                gap: 28px;
            }
        }

        @media (max-width: 640px) {
            .container {
                width: min(100% - 28px, var(--container));
            }

            .top-banner {
                aspect-ratio: 16 / 9;
            }

            .intro-image {
                min-height: auto;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .intro-image img {
                width: min(76%, 230px);
                max-height: 200px;
                margin: 0 auto;
                object-fit: contain;
            }

            .section {
                padding: 34px 0;
            }

            .objectives-grid,
            .curation-grid,
            .timeline-items,
            .award-stage {
                flex-direction: column;
                align-items: center;
            }

            .curation-grid>.curation-card,
            .judges-grid>.judge-card,
            .timeline-items>.timeline-item,
            .award-stage>.award-card {
                width: 100%;
                max-width: 320px;
                flex-basis: auto;
            }

            .judges-grid {
                gap: 28px;
                max-width: 320px;
            }

            .judge-card::after {
                max-width: 100%;
                top: 98px;
                height: calc(100% - 98px);
            }

            .judge-photo,
            .judge-card:nth-child(2) .judge-photo {
                width: 110px;
                height: 172px;
            }


            .judge-card:nth-child(2) .judge-photo img {
                width: 118px;
                height: auto;
                max-width: 118px;
                left: 50%;
                bottom: 0;
                transform: translateX(-50%);
                object-fit: contain;
                object-position: center bottom;
            }

            .judge-name {
                min-width: 170px;
                font-size: 13px;
            }

            .judge-role {
                max-width: 230px;
                font-size: 13px;
            }

            .objective-number {
                flex-basis: 72px;
            }

            .criteria-center {
                width: min(300px, 86vw);
            }

            .criteria-copy h3 {
                font-size: 16px;
            }

            .criteria-copy p {
                font-size: 12px;
            }

            .timeline-line {
                display: none;
            }

            .timeline-dot,
            .timeline-dot::before {
                display: none;
            }

            .call-box {
                padding: 24px;
            }

            .nominate-fixed-btn {
                right: 14px;
                bottom: 18px;
                min-height: 38px;
                padding: 0 14px;
                font-size: 11px;
            }

            .nomination-modal {
                padding: 12px;
            }

            .nomination-dialog {
                width: 100%;
                max-height: calc(100vh - 24px);
                padding: 26px 18px 18px;
                border-radius: 14px;
            }

            .nomination-dialog h2 {
                margin-bottom: 20px;
                font-size: 24px;
            }

            .nomination-form {
                gap: 13px;
            }

            .nomination-field {
                flex-basis: 100%;
                min-width: 0;
            }

            .nomination-submit {
                width: min(100%, 220px);
                font-size: 18px;
            }
        }


        /* Curation Stages responsive fix: prevent narrow 3-column cards on mobile */
        @media (min-width: 641px) and (max-width: 980px) {
            .curation-grid {
                max-width: 760px;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: stretch;
                gap: 20px;
            }

            .curation-grid>.curation-card {
                width: calc(50% - 10px);
                max-width: 350px;
                min-width: 260px;
                flex: 0 1 calc(50% - 10px);
            }
        }

        @media (max-width: 640px) {
            .curation-grid {
                width: 100%;
                max-width: 360px;
                margin-inline: auto;
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                align-items: stretch;
                justify-content: flex-start;
                gap: 16px;
            }

            .curation-grid>.curation-card {
                width: 100%;
                max-width: none;
                min-width: 0;
                min-height: auto;
                flex: 0 0 auto;
            }

            .curation-head {
                min-height: auto;
                padding: 13px 14px;
                font-size: 14px;
                line-height: 1.15;
                white-space: normal;
                word-break: normal;
                overflow-wrap: anywhere;
            }

            .curation-card p {
                padding: 18px 16px 20px;
                font-size: 13px;
                line-height: 1.35;
                text-align: center;
            }

            .curation-note {
                max-width: 360px;
                margin-top: 22px;
                font-size: 12px;
                line-height: 1.35;
            }
        }



        /* Supporting Documents fields */
        .supporting-title-field {
            margin-top: 6px;
        }

        .supporting-title-field label {
            color: #111;
            font-size: 16px;
            font-weight: 900;
        }

        .required-mark {
            color: #d71920;
            font-weight: 900;
        }

        .optional-text {
            color: #777;
            font-size: 12px;
            font-weight: 400;
        }

        /* Final tablet layout for Curation Stages: 1 / 2 3 / 4 5 */
        @media (min-width: 641px) and (max-width: 980px) {
            .curation-grid {
                max-width: 620px;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 28px 70px;
                margin: 0 auto;
            }

            .curation-card,
            .curation-card:nth-child(1),
            .curation-card:nth-child(2),
            .curation-card:nth-child(3),
            .curation-card:nth-child(4),
            .curation-card:nth-child(5) {
                width: 220px;
                min-width: 0;
                min-height: 170px;
            }

            .curation-card:nth-child(1) {
                margin-left: calc(50% - 110px);
                margin-right: calc(50% - 110px);
            }

            .curation-card:nth-child(2),
            .curation-card:nth-child(3),
            .curation-card:nth-child(4),
            .curation-card:nth-child(5) {
                margin-left: 0;
                margin-right: 0;
            }
        }

        /* Final mobile layout for Curation Stages */
        @media (max-width: 640px) {
            .curation-grid {
                display: flex;
                flex-direction: column;
                gap: 16px;
                max-width: 100%;
            }

            .curation-card,
            .curation-card:nth-child(1),
            .curation-card:nth-child(2),
            .curation-card:nth-child(3),
            .curation-card:nth-child(4),
            .curation-card:nth-child(5) {
                width: 100%;
                min-width: 0;
                min-height: auto;
                margin-left: 0;
                margin-right: 0;
            }

            .curation-head {
                min-height: 52px;
                padding: 12px 14px;
                font-size: 15px;
                line-height: 1.15;
            }

            .curation-card p {
                padding: 18px 16px 20px;
                font-size: 14px;
                line-height: 1.35;
            }
        }

        /* Timeline mobile - clean numbered card layout */
        @media (max-width: 640px) {
            .timeline-line-wrap {
                max-width: 390px;
                min-height: auto;
                margin: 30px auto 0;
                padding: 0;
                position: relative;
            }

            .timeline-line {
                display: none;
            }

            .timeline-line::before,
            .timeline-line::after,
            .timeline-item::before {
                display: none;
            }

            .timeline-items {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

            .timeline-item {
                position: relative;
                display: grid;
                grid-template-columns: 42px minmax(0, 1fr);
                grid-template-rows: auto auto;
                column-gap: 12px;
                row-gap: 8px;
                align-items: stretch;
                min-height: auto;
                padding: 0;
                text-align: left;
            }

            .timeline-dot {
                grid-column: 1;
                grid-row: 1 / span 2;
                width: 42px;
                height: auto;
                min-height: 86px;
                margin: 0;
                border-radius: 12px;
                background: linear-gradient(180deg, var(--purple), var(--pink));
                border: 0;
                box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .timeline-dot::before {
                content: "1";
                display: flex;
                align-items: center;
                justify-content: center;
                position: static;
                width: 26px;
                height: 26px;
                border-radius: 50%;
                background: #fff;
                color: var(--purple);
                font-size: 14px;
                font-weight: 900;
                transform: none;
            }

            .timeline-item:nth-child(2) .timeline-dot::before {
                content: "2";
            }

            .timeline-item:nth-child(3) .timeline-dot::before {
                content: "3";
            }

            .timeline-item h3 {
                grid-column: 2;
                grid-row: 1;
                width: auto;
                margin: 0;
                padding: 12px 14px 0;
                font-size: 13px;
                line-height: 1.15;
                text-align: left;
                letter-spacing: 0.04em;
                color: #111;
                z-index: 2;
            }

            .timeline-date-box {
                grid-column: 2;
                grid-row: 2;
                width: 100%;
                min-height: 52px;
                margin-top: 0;
                padding: 14px;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                border-radius: 0 0 12px 12px;
                background: #fff;
                box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
                font-size: 16px;
                font-weight: 900;
                line-height: 1.15;
                text-align: left;
            }

            .timeline-date-box br,
            .timeline-item h3 br {
                display: none;
            }
        }

        @media (max-width: 420px) {
            .timeline-line-wrap {
                max-width: 100%;
            }

            .timeline-item {
                grid-template-columns: 38px minmax(0, 1fr);
                column-gap: 10px;
            }

            .timeline-dot {
                width: 38px;
                min-height: 82px;
            }

            .timeline-dot::before {
                width: 24px;
                height: 24px;
                font-size: 13px;
            }

            .timeline-item h3 {
                padding: 11px 12px 0;
                font-size: 12px;
            }

            .timeline-date-box {
                min-height: 50px;
                padding: 0 12px 12px;
                font-size: 14px;
            }
        }

        /* Compact multi-step nomination form */
        .nomination-dialog {
            width: min(100%, 760px);
            padding: 26px 34px 20px;
        }

        .nomination-dialog h2 {
            margin-bottom: 16px;
        }

        .nomination-form {
            gap: 12px 20px;
        }

        .nomination-stepper {
            flex: 0 0 100%;
            display: flex;
            gap: 8px;
            margin-bottom: 8px;
            padding: 4px;
            border-radius: 999px;
            background: #ececec;
        }

        .nomination-step-indicator {
            flex: 1 1 0;
            min-height: 34px;
            border: 0;
            border-radius: 999px;
            background: transparent;
            color: #666;
            font-family: var(--font);
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
        }

        .nomination-step-indicator span {
            display: inline-flex;
            width: 20px;
            height: 20px;
            margin-right: 4px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #fff;
            color: var(--purple);
            font-size: 12px;
        }

        .nomination-step-indicator.is-active {
            color: #fff;
            background: linear-gradient(90deg, var(--purple), var(--pink));
        }

        .nomination-step {
            flex: 0 0 100%;
            display: none;
            flex-wrap: wrap;
            gap: 12px 20px;
        }

        .nomination-step.is-active {
            display: flex;
        }

        .nomination-step .nomination-field {
            flex: 1 1 calc(50% - 10px);
            min-width: 220px;
        }

        .nomination-step .nomination-field.full {
            flex-basis: 100%;
            min-width: 0;
        }

        .nomination-field textarea {
            min-height: 74px;
        }

        .nomination-field.full textarea {
            min-height: 82px;
        }

        .supporting-title-field {
            margin-top: 0;
            padding: 10px 12px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #e1e1e1;
        }

        .supporting-title-field label {
            color: #111;
            font-size: 15px;
            font-weight: 900;
        }

        .supporting-title-field .nomination-hint {
            margin: 2px 0 0;
        }

        /* Step form actions - fixed alignment */
        .nomination-nav {
            flex: 0 0 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding-top: 12px;
        }

        .nomination-back,
        .nomination-next,
        .nomination-nav .nomination-submit {
            width: 132px;
            height: 42px;
            min-width: 132px;
            min-height: 42px;
            padding: 0 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 0;
            border-radius: 999px;
            font-family: var(--font);
            font-size: 15px;
            font-weight: 800;
            line-height: 1;
            cursor: pointer;
        }

        .nomination-back {
            color: #333;
            background: #e5e5e5;
        }

        .nomination-next,
        .nomination-nav .nomination-submit {
            margin-left: auto;
            color: #fff;
            background: linear-gradient(90deg, var(--purple), var(--pink));
        }

        @media (max-width: 640px) {
            .nomination-step-indicator.is-active {
                padding: 8px 0;
            }

            .nomination-dialog {
                padding: 22px 16px 16px;
            }

            .nomination-stepper {
                border-radius: 14px;
                gap: 5px;
            }

            .nomination-step-indicator {
                min-height: 38px;
                padding: 0 4px;
                font-size: 11px;
            }

            .nomination-step-indicator span {
                display: flex;
                margin: 0 auto 2px;
            }

            .nomination-step .nomination-field {
                flex-basis: 100%;
                min-width: 0;
            }

            .nomination-field textarea,
            .nomination-field.full textarea {
                min-height: 76px;
            }

            .nomination-nav {
                gap: 10px;
                flex-wrap: nowrap;
            }

            .nomination-back,
            .nomination-next,
            .nomination-nav .nomination-submit {
                flex: 1 1 0;
                width: auto;
                min-width: 0;
                height: 42px;
            }
        }

        .judges-section {
            padding: 68px 0 64px;
            color: #fff;
            background: linear-gradient(135deg, var(--blue-dark), #0877ff);
        }

        .judges-section .container {
            width: min(100% - 48px, 1360px);
        }

        .judges-section .section-title-wrap {
            margin-bottom: 54px;
        }

        .judges-section .title-line {
            margin-bottom: 34px;
        }

        .judges-section .section-title {
            color: #fff;
        }

        .judges-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(215px, 1fr));
            gap: 62px 34px;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            align-items: start;
            justify-items: center;
        }

        .judges-grid>.judge-card {
            width: 100%;
            min-width: 0;
            max-width: 235px;
            flex: none;
        }

        .judge-card {
            position: relative;
            min-height: 278px;
            padding: 0 4px 8px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .judge-card::after {
            display: none;
        }


        .judge-name {
            position: relative;
            z-index: 3;
            width: min(184px, 100%);
            min-height: 28px;
            margin: -8px auto 9px;
            padding: 6px 14px 5px;
            border-radius: 999px;
            color: #fff;
            background: linear-gradient(90deg, #140097 0%, #140097 50%, var(--pink) 100%);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
            font-size: 14px;
            line-height: 1.08;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.055em;
            font-weight: 600;
            white-space: normal;
        }

        .judge-role {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 235px;
            min-height: 0;
            margin: 0 auto;
            padding: 0;
            color: #fff;
            font-size: 13px;
            line-height: 1.24;
            font-weight: 400;
            text-align: center;
            white-space: normal;
            word-break: normal;
            overflow-wrap: normal;
            hyphens: none;
        }

        /* Laptop: 4 columns so role text does not get compressed */
        @media (max-width: 1240px) {
            .judges-section .container {
                width: min(100% - 48px, 1080px);
            }

            .judges-grid {
                grid-template-columns: repeat(4, minmax(220px, 1fr));
                max-width: 1010px;
                gap: 54px 32px;
            }

            .judges-grid>.judge-card {
                max-width: 245px;
            }

            .judge-role {
                max-width: 240px;
            }
        }

        /* Tablet: 2 columns */
        @media (max-width: 980px) {
            .judges-section .container {
                width: min(100% - 40px, 760px);
            }

            .judges-grid {
                grid-template-columns: repeat(2, minmax(260px, 1fr));
                max-width: 660px;
                gap: 48px 34px;
            }

            .judges-grid>.judge-card {
                max-width: 300px;
            }

            .judge-photo,
            .judge-card:nth-child(2) .judge-photo {
                width: 128px;
                height: 170px;
            }

            .judge-photo img,
            .judge-card:nth-child(2) .judge-photo img {
                max-height: 172px;
            }

            .judge-card:nth-child(2) .judge-photo img {
                max-height: 154px;
            }

            .judge-name {
                width: 180px;
                font-size: 13px;
            }

            .judge-role {
                max-width: 280px;
                font-size: 13px;
                line-height: 1.25;
            }
        }

        /* Mobile: 1 column */
        @media (max-width: 640px) {
            .judges-section {
                padding: 46px 0 48px;
            }

            .judges-section .container {
                width: min(100% - 28px, 380px);
            }

            .judges-section .section-title-wrap {
                margin-bottom: 34px;
            }

            .judges-grid {
                grid-template-columns: 1fr;
                max-width: 330px;
                gap: 42px;
            }

            .judges-grid>.judge-card {
                width: 100%;
                max-width: 310px;
                min-width: 0;
            }

            .judge-card {
                min-height: auto;
                padding: 0;
            }

            .judge-photo,
            .judge-card:nth-child(2) .judge-photo {
                width: 112px;
                height: 148px;
                margin: 0 auto;
                border-radius: 0 46px 0 0;
                overflow: visible;
            }

            .judge-photo img,
            .judge-card:nth-child(2) .judge-photo img {
                left: 50%;
                bottom: 0;
                width: auto;
                height: auto;
                max-width: none;
                max-height: 150px;
                transform: translateX(-50%);
                object-fit: contain;
                object-position: center bottom;
            }

            .judge-card:nth-child(2) .judge-photo img {
                max-height: 132px;
                bottom: 6px;
            }

            .judge-name {
                width: 168px;
                min-height: 27px;
                margin: -6px auto 8px;
                padding: 6px 12px 5px;
                font-size: 12px;
                letter-spacing: 0.06em;
            }

            .judge-role {
                max-width: 295px;
                font-size: 13px;
                line-height: 1.25;
            }
        }

        .sponsors-section {
            padding: 20px 0;
            background: #f8f8f8;
        }

        .sponsors-heading {
            text-align: center;
            margin-bottom: 34px;
        }

        .sponsors-title {
            margin: 0;
            color: #6b6b6b;
            font-size: clamp(2.2rem, 4.4vw, 3.5rem);
            line-height: 1.05;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(220px, 1fr));
            gap: 24px;
            align-items: stretch;
        }

        .sponsor-card {
            min-height: 128px;
            padding: 24px 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ececec;
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
            transition:
                transform 0.22s ease,
                box-shadow 0.22s ease,
                border-color 0.22s ease;
        }

        .sponsor-card:hover,
        .sponsor-card:focus-within {
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
            border-color: #e3e3e3;
        }

        .sponsor-card img {
            max-width: 100%;
            max-height: 64px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.78;
            transition:
                filter 0.22s ease,
                opacity 0.22s ease,
                transform 0.22s ease;
        }

        .sponsor-card:hover img,
        .sponsor-card:focus-within img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.03);
        }

        /* laptop / tablet */
        @media (max-width: 980px) {
            .sponsors-section {
                padding: 48px 0 48px;
            }

            .sponsors-grid {
                grid-template-columns: repeat(2, minmax(240px, 1fr));
                gap: 20px;
                max-width: 760px;
                margin: 0 auto;
            }

            .sponsor-card {
                min-height: 120px;
                padding: 22px 18px;
            }

            .sponsor-card img {
                max-height: 58px;
            }
        }

        /* mobile */
        @media (max-width: 640px) {
            .sponsors-section {
                padding: 42px 0 44px;
            }

            .sponsors-heading {
                margin-bottom: 26px;
            }

            .sponsors-title {
                font-size: clamp(1.9rem, 8vw, 2.5rem);
                line-height: 1.12;
            }

            .sponsors-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                max-width: 320px;
                margin: 0 auto;
            }

            .sponsor-card {
                min-height: 108px;
                padding: 18px 16px;
                border-radius: 16px;
            }

            .sponsor-card img {
                max-height: 52px;
            }
        }