:root {
    --theme-500: #f97316;
    --theme-600: #ea580c;
    --font-main: 'Outfit', sans-serif;
    --font-tech: 'JetBrains Mono', monospace;
}

body {
    font-family: var(--font-main), sans-serif !important;
    background: #0a0a0c !important;
}

.font-mono-tech, input, textarea {
    font-family: var(--font-tech), monospace !important;
}

input[type="email"], textarea {
    background-color: #070709 !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    border-radius: 14px !important;
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
    transition: all 0.2s ease-in-out !important;
}

input:focus, textarea:focus {
    border-color: var(--theme-500) !important;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.15) !important;
    background-color: #09090c !important;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}
.glow-bg { animation: pulse-glow 8s ease-in-out infinite; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease-out forwards; }

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.spin-slow { animation: spin-slow 2s linear infinite; }

.step-hidden { display: none; }
.step-visible { display: block; }

.btn-primary {
    background: #ea580c;
    color: #fff;
    font-weight: 800;
    border-radius: 14px;
    padding: 14px 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.2);
    font-family: var(--font-main), sans-serif;
}
.btn-primary:hover:not(:disabled) {
    background: #f97316;
    box-shadow: 0 12px 35px rgba(234, 88, 12, 0.3);
    transform: translateY(-1px);
}
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary:active:not(:disabled) { transform: scale(0.98); }

.btn-secondary {
    background: rgba(234, 88, 12, 0.1);
    color: #fb923c;
    font-weight: 700;
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(234, 88, 12, 0.2);
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main), sans-serif;
}
.btn-secondary:hover:not(:disabled) {
    background: rgba(234, 88, 12, 0.2);
    border-color: rgba(234, 88, 12, 0.4);
}
.btn-secondary:disabled { opacity: 0.4; cursor: not-allowed; }

.card {
    background: #121215;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    padding: 24px;
}

.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 99999;
    padding: 14px 24px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    max-width: 90vw;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    font-family: var(--font-main), sans-serif;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: #052e16; color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.2); }
.toast.error { background: #2a0a0a; color: #f87171; border: 1px solid rgba(248, 113, 113, 0.2); }
.toast.info { background: #0a1628; color: #60a5fa; border: 1px solid rgba(96, 165, 250, 0.2); }