﻿:root {
    --red: #ef3237;
    --red-dark: #db2329;
    --navy: #17233f;
    --text: #1b2240;
    --muted: #68718a;
    --white: #ffffff;
    --yellow: #f8c545;
    --cyan: #38bdd7;
    --pink: #ef8eb0;
    --violet: #b58ad8;
    --container: 1180px;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shadow-soft: 0 24px 70px rgba(16, 24, 40, 0.08);
    --shadow-card: 0 12px 32px rgba(17, 24, 39, 0.06);
    --border-soft: 1px solid rgba(23, 35, 63, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fafafa 0%, #f7f8fb 100%);
    overflow-x: hidden;
    position: relative;
}

    body::before,
    body::after {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
    }

    body::before {
        background: linear-gradient(145deg, transparent 0 10%, rgba(56, 189, 215, 0.12) 10% 14%, transparent 14% 100%), linear-gradient(35deg, transparent 0 62%, rgba(248, 197, 69, 0.12) 62% 72%, transparent 72% 100%), linear-gradient(210deg, transparent 0 18%, rgba(239, 142, 176, 0.12) 18% 28%, transparent 28% 100%), linear-gradient(300deg, transparent 0 76%, rgba(181, 138, 216, 0.1) 76% 84%, transparent 84% 100%);
    }

    body::after {
        background: radial-gradient(circle at 8% 88%, rgba(56, 189, 215, 0.14), transparent 14%), radial-gradient(circle at 92% 10%, rgba(239, 50, 55, 0.08), transparent 12%), radial-gradient(circle at 84% 86%, rgba(248, 197, 69, 0.12), transparent 12%), radial-gradient(circle at 16% 16%, rgba(181, 138, 216, 0.1), transparent 12%);
    }

.site {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.confetti::before,
.confetti::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-repeat: no-repeat;
}

.confetti {
    background-image: linear-gradient(135deg, transparent 0 50%, #ef3237 50% 100%), linear-gradient(315deg, transparent 0 50%, #38bdd7 50% 100%), linear-gradient(45deg, transparent 0 50%, #f8c545 50% 100%);
    background-size: 28px 28px, 30px 30px, 22px 22px;
    background-position: 2% 52px, 97% 90px, 92% 82%;
    opacity: 0.7;
}

    .confetti::before {
        background-image: linear-gradient(225deg, transparent 0 50%, #38bdd7 50% 100%), linear-gradient(225deg, transparent 0 50%, #ef3237 50% 100%);
        background-size: 22px 22px, 16px 16px;
        background-position: 10% 18%, 88% 22%;
        opacity: 0.65;
    }

    .confetti::after {
        background-image: radial-gradient(circle, rgba(248, 197, 69, 0.55) 0 2px, transparent 3px), radial-gradient(circle, rgba(56, 189, 215, 0.55) 0 2px, transparent 3px);
        background-size: 140px 140px, 180px 180px;
        background-position: 80% 18%, 10% 56%;
        opacity: 0.7;
    }

.hero-grid {
    position: relative;
    z-index: 1;
    display: block;
    padding: 48px 56px;
}

.hero-content-full {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.left-copy {
    max-width: 640px;
}

.headline {
    margin: 0;
    font-size: clamp(2.1rem, 4.8vw, 3.8rem) !important;
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 900;
    text-transform: uppercase;
    color: #10131f;
}

    .headline .red {
        display: inline;
        color: var(--red);
    }

.headline-underline {
    width: 120px;
    height: 8px;
    margin: 18px auto 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff3d8c, #ff0055);
    box-shadow: 0 8px 18px rgba(255, 0, 85, 0.16);
}

.subcopy {
    margin: 0 auto 16px;
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    gap: 14px;
}

    .benefits-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.98rem;
        line-height: 1.6;
        font-weight: 600;
        color: var(--navy);
    }

        .benefits-list li::before {
            content: "";
            width: 20px;
            height: 20px;
            margin-top: 2px;
            flex-shrink: 0;
            border-radius: 50%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px 12px no-repeat, linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
            box-shadow: 0 4px 10px rgba(239, 50, 55, 0.22);
        }

.notify-section {
    margin-top: 38px;
    padding: 28px;
    border-radius: var(--radius-md);
    border: var(--border-soft);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
}

.notify-heading {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
}

.notify-sub {
    margin: 0 0 18px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
}

.notify-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.notify-input {
    flex: 1 1 280px;
    min-width: 220px;
    height: 54px;
    padding: 0 18px;
    border: 1.5px solid rgba(23, 35, 63, 0.12);
    border-radius: 12px;
    background: #fff;
    outline: none;
    font: inherit;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--navy);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

    .notify-input::placeholder {
        color: var(--muted);
    }

    .notify-input:focus {
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(239, 50, 55, 0.1);
    }

.btn {
    min-height: 54px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    color: #fff;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    box-shadow: 0 12px 28px rgba(239, 50, 55, 0.24);
    white-space: nowrap;
}

    .btn-primary:hover {
        box-shadow: 0 16px 36px rgba(239, 50, 55, 0.3);
    }

.notify-privacy {
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--muted);
}

    .notify-privacy::before {
        content: "🔒";
        font-size: 0.76rem;
    }

.notify-success {
    display: none;
    margin-top: 14px;
    padding: 14px 16px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.08);
    color: #166534;
    font-size: 0.94rem;
    font-weight: 700;
}

    .notify-success.show {
        display: flex;
    }

.right-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-panel {
    width: 100%;
    max-width: 520px;
    margin: 34px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.panel-logo-wrap {
    display: inline-block;
    line-height: 0;
    transform-origin: center center;
    filter: drop-shadow(0 10px 24px rgba(17, 24, 39, 0.14));
    animation: panel-logo-zoom 2.5s ease-in-out infinite;
}

@keyframes panel-logo-zoom {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.panel-logo {
    width: 180px;
    height: auto;
    display: block;
    vertical-align: bottom;
}

@media (prefers-reduced-motion: reduce) {
    .panel-logo-wrap {
        animation: none;
        transform: scale(1);
        filter: drop-shadow(0 12px 28px rgba(17, 24, 39, 0.16));
    }
}

.stats-bar {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 16px;
    border: var(--border-soft);
    background: rgba(23, 35, 63, 0.08);
    box-shadow: var(--shadow-card);
}

.stat {
    padding: 18px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
}

.stat-number {
    display: block;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
    color: var(--red);
    text-transform: uppercase;
}

.card-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.card-image-wrap {
    position: relative;
    display: inline-block;
    transform: perspective(1000px) rotateY(-11deg) rotateX(4deg);
}

.membership-card-image {
    width: 100%;
    max-width: 420px;
    display: block;
    border-radius: 18px;
    opacity: 0.88;
    filter: blur(2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22);
}

.card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    backdrop-filter: blur(6px);
    background: linear-gradient(65deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22));
}

.coming-text {
    margin: 0;
    font-size: 3rem !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff !important;
    text-transform: uppercase;
}

    .coming-text span {
        color: #e50914;
    }

.launch-countdown {
    margin: 36px auto 8px;
    max-width: 640px;
    text-align: center;
}

.launch-countdown__eyebrow {
    margin: 0 0 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #10131f;
}

.launch-countdown__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 4px;
}

