body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    padding-top: 86px;
    background-image:
        linear-gradient(rgba(10, 31, 61, 0.92), rgba(10, 31, 61, 0.92)),
        url("background.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(6, 20, 43, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.site-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.topbar {
    position: relative;
    max-width: 1550px;
    margin: 0 auto;
    min-height: 86px;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.site-title {
    margin: 0;
    text-align: center;
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.scroll-title {
    text-align: center;
    width: 100%;
    font-size: 2.4rem;
    font-weight: 800;
}

.topbar-spacer {
    width: 80px;
    height: 1px;
}

/* CENTRED BRAND + LANGUAGE */
.brand-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
}

.language-switcher {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.lang-link {
    font-size: 0.9rem;
    color: #d7e3f7;
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.lang-link.active {
    color: #06142b;
    background: #ffd54a;
    border-color: #ffd54a;
}

/* HAMBURGER */
.menu-wrap {
    position: relative;
    justify-self: start;
    z-index: 10;
}

.menu-toggle {
    display: none;
}

.menu-button {
    width: 52px;
    height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0 12px;
    box-sizing: border-box;
}

.menu-button span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
}

/* DEFAULT DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 62px;
    left: 0;
    width: 340px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: rgba(6, 20, 43, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.dropdown-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 11px 18px;
    font-size: 0.98rem;
    line-height: 1.35;
    transition: background 0.15s ease, padding-left 0.15s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 22px;
}

.menu-toggle:checked + .menu-button + .dropdown-menu {
    display: block;
}

/* OPTIONAL GROUPED MENU SUPPORT */
.grouped-menu {
    position: absolute;
    top: 62px;
    left: 0;
    width: 320px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: rgba(6, 20, 43, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.menu-toggle:checked + .menu-button + .grouped-menu {
    display: block;
}

.menu-group {
    padding: 0 0 8px 0;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-group:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.menu-group-title {
    margin: 0;
    padding: 8px 18px 6px 18px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffd54a;
    opacity: 0.9;
}

.grouped-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 11px 18px;
    font-size: 0.98rem;
    line-height: 1.3;
    transition: background 0.15s ease, padding-left 0.15s ease;
}

.grouped-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 22px;
}

/* SCROLLBAR POLISH */
.dropdown-menu::-webkit-scrollbar,
.grouped-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-thumb,
.grouped-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.dropdown-menu::-webkit-scrollbar-track,
.grouped-menu::-webkit-scrollbar-track {
    background: transparent;
}

/* HOMEPAGE LANDING */
.landing {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 18px 18px 18px;
    box-sizing: border-box;
}

.hero-grid {
    width: 100%;
    max-width: 1550px;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 18px;
    align-items: start;
}
.hero-side-strap p {
  writing-mode: horizontal-tb;
  transform: none;
  text-orientation: initial;
}

.info-box {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 22px;
    box-sizing: border-box;
    backdrop-filter: blur(2px);
}

.about-box h2,
.impact-box h2 {
    margin-top: 0;
}

.about-box h2 {
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.about-box p {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 12px;
}

.visual-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-image {
    width: 100%;
    max-width: 860px;
    max-height: 76vh;
    object-fit: contain;
    display: block;
    opacity: 0.97;
}

.impact-headline {
    margin: 0 0 14px 0;
    font-size: 2rem;
    line-height: 1.08;
    font-weight: 900;
    white-space: nowrap;
}

.impact-subhead {
    margin: 0 0 14px 0;
    font-size: 1.18rem;
    line-height: 1.3;
    font-weight: 700;
}

.impact-tagline {
    margin: 0 0 18px 0;
    font-size: 1.08rem;
    font-weight: 700;
    color: #dbe7ff;
}

.bridge-text {
    margin: 0 0 20px 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #d7e3f7;
}

/* BUTTONS */
.action-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 6px;
    font-weight: bold;
}

.btn.primary {
    background-color: #ffd54a;
    color: #06142b;
    padding: 13px 22px;
    font-size: 1.02rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: none;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #ffd54a;
}

.contact-form button {
    margin-top: 10px;
    cursor: pointer;
}

/* GENERIC PAGE LAYOUT */
.page-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
    box-sizing: border-box;
}

.page-hero {
    margin-bottom: 28px;
    text-align: center;
}

.page-hero h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
    line-height: 1.1;
}

.page-subline {
    margin: 0;
    font-size: 1.1rem;
    color: #d7e3f7;
}

.page-content {
    display: flex;
    justify-content: center;
}

.content-column {
    width: 100%;
    max-width: 860px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 30px;
    box-sizing: border-box;
    backdrop-filter: blur(2px);
}

.content-section {
    margin-bottom: 30px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    margin: 0 0 12px 0;
    font-size: 1.5rem;
}

.content-section h3 {
    margin: 18px 0 10px 0;
    font-size: 1.15rem;
}

.content-section p {
    margin: 0 0 14px 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #d7e3f7;
}

.aims-list {
    margin: 0;
    padding-left: 22px;
}

.aims-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.closing-section {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.closing-line {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* EMBEDS / PDFS */
.embed-frame {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.embed-frame iframe {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    border: none;
    border-radius: 10px;
    background: white;
}

.pdf-frame {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pdf-frame iframe {
    width: 100%;
    max-width: 1000px;
    height: 700px;
    border: none;
    border-radius: 10px;
    background: white;
}

/* EVIDENCE / SOURCES */
.highlight-text {
    font-weight: bold;
    margin-top: 10px;
    color: #ffffff;
}

.source-box {
    margin-top: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4da3ff;
    border-radius: 8px;
}

.source-desc {
    font-size: 14px;
    color: #c7d6f5;
    margin: 5px 0 10px 0;
}

.source-box a {
    color: #9ecbff;
    text-decoration: none;
    font-weight: bold;
}

.source-box a:hover {
    text-decoration: underline;
}

.stat-box {
    margin: 20px 0;
    padding: 22px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd54a;
    margin: 0;
}

.stat-label {
    margin-top: 8px;
    font-size: 1rem;
    color: #d7e3f7;
}

/* FRAMEWORK / SUPPORTING */
.supporting-section {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.supporting-section h3 {
    margin-bottom: 8px;
}

.supporting-desc {
    font-size: 0.95rem;
    color: #c7d6f5;
    margin-bottom: 12px;
}

.email-box {
    margin-top: 20px;
}

.email-box h3 {
    margin-bottom: 10px;
}

.email-template-block {
    margin-top: 16px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.email-template-block p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.email-template-block p:last-child {
    margin-bottom: 0;
}

/* HOW IT WORKS PAGE */
html,
body {
    overflow-x: hidden;
}

.how-page-shell {
    max-width: 1100px;
}

.how-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 10px;
}

.how-card-wide {
    max-width: 980px;
    margin: 0 auto;
    width: 100%;
}

.how-diagram-large {
    width: 100%;
    max-width: 880px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    box-sizing: border-box;
}

.diagram-link {
    display: block;
    text-decoration: none;
}

.diagram-note {
    margin-top: 10px;
    font-size: 0.92rem;
    color: #c7d6f5;
    text-align: center;
}

.bridge-card-wide {
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.bridge-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 213, 74, 0.7),
        rgba(255, 255, 255, 0.15)
    );
    border-radius: 999px;
}

.bridge-text-block {
    text-align: center;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bridge-main {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.bridge-sub {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #d7e3f7;
}

.how-closing {
    max-width: 900px;
    margin: 35px auto 0 auto;
}

/* FOOTER */
.site-footer {
    background-color: rgba(6, 20, 43, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 30px;
    padding: 18px 24px;
}

.footer-inner {
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand {
    margin: 0;
    font-size: 0.95rem;
    color: #d7e3f7;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .landing {
        min-height: auto;
        padding: 18px;
    }

    .hero-image {
        max-height: 50vh;
    }

    .impact-headline {
        white-space: normal;
    }

    .how-diagram-large {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .topbar {
        grid-template-columns: 60px 1fr 60px;
        min-height: 74px;
        padding: 0 14px;
    }

    .site-title,
    .scroll-title {
        font-size: 1.65rem;
    }

    .menu-button {
        width: 46px;
        height: 46px;
    }

    .dropdown-menu,
    .grouped-menu {
        width: 280px;
        max-height: calc(100vh - 100px);
    }

    .dropdown-menu a,
    .grouped-menu a {
        font-size: 0.95rem;
        padding: 10px 16px;
    }

    .menu-group-title {
        padding: 8px 16px 6px 16px;
    }

    .impact-headline {
        font-size: 1.8rem;
    }

    .impact-subhead {
        font-size: 1.1rem;
    }

    .about-box h2,
    .page-hero h1 {
        font-size: 1.9rem;
    }

    .content-column {
        padding: 22px;
    }

    .btn {
        text-align: center;
    }

    .how-card-wide {
        max-width: 100%;
    }

    .how-diagram-large {
        max-width: 100%;
    }

    .bridge-main {
        font-size: 1.05rem;
    }

    .bridge-sub {
        font-size: 0.96rem;
    }
.cta-note {
    margin-top: 10px;
    font-size: 0.92rem;
    color: #c7d6f5;
}

}