.ach-214a8712-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 100%);
}

.ach-214a8712-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ach-214a8712-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.ach-214a8712-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 40px 24px;
    animation: ach214a8712FadeUp 0.8s ease-out;
}

@keyframes ach214a8712FadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.ach-214a8712-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.15);
    color: #a78bfa;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    border: 1px solid rgba(99, 102, 241, 0.25);
    backdrop-filter: blur(10px);
}

.ach-214a8712-badge-dot {
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    display: inline-block;
    animation: ach214a8712Pulse 2s ease-in-out infinite;
}

@keyframes ach214a8712Pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Heading */
.ach-214a8712-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.ach-214a8712-highlight {
    --ach-grad-start: #6366f1;
    --ach-grad-end: #a78bfa;
    background: linear-gradient(135deg, var(--ach-grad-start), var(--ach-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subheading */
.ach-214a8712-subheading {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 40px;
    max-width: 700px;
}

/* Buttons */
.ach-214a8712-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.ach-214a8712-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6366f1;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.35);
}

.ach-214a8712-btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
    color: #ffffff;
}

.ach-214a8712-btn-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.ach-214a8712-btn-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ach-214a8712-btn-icon i {
    font-size: 14px;
}

.ach-214a8712-btn-primary:hover .ach-214a8712-btn-icon {
    transform: translateX(4px);
}

.ach-214a8712-btn-secondary {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background: transparent;
}

.ach-214a8712-btn-secondary:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* Stats */
.ach-214a8712-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ach-214a8712-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.ach-214a8712-stat-item + .ach-214a8712-stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.ach-214a8712-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.ach-214a8712-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Glow effects */
.ach-214a8712-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.ach-214a8712-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.15);
    top: -150px;
    right: -100px;
    animation: ach214a8712GlowFloat 8s ease-in-out infinite;
}

.ach-214a8712-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(167, 139, 250, 0.1);
    bottom: -100px;
    left: -80px;
    animation: ach214a8712GlowFloat 10s ease-in-out infinite reverse;
}

@keyframes ach214a8712GlowFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

/* Responsive */
@media (max-width: 768px) {
    .ach-214a8712-heading {
        font-size: 36px;
    }

    .ach-214a8712-subheading {
        font-size: 17px;
    }

    .ach-214a8712-stat-item {
        padding: 12px 20px;
    }

    .ach-214a8712-stat-number {
        font-size: 24px;
    }

    .ach-214a8712-buttons {
        flex-direction: column;
    }

    .ach-214a8712-glow-1,
    .ach-214a8712-glow-2 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .ach-214a8712-heading {
        font-size: 28px;
    }

    .ach-214a8712-stat-item + .ach-214a8712-stat-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ach-214a8712-stats {
        flex-direction: column;
    }
}
