@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap");


/* ========================================
   GLOBAL FONT
======================================== */
html,
body,
button,
input,
textarea,
select,
a,
p,
span,
strong,
small,
div,
nav,
header,
section,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
*::before,
*::after {
    font-family: "Oswald", "Arial Narrow", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", "Arial Narrow", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #050505;
    color: #ffffff;
    font-family: "Oswald", "Arial Narrow", Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 4vw;
    padding-right: 4vw;
}


/* ========================================
   UPPERCASE HEADINGS
======================================== */
h1,
h2,
h3,
h4,
h5,
h6,
.eyebrow,
.small-label,
.countdown-title,
.community-label,
.contact-label,
.prep-status,
.nav-link,
.brand-name,
.brand-expedition {
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: .01em;
}

/* ========================================
   HERO
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #000000;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(135%) brightness(72%);
    z-index: 0;
    animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.48) 34%, rgba(0,0,0,.20) 68%, rgba(0,0,0,.14) 100%),
        linear-gradient(0deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.30) 28%, rgba(0,0,0,.04) 58%, rgba(0,0,0,.32) 100%);
    pointer-events: none;
}

/* ========================================
   HEADER
======================================== */
.topbar {
    position: relative;
    z-index: 5;
    min-height: 122px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 45px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #ffffff;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand-name,
.brand-expedition {
    font-size: 31.5px;
    font-weight: 600;
    letter-spacing: .24em;
    white-space: nowrap;
}

.brand-expedition {
    color: #a8a8a8;
}


.header-live-button {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.48);
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.header-live-button:visited {
    color: #ffffff;
}

.header-live-button:hover,
.header-live-button:active {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.header-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex: 0 0 auto;
}


/* ========================================
   LIVE PAGE
======================================== */
.live-page {
    min-height: 100vh;
    background: #000000;
    color: #ffffff;
}

.live-page .topbar {
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.live-page-main {
    padding: 56px 4vw 90px;
}

.live-page-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: end;
    margin-bottom: 38px;
}

.live-page-title {
    margin: 0;
    font-size: clamp(54px, 6vw, 118px);
    line-height: .92;
    letter-spacing: -.035em;
    font-weight: 600;
}

.live-page-subtitle {
    margin: 20px 0 0;
    max-width: 820px;
    font-size: clamp(17px, 1.2vw, 22px);
    line-height: 1.6;
    color: #a9a9a9;
}

.live-page-status {
    min-width: 260px;
    text-align: left;
}

.live-days-number {
    display: inline-block;
    font-size: clamp(58px, 5vw, 94px);
    line-height: .86;
    font-weight: 700;
    letter-spacing: -.055em;
    color: #ffffff;
}

.live-days-word {
    display: inline-block !important;
    margin: 0 0 0 12px !important;
    font-size: clamp(18px, 1.4vw, 26px) !important;
    font-weight: 500;
    letter-spacing: .08em !important;
    color: #ffffff !important;
}

.live-status-line {
    width: 100%;
    height: 1px;
    margin: 22px 0 16px;
    background: rgba(255,255,255,.35);
}

.live-status-label {
    display: block;
    margin: 0 !important;
    font-size: 9px !important;
    letter-spacing: .22em !important;
    color: #777777 !important;
}

.live-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 22px;
    align-items: start;
}

.live-player-wrap {
    min-width: 0;
}

.live-player {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    border: 1px solid #252525;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,.06), transparent 34%),
        #050505;
}

.live-player::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 49.8%, rgba(255,255,255,.035) 50%, transparent 50.2%),
        linear-gradient(45deg, transparent 0 49.8%, rgba(255,255,255,.025) 50%, transparent 50.2%);
    background-size: 52px 52px;
    opacity: .45;
}

.live-player-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.live-player-kicker {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: .25em;
    color: #777777;
}

.live-player-placeholder strong {
    font-size: clamp(34px, 4.2vw, 76px);
    line-height: .98;
    font-weight: 600;
    letter-spacing: -.025em;
}

