:root {
    --brand-orange: #EC6410;
    --brand-orange-hover: #d1560c;
    --brand-orange-light: #fff2eb;
    --brand-black: #111827;
    --brand-gray: #F5F5F5;
    --text-muted: #4B5563;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
    color: var(--brand-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background Glowing Blurs imitating Tailwind's filter blur-3xl */
.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--brand-orange);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
}

.top-right {
    top: -100px;
    right: -100px;
}

.bottom-left {
    bottom: -100px;
    left: -100px;
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    padding: 20px;
}

.card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Brand/Logo Area */
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--brand-black);
    letter-spacing: -0.5px;
}

/* Animated Graphic */
.graphic-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-orange-light);
    border-radius: 50%;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.gear-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-orange);
    animation: spin 8s linear infinite;
}

/* Typography */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--brand-black);
}

.highlight {
    color: var(--brand-orange);
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Contact Box */
.contact-box {
    background: var(--brand-gray);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.contact-text {
    font-weight: 600;
    color: var(--brand-black);
    margin-bottom: 20px;
    font-size: 1rem;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--brand-orange);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(236, 100, 16, 0.3);
}

.btn-primary:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 100, 16, 0.4);
}

.btn-outline {
    background: #ffffff;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
}

.btn-outline:hover {
    background: var(--brand-orange-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.footer p {
    margin: 0;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .card {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}