/* --- Root Variables --- */
:root {
    --cyan: #4AD7FF;
    --dark-blue: #1484AB;
    --white: #ffffff;
    --oswald: 'Oswald', sans-serif; /* Added variable */
}

/* --- Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--oswald); /* Updated font */
    background-color: #050A0F;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('assets/images/alphix_b_im.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    text-transform: uppercase; /* Oswald looks best in uppercase for this design */
}

/* --- Announcement Bar --- */
.announcement-bar {
    /* Cleaned up the double background syntax error */
    background: linear-gradient(45deg, rgba(15, 162, 209, 1) 0%, rgba(0, 0, 0, 1) 100%);
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 12px 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 1001;
}

/* --- Navigation --- */
header {
    padding: 30px 6%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 42px; 
    width: auto;
    display: block;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-glass {
    text-decoration: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s;
}

/* --- Hero Section --- */
.hero {
    padding: 60px 6% 40px 6%;
}

.main-title {
    font-size: clamp(50px, 9vw, 95px); /* Slightly larger for Oswald */
    font-weight: 700;
    color: var(--cyan);
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-description h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-description p {
    font-family: 'Inter', sans-serif; /* Kept Inter for long body text for readability */
    text-transform: none; 
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta {
    /* Cleaned up syntax error */
    background: linear-gradient(45deg, rgba(15, 162, 209, 1) 0%, rgba(0, 0, 0, 1) 100%);
    color: var(--white);
    border: none;
    padding: 16px 50px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.2s;
}

/* --- Stats Bar --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px; /* Reduced from 100px for better fit */
    margin-top: 100px;
}

.stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    padding-bottom: 10px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 2px;
}

/* --- Menu Icon --- */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.menu-svg {
    width: 30px;
    height: 30px;
}