.live-player-placeholder p {
    max-width: 560px;
    margin: 20px auto 0;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.65;
    color: #919191;
}

.live-player-bottom {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    font-size: 9px;
    letter-spacing: .19em;
    color: #666666;
}

.live-ads-column {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 22px;
    height: calc((92vw - 300px - 22px) * 9 / 16);
}

.sponsor-ad {
    position: relative;
    min-height: 190px;
    padding: 24px;
    border: 1px solid #262626;
    background: #050505;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.sponsor-ad.large {
    min-height: 270px;
}

.sponsor-ad::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,.035);
    pointer-events: none;
}

.sponsor-ad-label {
    position: relative;
    z-index: 2;
    font-size: 8px;
    letter-spacing: .23em;
    color: #555555;
}

.sponsor-ad strong {
    position: relative;
    z-index: 2;
    max-width: 220px;
    font-size: clamp(20px, 1.65vw, 29px);
    line-height: 1.12;
    font-weight: 500;
    color: #d8d8d8;
}

.sponsor-ad small {
    position: relative;
    z-index: 2;
    font-size: 9px;
    letter-spacing: .16em;
    color: #5e5e5e;
}

.live-wide-ad {
    margin-top: 22px;
    min-height: 120px;
    padding: 24px 30px;
    border: 1px solid #262626;
    background: #050505;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 35px;
}

.live-wide-ad .sponsor-ad-label {
    white-space: nowrap;
}

.live-wide-ad strong {
    font-size: clamp(20px, 2vw, 34px);
    font-weight: 500;
    letter-spacing: .01em;
}

.live-wide-ad small {
    font-size: 9px;
    letter-spacing: .18em;
    color: #5e5e5e;
    white-space: nowrap;
}

@media (max-width:1300px) {
    .topbar {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 24px;
    }

    .header-live-button {
        min-height: 42px;
        padding: 0 14px;
        font-size: 10px;
    }

    .live-layout {
        grid-template-columns: minmax(0, 1fr) 250px;
    }

    .live-ads-column {
        height: calc((92vw - 250px - 22px) * 9 / 16);
    }
}

@media (max-width:1000px) {
    .header-live-button {
        display: none;
    }

    .live-page-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .live-page-status {
        min-width: 0;
        max-width: 260px;
    }

    .live-layout {
        grid-template-columns: 1fr;
    }

    .live-ads-column {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        height: auto;
    }

    .sponsor-ad.large,
    .sponsor-ad {
        min-height: 170px;
    }
}

@media (max-width:700px) {
    .live-page-main {
        padding-top: 38px;
    }

    .live-page-title {
        font-size: clamp(48px, 15vw, 72px);
    }

    .live-ads-column {
        grid-template-columns: 1fr;
    }

    .live-wide-ad {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .live-player-bottom {
        display: block;
        line-height: 1.8;
    }
}

/* ========================================
   NAV
======================================== */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(22px, 1.75vw, 40px);
}

.nav-link {
    position: relative;
    color: #b3b3b3;
    text-decoration: none;
    font-size: 17.55px;
    font-weight: 500;
    letter-spacing: .12em;
    white-space: nowrap;
    transition: color .25s ease, text-shadow .25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 1px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* ========================================
   HERO CONTENT
======================================== */
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 80px;
    align-items: center;
    padding-top: 4vw;
    padding-bottom: 2.5vw;
}

.hero-copy {
    min-width: 0;
}

.eyebrow,
.small-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .30em;
    color: #9e9e9e;
    margin-bottom: 28px;
}

h1 {
    margin: 0;
    font-size: clamp(110px, 11vw, 240px);
    line-height: .90;
    letter-spacing: -.045em;
    font-weight: 700;
    font-family: "Oswald", "Arial Narrow", Arial, Helvetica, sans-serif;
}

.english-title {
    margin-top: 38px;
    font-size: clamp(18px, 1.7vw, 30px);
    letter-spacing: .34em;
    color: #dedede;
}

.hero-line {
    width: 82px;
    height: 1px;
    background: #ffffff;
    margin: 36px 0;
}

