:root {
    --bg-color: #050505;
    --text-primary: #ededed;
    --text-secondary: #a3a3a3;
    --accent-orange: #ea580c;
    --accent-blue: #2563eb;
    --glass-bg: rgba(15, 15, 15, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Image Overlay instead of CSS gradient */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('./assets/engineering_silhouette.png');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.15;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-bottom: 5rem;
    animation: fadeIn 1.5s ease-out;
}

.logo-icon {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 span {
    color: var(--text-secondary);
    font-weight: 300;
}

/* Main Content Layout */
.content {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
    padding: 2rem 0;
}

/* Text Side */
.text-content {
    max-width: 600px;
    animation: fadeIn 1.5s ease-out 0.4s both;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    color: var(--text-secondary);
    border-left: 2px solid var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 span {
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 3rem;
    max-width: 400px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--text-primary);
    transition: width 2s cubic-bezier(0.1, 0.7, 0.1, 1);
}

.progress-text {
    font-weight: 400;
    color: var(--text-primary);
}

/* Contact Action */
.contact-prompt {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-prompt p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

/* Footer */
footer {
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    animation: fadeIn 1.5s ease-out 0.8s both;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    h2 {
        font-size: 3rem;
    }
    .contact-prompt {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