.launch-countdown__sep {
    font-size: 1.35rem;
    font-weight: 800;
    color: #10131f;
    line-height: 1;
    padding: 0 2px;
    align-self: center;
}

.launch-countdown__unit {
    flex: 0 0 auto;
}

.launch-countdown__box {
    width: 86px;
    min-height: 92px;
    padding: 14px 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 14px;
    background: linear-gradient(180deg, #e50914 0%, #7a0000 42%, #1a0505 100%);
    box-shadow: 0 10px 24px rgba(180, 0, 0, 0.25);
}

.launch-countdown__value {
    font-size: clamp(1.75rem, 5vw, 2.15rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
    color: #fff;
}

.launch-countdown__label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d4af37;
}

.launch-countdown__footer {
    margin: 18px 0 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #10131f;
}

.launch-countdown--ended .launch-countdown__box {
    opacity: 0.85;
    filter: grayscale(0.15);
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 48px 40px;
    }

    .left-copy {
        max-width: none;
    }

    .right-panel {
        max-width: 480px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 20px, var(--container));
    }

    .hero {
        padding: 18px 0 24px;
    }

    .hero-shell {
        border-radius: 22px;
    }

    .hero-grid {
        gap: 34px;
        padding: 28px 20px;
    }

    .headline-underline {
        width: 140px;
        height: 8px;
        margin: 18px 0 22px;
    }

    .subcopy {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .benefits-list {
        gap: 12px;
        margin-top: 26px;
    }

    .notify-section {
        margin-top: 30px;
        padding: 20px;
    }



    .notify-form {
        flex-direction: column;
        align-items: stretch;
    }
    /* Row uses horizontal flex-grow; column main axis is vertical — reset so input doesn't stretch tall */
    .notify-input {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
        height: 54px;
        max-height: 54px;
    }

    .btn-primary {
        width: 100%;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .card-image-wrap {
        transform: none;
    }

    .coming-text {
        font-size: 1.6rem;
    }

    .launch-countdown {
        margin: 28px auto 4px;
    }

    .launch-countdown__box {
        width: 72px;
        min-height: 80px;
        padding: 12px 8px 10px;
        border-radius: 12px;
    }

    .launch-countdown__value {
        font-size: 1.5rem;
    }

    .launch-countdown__label {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }

    .launch-countdown__sep {
        font-size: 1.1rem;
    }
}

/* ------------------------------------------------------------------
   Post-launch: "The circle is now open" (toggle via JS on countdown 0)
   ------------------------------------------------------------------ */
.ta-onecircle-landing .onecircle-open {
    display: none;
    position: relative;
    padding: 32px 20px 0;
}

.ta-onecircle-landing.ta-onecircle-landing--open .onecircle-prelaunch {
    display: none !important;
}

.ta-onecircle-landing.ta-onecircle-landing--open .onecircle-open {
    display: block;
}

.onecircle-open__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(145deg, transparent 0 8%, rgba(239, 50, 55, 0.06) 8% 12%, transparent 12% 100%),
        linear-gradient(220deg, transparent 0 70%, rgba(56, 189, 215, 0.08) 70% 78%, transparent 78% 100%),
        linear-gradient(300deg, transparent 0 20%, rgba(248, 197, 69, 0.08) 20% 28%, transparent 28% 100%),
        linear-gradient(180deg, #fafafa 0%, #f7f8fb 100%);
}

.onecircle-open__bg::before,
.onecircle-open__bg::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.35;
}

