:root {
    --background: #080613;
    --surface: #121027;
    --surface-soft: #191532;
    --text: #ffffff;
    --text-muted: #bbb6cc;
    --purple: #7c35ff;
    --purple-light: #b68cff;
    --pink: #f22dad;
    --green: #19d85b;
    --green-dark: #0dbb48;
    --yellow: #ffd447;
    --border: rgba(255, 255, 255, 0.11);
    --shadow: 0 28px 75px rgba(0, 0, 0, 0.38);
    --container: 1160px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 12%, rgba(124, 53, 255, 0.28), transparent 28%),
        radial-gradient(circle at 100% 45%, rgba(242, 45, 173, 0.11), transparent 26%),
        var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 36px), var(--container));
    margin-inline: auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(8, 6, 19, 0.84);
    backdrop-filter: blur(18px);
}

.topbar-content {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--purple), var(--pink));
    box-shadow: 0 12px 28px rgba(124, 53, 255, 0.28);
    font-size: 1.35rem;
    font-weight: 900;
}

.brand-text strong,
.brand-text small {
    display: block;
    line-height: 1;
}

.brand-text strong {
    font-size: 1rem;
    letter-spacing: 0.13em;
}

.brand-text small {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
}

.followers-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.followers-badge span {
    color: var(--pink);
}

.followers-badge strong,
.followers-badge small {
    display: block;
}

.followers-badge strong {
    color: #ff72cf;
    font-size: 0.88rem;
}

.followers-badge small {
    color: var(--text-muted);
    font-size: 0.62rem;
    text-transform: uppercase;
}

.hero {
    padding: 38px 0 74px;
}

.hero-container {
    max-width: 920px;
}

.edition-label {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 auto 18px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 110, 202, 0.35);
    border-radius: 999px;
    background: rgba(242, 45, 173, 0.10);
    color: #ff91d8;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.live-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(25, 216, 91, 0.11);
    animation: pulse 1.7s infinite;
}

.edition-card {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 34px;
    background: #17112c;
    box-shadow: var(--shadow);
}

.edition-image {
    height: 660px;
    object-fit: cover;
}

.edition-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 6, 19, 0.97), rgba(8, 6, 19, 0.05) 62%),
        linear-gradient(to right, rgba(124, 53, 255, 0.18), transparent);
}

.edition-content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
    text-align: center;
}

.edition-content span,
.edition-content strong {
    display: block;
}

.edition-content span {
    color: #d8d2e8;
    font-size: 0.9rem;
}

.edition-content h1 {
    margin-top: 4px;
    font-size: clamp(2.5rem, 7vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.edition-content strong {
    margin-top: 12px;
    color: var(--yellow);
    font-size: clamp(1.25rem, 3.5vw, 2.25rem);
}

.primary-button {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 18px 50px rgba(25, 216, 91, 0.25);
    font-size: 1rem;
    font-weight: 900;
    transition: 0.25s ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(25, 216, 91, 0.34);
}

.hero-button {
    width: 100%;
    margin-top: 18px;
}

.button-icon {
    font-size: 1.2rem;
}

.button-arrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.14);
    font-size: 1.2rem;
}

.final-stretch-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
    padding: 24px 26px;
    border: 1px solid rgba(255, 212, 71, 0.55);
    border-radius: 22px;
    background:
        radial-gradient(circle at left, rgba(255, 90, 35, 0.15), transparent 35%),
        rgba(255, 212, 71, 0.055);
    box-shadow: 0 16px 45px rgba(255, 168, 0, 0.10);
}

.final-stretch-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    background: rgba(255, 90, 35, 0.12);
    font-size: 2rem;
}

.final-stretch-card span,
.final-stretch-card strong {
    display: block;
}

.final-stretch-card span {
    color: var(--yellow);
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
}

.final-stretch-card strong {
    margin-top: 3px;
    font-size: 0.95rem;
}

.final-stretch-card p {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.activity-section,
.deliveries-section {
    padding: 92px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.activity-section {
    background: rgba(255, 255, 255, 0.018);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.section-kicker {
    color: #ff6dce;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.section-heading h2,
.final-cta h2 {
    max-width: 760px;
    margin-top: 12px;
    font-size: clamp(2rem, 4.5vw, 3.9rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.section-heading p {
    max-width: 720px;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #ff8bd8;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.activity-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 20px;
    margin-top: 38px;
}

.activity-feature {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(124, 53, 255, 0.23), transparent 38%),
        rgba(255, 255, 255, 0.045);
}

.activity-avatar,
.toast-avatar {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--purple), var(--pink));
    font-weight: 900;
}

.activity-feature-content span,
.activity-feature-content strong {
    display: block;
}

.activity-feature-content span {
    color: var(--purple-light);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.activity-feature-content strong {
    margin-top: 6px;
    font-size: 1.2rem;
}

.activity-feature-content p {
    margin-top: 10px;
    font-size: clamp(1.45rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.activity-feature small {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.activity-list {
    display: grid;
    gap: 11px;
}

.activity-item {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.04);
    transition: 0.25s ease;
}

.activity-item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.065);
}

.activity-item-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--purple), var(--pink));
    font-size: 0.82rem;
    font-weight: 900;
}

.activity-item-content {
    min-width: 0;
    flex: 1;
}

.activity-item-content strong,
.activity-item-content span {
    display: block;
}

.activity-item-content strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.82rem;
}

