:root {
    --atlantic-blue: #1A2B3C;
    --signal-orange: #FF4F00;
    --text-dark: #1A2B3C;
    --text-muted: #555;
    --text-light: #999;
    --bg-white: #FFFFFF;
    --bg-subtle: #FAFAFA;
    --border-color: rgba(26, 43, 60, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Domine', Georgia, serif;
    line-height: 1.7;
    overflow-x: hidden;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

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

/* ── HEADER ── */
header {
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: clamp(120px, 12vw, 180px);
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--atlantic-blue);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--signal-orange);
}

.btn-primary {
    background-color: var(--atlantic-blue);
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 24px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #2a3f52;
}

/* ── HERO ── */
.hero {
    padding: 8rem 0 6rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coordinates {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.subhead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-signal {
    background-color: var(--signal-orange);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 24px;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-signal:hover {
    background-color: #e64500;
}

.btn-text {
    color: var(--atlantic-blue);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 2px solid var(--atlantic-blue);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-text:hover {
    color: var(--signal-orange);
    border-color: var(--signal-orange);
}

/* ── MANIFESTO (EQUALITY OF ARMS) ── */
.manifesto {
    padding: 8rem 0;
    background: var(--atlantic-blue);
    color: #F5F5F5;
}

.manifesto-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.manifesto-content .mono {
    color: var(--signal-orange);
    margin-bottom: 2rem;
    display: block;
}

.manifesto-content h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.manifesto-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.manifesto-closing {
    opacity: 1 !important;
    font-weight: 700;
}

/* ── TRUST BAR ── */
.trust-bar {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-bar p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.trust-logo {
    width: 120px;
    height: 40px;
    background: var(--bg-subtle);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

/* ── WAR ROOM TIMELINE ── */
.war-room {
    padding: 6rem 0;
}

.section-label {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.pipeline-container {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
}

.pipeline-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pipeline-subtitle {
    color: var(--text-light);
    font-size: 0.7rem;
}

.pipeline-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin-top: 1rem;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pipeline-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.pipeline-step:hover {
    border-color: var(--border-color);
}

.pipeline-step-active {
    background: var(--atlantic-blue);
    border-color: var(--atlantic-blue);
}

.pipeline-step-active .step-number {
    color: var(--signal-orange);
}

.pipeline-step-active h4 {
    color: #F5F5F5;
}

.pipeline-step-active p {
    color: rgba(255, 255, 255, 0.7);
}

.step-number {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--signal-orange);
    flex-shrink: 0;
    line-height: 1.4;
}

.step-content h4 {
    font-family: 'Domine', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── PHILOSOPHY CARDS ── */
.philosophy {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

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

.card {
    padding: 2.5rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: border-color 0.2s;
}

.card:hover {
    border-color: rgba(26, 43, 60, 0.2);
}

.card .mono {
    color: var(--signal-orange);
    margin-bottom: 1rem;
    font-size: 0.7rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── FOUNDERS ── */
.founders {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

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

.founder-card {
    padding: 2.5rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.founder-card .mono {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
}

.founder-name {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.founder-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--signal-orange);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
    transition: opacity 0.2s;
}

.founder-link:hover {
    opacity: 0.7;
}

.founder-title {
    font-family: 'JetBrains Mono', monospace;
    color: var(--signal-orange);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── FOOTER ── */
footer {
    background: var(--atlantic-blue);
    color: rgba(255, 255, 255, 0.6);
    padding: 1.25rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    width: 72px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.15rem;
}

.footer-tagline {
    font-size: 0.75rem;
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--signal-orange);
}

.footer-copyright {
    opacity: 0.4;
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.7rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .cards-grid,
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .manifesto-content h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subhead {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .manifesto {
        padding: 4rem 0;
    }

    .manifesto-content h3 {
        font-size: 2rem;
    }

    .manifesto-content p {
        font-size: 1.05rem;
    }

    .trust-logos {
        gap: 2rem;
    }

    .war-room,
    .philosophy,
    .founders {
        padding: 4rem 0;
    }

    .pipeline-container {
        padding: 2rem;
    }

    .pipeline-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .founder-name {
        font-size: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}
