:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #333333;
    --primary: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --spacing-container: 8vw;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Fixed Background Image --- */
.fixed-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55; /* Increased opacity for better visibility */
    filter: saturate(0.2); /* Slight saturation for depth, but mostly B&W */
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.95) 100%);
    /* Lighter center to let the image through */
}


/* --- Gradients (Reused) --- */
.fixed-gradient {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.gradient-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #1a2a3a 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: pulse 10s infinite alternate;
}

.gradient-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #2a1a3a 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: pulse 15s infinite alternate-reverse;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.5; }
}

/* --- Coming Soon Layout --- */
.coming-soon-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
}

/* Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

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

/* Logo */
.logo-container {
    margin-bottom: 3rem;
}

.logo {
    height: 40px; /* Adjust based on logo aspect ratio */
    width: auto;
    opacity: 0.9;
}

/* Typography */
.label {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 500; /* Medium weight */
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtext {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 3rem;
}

.subtext strong {
    color: #fff;
    font-weight: 500;
}

/* Form */
.signup-form {
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Pill shape */
    padding: 0.4rem;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-btn {
    background: var(--primary);
    color: var(--bg-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: scale(1.05);
    background: #e0e0e0;
}

.submit-btn svg {
    transition: transform 0.2s;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

.form-note {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* JobTread Badge */
.integration-badge {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.7;
}

.integration-badge span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.jt-logo {
    height: 60px; /* Adjust as needed */
    width: auto;
    filter: grayscale(100%) brightness(1.2); /* Make it match theme */
    transition: filter 0.3s;
}

.jt-logo:hover {
    filter: grayscale(0) brightness(1); /* Reveal color on hover */
}

/* Footer */
.footer-simple {
    padding: 2rem;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.separator {
    opacity: 0.3;
}

@media (min-width: 600px) {
    .footer-simple {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 2rem var(--spacing-container);
    }
}

@media (max-width: 600px) {
    .heading {
        font-size: 3rem; 
    }
    
    .input-group {
        flex-direction: column; /* Stack on tiny screens if needed, but pill usually works */
        border-radius: 12px;
        background: transparent;
        border: none;
        padding: 0;
        gap: 1rem;
    }
    
    .email-input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        text-align: center;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
        padding: 1rem;
    }
}