.activity-item-content span {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.69rem;
}

.activity-time {
    color: var(--purple-light);
    font-size: 0.66rem;
    font-weight: 800;
    white-space: nowrap;
}

.simulation-note {
    max-width: 780px;
    margin: 19px auto 0;
    color: #8f899f;
    font-size: 0.7rem;
    line-height: 1.6;
    text-align: center;
}

.deliveries-section {
    overflow: hidden;
}

.deliveries-heading {
    align-items: flex-end;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
    cursor: pointer;
    transition: 0.2s ease;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-2px);
}

.delivery-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(330px, 42%);
    gap: 18px;
    overflow-x: auto;
    margin-top: 38px;
    padding: 2px 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.delivery-carousel::-webkit-scrollbar {
    display: none;
}

.delivery-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.045);
    scroll-snap-align: start;
}

.lazy-video {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #120e25;
}

.lazy-video > img,
.lazy-video > video {
    height: 100%;
    object-fit: cover;
}

.lazy-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 6, 19, 0.58), transparent 52%);
    pointer-events: none;
}

.lazy-video.is-loaded::after {
    display: none;
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #130f25;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.delivery-info {
    padding: 20px;
}

.delivery-info span,
.delivery-info strong {
    display: block;
}

.delivery-info span {
    color: var(--purple-light);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.delivery-info strong {
    margin-top: 6px;
    font-size: 0.95rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
}

.carousel-dot.active {
    width: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.trust-section {
    padding: 24px 0 84px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.trust-card > span {
    font-size: 1.35rem;
}

.trust-card strong,
.trust-card small {
    display: block;
}

.trust-card strong {
    font-size: 0.78rem;
}

.trust-card small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.64rem;
}

.final-cta {
    padding: 0 0 94px;
}

.final-cta-card {
    padding: 54px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #672cff, #a229ff 52%, #f22dad);
    box-shadow: 0 32px 85px rgba(124, 53, 255, 0.25);
    text-align: center;
}

.final-cta-card > span {
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.final-cta h2 {
    margin-inline: auto;
}

.final-cta p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.78);
}

.final-cta .primary-button {
    width: min(100%, 520px);
    margin: 28px auto 0;
}

.footer {
    padding: 30px 0 100px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.social-proof-toast {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 80;
    width: min(calc(100% - 44px), 355px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(15, 12, 33, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(22px);
    transition: 0.35s ease;
}

.social-proof-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toast-avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
}

.toast-content {
    min-width: 0;
    flex: 1;
}

.toast-content strong,
.toast-content span,
.toast-content small {
    display: block;
}

.toast-content strong {
    font-size: 0.81rem;
}

.toast-content span {
    margin-top: 2px;
    color: #ffffff;
    font-size: 0.72rem;
}

.toast-content small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.64rem;
}

.toast-close {
    align-self: flex-start;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
}

.mobile-cta {
    display: none;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

@media (max-width: 940px) {
    .activity-layout {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-carousel {
        grid-auto-columns: minmax(320px, 65%);
    }
}

@media (max-width: 660px) {
    body {
        padding-bottom: 78px;
    }

    .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .topbar-content {
        min-height: 68px;
    }

    .followers-badge {
        padding: 8px 10px;
    }

    .followers-badge > span,
    .followers-badge small {
        display: none;
    }

    .hero {
        padding: 24px 0 60px;
    }

    .edition-label {
        margin-bottom: 13px;
    }

    .edition-card {
        min-height: 480px;
        border-radius: 25px;
    }

    .edition-image {
        height: 480px;
    }

    .edition-content {
        left: 20px;
        right: 20px;
        bottom: 24px;
    }

    .edition-content h1 {
        font-size: clamp(2.3rem, 12vw, 4rem);
    }

    .edition-content strong {
        font-size: 1.25rem;
    }

    .primary-button {
        min-height: 60px;
        padding: 0 16px;
        border-radius: 16px;
        font-size: 0.86rem;
    }

    .final-stretch-card {
        align-items: flex-start;
        padding: 20px;
    }

    .final-stretch-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 15px;
        font-size: 1.55rem;
    }

    .final-stretch-card span {
        font-size: 1rem;
    }

    .activity-section,
    .deliveries-section {
        padding: 72px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2,
    .final-cta h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .activity-feature {
        min-height: 270px;
        padding: 24px;
    }

    .activity-time {
        display: none;
    }

    .delivery-carousel {
        grid-auto-columns: 88%;
    }

    .carousel-controls {
        align-self: flex-end;
    }

    .video-play {
        width: 62px;
        height: 62px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-card {
        padding: 38px 22px;
    }

    .footer {
        padding-bottom: 30px;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .social-proof-toast {
        left: 11px;
        bottom: 89px;
        width: calc(100% - 22px);
    }

    .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 11px;
        border-top: 1px solid rgba(255, 255, 255, 0.11);
        background: rgba(8, 6, 19, 0.95);
        backdrop-filter: blur(18px);
    }

    .mobile-cta span,
    .mobile-cta strong {
        display: block;
    }

    .mobile-cta span {
        color: var(--text-muted);
        font-size: 0.62rem;
    }

    .mobile-cta strong {
        margin-top: 1px;
        font-size: 0.75rem;
    }

    .mobile-cta a {
        padding: 11px 15px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--green), var(--green-dark));
        font-size: 0.72rem;
        font-weight: 900;
    }
}