.hero-description {
    max-width: 820px;
    font-size: clamp(18px, 1.15vw, 24px);
    line-height: 1.55;
    color: #dddddd;
}

/* ========================================
   HERO COMMUNITY
======================================== */
.hero-community {
    width: 100%;
    max-width: 330px;
    justify-self: end;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,.42);
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.community-label {
    font-size: 10px;
    letter-spacing: .22em;
    color: #a2a2a2;
    margin-bottom: 26px;
}

.community-value {
    font-size: clamp(58px, 5vw, 92px);
    font-weight: 600;
    line-height: .9;
    letter-spacing: -.06em;
}

.community-unit {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: .20em;
    color: #8e8e8e;
}

.community-sources {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.13);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.community-sources a {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #ffffff;
    text-decoration: none;
}

.community-sources a:visited,
.community-sources a:hover,
.community-sources a:active {
    color: #ffffff;
}

.community-sources span {
    font-size: 9px;
    letter-spacing: .20em;
    color: #747474;
}

.community-sources strong {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

/* ========================================
   COUNTDOWN
======================================== */
.countdown-section {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,.22);
    padding-top: 26px;
    padding-bottom: 30px;
}

.countdown-title {
    font-size: 10px;
    letter-spacing: .25em;
    color: #9a9a9a;
    margin-bottom: 20px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.countdown-item {
    padding-right: 28px;
    border-right: 1px solid rgba(255,255,255,.18);
}

.countdown-item:not(:first-child) {
    padding-left: 28px;
}

.countdown-item:last-child {
    border-right: none;
}

.countdown-number {
    display: block;
    font-size: clamp(54px, 5vw, 100px);
    font-weight: 700;
    letter-spacing: -.065em;
}

.countdown-label {
    display: block;
    margin-top: 9px;
    font-size: 10px;
    letter-spacing: .20em;
    color: #9c9c9c;
}

.start-date {
    margin-top: 25px;
    font-size: 12px;
    letter-spacing: .18em;
    color: #d0d0d0;
}

/* ========================================
   FACTS
======================================== */
.facts {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,.20);
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.fact {
    padding: 21px 22px 25px 0;
    border-right: 1px solid rgba(255,255,255,.16);
}

.fact:not(:first-child) {
    padding-left: 22px;
}

.fact:last-child {
    border-right: none;
}

.fact strong {
    display: block;
    font-size: clamp(28px, 2.2vw, 46px);
    margin-bottom: 6px;
}

.fact span {
    font-size: 10px;
    letter-spacing: .17em;
    color: #aaaaaa;
}

/* ========================================
   GENERAL
======================================== */
.content-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    border-top: 1px solid #1e1e1e;
    background: #050505;
    scroll-margin-top: 100px;
}

.content-section > .container {
    position: relative;
    z-index: 3;
}

h2 {
    margin: 0 0 35px;
    font-size: clamp(44px, 5.5vw, 96px);
    line-height: .95;
    letter-spacing: -.025em;
    font-weight: 600;
    font-family: "Oswald", "Arial Narrow", Arial, Helvetica, sans-serif;
}

.lead {
    max-width: 920px;
    font-size: clamp(21px, 2vw, 34px);
    line-height: 1.35;
    color: #f0f0f0;
}

.content-section p {
    max-width: 900px;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.7;
    color: #bbbbbb;
}

/* ========================================
   FILM
======================================== */
#film {
    min-height: 760px;
    display: flex;
    align-items: center;
    background: #020202;
}

#film::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/film.png");
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(108%) brightness(92%);
    z-index: 0;
}

#film::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.76) 20%, rgba(0,0,0,.48) 43%, rgba(0,0,0,.12) 72%, rgba(0,0,0,.02) 100%);
}

#film p,
#film .lead {
    max-width: 650px;
    color: #e0e0e0;
}

/* ========================================
   PARTNERS
======================================== */
.partners-section {
    background: #030303;
    padding-top: 130px;
    padding-bottom: 130px;
}

