@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800;900&family=Lexend:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Lexend', sans-serif;
    background: #07080F;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #E8E8F0;
    position: relative;
}

/* Subtle grid overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 128, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 128, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: 0;
}

/* Glow blob */
body::after {
    content: '';
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(204, 255, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 480px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ── HEADER ── */
.header {
    text-align: center;
    margin-bottom: 28px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #CCFF00;
    text-shadow: 0 0 30px rgba(204, 255, 0, 0.45), 0 0 60px rgba(204, 255, 0, 0.15);
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.logo .star {
    display: none;
}

.tagline {
    font-size: 11px;
    color: rgba(232, 232, 240, 0.35);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── CARD ── */
.subscription-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 0 1px rgba(204, 255, 0, 0.04),
        0 24px 60px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.subscription-card h1 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.3px;
}

.description {
    color: rgba(232, 232, 240, 0.45);
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 28px;
}

/* ── FEATURES ── */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.feature-item {
    text-align: center;
    padding: 20px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item:nth-child(1) {
    background: rgba(204, 255, 0, 0.05);
    border-color: rgba(204, 255, 0, 0.14);
}
.feature-item:nth-child(1):hover {
    box-shadow: 0 8px 24px rgba(204, 255, 0, 0.1);
}

.feature-item:nth-child(2) {
    background: rgba(0, 128, 255, 0.05);
    border-color: rgba(0, 128, 255, 0.14);
}
.feature-item:nth-child(2):hover {
    box-shadow: 0 8px 24px rgba(0, 128, 255, 0.1);
}

.feature-item:nth-child(3) {
    background: rgba(255, 0, 128, 0.05);
    border-color: rgba(255, 0, 128, 0.14);
}
.feature-item:nth-child(3):hover {
    box-shadow: 0 8px 24px rgba(255, 0, 128, 0.1);
}

.feature-item:nth-child(4) {
    background: rgba(140, 80, 255, 0.05);
    border-color: rgba(140, 80, 255, 0.14);
}
.feature-item:nth-child(4):hover {
    box-shadow: 0 8px 24px rgba(140, 80, 255, 0.1);
}

.feature-item .icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.feature-item p {
    font-size: 12px;
    color: rgba(232, 232, 240, 0.75);
    font-weight: 600;
}

/* ── PRICING ── */
.pricing {
    text-align: center;
    margin-bottom: 20px;
    padding: 24px 20px;
    background: linear-gradient(135deg, #CCFF00 0%, #00FF94 100%);
    border-radius: 16px;
    color: #060C00;
    box-shadow: 0 8px 32px rgba(204, 255, 0, 0.2), 0 0 0 1px rgba(204, 255, 0, 0.1);
}

.pricing h3 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 44px;
    font-weight: 900;
    margin: 8px 0;
    line-height: 1;
    color: #060C00;
}

.price span,
.price sup {
    font-size: 20px;
    opacity: 0.65;
    font-weight: 700;
}

.note {
    font-size: 11px;
    opacity: 0.6;
    font-weight: 600;
}

/* ── NOTICE ── */
.important-notice {
    background: rgba(0, 194, 255, 0.05);
    border-left: 3px solid #00C2FF;
    padding: 12px 16px;
    margin: 18px 0;
    border-radius: 0 12px 12px 0;
}

.important-notice p {
    margin: 0;
    color: rgba(232, 232, 240, 0.55);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
}

.important-notice strong {
    color: #00C2FF;
}

/* ── BUTTONS ── */
.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, #CCFF00, #00FF94);
    color: #060C00;
    border: none;
    padding: 17px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.8px;
    font-family: 'Lexend', sans-serif;
    box-shadow: 0 4px 20px rgba(204, 255, 0, 0.25), 0 0 0 1px rgba(204, 255, 0, 0.08);
    transition: all 0.25s ease;
    text-transform: uppercase;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(204, 255, 0, 0.4), 0 0 0 1px rgba(204, 255, 0, 0.2);
}

.subscribe-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(204, 255, 0, 0.2);
}

.continue-btn,
.dashboard-btn {
    background: linear-gradient(135deg, #CCFF00, #00FF94);
    color: #060C00;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Lexend', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(204, 255, 0, 0.25);
    transition: all 0.25s ease;
}

.continue-btn:hover,
.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(204, 255, 0, 0.4);
}

.primary-btn {
    background: linear-gradient(135deg, #CCFF00, #00FF94);
    color: #060C00;
    border: none;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(204, 255, 0, 0.25);
    transition: all 0.25s ease;
    font-family: 'Lexend', sans-serif;
    letter-spacing: 0.5px;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(204, 255, 0, 0.4);
}

.danger-btn {
    background: linear-gradient(135deg, #FF0080, #FF4400);
    color: white;
    border: none;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 0, 128, 0.3);
    transition: all 0.25s ease;
    font-family: 'Lexend', sans-serif;
}

.danger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 0, 128, 0.45);
}

.danger-btn:active {
    transform: translateY(0);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(232, 232, 240, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
    font-family: 'Lexend', sans-serif;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.retry-btn {
    background: linear-gradient(135deg, #FF0080, #FF5500);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    font-family: 'Lexend', sans-serif;
    box-shadow: 0 4px 16px rgba(255, 0, 128, 0.3);
    transition: all 0.25s ease;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 0, 128, 0.45);
}

.action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* ── STATES ── */
.loading-state,
.error-state,
.processing-state,
.success-state {
    text-align: center;
    padding: 24px 16px;
}

.spinner {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid #CCFF00;
    border-right: 3px solid #00C2FF;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
    margin: 0 auto 18px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    color: rgba(232, 232, 240, 0.75);
    font-size: 14px;
    font-weight: 600;
}

.loading-state .note {
    color: rgba(232, 232, 240, 0.3);
    font-size: 11px;
    margin-top: 6px;
    opacity: 1;
}

.error-state .error-icon {
    font-size: 52px;
    display: block;
    margin-bottom: 14px;
}

.error-state p {
    color: rgba(232, 232, 240, 0.65);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
}

/* ── PROGRESS STEPS ── */
.progress-steps {
    display: flex;
    justify-content: space-around;
    margin: 28px 0;
    gap: 8px;
}

.step {
    text-align: center;
    opacity: 0.25;
    transition: all 0.4s ease;
    flex: 1;
}

.step.active {
    opacity: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(232, 232, 240, 0.3);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.step.active .step-number {
    background: linear-gradient(135deg, #CCFF00, #00FF94);
    color: #060C00;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.35);
    animation: pulseGlow 1.4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 16px rgba(204, 255, 0, 0.3); }
    50% { box-shadow: 0 0 32px rgba(204, 255, 0, 0.6), 0 0 60px rgba(204, 255, 0, 0.15); }
}

.step p {
    font-size: 11px;
    color: rgba(232, 232, 240, 0.35);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step.active p {
    color: #CCFF00;
}

/* ── SUCCESS ── */
.success-icon {
    font-size: 72px;
    margin-bottom: 16px;
    display: block;
}

.phone-number {
    font-size: 15px;
    font-weight: 700;
    color: #00C2FF;
    margin: 14px 0;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.success-animation {
    margin-bottom: 24px;
}

.checkmark-circle {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(135deg, #CCFF00, #00FF94);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 40px rgba(204, 255, 0, 0.4), 0 0 80px rgba(204, 255, 0, 0.1);
}

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

.checkmark {
    width: 22px;
    height: 44px;
    border: solid #060C00;
    border-width: 0 5px 5px 0;
    transform: rotate(45deg);
    margin-top: -8px;
    animation: drawCheck 0.4s ease-out 0.2s backwards;
}

@keyframes drawCheck {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.welcome-text {
    font-size: 14px;
    color: rgba(232, 232, 240, 0.5);
    margin-bottom: 24px;
    line-height: 1.7;
    text-align: center;
}

/* ── NEXT STEPS ── */
.next-steps {
    margin: 24px 0;
}

.next-steps h3 {
    color: #CCFF00;
    margin-bottom: 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.step-list {
    text-align: left;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: border-color 0.25s;
}

.step-item:hover {
    border-color: rgba(204, 255, 0, 0.12);
}

.step-icon {
    font-size: 24px;
}

.step-item p {
    font-size: 13px;
    color: rgba(232, 232, 240, 0.75);
    font-weight: 500;
}

/* ── SUPPORT ── */
.support-info {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(232, 232, 240, 0.25);
    font-size: 11px;
    text-align: center;
    line-height: 1.8;
}

/* ── ALERT ── */
.alert {
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

.alert-warning {
    background: rgba(255, 184, 0, 0.07);
    border: 1px solid rgba(255, 184, 0, 0.2);
    color: rgba(232, 232, 240, 0.75);
}

.alert-icon {
    font-size: 20px;
}

/* ── UNSUBSCRIBE PAGE ── */
.warning-text {
    color: rgba(232, 232, 240, 0.5);
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

.unsubscribe-info {
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 22px;
    margin-right: 14px;
    min-width: 30px;
}

.info-item p {
    font-size: 13px;
    color: rgba(232, 232, 240, 0.6);
    margin: 0;
    font-weight: 500;
}

.success-message {
    color: #CCFF00;
    font-size: 15px;
    text-align: center;
    margin-bottom: 14px;
    font-weight: 700;
}

.info-text {
    color: rgba(232, 232, 240, 0.45);
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

/* ── TERMS ── */
.terms {
    text-align: center;
    margin-top: 22px;
    color: rgba(232, 232, 240, 0.18);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.8;
}

.terms a {
    color: #CCFF00;
    text-decoration: none;
    font-weight: 600;
}

.terms a:hover {
    text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
    .subscription-card {
        padding: 24px 18px;
    }

    .subscription-card h1 {
        font-size: 20px;
    }

    .price {
        font-size: 38px;
    }

    .features {
        gap: 8px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}