.onecircle-open__bg::before {
    top: 12%;
    left: 4%;
    border-width: 0 22px 38px 22px;
    border-color: transparent transparent rgba(239, 50, 55, 0.35) transparent;
    transform: rotate(18deg);
}

.onecircle-open__bg::after {
    bottom: 18%;
    right: 6%;
    border-width: 34px 20px 0 20px;
    border-color: rgba(56, 189, 215, 0.3) transparent transparent transparent;
    transform: rotate(-12deg);
}

.onecircle-open__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.onecircle-open__header {
    margin-bottom: 28px;
}

.onecircle-open__title {
    margin: 0;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #10131f;
}

.onecircle-open__title-accent {
    color: var(--red);
}

.onecircle-open__subtitle {
    margin: 14px 0 0;
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
}

.onecircle-open__hero {
    margin: 0 auto 32px;
    max-width: 420px;
}

.onecircle-open__card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.onecircle-open__rewards-head {
    display: inline-block;
    margin: 0 auto 22px;
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    box-shadow: 0 10px 24px rgba(239, 50, 55, 0.28);
}

.onecircle-open__rewards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    text-align: left;
    margin-bottom: 32px;
}

.onecircle-open__reward {
    padding: 22px 20px;
    border-radius: var(--radius-sm);
    border: 2px dashed rgba(239, 50, 55, 0.45);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
}

.onecircle-open__reward-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 12px;
    color: var(--red);
    background: rgba(239, 50, 55, 0.08);
}

.onecircle-open__reward-title {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--red);
}

.onecircle-open__reward-body {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--navy);
}

.onecircle-open__reward-body strong {
    color: var(--red);
    font-weight: 800;
}

.onecircle-open__reward-list {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--navy);
}

.onecircle-open__reward-list li {
    margin-bottom: 6px;
}

.onecircle-open__reward-list strong {
    color: var(--red);
    font-weight: 800;
}

.onecircle-open__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    box-shadow: 0 14px 32px rgba(239, 50, 55, 0.3);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.onecircle-open__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(239, 50, 55, 0.36);
    color: #fff !important;
}

.onecircle-open__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    margin-top: 40px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.onecircle-open__footer-loc {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    background: var(--navy);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
}

.onecircle-open__footer-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--red);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
}

.onecircle-open__footer-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.onecircle-open__footer-icon {
    display: flex;
    flex-shrink: 0;
    opacity: 0.95;
}

@media (max-width: 720px) {
    .onecircle-open__rewards-grid {
        grid-template-columns: 1fr;
    }

    .onecircle-open__footer {
        grid-template-columns: 1fr;
    }
}