.partners {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: #292929;
    border: 1px solid #292929;
}

.partner {
    min-height: 180px;
    padding: 30px;
    background: #070707;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .25s ease;
}

.partner:hover {
    background: #0d0d0d;
}

.partner span {
    font-size: 10px;
    letter-spacing: .17em;
    color: #747474;
}

.partner strong {
    font-size: clamp(18px, 1.4vw, 24px);
    font-weight: 500;
    color: #dddddd;
}

/* ========================================
   ROUTE
======================================== */
.route-section {
    position: relative;
    overflow: hidden;
    padding: 125px 0 105px;
    background: #000000;
    border-top: 1px solid #1e1e1e;
    scroll-margin-top: 100px;
}

.route-header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 90px;
    align-items: start;
    margin-bottom: 75px;
}

.route-header .small-label {
    margin-bottom: 24px;
}

.route-title {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(58px, 5.5vw, 108px);
    line-height: .93;
    letter-spacing: .01em;
    font-weight: 500;
}

.route-title-line {
    width: 48px;
    height: 1px;
    margin-bottom: 26px;
    background: #ffffff;
}

.route-kicker {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .34em;
    color: #c6c6c6;
}

.route-header-copy {
    padding-top: 44px;
}

.route-header-copy p {
    max-width: 620px;
    margin: 0;
    font-size: clamp(18px, 1.35vw, 25px);
    line-height: 1.55;
    color: #d0d0d0;
}

.route-map {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.route-map-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}



.route-summary {
    padding-top: 35px;
    border-top: 1px solid #242424;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.route-summary-item strong {
    display: block;
    font-size: clamp(28px, 2.5vw, 48px);
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
}

.route-summary-item span {
    display: block;
    margin-top: 10px;
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: .16em;
    color: #777777;
}

.route-actions {
    margin-top: 42px;
    display: flex;
    align-items: center;
}

.route-button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border: 1px solid rgba(255,255,255,.55);
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    background: transparent;
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.route-button:visited {
    color: #ffffff;
}

.route-button:hover,
.route-button:active {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}


