:root {
    --primary-color: #002244; /* Very dark, authoritative navy */
    --accent-color: #0055ff;  /* Sharp, modern tech blue */
    --text-primary: #0a0a0a;  /* Stark black */
    --text-secondary: #666666; 
    --bg-color: #ffffff;      /* Pure white */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Accent Line */
.top-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 10;
}

/* Typography Enhancements */
.tracking-wide {
    letter-spacing: 0.15em;
}

.small-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.brand-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.coming-soon-text {
    font-size: 1.75rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.subtitle-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.footer-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Layout */
.hero-section {
    padding-top: 60px;
    padding-bottom: 80px; 
}

.hero-content {
    max-width: 900px;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.hero-logo {
    height: 160px;
    width: auto;
    object-fit: contain;
    /* Clean shadow instead of glowing/floating */
    filter: drop-shadow(0 15px 30px rgba(0, 34, 68, 0.1));
}

.separator-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Clean Footer */
.footer {
    background-color: var(--bg-color);
}

.footer .container {
    border-color: rgba(0,0,0,0.08) !important;
}

/* Entrance Animation */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brand-title {
        font-size: min(2rem, 7vw);
        white-space: nowrap;
    }
    .coming-soon-text {
        font-size: min(1.3rem, 4.5vw);
        white-space: nowrap;
    }
    .subtitle-text {
        font-size: min(1.1rem, 3.2vw);
        white-space: nowrap;
    }
    .hero-logo {
        height: 120px;
    }
    .hero-section {
        padding-top: 40px;
    }
}
