/* Base Reset & Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Engineering Grid Blueprint Background Effect */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

/* Accent Diagonal Stripe (Engineering/Construction Motif) */
.accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #d4af37, #f39c12);
    z-index: 5;
}

/* Main Container */
.container {
    max-width: 650px;
    width: 100%;
    padding: 40px;
    text-align: center;
    z-index: 2;
    background: rgba(26, 26, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-radius: 4px;
}

/* Logo / Icon - Styled structural framing/Lambda detail */
.logo-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 24px;
    border-left: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
    position: relative;
    transform: rotate(-45deg);
}
.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transform-origin: top left;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    color: #ffffff;
}

.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #f39c12;
    margin-bottom: 35px;
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #b3b3b3;
    margin-bottom: 35px;
}

/* Progress Bar Section */
.progress-container {
    margin-bottom: 40px;
    text-align: left;
}

.progress-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background-color: #333;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 75%; /* Modify progress percentage here */
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

/* Contact & Footer */
.contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    font-size: 0.9rem;
    color: #888;
}

.contact-info p {
    margin-bottom: 0;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #f39c12;
}

.footer-note {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
        margin: 20px;
    }
    h1 {
        font-size: 2rem;
    }
}
