/* PHEME AGENT MASTER TACTICAL STYLE SHEET */
:root {
    --emerald: #10B981;
    --void: #000000;
    --dark-gray: #0a0a0a;
    --terminal-font: 'JetBrains Mono', 'Courier New', monospace;
}

body {
    background-color: var(--void);
    color: var(--emerald);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.terminal-text {
    font-family: var(--terminal-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 750px;
    margin: 60px auto;
    padding: 40px;
    border: 1px solid var(--emerald);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.05);
    background: rgba(10, 10, 10, 0.8);
}

h1 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--emerald);
    padding-bottom: 15px;
}

/* FORM STYLING */
.intake-form label {
    display: block;
    margin-top: 20px;
    font-size: 0.75rem;
    opacity: 0.7;
}

input {
    background: var(--dark-gray);
    border: 1px solid #222;
    border-left: 4px solid var(--emerald);
    color: var(--emerald);
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    box-sizing: border-box;
    outline: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

input:focus {
    border-color: #fff;
    background: #111;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.btn-primary {
    background: var(--emerald);
    color: var(--void);
    font-family: var(--terminal-font);
    font-weight: 900;
    padding: 20px;
    width: 100%;
    border: none;
    margin-top: 40px;
    cursor: pointer;
    letter-spacing: 2px;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* TERMINAL SPECIFIC STYLING */
#terminal-output {
    background: #050505;
    padding: 20px;
    height: 400px;
    overflow-y: hidden;
    border: 1px solid #111;
    margin-top: 25px;
    position: relative;
}

#terminal-output::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.line {
    display: block;
    margin-bottom: 8px;
    opacity: 0;
    animation: scanlineFade 0.1s forwards;
}

@keyframes scanlineFade {
    to { opacity: 1; }
}

.progress-container {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #222;
    margin-top: 30px;
    height: 10px;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background: var(--emerald);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--emerald);
}

/* FOOTER & POLICIES */
.disclaimer-box {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.7rem;
    text-align: center;
    color: #444;
    line-height: 1.8;
}

.disclaimer-box strong {
    color: var(--emerald);
}

.contact-line {
    margin-top: 15px;
    display: block;
    color: #666;
    text-decoration: none;
}
