:root {
    --navy: #0A2342;
    --blue: #4A90E2;
    --grey: #F0F2F5;
    --text: #333;
    --text-light: #888;
    --white: #fff;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background-color: var(--white);
}

h1,
h2,
h3 {
    font-weight: 700;
    color: var(--navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
}

.logo {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.global {
    color: var(--blue);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Hero */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: saturate(0);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.label {
    font-family: 'Roboto Mono', monospace;
    color: var(--blue);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
    margin-right: 1rem;
}

.btn-primary:hover {
    background-color: #357ABD;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-dark {
    background-color: var(--grey);
}

.section-head {
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.item {
    background: var(--white);
    padding: 2rem;
    border-top: 4px solid var(--navy);
}

.item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Roboto Mono', monospace;
}

.item p {
    color: #666;
    line-height: 1.6;
}

/* Verticals */
.vertical-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.vertical-list li {
    padding: 1.5rem;
    border: 1px solid #eee;
    text-align: center;
    font-weight: 500;
    color: var(--navy);
}

/* Footer */
footer {
    background-color: #111;
    color: #666;
    padding: 4rem 0;
    font-size: 0.9rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-block strong {
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: var(--blue);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.legal a {
    color: #666;
    text-decoration: none;
    margin-left: 1.5rem;
}

.legal a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
}