@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* ─── variables ─────────────────────────────────────────────────────────── */
:root {
    --green:      #57d638;
    --blue:       #00b0f5;
    --blue-dim:   rgba(0, 176, 245, 0.2);
    --white:      #ffffff;
    --text-dim:   rgba(255, 255, 255, 0.55);
    --bg-0:       #000000;
    --bg-1:       #0b0b0c;
    --bg-2:       #141416;
    --bg-card:    #1b1c1e;
    --nav-height: 110px;
}

/* ─── reset & base ───────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-0);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ─── typography ─────────────────────────────────────────────────────────── */
h1 {
    color: var(--white);
    font-size: 43pt;
    font-weight: 800;
    margin-bottom: 0;
    text-align: left;
}

h2 {
    color: var(--white);
    font-size: 28pt;
    font-weight: 800;
    margin-bottom: 0;
}

h3 {
    color: var(--blue);
    font-size: 22.5pt;
    font-weight: 800;
}

p {
    color: var(--white);
    font-weight: 300;
    font-size: 15pt;
    letter-spacing: -1px;
    line-height: 1.7;
}

a {
    font-size: 0.9em;
    color: var(--white);
    text-decoration: none;
}

ul, ol {
    font-weight: 300;
    font-size: 14pt;
    letter-spacing: -1px;
    line-height: 1.7;
}

/* ─── button ─────────────────────────────────────────────────────────────── */
.GreenButton {
    background-color: var(--green);
    padding: 14px 40px;
    border-radius: 5px;
    border: none;
    text-align: left;
    width: max-content;
    font-size: 14pt;
    font-weight: 300;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: #000;
}

.GreenButton:hover {
    background-color: var(--blue);
    color: var(--white);
}

/* ─── text color utilities ───────────────────────────────────────────────── */
.NWMBlue  { color: var(--blue); }
.NWMGreen { color: var(--green); }
.NWMWhite { color: var(--white); }

/* ─── nav ────────────────────────────────────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--bg-0);
    display: flex;
    align-items: center;
    padding-left: 30px;
    box-sizing: border-box;
}

.nav-logo img {
    width: auto;
    height: 90px;
    object-fit: contain;
}

.nav-links {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    width: 54vw;
}

.nav-links li a {
    display: block;
    color: var(--white);
    font-size: 1.2em;
    font-weight: 300;
    text-decoration: none;
    padding: 15px 30px;
    white-space: nowrap;
    border-right: 1px solid var(--blue);
    transition: color 0.2s ease;
}

.nav-links li:first-child a {
    padding-left: 0;
}

.nav-links li:last-child a {
    border-right: none;
}

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

.nav-links li a.active {
    color: var(--green);
}

/* hamburger — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-right: 20px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
}

/* ─── footer ─────────────────────────────────────────────────────────────── */
.site-footer {
    position: relative;
    width: 100vw;
    height: 220px;
    display: flex;
    justify-content: space-between;
    padding: 2% 18vw 0;
    background-color: var(--bg-0);
    box-sizing: border-box;
}

.footer-left {
    text-align: left;
    padding-bottom: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.footer-left img {
    width: 250px;
    height: auto;
    margin-bottom: 30px;
}

.footer-left a {
    margin-top: 4px;
    font-size: 14pt;
}

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

.footer-left p {
    font-size: 14pt;
    white-space: nowrap;
}

.footer-right {
    max-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 3%;
    box-sizing: border-box;
}

.footer-right p {
    font-size: 11pt;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: 5px;
    text-align: right;
}

/* ─── testimonial band (shared) ──────────────────────────────────────────── */
.testimonial-band {
    width: 100%;
    background-color: var(--bg-2);
    border-top: 1px solid #222;
    padding: 70px 20px;
    display: flex;
    justify-content: center;
}

.testimonial-band-inner {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.testimonial-band-inner blockquote {
    font-size: 17pt;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.5;
}

.testimonial-band-inner blockquote::before {
    content: '\201C';
    color: var(--green);
    font-size: 52pt;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 4px;
}

.testimonial-band-inner blockquote::after {
    content: '\201D';
    color: var(--green);
    font-size: 52pt;
    line-height: 0;
    vertical-align: -0.4em;
    margin-left: 4px;
}

.testimonial-band-cite {
    font-size: 16pt;
    color: var(--blue);
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-align: right;
    border-left: 2px solid var(--blue);
    padding-left: 24px;
}

@media (max-width: 900px) {
    .testimonial-band-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-band-cite {
        white-space: normal;
        text-align: left;
        border-left: none;
        border-top: 2px solid var(--blue);
        padding-left: 0;
        padding-top: 16px;
    }

    .testimonial-band-inner blockquote {
        font-size: 16pt;
    }
}

/* ─── responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .site-nav {
        position: sticky;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-2);
        padding: 16px 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        border-right: none;
        border-bottom: 1px solid var(--blue-dim);
        padding: 14px 30px;
        width: 100%;
        font-size: 1em;
        text-align: left;
    }

    .nav-links li:first-child a {
        padding-left: 30px;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .site-footer {
        flex-direction: column;
        height: auto;
        padding: 40px 8vw;
        gap: 24px;
    }

    .footer-left {
        padding-bottom: 0;
    }

    .footer-right {
        justify-content: flex-start;
    }

    .footer-right p {
        text-align: left;
        white-space: normal;
    }

    /* typography scale-down */
    h1 { font-size: 28pt; }
    h2 { font-size: 22pt; }
    h3 { font-size: 18pt; }

    /* footer text wrap */
    .footer-left p { white-space: normal; }
}