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

:root {
    --navy: #002163;
    --navy-dark: #001845;
    --red: #e63c2f;
    --red-dark: #c02d0b;
    --cream: #f5f3e7;
    --light-blue: #c1ecff;
    --white: #ffffff;
    --text-dark: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: transparent;
    transition: background 0.3s ease;
}

header.scrolled {
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--red);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--light-blue);
}

.nav-btn {
    background: var(--red);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.nav-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></svg>') repeat;
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.hero-eyebrow {
    font-family: 'Oswald', sans-serif;
    color: var(--light-blue);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-banner {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--red);
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 60, 47, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

/* Video Section */
.video-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    font-family: 'Oswald', sans-serif;
    color: var(--red);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,33,99,0.2);
}

.video-container video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    position: relative;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.video-placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.play-icon {
    width: 100px;
    height: 100px;
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.play-icon svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.video-placeholder:hover .play-icon {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
}

.video-placeholder p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--red);
}

.about-content p {
    font-size: 1.125rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content .highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    border-left: 4px solid var(--red);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.about-image {
    background: var(--cream);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 4px solid var(--red);
    z-index: -1;
}

.about-image span {
    font-family: 'Oswald', sans-serif;
    color: var(--navy);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Priorities Section */
.priorities {
    padding: 6rem 2rem;
    background: var(--navy);
    color: var(--white);
}

.priorities .section-eyebrow {
    color: var(--light-blue);
}

.priorities .section-title {
    color: var(--white);
}

.priorities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.priority-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-left: 4px solid var(--red);
    transition: all 0.3s ease;
}

.priority-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.priority-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
}

.priority-card p {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: var(--red);
    text-align: center;
}

.cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--navy);
    color: var(--white);
}

.cta .btn:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta iframe {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* Footer */
footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-banner {
    text-align: center;
    margin: 2rem 0;
}

.footer-banner img {
    max-width: 280px;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        aspect-ratio: 16/9;
    }

    .about-image::after {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .logo img {
        height: 40px;
    }

    nav a:not(.nav-btn) {
        display: none;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .video-section, .about, .priorities, .cta {
        padding: 4rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
