/* Palette: Deep Charcoal: #0F0F0F, Gold Accent: #D4AF37, Pure White: #FFFFFF */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.corporate-wrapper {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: #0F0F0F;
}

/* Header - Professional & Minimal */
.header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo span { color: #D4AF37; } /* Sophisticated Gold */

.corporate-contact {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 400;
    opacity: 0.6;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
}

/* Background/Hero Section */
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 20%, rgba(15, 15, 15, 1) 70%);
    z-index: 5;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Corporate Typography Area */
.content-block {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    z-index: 20;
}

.status-badge {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 700;
}

.headline {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 480px;
}

/* Meta Footer Info */
.footer-meta {
    display: flex;
    gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.meta-item span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}

.meta-item strong {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Animations */
.fade-in { animation: fadeIn 2s ease forwards; }
.fade-in-delay { opacity: 0; animation: fadeIn 2s ease forwards 1s; }
.slide-up { opacity: 0; transform: translateY(50px); animation: slideUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.reveal-text {
    clip-path: inset(0 0 100% 0);
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards 0.5s;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes reveal { to { clip-path: inset(0 0 0 0); } }

/* Responsive adjustments */
@media (max-width: 768px) {
    .overlay-gradient { background: linear-gradient(180deg, transparent 0%, rgba(15,15,15,1) 60%); }
    .hero-image-container { width: 100%; height: 50%; }
    .content-block { width: 85%; right: 50%; transform: translate(50%, -10%); top: 55%; text-align: center; }
    .footer-meta { justify-content: center; }
    .header { padding: 0 30px; }
}