.premium-page {
    max-width: 1180px;
    margin: 72px auto 0;
    padding: 24px 20px 88px;
}

.premium-hero {
    margin-bottom: 38px;
}

.premium-club-hero {
    display: flex;
    justify-content: center;
}

.premium-club-hero__copy {
    max-width: 760px;
    text-align: center;
}

.premium-club-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c8d4e3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-title {
    margin: 18px 0 14px;
    color: #f8fafc;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.premium-subtitle {
    /*margin: 0 auto;*/
    max-width: 720px;
    color: #8fa0b5;
    font-size: 16px;
    line-height: 1.75;
}

.premium-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.tariff-card {
    display: flex;
}

.tariff-card__surface {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(95, 148, 255, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        #10151d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.28);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tariff-card__surface::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%);
    opacity: 0.55;
}

.tariff-card:hover .tariff-card__surface {
    transform: translateY(-4px);
}

.tariff-card--standard:hover .tariff-card__surface {
    border-color: rgba(93, 158, 255, 0.34);
    box-shadow: 0 28px 66px rgba(34, 101, 184, 0.22);
}

.tariff-card--premium .tariff-card__surface {
    background:
        radial-gradient(circle at top right, rgba(224, 182, 75, 0.16), transparent 40%),
        radial-gradient(circle at top left, rgba(219, 176, 78, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        #12110d;
    border-color: rgba(219, 176, 78, 0.24);
}

.tariff-card--premium:hover .tariff-card__surface {
    border-color: rgba(235, 197, 95, 0.44);
    box-shadow: 0 30px 72px rgba(143, 106, 17, 0.24);
}

.tariff-card__topline,
.tariff-card__headline,
.tariff-card__access,
.tariff-card__body,
.tariff-card__footer {
    position: relative;
    z-index: 1;
}

.tariff-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tariff-card__badge,
.tariff-card__accent {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tariff-card__badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dce6f3;
}

.tariff-card__accent {
    background: rgba(219, 176, 78, 0.14);
    border: 1px solid rgba(219, 176, 78, 0.24);
    color: #f2d57b;
}

.tariff-card__headline {
    display: grid;
    gap: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tariff-card__headline h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.tariff-card__price {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.08;
}

.tariff-card__caption {
    margin: 0;
    color: #9cb0c8;
    font-size: 14px;
    font-weight: 500;
}

.tariff-card__access {
    display: grid;
    gap: 10px;
}

.tariff-card__access-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #dde9f8;
    font-size: 14px;
    line-height: 1.45;
}

.tariff-card__access-row--muted {
    color: #91a0b1;
}

.tariff-card__dot {
    width: 8px;
    height: 8px;
    margin-top: 6px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #5d9eff;
}

.tariff-card--premium .tariff-card__dot {
    background: #e1ba57;
}

.tariff-card__body {
    display: grid;
    gap: 12px;
    color: #dbe5f2;
    font-size: 15px;
    line-height: 1.72;
}

.tariff-card__body p {
    margin: 0;
}

.tariff-card__body ul,
.tariff-card__body ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tariff-card__body li {
    position: relative;
    padding-left: 18px;
}

.tariff-card__body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #5d9eff;
}

.tariff-card--premium .tariff-card__body li::before {
    background: #e1ba57;
}

.tariff-card__body li + li {
    margin-top: 10px;
}

.tariff-card__body strong {
    color: #ffffff;
}

.tariff-card__body a {
    color: #97c4ff;
}

.tariff-card__footer {
    margin-top: auto;
    padding-top: 6px;
}

.tariff-card__button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, #448eff, #2f75e8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 16px 38px rgba(47, 117, 232, 0.28);
}

.tariff-card__button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.tariff-card--premium .tariff-card__button {
    background: linear-gradient(180deg, #f3d779, #d7aa36);
    color: #1a160d;
    box-shadow: 0 18px 42px rgba(193, 145, 29, 0.3);
}

.tariff-card__button--ghost {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e6eef8;
    box-shadow: none;
}

.premium-empty {
    grid-column: 1 / -1;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d4deea;
}

.club-waitlist-page {
    padding-bottom: 80px;
}

.club-waitlist-hero {
    margin-bottom: 28px;
}

.club-waitlist-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    align-items: start;
}

.club-waitlist-section {
    background: #0d1117;
    border-radius: 22px;
    padding: 24px;
    display: grid;
    gap: 14px;
}

.club-waitlist-section h2 {
    margin: 0;
    font-size: 24px;
    color: #f8fafc;
}

.club-waitlist-section p {
    margin: 0;
    color: #8a96a3;
    line-height: 1.7;
}

.club-waitlist-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.club-waitlist-embed iframe,
.club-waitlist-embed-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.club-waitlist-embed-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: #94a3b8;
}