@media (max-width:1300px) {
    .route-header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .route-header-copy {
        padding-top: 0;
    }

    .route-map {
        width: 100%;
    }

    .route-map-image {
        width: 100%;
        height: auto;
    }

    .route-summary {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width:700px) {
    .route-section {
        padding: 80px 0 65px;
    }

    .route-header {
        margin-bottom: 45px;
    }

    .route-title {
        font-size: clamp(48px, 14vw, 72px);
    }

    .route-kicker {
        letter-spacing: .22em;
    }

    .route-map {
        width: 100%;
    }

    .route-map-image {
        width: 100%;
        height: auto;
    }

    .route-summary {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .route-button {
        width: 100%;
    }
}


/* ========================================
   PREPARATION
======================================== */
.preparation-section {
    background: #050505;
    padding-top: 140px;
    padding-bottom: 140px;
}

.preparation-heading {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(320px,.6fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.preparation-heading h2 {
    margin-bottom: 0;
}

.preparation-description {
    margin: 0;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    border-top: 1px solid #292929;
}

.preparation-item {
    min-height: 235px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 38px 40px 38px 0;
    border-bottom: 1px solid #292929;
}

.preparation-item:nth-child(odd) {
    border-right: 1px solid #292929;
}

.preparation-item:nth-child(even) {
    padding-left: 40px;
}

.prep-number {
    font-size: 12px;
    letter-spacing: .20em;
    color: #555555;
}

.preparation-item strong {
    display: block;
    font-size: 18px;
    letter-spacing: .12em;
    font-weight: 500;
    margin-bottom: 17px;
}

.preparation-item p {
    margin: 0 0 24px;
    color: #929292;
}

.prep-status {
    display: inline-block;
    font-size: 9px;
    letter-spacing: .22em;
    color: #666666;
}

.active-status {
    color: #ffffff;
}

/* ========================================
   SUPPORT
======================================== */
.support-section {
    background: #020202;
    padding-top: 150px;
    padding-bottom: 150px;
}

.support-heading {
    max-width: 980px;
    margin-bottom: 80px;
}

.support-heading h2 {
    line-height: 1.18;
}

.support-heading p {
    max-width: 760px;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1px;
    background: #292929;
    border: 1px solid #292929;
}

.project-stat-card {
    min-height: 510px;
    padding: clamp(32px, 3vw, 55px);
    background: #060606;
    display: flex;
    flex-direction: column;
}

.stat-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 65px;
    font-size: 10px;
    letter-spacing: .22em;
    color: #8b8b8b;
}

.stat-main-value strong {
    display: block;
    font-size: clamp(62px, 6vw, 112px);
    font-weight: 600;
    line-height: .9;
    letter-spacing: -.065em;
}

.stat-subtitle {
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: .22em;
    color: #737373;
}

.funding-progress {
    width: 100%;
    height: 2px;
    margin-top: 44px;
    background: #242424;
}

.funding-progress-fill {
    width: 0%;
    height: 100%;
    background: #ffffff;
}

.followers-divider {
    width: 100%;
    height: 1px;
    margin-top: 44px;
    background: #242424;
}

.stat-breakdown {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin-top: 33px;
    padding-top: 26px;
    border-top: 1px solid #202020;
}

.stat-breakdown > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-breakdown > div + div {
    padding-left: 30px;
    border-left: 1px solid #202020;
}

.stat-breakdown a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
}

.stat-breakdown a:visited,
.stat-breakdown a:hover,
.stat-breakdown a:active {
    color: #ffffff;
}

.stat-breakdown span {
    font-size: 9px;
    letter-spacing: .20em;
    color: #666666;
}

.stat-breakdown strong {
    font-size: 33px;
    font-weight: 500;
    color: #ffffff;
}

.stat-note {
    margin-top: auto !important;
    padding-top: 42px;
    margin-bottom: 0;
    max-width: 520px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #696969 !important;
}

/* ========================================
   SUPPORT BUTTONS
======================================== */
.support-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-decoration: none;
}

.support-button.primary {
    background: #ffffff;
    color: #000000;
}

.support-button.primary:visited {
    color: #000000;
}

.support-button.secondary {
    border: 1px solid #454545;
    color: #ffffff;
}

.support-button.secondary:visited,
.support-button.secondary:hover,
.support-button.secondary:active {
    color: #ffffff;
}

.disabled-button {
    cursor: default;
    user-select: none;
}

/* ========================================
   DONATE AREA
======================================== */
.support-donate-area {
    margin-top: 45px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
}

.support-donate-main {
    min-width: 0;
}

.support-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 0;
}

.donate-description {
    margin: 25px 0 0 !important;
    max-width: 620px !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: #737373 !important;
}

/* ========================================
   QR DONATE
======================================== */
.donate-qr {
    width: fit-content;
    min-width: 0;
    padding: 0;
    display: block;
    border: none;
    background: transparent;
    text-decoration: none;
    color: #ffffff;
}

.donate-qr:visited,
.donate-qr:hover,
.donate-qr:active {
    color: #ffffff;
    background: transparent;
    border: none;
}

.donate-qr-image {
    width: 145px;
    height: 145px;
    background: #ffffff;
    padding: 8px;
}

.donate-qr-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.donate-qr-copy {
    display: none;
}

/* ========================================
   CONTACTS
======================================== */
.contacts-section {
    background: #000000;
    padding-top: 150px;
    padding-bottom: 36px;
}

.contacts-top {
    max-width: 1250px;
}

.contacts-top h2 {
    max-width: 1150px;
    font-size: clamp(58px, 7vw, 135px);
    margin-bottom: 45px;
}

.contacts-lead {
    max-width: 760px !important;
    font-size: clamp(20px, 1.8vw, 32px) !important;
    line-height: 1.45 !important;
    color: #d8d8d8 !important;
}

.contacts-grid {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid #303030;
    border-bottom: 1px solid #303030;
}

