: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;
}

/* =========================================================
   Site Header (Base)
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.site-header-inner {
    width: min(100% - 40px, 1280px);
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 12px 0px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    width: auto;
    height: 65px;
    max-width: 200px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(28px, 5vw, 78px);
    flex: 1 1 auto;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #000;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--purple);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.site-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.site-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: #111;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

/* Make anchor scroll not hide behind sticky header */
#top,
#categories-title,
#criteria-title,
#call-title,
#judges-title,
#sponsors-title {
    scroll-margin-top: 86px;
}

/* =========================================================
   Intro centered award layout
   ========================================================= */
.intro-section {
    padding: 42px 0 28px;
    background: #fff;
}

.intro-grid.intro-grid-award {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

.intro-grid.intro-grid-award>* {
    min-width: 0;
}

.intro-award-image {
    flex: 0 0 420px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: end;
}

.intro-award-image img {
    width: min(100%, 400px);
    max-width: 400px;
    max-height: none;
    height: auto;
    object-fit: contain;
}

.intro-award-content {
    flex: 0 0 470px;
    max-width: 470px;
    font-size: 14px;
    line-height: 1.22;
    letter-spacing: 0;
    text-align: left;
    color: #111;
}

.intro-award-content p {
    margin: 0 0 11px;
}

.intro-award-content strong {
    display: block;
    margin: 13px 0 2px;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 800;
    color: #111;
}

.top-banner {
    width: 100%;
    min-height: 0;
    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;
}

.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;
}

/* =========================================================
   Program Objectives
   ========================================================= */
.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;
    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 Categories
   ========================================================= */
.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 Stages
   ========================================================= */
.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;
}

/* =========================================================
   Timeline
   ========================================================= */
.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
   ========================================================= */
.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;
    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%;
    }
}

@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%, 760px);
    max-height: calc(100vh - 44px);
    overflow: auto;
    position: relative;
    padding: 26px 34px 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 16px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
}

.nomination-form {
    display: flex;
    flex-wrap: wrap;
    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;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nomination-step .nomination-field.full {
    flex-basis: 100%;
    min-width: 0;
}

.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: 74px;
    padding: 12px;
    resize: vertical;
}

.nomination-field.full textarea {
    min-height: 82px;
}

.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 .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;
}

.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;
}

.required-mark {
    color: #d71920;
    font-weight: 900;
}

.optional-text {
    color: #777;
    font-size: 12px;
    font-weight: 400;
}

.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));
}

/* =========================================================
   Floating Social Bar
   ========================================================= */
.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
   ========================================================= */
.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
   ========================================================= */
.footer {
    padding: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 13px;
    background: #2600FF;
}

/* =========================================================
   BOARD OF JUDGES (FLEXBOX CLEAN)
   ========================================================= */
.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: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 62px 34px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    align-items: flex-start;
}

.judges-grid>.judge-card {
    width: 100%;
    min-width: 215px;
    max-width: 235px;
    flex: 0 1 calc(20% - 28px);
}

.judge-card {
    position: relative;
    min-height: 278px;
    padding: 0 4px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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: 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;
    display: flex;
    align-items: center;
    justify-content: center;
    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;
}

/* =========================================================
   Sponsors Section
   ========================================================= */
.sponsors-section {
    padding: 20px 0;
    background: #f8f8f8;
}

.sponsors-heading {
    text-align: center;
    margin-bottom: 34px;
}

.sponsors-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;
}

.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;
}

.sponsors-grid .sponsor-card:nth-child(3) img {
    transform: scale(1.6);
}

.sponsor-card:hover img,
.sponsor-card:focus-within img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
}

/* =========================================================
   MEDIA QUERIES - LAPTOP (1240px & 1180px)
   ========================================================= */
@media (max-width: 1240px) {
    .judges-section .container {
        width: min(100% - 48px, 1080px);
    }

    .judges-grid {
        max-width: 1010px;
        gap: 54px 32px;
    }

    .judges-grid>.judge-card {
        max-width: 245px;
        flex: 0 1 calc(25% - 24px);
        /* 4 cột */
    }

    .judge-role {
        max-width: 240px;
    }
}

@media (max-width: 1180px) {
    .intro-grid.intro-grid-award {
        max-width: 800px;
        gap: 28px;
    }

    .intro-award-image {
        flex-basis: 390px;
    }

    .intro-award-image img {
        max-width: 370px;
    }

    .intro-award-content {
        flex-basis: 450px;
        max-width: 450px;
    }
}

/* =========================================================
   MEDIA QUERIES - TABLET (980px)
   ========================================================= */