.club-waitlist-link {
    display: inline-flex;
    width: fit-content;
    color: #8dbbff;
    text-decoration: none;
    font-weight: 600;
}

.club-waitlist-link:hover {
    color: #b5d3ff;
}

.club-waitlist-form {
    display: grid;
    gap: 14px;
}

.club-waitlist-field {
    display: grid;
    gap: 8px;
}

.club-waitlist-field label {
    color: #e5edf8;
    font-size: 14px;
    font-weight: 600;
}

.club-waitlist-field input,
.club-waitlist-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111827;
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
    font: inherit;
    font-family: inherit;
}

.club-waitlist-field textarea {
    min-height: 132px;
    resize: vertical;
}

.club-waitlist-field input::placeholder,
.club-waitlist-field textarea::placeholder {
    color: #7f8b9b;
    font-family: inherit;
}

.club-waitlist-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 6px;
    padding: 0 18px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #448eff, #2f75e8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(47, 117, 232, 0.28);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.club-waitlist-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.club-waitlist-submit:active {
    transform: translateY(0);
}

.club-waitlist-submit:focus-visible {
    outline: 2px solid rgba(143, 188, 255, 0.8);
    outline-offset: 2px;
}

.club-waitlist-success {
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.24);
    color: #c8f3d6;
}

@media (max-width: 1080px) {
    .premium-plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .club-waitlist-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .premium-page {
        margin-top: 54px;
        padding: 18px 14px 72px;
    }

    .premium-plans {
        grid-template-columns: 1fr;
    }

    .tariff-card__headline h2 {
        font-size: 30px;
    }

    .tariff-card__price {
        font-size: 24px;
    }

    .club-waitlist-section {
        padding: 18px;
    }
}

.tariff-card__surface {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 34px 30px 28px;
    border-radius: 30px;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        #111821;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tariff-card__surface::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    opacity: 0.55;
    pointer-events: none;
}

.tariff-card__surface::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    pointer-events: none;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.16),
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.08)
    );

    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.tariff-card:hover .tariff-card__surface {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 32px 84px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tariff-card--premium .tariff-card__surface {
    background:
        linear-gradient(180deg, rgba(93, 158, 255, 0.08), rgba(255, 255, 255, 0.012)),
        #111821;

    border-color: rgba(93, 158, 255, 0.22);
}

.tariff-card--premium .tariff-card__surface::after {
    background: linear-gradient(
        180deg,
        rgba(93, 158, 255, 0.22),
        rgba(255, 255, 255, 0.035),
        rgba(93, 158, 255, 0.12)
    );
}

.tariff-card--premium:hover .tariff-card__surface {
    border-color: rgba(93, 158, 255, 0.36);
    box-shadow:
        0 32px 84px rgba(0, 0, 0, 0.56),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tariff-card__button {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 14px 30px rgba(0, 0, 0, 0.28);
}

.tariff-card--premium .tariff-card__button {
    color: #ffffff;
    background: linear-gradient(180deg, #448eff, #2f75e8);
    border-color: rgba(93, 158, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 16px 36px rgba(47, 117, 232, 0.24);
}