/* Pixel & Hammer Design Token Palette */
:root {
    --primary-base: #1E293B;       /* Foundation Slate */
    --primary-accent: #D97706;     /* High-Vis Amber */
    --secondary-accent: #0284C7;   /* Tech Cyan */
    --light-neutral: #F8FAFC;      /* Clean Canvas */
    --dark-neutral: #0F172A;       /* Charcoal Ink */

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    background-color: var(--dark-neutral);
    color: var(--light-neutral);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(30, 41, 59, 0.4) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(30, 41, 59, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.ambient-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.glow-amber {
    background: var(--primary-accent);
    top: -100px;
    right: -100px;
}

.glow-cyan {
    background: var(--secondary-accent);
    bottom: -150px;
    left: -100px;
}

/* Layout Container */
.container {
    width: 90%;
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.logo-icon {
    font-size: 1.5rem;
}

.accent-amber {
    color: var(--primary-accent);
}

.tech-cyan {
    color: var(--secondary-accent);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(2, 132, 199, 0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--light-neutral);
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
    100% { opacity: 0.4; transform: scale(0.9); }
}

/* Hero Glassmorphic Card */
.hero-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(248, 250, 252, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.8),
                0 0 30px rgba(2, 132, 199, 0.05);
}

.tag-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(2, 132, 199, 0.12);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--light-neutral) 60%, rgba(248, 250, 252, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: #94A3B8;
    max-width: 680px;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Progress Bar */
.progress-container {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 0.75rem;
}

.progress-percentage {
    color: var(--primary-accent);
    font-weight: 700;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent));
    border-radius: 9999px;
    transition: width 1s ease-in-out;
}

/* Lead Form */
.lead-form {
    margin-bottom: 2.25rem;
}

.input-wrapper {
    display: flex;
    gap: 0.75rem;
    max-width: 580px;
}

input[type="email"] {
    flex: 1;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    color: var(--light-neutral);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="email"]:focus {
    border-color: var(--secondary-accent);
    box-shadow: 0 0 12px rgba(2, 132, 199, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-accent), #B45309);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
}

.form-feedback {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

/* Features List */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(248, 250, 252, 0.08);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #94A3B8;
    background: rgba(15, 23, 42, 0.4);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748B;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-link {
    display: flex;
    gap: 0.4rem;
}

.contact-link a {
    color: var(--secondary-accent);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link a:hover {
    color: var(--primary-accent);
}

/* Responsiveness */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem 1rem;
    }
    .hero-card {
        padding: 1.75rem 1.25rem;
    }
    h1 {
        font-size: 1.75rem;
    }
    .input-wrapper {
        flex-direction: column;
    }
    .btn-submit {
        justify-content: center;
    }
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