@media (max-width: 980px) {
    .objectives-grid>.objective-item {
        flex-basis: 100%;
        min-width: 0;
    }

    .intro-section {
        padding: 38px 0 24px;
    }

    .intro-grid.intro-grid-award {
        max-width: 580px;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .intro-award-image {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .intro-award-image img {
        max-height: 260px !important;
    }

    .intro-award-content {
        flex: none;
        max-width: 580px;
        width: 100%;
        text-align: left;
    }

    .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;
    }

    .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;
    }

    /* Judges Tablet */
    .judges-section .container {
        width: min(100% - 40px, 760px);
    }

    .judges-grid {
        max-width: 660px;
        gap: 48px 34px;
    }

    .judges-grid>.judge-card {
        max-width: 300px;
        flex: 0 1 calc(50% - 17px);
        /* 2 cột */
    }

    .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;
    }

    /* Sponsors Tablet */
    .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;
    }

    /* Final Mobile Header / Hamburger Menu */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1200;
    }

    .site-header-inner {
        width: min(100% - 28px, 1280px);
        min-height: 62px;
        padding: 8px 0;
        gap: 12px;
    }

    .site-logo {
        min-width: 0;
        max-width: calc(100% - 58px);
    }

    .site-logo img {
        height: 44px;
        max-width: min(210px, 100%);
        object-fit: contain;
    }

    .site-menu-toggle {
        display: inline-flex;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        -webkit-tap-highlight-color: transparent;
    }

    .site-menu-toggle span {
        width: 22px;
        height: 2px;
        margin: 3px 0;
        background: #111;
        transform-origin: center;
    }

    .site-nav {
        position: fixed;
        top: 62px;
        left: 14px;
        right: 14px;
        z-index: 1199;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100dvh - 78px);
        padding: 8px;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(0.98);
        transform-origin: top center;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.24s ease;
        backdrop-filter: blur(14px);
    }

    .site-header.is-open .site-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .site-nav a {
        min-height: 48px;
        justify-content: center;
        padding: 0 14px;
        color: #111;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.06em;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        color: #fff;
        background: linear-gradient(90deg, var(--purple), var(--pink));
    }

    .site-nav a::after {
        display: none;
    }

    .site-header.is-open .site-menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.is-open .site-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .site-menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open::before {
        content: "";
        position: fixed;
        inset: 62px 0 0;
        z-index: 1198;
        background: rgba(0, 0, 0, 0.18);
        pointer-events: none;
    }

    #top,
    #categories-title,
    #criteria-title,
    #call-title,
    #judges-title,
    #sponsors-title {
        scroll-margin-top: 78px;
    }
}

/* 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;
    }
}

/* =========================================================
   MEDIA QUERIES - MOBILE (640px)
   ========================================================= */
@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .top-banner {
        aspect-ratio: 16 / 9;
    }

    .intro-section {
        padding: 30px 0 20px;
    }

    .intro-grid.intro-grid-award {
        gap: 20px;
    }

    .intro-award-image img {
        width: min(100%, 260px);
        max-width: 260px;
    }

    .intro-award-content {
        font-size: 14px;
        line-height: 1.28;
    }

    .intro-award-content strong {
        margin-top: 12px;
        font-size: 14px;
    }

    .intro-award-content p {
        margin-bottom: 10px;
    }

    .section {
        padding: 34px 0;
    }

    .objective-number {
        flex-basis: 72px;
    }

    .criteria-center {
        width: min(300px, 86vw);
    }

    .criteria-copy h3 {
        font-size: 16px;
    }

    .criteria-copy p {
        font-size: 12px;
    }

    .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: 22px 16px 16px;
        border-radius: 14px;
    }

    .nomination-dialog h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .nomination-form {
        gap: 13px;
    }

    .nomination-stepper {
        border-radius: 14px;
        gap: 5px;
    }

    .nomination-step-indicator {
        min-height: 38px;
        padding: 0 4px;
        font-size: 11px;
    }

    .nomination-step-indicator.is-active {
        padding: 8px 0;
    }

    .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;
        font-size: 18px;
    }

    /* Final mobile layout for Curation Stages */
    .curation-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 100%;
        width: 100%;
        margin-inline: auto;
    }

    .curation-grid>.curation-card,
    .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%;
        max-width: none;
        min-width: 0;
        min-height: auto;
        margin-left: 0;
        margin-right: 0;
        flex: 0 0 auto;
    }

    .curation-head {
        min-height: 52px;
        padding: 13px 14px;
        font-size: 15px;
        line-height: 1.15;
        white-space: normal;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .curation-card p {
        padding: 18px 16px 20px;
        font-size: 14px;
        line-height: 1.35;
        text-align: center;
    }

    .curation-note {
        max-width: 360px;
        margin-top: 22px;
        font-size: 12px;
        line-height: 1.35;
    }

    /* Judges Mobile */
    .judges-section {
        padding: 46px 0 48px;
    }

    .judges-section .container {
        width: min(100% - 28px, 380px);
    }

    .judges-section .section-title-wrap {
        margin-bottom: 34px;
    }

    .judges-grid {
        flex-direction: column;
        align-items: center;
        max-width: 330px;
        gap: 42px;
    }

    .judges-grid>.judge-card {
        width: 100%;
        max-width: 310px;
        flex: 1 1 auto;
    }

    .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 Mobile */
    .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;
    }

    /* Timeline Mobile */
    .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;
    }

    /* Final Mobile Header Layout Adjustments */
    .site-header-inner {
        width: min(100% - 24px, 1280px);
        min-height: 58px;
        padding: 7px 0;
    }

    .site-logo img {
        height: 38px;
        max-width: 180px;
    }

    .site-menu-toggle {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .site-nav {
        top: 58px;
        left: 0px;
        right: 0px;
        max-height: calc(100dvh - 72px);
    }

    .site-nav a {
        min-height: 46px;
        font-size: 13px;
        letter-spacing: 0.05em;
    }

    body.mobile-menu-open::before {
        inset: 58px 0 0;
    }

    #top,
    #categories-title,
    #criteria-title,
    #call-title,
    #judges-title,
    #sponsors-title {
        scroll-margin-top: 72px;
    }
}

/* =========================================================
   MEDIA QUERIES - EXTRA SMALL MOBILE (420px & 360px)
   ========================================================= */
@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;
    }
}

@media (max-width: 360px) {
    .site-logo img {
        height: 34px;
        max-width: 155px;
    }

    .site-menu-toggle {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .site-nav a {
        min-height: 44px;
        font-size: 12px;
    }
}