.contact-column {
    min-height: 280px;
    padding: 38px 45px 45px 0;
}

.contact-column + .contact-column {
    padding-left: 45px;
    border-left: 1px solid #303030;
}

.contact-label {
    display: block;
    margin-bottom: 50px;
    font-size: 9px;
    letter-spacing: .22em;
    color: #666666;
}

.contact-column strong {
    display: block;
    margin-bottom: 20px;
    font-size: clamp(20px, 1.6vw, 30px);
    font-weight: 500;
}

.contact-column p {
    max-width: 420px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #7f7f7f;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.contact-button {
    min-height: 58px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3a3a3a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    color: #9a9a9a;
}

.contact-button:link,
.contact-button:visited,
.contact-button:hover,
.contact-button:active {
    text-decoration: none;
    color: #9a9a9a;
}

.contact-button-primary {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.contact-button-primary:link,
.contact-button-primary:visited,
.contact-button-primary:hover,
.contact-button-primary:active {
    color: #000000;
}

.contacts-bottom {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid #202020;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 9px;
    letter-spacing: .20em;
    color: #575757;
}

/* ========================================
   LARGE DESKTOP
======================================== */
@media (min-width:1600px) {
    .container {
        padding-left: 3.5vw;
        padding-right: 3.5vw;
    }

    .topbar {
        min-height: 132px;
    }

    .brand-logo {
        width: 104px;
        height: 104px;
    }

    .brand-name,
    .brand-expedition {
        font-size: 33px;
    }

    .hero-community {
        max-width: 380px;
    }

    #film {
        min-height: 820px;
    }

    #route {
        min-height: 880px;
    }
}

/* ========================================
   TABLET
======================================== */
@media (max-width:1300px) {
    .brand-expedition {
        display: none;
    }

    .main-nav {
        justify-content: flex-end;
        gap: 22px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        flex: 0 0 auto;
        font-size: 10px;
    }
}

@media (max-width:1000px) {
    .hero-content {
        grid-template-columns: minmax(0,1fr) 240px;
        gap: 35px;
    }

    .preparation-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contact-column {
        min-height: auto;
        padding: 35px 0;
    }

    .contact-column + .contact-column {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #292929;
    }

    .contact-label {
        margin-bottom: 25px;
    }

    .support-donate-area {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* ========================================
   MOBILE
======================================== */
@media (max-width:700px) {
    .route-section {
        padding-bottom: 45px;
    }

    .route-infographic {
        width: 100%;
        height: auto;
    }

    .route-actions {
        margin-top: 24px;
    }

    .route-button {
        width: 100%;
    }


    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .topbar {
        min-height: 76px;
        gap: 18px;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-name {
        display: none;
    }

    .main-nav {
        gap: 18px;
    }

    .nav-link {
        font-size: 9px;
        letter-spacing: .12em;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        display: block;
        padding-top: 100px;
        padding-bottom: 70px;
    }

    h1 {
        font-size: clamp(70px, 26vw, 115px);
        line-height: .92;
    }

    .english-title {
        margin-top: 28px;
        letter-spacing: .22em;
    }

    .hero-community {
        max-width: none;
        margin-top: 70px;
    }

    .community-value {
        font-size: 72px;
    }

    .countdown {
        grid-template-columns: 1fr 1fr;
        row-gap: 26px;
    }

    .countdown-item:nth-child(2) {
        border-right: none;
    }

    .countdown-item:nth-child(3) {
        padding-left: 0;
    }

    .facts {
        grid-template-columns: 1fr 1fr;
    }

    .fact {
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .content-section {
        padding: 75px 0;
    }

    #film {
        min-height: 620px;
    }

    #film::before {
        background-position: 66% center;
    }

    #film::after {
        background: rgba(0,0,0,.42);
    }

    .partners {
        grid-template-columns: 1fr;
    }


    .route-actions {
        margin-top: 38px;
    }

    .route-button {
        width: 100%;
    }

    .preparation-grid {
        grid-template-columns: 1fr;
    }

    .preparation-item {
        grid-template-columns: 45px 1fr;
        padding: 28px 0;
        border-right: none !important;
    }

    .preparation-item:nth-child(even) {
        padding-left: 0;
    }

    .project-stats {
        grid-template-columns: 1fr;
    }

    .project-stat-card {
        min-height: 470px;
    }

    .stat-main-value strong {
        font-size: clamp(58px, 18vw, 88px);
    }

    .support-actions {
        flex-direction: column;
    }

    .support-button {
        width: 100%;
    }

    .donate-qr-image {
        width: 125px;
        height: 125px;
    }

    .contacts-section {
        padding-top: 100px;
        padding-bottom: 28px;
    }

    .contacts-top h2 {
        font-size: clamp(54px, 17vw, 85px);
    }

    .contacts-grid {
        margin-top: 65px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
    }

    .contacts-bottom {
        margin-top: 52px;
        flex-direction: column;
    }
}

/* ========================================
   REDUCED MOTION
======================================== */
@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-image {
        animation: none;
    }

    .nav-link,
    .nav-link::after {
        transition: none;
    }
}


