.top_announcement {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0 2px;
    font-size: 12px;
    gap: 6px;
}
header {
    display: flex;
    padding: 48px;
    width: 100%;
    position: fixed;
    /* margin-top: 16px; */
    top: 0;
    transition: .3s width ease-out;
}
header.shrink {
    width: 25vw;
}
header span {
    --color: white;
    border-radius: 100px;
    color: var(--color);
    padding: 12px 16px 6px 16px;
    font-weight: 700;
    font-size: 16px;
    transition: .3s background-color ease-out;
}
header.shrink span {
    background-color: white;
    --color: rgba(0,0,0,0.9);
}
header span div {
    background-color: var(--color);
    width: 6px;
    aspect-ratio: 1/1;
    display: inline-block;
    margin-bottom: 8px;
    margin-left: -4px;
}
.header-menu_button {
    height: 37px;
    width: 140px;
    border-radius: 100px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    transition: .3s width ease-out;
}
.header-menu_button:hover {
    background-color: rgba(255,255,255,0.15);
}
.header-menu_button div {
    background-color: white;
    height: 1px;
    width: 60%;
}
header.shrink .header-menu_button {
    width: 96px;
}
section {
    height: calc(100vh + 64px);
    min-height: fit-content;
}
section .whole-content {
    max-width: 1400px;
    margin: 0;
    height: 100%;
}
section .whole-content.no-max-width {
    max-width: none;
}
section .whole-content.grid {
    display: grid;
    grid-template-columns: 25vw 1fr;
    min-height: fit-content;
}
.states.grid {
    min-height: 700px;
}
section.hero {
    background-color: #4e46e5;
    background: linear-gradient(145deg, #3a33c7a2 0%, #1d169267 100%), url(/images/noise.svg), #4e46e5;
    
    overflow: clip;
    position: relative;
    min-height: 700px;
    max-height: 1000px;
    height: 100vh;
}
section.hero .whole-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.hero_title {
    width: 100%;
    margin-top: 96px;
    max-width: 950px;
}
.he-row {
    display: grid;
    grid-template-columns: 1fr 500px 1fr;
    padding: 0 56px;
}
.he-row > div {
    margin-top: 64px;
}
.hero_image {
    margin-top: -86px;
    width: 100%;
    height: 1200px;
    object-fit: cover;
}
.short_description {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    max-width: 416px;
    margin-top: 26px;
}
.he-row-signup {
    margin-left: auto;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 18px;
    position: relative;
    z-index: 3;
}
.signup_balls {
    position: relative;
    width: 110px;
    aspect-ratio: 1/1;
    display: flex;

}
.signup_balls img, .signup_balls div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1/1;
}
.signup_balls img {
    left: -32px;
}
.signup_balls div {
    left: 32px;
}
.signup_balls div {
    border: 1px solid rgba(255,255,255,1);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.signup_balls svg {
    width: 50%;
    aspect-ratio: 1/1;
    fill: white;
}
.he-row-signup span {
    text-align: center;
    display: block;
    margin: 24px 0 0 0;
    font-size: 16px;
    font-weight: 300;
}
.hero-glowing {
    z-index: 2;
    width: 100%;
    height: 200px;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    display: grid;
    align-items: end;
    grid-template-columns: 2fr 3fr 4fr 3fr 2fr;
}
.hero-glow {
    --color: red;
    width: 100%;
    background-color: var(--color);
    box-shadow: 0px 0px 36px 16px var(--color);
    height: 50px;
    border-radius: 100%;
    filter: blur(20px);
    z-index: 2;
    margin: 0 0 -18px 0;
    transform: scaleY(1.2);

    opacity: 0.75;
}
.hero-glow.red { --color: #ef4444; right: -300px; bottom: -350px;  }
.hero-glow.orange { --color: #fb923c; height: 65px; }
.hero-glow.yellow { --color: #fbbf24; height: 80px; }
.hero-glow.green { --color: #bef264; height: 65px; }
.hero-glow.blue { --color: #38bdf8 }
.rainbow-line {
    background: linear-gradient(90deg, rgba(239,68,68,1) 0%, rgba(251,146,60,1) 25%, rgba(251,191,36,1) 50%, rgba(190,242,100,1) 75%, rgba(56,185,242,1) 100%);
    height: 12px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 3;
}
a.mobile-signup {
    display: none;
}
section .menu {
    width: 100%;
    height: 100%;
    /* border-right: 1px solid rgba(255,255,255,0.15); */
}
.states-count {
    width: 200px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(255,255,255,0.035);
    margin: 128px auto 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.states-count span.num {
    font-size: 96px;
    font-weight: 900;
}
.states-list {
    width: 100%;
    margin-top: 48px;
}
.states-list li {
    text-align: center;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    padding: 2px 0;
    cursor: pointer;
    transition: .3s font-weight ease-out;
}
.states-list li.selected {
    font-weight: 600;
    text-decoration: underline;
}

section.grid .content {
    width: 100%;
    height: 100%;
    padding: 16px 16px 16px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    color: rgba(0,0,0,0.9);
}
section.grid .content span, section.grid .content p {
    color: rgba(0,0,0,0.9);
}
.content-card {
    border-radius: 28px;
    background-color: white;
    width: 100%;
    height: 100%;
    padding: 48px;
    overflow: clip;
}
section.states .content {
    grid-template-columns: 10fr 5fr;
    grid-template-rows: 3fr 2fr;
    padding-right: 0;
}
.state-name {
    color: rgba(255,255,255,0.9) !important;
    font-size: 72px;
    text-align: center;
    width: 100%;
    left: 0;
    top: 120px;
    font-weight: 700;
    z-index: 1;
    position: absolute;
    animation-name: stateName-appear;
    animation-duration: 1s;
}
@keyframes stateName-appear {
    from {
        transform: translateY(-100px);
        scale: 0.85;
        opacity: .3;
    }
    to {
        transform: translateY(0);
        scale: 1;
        opacity: 1;
    }
}
.state-name.disappear {
    opacity: 0;
    scale: 1.3;
    filter: blur(10px);
    animation-name: none;

    transition-property: opacity, scale, filter;
    transition-duration: .5s;
    transition-timing-function: ease-in;
}
.state_preview-card {
    grid-row: 1/3;
    position: relative;
    display: flex;
    background-color: black;
}
.description-card, .map-card {
    padding: 24px;
    padding-right: 16px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
}
.map-card {
    background-color: rgba(30,30,30,1);
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.description-card {
    display: flex;
    flex-direction: column;
}
.map-card-bottom_part {
    display: flex;
    margin-top: auto;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.map-card img {
    position: absolute;
    width: 100%;
    object-fit: cover;
    margin: auto 0;
    left: 0;
    z-index: 0;
    opacity: 0.75;
}
.map-card span {
    z-index: 1;
    color: white !important;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.map-button {
    width: 64px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-color: white;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-button svg {
    fill: black;
    width: 36px;
    aspect-ratio: 1/1;
}
.map-button:hover svg {
    animation-name: mapButton;
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-iteration-count: 2;
}
.mobile_buttons-card {
    display: none;
}
@keyframes mapButton {
    50% {
        transform: translate(6px, -6px);
    }
}
.state-description {
    font-size: 22px;
    font-weight: 600;
    transition-property: opacity, transform;
    transition-duration: .5s;
    transition-timing-function: ease-out;
    position: relative;
    z-index: 2;
    text-shadow: 0px 4px 4px white;
}
.description-card.disappear .state-description {
    opacity: 0;
    transform: translateX(10px);
}
.state-poster, .state-poster-top_layer {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}
.state-poster, .state-poster-top_layer {
    animation-name: poster-appear;
    animation-duration: 1.5s;
}
.map-card img {
    animation-name: map-appear;
    animation-duration: 1.5s;
}
@keyframes poster-appear {
    from {
        filter: brightness(0);
        scale: 1.3;
    }
}
@keyframes map-appear {
    from {
        opacity: 0;
        scale: 1.3;
    }
}
.state-poster.disappear, .state-poster-top_layer.disappear, .map-card img.disappear {
    transition: 1s filter ease-out, 1s scale ease-in;
    animation: none;
    filter: brightness(0);
    scale: 1.3;
}
.state-poster img, .state-poster-top_layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 2;
}
.state-poster-top_layer {
    z-index: 2;
    pointer-events: none;
}
.state-preview_bottom {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 8px;
    margin: auto 0 0 0;
    z-index: 2;
}
.states-progress, .state-learn_more {
    position: relative;

    padding: 8px;
    height: 64px;
    border-radius: 100px;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);

    display: flex;
    z-index: 4;
}
.state-learn_more {
    aspect-ratio: 1/1;
}
.state-button {
    height: 100%;
    aspect-ratio: 1/1;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.state-button:hover {
    background-color: rgba(255,255,255,0.2);
}
.state-button svg {
    fill: rgba(255,255,255,0.75);
    width: 75%;
    aspect-ratio: 1/1;
}
.states-progress_list {
    margin: 0 32px;
    width: 102px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.states-progress_list div {
    height: 6px;
    width: 6px;
    background-color: rgba(255,255,255,0.35);
    transition: width .3s ease-out;
    display: flex;
}
.states-progress_list div.active {
    width: 42px;
}
.states-progress_list div.active span, .states-progress_list div.preview span {
    background-color: rgba(255,255,255,1);
    width: 6px;
    height: 100%;
    animation-name: progress;
    animation-duration: 9s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}
@keyframes progress {
    to {
        width: 100%;
    }
}

.state-emojis {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 32px;
    left: 0;
    opacity: 0;
    transform: translateY(15px);
    transition-property: opacity, transform;
    transition-duration: .3s;
    transition-timing-function: ease-out;
}
.state-emojis.shown {
    opacity: 1;
    transform: translateY(0);
}
.state-emojis img {
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    aspect-ratio: 1/1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.state-emojis .apartments {
    top: 45%;
    left: 15%;
    rotate: 6deg;
}
.state-emojis .bank {
    top: 36%;
    left: 38%;
    rotate: -14deg;
}
.state-emojis .blossom {
    top: 0%;
    left: 66%;
    rotate: 10deg;
}
.state-emojis .court {
    top: 75%;
    left: 24%;
    rotate: 4deg;
}
.state-emojis .freddy {
    top: 65%;
    left: 64%;
    rotate: -4deg;
}
.state-emojis .house {
    top: 64%;
    left: 84%;
    rotate: 0;
}
.section-header {
    font-size: 72px;
    font-weight: 500;
    margin-top: 96px;
}
.section-paragraph {
    font-size: 24px;
    font-weight: 500;
    max-width: 650px;
    line-height: 1.5;
    margin-top: 32px;
}
.section-paragraph span, section ol li span {
    color: rgba(255,255,255,0.5);
}
section ol {
    margin-top: 32px;
    margin-bottom: 32px;
    max-width: 650px;
}
section ol li {
    padding: 12px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}
section.why-us {
    /* background-color: #ef444411; */
    background-color: #38bdf811;
}
section.we-have-states {
    border-top: 1px solid rgba(255,255,255,0.15);
    background-color: #64f27011;
    position: relative;
    overflow: clip;
}
.usd_glow_map {
    position: absolute;
    left: 30vw;
    height: 60%;
    bottom: -64px;
}
section.states {
    background-color: #e2f66d11;
    border-top: 1px solid rgba(255,255,255,0.15);
    height: 100vh;
}
section.achievements {
    background-color: #fb923c11;
    border-top: 1px solid rgba(255,255,255,0.15);
}
section.achievements .content {
    padding: 16px 16px 16px 0;
}
.achievements-block {
    background-color: #fb923c08;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}
.title-pill {
    --color: #e2f66d2f;
    padding: 6px 18px;
    background-color: var(--color);
    border: 1px solid var(--color);
    border-radius: 100px;
    margin: 128px 48px 16px auto;
    display: block;
    width: fit-content;
    position: sticky;
    top: 128px;
}
.why-us .title-pill {
    --color: #6de6f62f;
}
.welcome_player {
    position: fixed;
    width: 100%;
    bottom: 48px;
    left: 0;
    
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.welcome_player a {
    padding: 8px 8px 8px 24px;
    border-radius: 100px;

    background-color: rgba(30,30,30,0.85);
    border: 1px solid rgba(0,0,0,0.35);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 12px;

    transform: translateY(120px) scale(0.75);
    transition: .5s transform cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}
.welcome_player svg {
    height: 42px;
    width: 42px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 100%;
    fill: white;
    padding: 8px;
}
.welcome_player.shown {
    pointer-events: all;
}
.welcome_player.hidden {
    display: none;
}
.welcome_player.shown a {
    transform: translateY(0) scale(1);
}
.welcome_player.shown a:hover {
    transform: scale(1.05);
}
.welcome_player.shown a:active {
    transform: scale(0.95);
}
@media screen and (max-width: 1280px) {
    section.states .content {
        grid-template-columns: 8fr 5fr;
        grid-template-rows: 3fr auto;
    }

    header {
        position: fixed;
        height: 72px;
    }
    header.shrink {
        width: 100%;
    }
    header.shrink .header-menu_button {
        background-color: rgba(255,255,255,0.075);
        backdrop-filter: blur(5px);
        width: 64px;
        border: 1px solid rgba(255,255,255,0.2);
    }
}