* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f6f8f3;
    color: #18352b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(1240px, 90%);
    margin: auto;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 50;
    padding: 22px 0 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.navbar-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.brand-logo img {
    height: 92px;
    width: auto;
    max-width: 256px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(0,0,0,.28));
}

.nav-links {
    position: fixed;
    top: 22px;
    right: max(5vw, calc((100vw - 1240px) / 2));
    z-index: 60;
    display: flex;
    gap: 4px;
    align-items: center;
    margin-left: auto;
    padding: 8px;
    border-radius: 999px;
    background: rgba(250,252,248,.88);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 18px 46px rgba(8,33,25,.20);
    backdrop-filter: blur(20px) saturate(1.08);
    -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.nav-link {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: auto;
    height: 42px;
    color: rgba(18,51,40,.92);
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: -.01em;
    text-align: center;
    white-space: nowrap;
    padding: 0 16px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.nav-link::before {
    content: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 8px;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #2f8a66;
    opacity: 0;
    transform: translateX(-50%) scaleX(.35);
    transition: opacity .22s ease, transform .22s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #0f3f2f;
    background: rgba(255,255,255,.92);
    border-color: rgba(23,79,59,.10);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(18,60,45,.095);
}

.nav-link:hover::before,
.nav-link.is-active::before {
    transform: none;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.nav-link-icon {
    display: none;
    flex: 0 0 auto;
}

.nav-link-icon svg,
.mobile-account svg {
    display: none;
}

.nav-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-left: 8px;
    min-height: 44px;
    padding: 0 24px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.nav-account:hover {
    transform: translateY(-2px);
    background: #0f6143;
    box-shadow: 0 18px 34px rgba(23,79,59,.28);
}

.mobile-nav {
    display: none;
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, #176146, #0f4a36);
    color: white !important;
    box-shadow: 0 16px 32px rgba(9,52,37,.26);
}

.btn-light {
    background: rgba(255,255,255,.82);
    color: #174f3b;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(12,38,28,.88), rgba(12,38,28,.46), rgba(12,38,28,.18)),
        var(--hero-image, url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1800&q=80'));
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 92px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 92px 0 auto auto;
    width: min(42vw, 560px);
    height: min(42vw, 560px);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,0) 62%);
    pointer-events: none;
}

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

.hero-content {
    max-width: 780px;
    padding: 38px 0;
}

.eyebrow {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(46px, 7vw, 92px);
    line-height: .94;
    letter-spacing: -.07em;
    font-weight: 850;
    margin-bottom: 26px;
}

.hero p {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    font-weight: 450;
    letter-spacing: -.015em;
    color: rgba(255,255,255,.9);
    max-width: 660px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
}

.hero-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 28px 0 34px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(8,36,27,.56), rgba(255,255,255,.10));
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.hero-feature-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 126px;
    padding: 26px 30px;
    border-right: 1px solid rgba(255,255,255,.18);
}

.hero-feature-card:last-child {
    border-right: 0;
}

.hero-feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(44,143,91,.50);
    border: 1px solid rgba(255,255,255,.18);
    color: white;
    font-size: 27px;
    box-shadow: inset 0 0 24px rgba(255,255,255,.08);
}

.hero-feature-card h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-feature-card p {
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.section {
    padding: 96px 0;
}

.section-title {
    font-size: clamp(34px, 4vw, 58px);
    letter-spacing: -2px;
    margin-bottom: 18px;
    color: #123c2d;
}

.section-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #52665d;
    max-width: 760px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 46px;
}

.card {
    background: white;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 22px 50px rgba(22,55,42,.08);
}

.card-icon {
    font-size: 34px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    color: #617169;
    line-height: 1.6;
    font-size: 15px;
}

.sponsors-section {
    background:
        radial-gradient(circle at 18% 12%, rgba(47,138,102,.09), transparent 34%),
        #f7faf5;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.sponsor-card {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(23,79,59,.10);
    box-shadow: 0 18px 42px rgba(18,60,45,.065);
    color: #18352b;
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sponsor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(23,79,59,.28);
    box-shadow: 0 24px 52px rgba(18,60,45,.11);
}

.sponsor-logo {
    width: 116px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-logo span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #174f3b;
    color: white;
    font-size: 28px;
    font-weight: 800;
}

.sponsor-card h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.sponsor-card p {
    color: #617169;
    font-size: 13px;
    line-height: 1.45;
}

.timeline {
    margin-top: 46px;
    display: grid;
    gap: 16px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    background: white;
    border-radius: 22px;
}