/* ========================================
   PREMIUM PARTNER PRESENTATION
======================================== */
.sponsor-ad,
.live-wide-ad {
    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.sponsor-ad:hover,
.live-wide-ad:hover {
    border-color: rgba(255,255,255,.38);
    background: #080808;
}

.sponsor-ad strong,
.live-wide-ad strong {
    letter-spacing: .015em;
}

.sponsor-ad-label {
    color: #6f6f6f;
}

.sponsor-ad small,
.live-wide-ad small {
    color: #737373;
}



/* ========================================
   LIVE STAGE MODES
======================================== */
.live-mode-panel {
    position: absolute;
    inset: 0;
}

.live-mode-panel[hidden] {
    display: none !important;
}


/* GPS MAP · DEFAULT */
.live-map-panel {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,.06), transparent 34%),
        #050505;
}

.live-map-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 49.8%, rgba(255,255,255,.025) 50%, transparent 50.2%),
        linear-gradient(45deg, transparent 0 49.8%, rgba(255,255,255,.018) 50%, transparent 50.2%);
    background-size: 52px 52px;
    opacity: .40;
}

.live-map-status {
    position: absolute;
    top: 24px;
    left: 26px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .22em;
    color: #9b9b9b;
}

.live-map-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}

.live-map-copy {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 43%;
    width: min(760px, 82%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.live-map-copy strong {
    display: block;
    font-size: clamp(34px, 4.2vw, 76px);
    line-height: .98;
    font-weight: 600;
    letter-spacing: -.025em;
}

.live-map-copy p {
    max-width: 610px;
    margin: 20px auto 0;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.65;
    color: #919191;
}

.live-map-meta {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(5px);
}

.live-map-meta > div {
    min-height: 92px;
    padding: 19px 22px;
    border-right: 1px solid rgba(255,255,255,.10);
}

.live-map-meta > div:last-child {
    border-right: none;
}

.live-map-meta span {
    display: block;
    margin-bottom: 10px;
    font-size: 8px;
    letter-spacing: .20em;
    color: #626262;
}

.live-map-meta strong {
    display: block;
    font-size: clamp(16px, 1.3vw, 24px);
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
}


/* LIVE BROADCAST · VK PLAYER PLACEHOLDER */
.live-broadcast-panel {
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,.055), transparent 36%),
        #040404;
}

.live-broadcast-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

.live-broadcast-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .23em;
    color: #9b9b9b;
}

.live-broadcast-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.live-broadcast-placeholder strong {
    display: block;
    font-size: clamp(38px, 4.6vw, 82px);
    line-height: .95;
    font-weight: 600;
    letter-spacing: -.025em;
}

.live-broadcast-placeholder p {
    max-width: 600px;
    margin: 22px auto 0;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.65;
    color: #8f8f8f;
}

