/* Brand theme — matched to elipsum.com's design system
   navy #1c2448 · teal #147e7c / #226160 · body text #555 · white bg · Poppins · pill buttons */
:root {
    --ns-navy: #1c2448;        /* elipsum dark navy (primary) */
    --ns-navy-deep: #15172f;   /* elipsum deepest navy */
    --ns-blue: #147e7c;        /* elipsum teal (accent / CTA) */
    --ns-blue-dark: #226160;   /* elipsum teal, darker */
    --ns-teal-light: #468584;  /* elipsum teal, lighter (hover) */
    --ns-grey: #ffffff;        /* elipsum page bg is white */
    --ns-ink: #555555;         /* elipsum body text */
    --ns-border: #e3eaf0;
    --ns-font: 'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;
}

body {
    background: var(--ns-grey);
    font-family: var(--ns-font);
    color: var(--ns-ink);
}

/* Top header bar — navy with the logo (matches elipsum.com chrome) */
.ns-header { background: var(--ns-navy); border-bottom: 3px solid var(--ns-blue); }
.ns-header-inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 32px;
}
.ns-brandgroup { display: flex; align-items: center; gap: 14px; }
.ns-vertical { color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .3px; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.3); }
.ns-logo { display: block; line-height: 0; }
.ns-logo img { height: 38px; display: block; }
.ns-nav { display: flex; align-items: center; gap: 24px; }
.ns-nav a { color: #fff; text-decoration: none; font-size: .84rem; font-weight: 500; }
.ns-nav a:hover { color: var(--ns-teal-light); }
/* elipsum.com signature CTA: white pill, dark navy text, 20px radius */
.ns-cta {
    background: #fff; color: var(--ns-navy) !important;
    padding: 9px 20px; border-radius: 20px;
    font-size: .76rem; font-weight: 600; letter-spacing: .3px;
    transition: background .15s, color .15s;
}
.ns-cta:hover { background: var(--ns-blue); color: #fff !important; }

/* White content shell on the page */
.ns-main { max-width: 1180px; margin: 22px auto; }
.ns-footer {
    max-width: 1180px; margin: 8px auto 28px; padding: 14px 32px;
    color: #7a8a99; font-size: .72rem; border-top: 1px solid var(--ns-border);
    display: flex; justify-content: space-between;
}

/* Print: drop the site chrome so the PDF cover + content stand alone. */
@media print {
    .ns-header, .ns-footer { display: none !important; }
    .ns-main { margin: 0; max-width: none; }
    body { background: #fff; }
}
