:root {
    --primary: #0a46e6;
    --primary-light: #2563eb;
    --primary-dark: #002db3;
    --accent: #10b981;
    --bg-dark: #0b1121;
    --bg-page: #f8fafc;
    --card-bg: #ffffff;

    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --border-light: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --shadow-glow: 0 0 40px -10px rgba(10, 70, 230, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 24px;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* Dynamic Background */
.background-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 70, 230, 0.8) 0%, rgba(37, 99, 235, 0) 70%);
}

.blob-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.6) 0%, rgba(79, 70, 229, 0) 70%);
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Layout */
.page-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Main Premium Glass Card */
.main-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 40px 32px 32px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Brand Header */
.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.logo {
    color: var(--primary);
    font-size: 28px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

/* Trust Badge (Verified) */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #d1fae5;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.7;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-light), transparent);
    margin-bottom: 32px;
}

/* Content Header */
.content-header {
    text-align: center;
    margin-bottom: 32px;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Star Trust Indicators */
.stars-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.stars svg {
    width: 18px;
    height: 18px;
}

.trust-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Enhanced Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #f8fafc;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid var(--border-light);
}

.step-card {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.step-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 12px -3px rgba(10, 70, 230, 0.15);
}

.step-icon.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    box-shadow: 0 8px 16px -4px rgba(10, 70, 230, 0.3);
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.step-connector {
    width: 2px;
    height: 24px;
    background: var(--border-light);
    margin-left: 21px;
    margin-top: 8px;
    margin-bottom: 8px;
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 99px;
    padding: 20px 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(10, 70, 230, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(10, 70, 230, 0.5);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* Security & Footer */
.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.footer-text a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.2s;
}

.footer-text a:hover {
    color: #fff;
    border-color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    body {
        padding: 16px;
    }

    .blob {
        filter: blur(60px);
    }

    .main-card {
        padding: 32px 24px 24px;
        border-radius: 28px;
    }

    h1 {
        font-size: 28px;
    }

    .logo {
        font-size: 24px;
    }

    .steps-container {
        padding: 20px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-connector {
        margin-left: 19px;
    }
}