@media (max-width:700px) {
    .live-map-copy {
        top: 38%;
        width: 88%;
    }

    .live-map-meta {
        grid-template-columns: 1fr 1fr;
    }

    .live-map-meta > div {
        min-height: 82px;
    }

    .live-map-meta > div:nth-child(2) {
        border-right: none;
    }

    .live-map-meta > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.10);
    }
}



/* ========================================
   MOBILE POLISH ONLY
   Desktop styles above remain unchanged.
======================================== */
@media (max-width:700px) {

    /* Header: keep the logo fixed and allow the nav to scroll horizontally. */
    .topbar {
        min-height: 88px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 16px;
        align-items: center;
        overflow: hidden;
    }

    .brand {
        gap: 0;
    }

    .brand-logo {
        width: 58px;
        height: 58px;
        flex: 0 0 auto;
    }

    .brand-name,
    .brand-expedition {
        display: none;
    }

    .main-nav {
        min-width: 0;
        justify-content: flex-start;
        gap: 24px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px 2px 12px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        flex: 0 0 auto;
        font-size: 11px;
        letter-spacing: .13em;
        scroll-snap-align: start;
    }

    .nav-link::after {
        bottom: -8px;
    }

    /* Partner cards: much shorter on phones. */
    .partners {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .partner {
        min-height: 128px;
        padding: 22px 20px;
    }

    .partner span {
        font-size: 9px;
        letter-spacing: .16em;
    }

    .partner strong {
        font-size: clamp(20px, 6.2vw, 28px);
        line-height: 1.08;
    }

    /* Slightly tighten the countdown/facts vertical rhythm on mobile. */
    .countdown-section {
        padding-top: 22px;
        padding-bottom: 24px;
    }

    .countdown {
        row-gap: 22px;
    }

    .facts .fact {
        padding-top: 18px;
        padding-bottom: 20px;
    }

    /* Keep hero copy readable without changing its visual weight too much. */
    .hero-description {
        line-height: 1.45;
    }
}


/* ========================================
   MOBILE LIVE BUTTON
   Mobile only — desktop unchanged.
======================================== */
@media (max-width:700px) {

    .topbar {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 12px;
    }

    .header-live-button {
        display: inline-flex;
        min-height: 38px;
        padding: 0 12px;
        gap: 7px;
        font-size: 9px;
        letter-spacing: .12em;
        flex: 0 0 auto;
    }

    .header-live-dot {
        width: 6px;
        height: 6px;
    }
}


/* ========================================
   MOBILE LIVE STAGE FIX
   Mobile only — desktop unchanged.
======================================== */
@media (max-width:700px) {

    .live-player {
        aspect-ratio: auto;
        min-height: 620px;
    }

    .live-map-copy {
        top: 34%;
        width: 88%;
    }

    .live-map-copy strong {
        font-size: clamp(34px, 10vw, 52px);
        line-height: 1;
    }

    .live-map-copy p {
        max-width: 90%;
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.55;
    }

    .live-map-meta {
        grid-template-columns: 1fr 1fr;
    }

    .live-map-meta > div {
        min-height: 94px;
        padding: 18px 18px;
    }
}


/* ========================================
   MOBILE HEADER · TWO ROWS
   Desktop remains unchanged.
======================================== */
@media (max-width:700px) {

    .topbar {
        min-height: 118px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 14px;
        row-gap: 10px;
        align-items: center;
        padding-top: 12px;
        padding-bottom: 12px;
        overflow: hidden;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
    }

    .brand-logo {
        width: 58px;
        height: 58px;
    }

    .brand-name,
    .brand-expedition {
        display: none;
    }

    .main-nav {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
        justify-content: flex-start;
        gap: 24px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px 2px 10px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        flex: 0 0 auto;
        font-size: 11px;
        letter-spacing: .13em;
        scroll-snap-align: start;
    }

    .header-live-button {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        min-height: 42px;
        padding: 0 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        font-size: 10px;
        letter-spacing: .14em;
    }

    .header-live-dot {
        width: 7px;
        height: 7px;
    }
}


/* ========================================
   VK LIVE PLAYER
======================================== */
.live-vk-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000000;
}