.competition-detail-hero {
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 78px;
    color: white;
    background:
        linear-gradient(90deg, rgba(8,33,25,.88), rgba(8,33,25,.52), rgba(8,33,25,.20)),
        var(--detail-hero-image, var(--hero-image, url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1800&q=80')));
    background-size: cover;
    background-position: center;
}

.competition-detail-hero__content { max-width: 820px; }

.detail-eyebrow,
.detail-kicker {
    display: inline-flex;
    color: #2f8a66;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.detail-eyebrow {
    color: #dff5e8;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
}

.competition-detail-hero h1 {
    max-width: 850px;
    margin: 22px 0 20px;
    font-size: clamp(40px, 5.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.competition-detail-hero p {
    max-width: 680px;
    color: rgba(255,255,255,.86);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.62;
}

.competition-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.detail-section { padding: 74px 0; }
.detail-section--plain { background: #f8faf6; }
.detail-section--soft {
    background:
        radial-gradient(circle at 12% 12%, rgba(47,138,102,.08), transparent 34%),
        #eef4ea;
}
.detail-section--gradient { background: linear-gradient(135deg, #f8faf6 0%, #edf4e9 52%, #f7faf5 100%); }
.detail-section--result { padding: 44px 0; background: #103d2e; color: white; }

.detail-section h2 {
    margin-top: 9px;
    color: #123c2d;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.detail-section--result h2 { color: white; }

.detail-two-column {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.detail-copy {
    white-space: pre-line;
    color: #455d53;
    font-size: 16px;
    line-height: 1.82;
}

.detail-section-head { max-width: 780px; margin-bottom: 34px; }
.detail-section-head p { margin-top: 12px; color: #617169; line-height: 1.7; }

.detail-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.detail-card {
    min-height: 170px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(23,79,59,.09);
    box-shadow: 0 18px 42px rgba(18,60,45,.055);
}

.detail-card__number {
    color: #2f8a66;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}

.detail-card h3 { margin: 12px 0 10px; font-size: 18px; line-height: 1.25; }
.detail-card p { color: #617169; font-size: 14px; line-height: 1.6; }

.detail-timeline { display: grid; gap: 12px; }
.detail-timeline-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(23,79,59,.08);
}
.detail-timeline-item strong { font-size: 16px; }
.detail-timeline-item p { margin-top: 4px; color: #617169; font-size: 14px; }
.detail-timeline-item time { color: #174f3b; font-size: 14px; font-weight: 800; white-space: nowrap; }

.detail-subtitle {
    margin: 34px 0 16px;
    color: #123c2d;
    font-size: 22px;
    letter-spacing: -.4px;
}

.detail-person-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}
.detail-person-grid--small { grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); }
.detail-person-card {
    padding: 18px;
    border-radius: 16px;
    background: white;
    border: 1px solid rgba(23,79,59,.08);
    box-shadow: 0 14px 32px rgba(18,60,45,.045);
}
.detail-person-card span { display: inline-flex; margin-bottom: 12px; }
.detail-person-card h4 { font-size: 15px; line-height: 1.25; margin-bottom: 6px; }
.detail-person-card p,
.detail-person-card small { display: block; color: #617169; font-size: 12px; line-height: 1.45; }

.detail-small-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.detail-result-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.detail-result-box p { margin-top: 8px; color: rgba(255,255,255,.72); }

.detail-qa-list { display: grid; gap: 12px; }
.detail-qa-item {
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(23,79,59,.09);
}
.detail-qa-item summary {
    cursor: pointer;
    display: flex;
    gap: 14px;
    padding: 18px 22px;
    color: #173f31;
    font-weight: 800;
    list-style: none;
}
.detail-qa-item summary::-webkit-details-marker { display: none; }
.detail-qa-item summary span { color: #2f8a66; white-space: nowrap; }
.detail-qa-item div { padding: 0 22px 20px; border-top: 1px solid rgba(23,79,59,.08); }
.detail-qa-item strong { display: block; margin: 18px 0 8px; color: #174f3b; }
.detail-qa-item p { color: #455d53; line-height: 1.72; white-space: pre-line; }

.footer {
    margin-top: auto;
    background: #102e24;
    color: white;
    padding: 46px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .navbar { padding-top: 12px; }
    .navbar-inner { height: 68px; }
    .brand-logo { padding: 0; border-radius: 0; }
    .brand-logo img { height: 70px; max-width: 196px; }
    .mobile-nav { display: block; position: static; }
    .mobile-nav summary {
        position: fixed;
        top: 16px;
        right: 5vw;
        z-index: 60;
        width: 48px;
        height: 48px;
        display: grid;
        place-content: center;
        gap: 5px;
        border-radius: 16px;
        color: #174f3b;
        background: rgba(250,252,248,.84);
        border: 1px solid rgba(255,255,255,.62);
        box-shadow: 0 16px 34px rgba(8,33,25,.14);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        cursor: pointer;
        list-style: none;
    }
    .mobile-nav summary::-webkit-details-marker { display: none; }
    .mobile-nav summary span {
        display: block;
        width: 21px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform .2s ease, opacity .2s ease;
    }
    .mobile-nav[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-nav[open] summary span:nth-child(2) { opacity: 0; }
    .mobile-nav[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav-panel {
        position: fixed;
        top: 74px;
        right: 5vw;
        z-index: 59;
        width: min(320px, 86vw);
        padding: 12px;
        display: grid;
        gap: 8px;
        background: rgba(250,252,248,.96);
        border: 1px solid rgba(255,255,255,.70);
        border-radius: 24px;
        box-shadow: 0 24px 60px rgba(8,33,25,.18);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    .mobile-nav-panel a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        min-height: 46px;
        padding: 13px 16px;
        border-radius: 15px;
        background: rgba(246,248,243,.92);
        border: 1px solid rgba(23,79,59,.08);
        color: #18352b;
        text-decoration: none;
        font-weight: 750;
        letter-spacing: -.01em;
        text-align: center;
    }
    .mobile-nav-panel a:hover,
    .mobile-nav-panel a.is-active { background: #174f3b; color: white; }
    .mobile-nav-panel .mobile-account { margin-top: 6px; background: #174f3b; color: white; }
    .cards { grid-template-columns: 1fr 1fr; }
    .hero {
        min-height: auto;
        padding-top: 78px;
        padding-bottom: 54px;
        background-position: center;
    }
    .hero::before { inset: 78px -120px auto auto; width: 360px; height: 360px; }
    .hero-content {
        max-width: 640px;
        padding: 70px 0 34px;
    }
    .hero h1 {
        max-width: 720px;
    }
    .competition-detail-hero {
        min-height: 62vh;
        padding: 125px 0 58px;
    }
    .detail-two-column,
    .detail-small-groups {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .detail-result-box {
        align-items: flex-start;
        flex-direction: column;
    }
    .detail-timeline-item {
        grid-template-columns: 1fr;
    }
    .detail-timeline-item time {
        white-space: normal;
    }
    .hero-feature-strip {
        grid-template-columns: 1fr 1fr;
    }
    .hero-feature-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }
    .hero-feature-card:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.16);
    }
    .hero-feature-card:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .container { width: min(100% - 34px, 1240px); }
    .navbar {
        padding-top: 10px;
        background: transparent;
    }
    .navbar-inner { height: 64px; }
    .brand-logo { padding: 0; }
    .brand-logo img { height: 60px; max-width: 168px; }
    .mobile-nav summary { top: 14px; right: 17px; }
    .mobile-nav-panel { top: 70px; right: 17px; }
    .cards { grid-template-columns: 1fr; }
    .hero {
        min-height: 88vh;
        align-items: flex-end;
        padding-top: 72px;
        background:
            linear-gradient(180deg, rgba(12,38,28,.38), rgba(12,38,28,.72) 48%, rgba(12,38,28,.94)),
            var(--hero-image, url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1800&q=80'));
        background-size: cover;
        background-position: center;
    }
    .hero-content {
        padding: 96px 0 38px;
    }
    .eyebrow {
        font-size: 12px;
        padding: 8px 12px;
        margin-bottom: 18px;
    }
    .hero h1 {
        font-size: clamp(38px, 13vw, 58px);
        letter-spacing: -.055em;
        line-height: .96;
        margin-bottom: 18px;
    }
    .hero p {
        font-size: 17px;
        line-height: 1.55;
        margin-bottom: 24px;
    }
    .hero-actions {
        gap: 10px;
    }
    .hero-actions .btn {
        flex: 1 1 150px;
        text-align: center;
        padding: 13px 16px;
    }
    .hero-feature-strip {
        grid-template-columns: 1fr;
        margin: 14px 0 20px;
        border-radius: 20px;
    }
    .hero-feature-card,
    .hero-feature-card:nth-child(odd),
    .hero-feature-card:nth-last-child(-n+2) {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        min-height: auto;
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }
    .hero-feature-card:last-child {
        border-bottom: 0;
    }
    .hero-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }
    .hero-feature-card h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .hero-feature-card p {
        font-size: 13px;
        line-height: 1.45;
    }
    .competition-detail-hero {
        min-height: auto;
        padding: 118px 0 48px;
        background:
            linear-gradient(180deg, rgba(8,33,25,.42), rgba(8,33,25,.86)),
            var(--detail-hero-image, var(--hero-image, url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1800&q=80')));
        background-size: cover;
        background-position: center;
    }
    .competition-detail-hero h1 {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -1.4px;
    }
    .competition-detail-hero p {
        font-size: 16px;
    }
    .detail-section {
        padding: 54px 0;
    }
    .detail-section h2 {
        font-size: clamp(26px, 8vw, 34px);
        letter-spacing: -.8px;
    }
    .detail-card-grid,
    .detail-person-grid,
    .detail-person-grid--small {
        grid-template-columns: 1fr;
    }
    .detail-qa-item summary {
        flex-direction: column;
        gap: 6px;
    }
    .mobile-nav-panel {
        right: -4px;
        width: min(330px, calc(100vw - 34px));
    }
}

.welcome-modal[hidden] {
    display: none;
}

.welcome-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
}

.welcome-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 24, 18, .58);
    backdrop-filter: blur(7px);
}

.welcome-modal__panel {
    position: relative;
    width: min(520px, 100%);
    padding: 34px;
    border-radius: 22px;
    background: #ffffff;
    color: #18352b;
    border: 1px solid rgba(23,79,59,.14);
    box-shadow: 0 30px 80px rgba(7, 24, 18, .32);
}

.welcome-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: #edf4ee;
    color: #174f3b;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.welcome-modal__eyebrow {
    margin-bottom: 12px;
    color: #2f8a66;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.welcome-modal h2 {
    margin: 0 36px 14px 0;
    font-size: clamp(25px, 4vw, 34px);
    line-height: 1.1;
    letter-spacing: -.8px;
}

.welcome-modal p {
    color: #476457;
    font-size: 17px;
    line-height: 1.65;
}

.welcome-modal a {
    color: #174f3b;
    font-weight: 800;
}

.welcome-modal__action {
    margin-top: 24px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    background: #174f3b;
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(23,79,59,.22);
}

@media (max-width: 560px) {
    .welcome-modal {
        padding: 18px;
    }

    .welcome-modal__panel {
        padding: 28px 22px 24px;
        border-radius: 18px;
    }

    .welcome-modal h2 {
        margin-right: 32px;
    }

    .welcome-modal p {
        font-size: 16px;
    }
}
/* Public competition results */
.public-results-page {
    background: #f2f6f1;
}

.public-results-hero {
    padding: 150px 0 70px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(151, 181, 100, .24), transparent 32%),
        linear-gradient(135deg, #0a2f25 0%, #174f3b 62%, #234f3d 100%);
}

.public-results-hero__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.public-results-hero h1 {
    max-width: 850px;
    margin: 12px 0 10px;
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 4.6rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.public-results-competition {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 1.05rem;
}

.public-results-announcement {
    max-width: 760px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.7;
    white-space: pre-line;
}

.public-results-date {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: .92rem;
}

.public-results-content {
    min-height: 44vh;
    padding: 70px 0 90px;
}

.public-results-card {
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid rgba(23, 79, 59, .12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(14, 47, 36, .08);
}

.public-results-card__head {
    padding: 28px 30px 22px;
    border-bottom: 1px solid rgba(23, 79, 59, .1);
}

.public-results-card__head h2 {
    margin: 7px 0 0;
    color: #123c2f;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.public-results-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.public-results-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.public-results-table th,
.public-results-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid #e7ede9;
}

.public-results-table th {
    color: #55756a;
    background: #f8faf8;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.public-results-table tbody tr:last-child td {
    border-bottom: 0;
}

.public-results-table tbody tr:hover {
    background: #fbfdfb;
}

.public-results-table .is-number {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.public-results-rank {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #174f3b;
    font-weight: 800;
}

@media (max-width: 760px) {
    .public-results-hero {
        padding: 110px 0 52px;
    }

    .public-results-hero__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

    .public-results-hero__inner .btn {
        width: 100%;
        justify-content: center;
    }

    .public-results-content {
        padding: 38px 0 62px;
    }

    .public-results-card {
        border-radius: 18px;
    }

    .public-results-card__head {
        padding: 22px 20px 18px;
    }

    .public-results-table th,
    .public-results-table td {
