@font-face {
    font-family: "Frutiger Arabic";
    src: url("../../fonts/Linotype - Neue Frutiger Arabic Regular.otf") format("opentype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Frutiger Arabic";
    src: url("../../fonts/Linotype - Neue Frutiger Arabic Bold.otf") format("opentype");
    font-weight: 700;
    font-display: swap;
}

:root {
    --navy-950: #061d4d;
    --navy-900: #08275e;
    --navy-800: #0b3975;
    --blue: #0b78df;
    --cyan: #10aedd;
    --teal: #12a99e;
    --ink: #13274a;
    --muted: #64748b;
    --line: #dce9f4;
    --soft: #f3f8fc;
    --white: #fff;
    --shadow: 0 24px 65px rgba(18, 65, 111, 0.13);
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 7% 8%, rgba(31, 158, 236, 0.14), transparent 25rem),
        linear-gradient(135deg, #eaf4fc, #f9fbfd 52%, #edf7fc);
    font-family: "Frutiger Arabic", Tahoma, Arial, sans-serif;
    line-height: 1.7;
}

body.menu-open { overflow: hidden; }
body.menu-open::after {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(3, 22, 55, .46);
    backdrop-filter: blur(3px);
    content: "";
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 1000;
    padding: 9px 17px;
    border-radius: 10px;
    color: #fff;
    background: var(--navy-900);
    transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-shell {
    width: min(1600px, calc(100% - 44px));
    margin: 22px auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 38px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
}

.site-header {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    padding: 15px 38px;
    border-bottom: 1px solid rgba(209, 228, 242, .75);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
}

.site-header.is-stuck {
    position: sticky;
    top: 0;
    box-shadow: 0 12px 32px rgba(13, 52, 92, .08);
}

.brand { width: min(100%, 285px); margin-left: auto; }
.brand img { width: 100%; max-height: 74px; object-fit: contain; }

.main-nav {
    position: fixed;
    top: 50%;
    left: max(18px, calc((100vw - 1600px) / 2 + 18px));
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 68px;
    padding: 9px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 22px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 20px 48px rgba(8, 52, 92, .18);
    backdrop-filter: blur(18px);
    transform: translateY(-50%);
    transition: width 220ms ease, box-shadow 220ms ease;
}

.main-nav:hover, .main-nav:focus-within { width: 225px; box-shadow: 0 25px 60px rgba(8,52,92,.23); }

.main-nav a {
    position: relative;
    display: flex;
    direction: ltr;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    padding: 7px 8px;
    overflow: hidden;
    border-radius: 14px;
    color: #17223a;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 3px;
    height: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--blue), var(--cyan));
    content: "";
    transform: translateY(-50%);
    transition: height 180ms ease;
}

.main-nav a:hover, .main-nav a.is-active { color: var(--navy-800); background: linear-gradient(90deg, rgba(10,119,221,.11), rgba(17,174,221,.04)); transform: translateX(2px); }
.main-nav a:hover::after, .main-nav a.is-active::after { height: 26px; }
.main-nav a svg { flex: 0 0 34px; width: 34px; height: 34px; padding: 7px; border-radius: 11px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
.main-nav a.is-active svg { color: #fff; background: linear-gradient(145deg, var(--blue), var(--navy-800)); box-shadow: 0 7px 16px rgba(9,105,190,.23); }
.main-nav a span { direction: rtl; min-width: 135px; text-align: right; opacity: 0; transform: translateX(-8px); transition: opacity 160ms ease, transform 200ms ease; }
.main-nav:hover a span, .main-nav:focus-within a span { opacity: 1; transform: translateX(0); }

.menu-toggle {
    display: none;
    place-items: center;
    gap: 5px;
    width: 50px;
    height: 50px;
    padding: 14px;
    border: 0;
    border-radius: 15px;
    background: linear-gradient(145deg, #125ea4, var(--navy-950));
    box-shadow: 0 8px 20px rgba(24,71,111,.13);
    cursor: pointer;
}

.menu-toggle span { display: block; width: 22px; height: 2px; border-radius: 5px; background: #fff; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    isolation: isolate;
    min-height: 560px;
    overflow: hidden;
    border-bottom: 1px solid #deedf7;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255,255,255,.04) 37%, rgba(255,255,255,.72) 58%, #fff 100%),
        url("../images/hasti-hero-innovation-bab-al-yemen-clean.png") left center / cover no-repeat;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(17,127,205,.13) 1px, transparent 1px);
    background-position: calc(100% - 28px) 30px;
    background-size: 16px 16px;
    content: "";
    mask-image: linear-gradient(to left, #000, transparent 22%);
}

.hero-layout {
    display: grid;
    direction: ltr;
    grid-template-columns: minmax(380px, 1fr) minmax(470px, .96fr);
    align-items: center;
    min-height: 560px;
    padding: 42px 48px;
}

.hero-copy { z-index: 2; grid-column: 2; direction: rtl; text-align: center; }
.hero-wordmark { display: none; width: min(360px, 80%); margin: 0 auto 18px; mix-blend-mode: multiply; }

.hero h1 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(28px, 2.35vw, 42px);
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: -.02em;
}

.science-divider { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 23px auto; color: #149fcf; }
.science-divider span { width: 90px; height: 1px; background: linear-gradient(90deg, transparent, currentColor); }
.science-divider span:last-child { background: linear-gradient(90deg, currentColor, transparent); }
.science-divider i, .science-divider b { display: block; width: 8px; height: 8px; background: currentColor; transform: rotate(45deg); }
.science-divider b { width: 13px; height: 13px; background: linear-gradient(135deg, #0e79df, #1bd0dc); }

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    min-width: 310px;
    min-height: 62px;
    padding: 12px 28px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(110deg, #0b72e1, #148ddd 48%, #16aa9f);
    box-shadow: 0 14px 30px rgba(4,114,193,.25);
    font-size: 20px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover { transform: translateY(-3px); box-shadow: 0 18px 35px rgba(4,114,193,.32); }
.primary-button svg { width: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

.hero-mark { position: relative; grid-column: 3; display: grid; place-items: center; align-self: stretch; }
.hero-mark img { position: relative; z-index: 2; width: min(100%, 310px); mix-blend-mode: multiply; }
.hero-mark span { position: absolute; right: 50%; bottom: 52px; width: 220px; height: 45px; border-radius: 50%; border: 7px solid rgba(55,182,228,.09); box-shadow: 0 0 35px rgba(14,154,212,.28); transform: translateX(50%); }

.content-section { padding: 88px clamp(34px, 5.5vw, 86px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 34px; }
.section-heading p { margin: 0 0 5px; color: var(--blue); font-size: 14px; font-weight: 700; }
.section-heading h2 { margin: 0; color: var(--navy-950); font-size: clamp(31px, 3vw, 46px); line-height: 1.3; }
.section-heading.with-link > a { padding: 10px 18px; border: 1px solid #bad7ec; border-radius: 12px; color: var(--blue); background: #fff; font-weight: 700; }

.platforms-section {
    position: relative;
    background:
        radial-gradient(circle at 92% 10%, rgba(20, 176, 213, .1), transparent 24rem),
        linear-gradient(180deg, #fff, #f6fbfe);
}
.platforms-section::before, .sectors-section::before, .about-section::before {
    position: absolute;
    top: 0;
    right: clamp(34px, 5.5vw, 86px);
    width: 92px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--teal));
    content: "";
}
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.platform-card {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 16px;
    min-height: 190px;
    padding: 22px 18px;
    overflow: hidden;
    border: 1px solid #dceaf5;
    border-radius: 21px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 13px 30px rgba(20,69,107,.08);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.platform-card::after { position: absolute; right: 0; bottom: 0; width: 72px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); content: ""; }
.platform-card::before { position: absolute; top: -75px; left: -75px; width: 160px; height: 160px; border-radius: 50%; background: rgba(20,174,214,.055); content: ""; transition: transform 300ms ease; }
.platform-card:hover { border-color: #91ccef; transform: translateY(-7px); box-shadow: 0 23px 42px rgba(20,69,107,.14); }
.platform-card:hover::before { transform: scale(1.3); }
.platform-icon { display: grid; place-items: center; width: 100px; height: 112px; overflow: hidden; border-radius: 42% 58% 54% 46% / 48% 42% 58% 52%; }
.platform-icon.blue { background: #eaf4ff; }
.platform-icon.teal { background: #e9faf9; }
.platform-icon.mint { background: #ebfaf7; }
.platform-icon.violet { background: #edf1ff; }
.platform-icon img { width: 68px; height: 68px; object-fit: contain; mix-blend-mode: multiply; }
.platform-content strong { display: block; margin-bottom: 7px; color: var(--navy-950); font-size: 19px; line-height: 1.45; }
.platform-content small { display: block; color: #5c6f89; font-size: 14px; line-height: 1.7; }
.card-arrow { position: absolute; right: 17px; bottom: 14px; display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid #e1edf6; border-radius: 10px; color: var(--navy-800); background: #fff; box-shadow: 0 6px 15px rgba(16,61,97,.08); }

.media-center {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 10%, rgba(16,174,221,.12), transparent 25rem),
        radial-gradient(circle at 95% 90%, rgba(18,169,158,.11), transparent 25rem),
        linear-gradient(135deg, #eff8fd, #f8fbfe 48%, #f0faf8);
}
.media-center::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(9,103,164,.12) 1px, transparent 1px);
    background-position: 24px 24px;
    background-size: 20px 20px;
    content: "";
    mask-image: linear-gradient(120deg, #000, transparent 22%, transparent 76%, #000);
    pointer-events: none;
}
.media-center-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; min-width: 0; }
.media-channel { position: relative; width: 100%; min-width: 0; max-width: 100%; padding: 28px; border: 1px solid rgba(255,255,255,.92); border-radius: 28px; background: rgba(255,255,255,.77); box-shadow: 0 22px 55px rgba(17,69,106,.1); backdrop-filter: blur(14px); }
.news-channel { border-top: 4px solid var(--blue); }
.events-channel { border-top: 4px solid var(--teal); }
.media-channel .section-heading { align-items: center; margin-bottom: 22px; }
.media-channel .section-heading h2 { font-size: clamp(28px, 2.4vw, 39px); }
.media-channel .section-heading.with-link > a { padding: 8px 14px; font-size: 13px; }
.events-channel .section-heading.with-link > a { color: #087e78; border-color: #a7dcd8; }
.media-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
.media-card { display: grid; grid-template-columns: minmax(160px, .68fr) 1fr; min-height: 190px; overflow: hidden; border: 1px solid #dbe8f2; border-radius: 20px; background: #fff; box-shadow: 0 10px 24px rgba(24,70,105,.07); transition: transform 180ms ease, box-shadow 180ms ease; }
.media-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(20,68,105,.13); }
.media-image { position: relative; display: block; min-height: 190px; overflow: hidden; background: #eaf4fb; }
.media-image > img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.media-card:hover .media-image > img { transform: scale(1.05); }
.media-placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(145deg, #e9f6ff, #fff); }
.media-placeholder img { width: 50%; mix-blend-mode: multiply; opacity: .35; }
.media-label { position: absolute; top: 16px; right: 16px; padding: 5px 13px; border-radius: 30px; color: #fff; background: var(--blue); font-size: 12px; font-weight: 700; }
.event-label { background: var(--teal); }
.media-body { display: flex; flex-direction: column; justify-content: center; padding: 22px; }
.media-body time { color: #7c8da4; font-size: 13px; }
.media-body h3 { margin: 8px 0 18px; color: var(--navy-950); font-size: 19px; line-height: 1.55; }
.read-more { align-self: flex-start; color: var(--blue); font-weight: 700; }
.events-channel .read-more { color: #087f79; }

.sectors-section { position: relative; background:
    radial-gradient(circle at 8% 85%, rgba(18,169,158,.1), transparent 24rem),
    linear-gradient(180deg, #f5faff, #eef7fc); }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector-card { position: relative; min-height: 385px; padding: 30px 25px; overflow: hidden; border: 1px solid #d7e7f3; border-radius: 23px; background: rgba(255,255,255,.94); box-shadow: 0 14px 34px rgba(17,68,107,.08); transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.sector-card::after { position: absolute; left: -60px; bottom: -65px; width: 180px; height: 180px; border-radius: 50%; background: rgba(13,130,205,.06); content: ""; }
.sector-card::before { position: absolute; top: 0; right: 0; width: 5px; height: 78px; border-radius: 0 0 0 8px; background: linear-gradient(180deg, var(--blue), var(--cyan)); content: ""; }
.sector-card:nth-child(2)::before { background: linear-gradient(180deg, #0a88bf, var(--teal)); }
.sector-card:nth-child(3)::before { background: linear-gradient(180deg, #18a59b, #55d2ba); }
.sector-card:nth-child(4)::before { background: linear-gradient(180deg, #355fc0, #20a9d3); }
.sector-card:hover { border-color: #afd4e9; transform: translateY(-7px); box-shadow: 0 24px 45px rgba(17,68,107,.13); }
.sector-icon { display: grid; place-items: center; width: 78px; height: 78px; border-radius: 22px; background: linear-gradient(145deg, #e6f4ff, #effbf9); }
.sector-icon img { width: 51px; height: 51px; object-fit: contain; }
.sector-card h3 { margin: 22px 0 17px; color: var(--navy-950); font-size: 23px; }
.sector-card ul { margin: 0; padding: 0 20px 0 0; color: var(--muted); }
.sector-card li { margin: 9px 0; }
.sector-card li::marker { color: var(--teal); }

.about-section { position: relative; background:
    radial-gradient(circle at 88% 18%, rgba(11,120,223,.08), transparent 25rem),
    #fff; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.value-card { position: relative; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(145deg, #fff, #f8fbfe); box-shadow: 0 15px 32px rgba(18,65,102,.07); transition: transform 200ms ease, box-shadow 200ms ease; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 22px 42px rgba(18,65,102,.12); }
.value-card::after { position: absolute; left: -40px; bottom: -70px; width: 170px; height: 170px; border: 1px solid rgba(10,137,199,.1); border-radius: 50%; box-shadow: 0 0 0 22px rgba(10,137,199,.035), 0 0 0 46px rgba(10,137,199,.025); content: ""; }
.principles-card { grid-column: 1 / -1; }
.value-heading { display: flex; align-items: center; gap: 18px; }
.value-icon { display: grid; place-items: center; width: 90px; height: 90px; overflow: hidden; border-radius: 25px; background: #edf8fc; }
.value-icon img { width: 80px; height: 80px; object-fit: cover; mix-blend-mode: multiply; }
.value-heading h3 { margin: 0; color: var(--navy-950); font-size: 28px; }
.value-card > p { margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.principles-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 20px; }
.principles-list ul { margin: 0; padding: 0 20px 0 0; color: var(--muted); }
.principles-list li { margin: 8px 0; }
.principles-list li::marker { color: var(--cyan); }

.contact-section {
    position: relative;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(50px, 7vw, 105px);
    padding: 90px clamp(34px, 5.5vw, 86px);
    color: #fff;
    background:
        radial-gradient(circle at 8% 100%, rgba(7,211,207,.22), transparent 22rem),
        linear-gradient(120deg, #06275d, #0b4f82 58%, #0b7e8e);
}
.contact-section::before { position: absolute; top: 0; left: 6%; width: 34%; height: 1px; background: linear-gradient(90deg, transparent, #67dce6, transparent); content: ""; }
.contact-intro > p { margin: 0 0 6px; color: #80e4ef; font-weight: 700; }
.contact-intro h2 { margin: 0; color: #fff; font-size: clamp(34px, 3vw, 48px); }
.contact-details { display: grid; gap: 14px; margin-top: 34px; }
.contact-details a, .contact-details div { display: grid; gap: 2px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: rgba(255,255,255,.06); }
.contact-details span { color: rgba(255,255,255,.62); font-size: 13px; }
.contact-details strong { color: #fff; font-size: 16px; font-weight: 400; }

.contact-form { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 26px; background: rgba(255,255,255,.1); box-shadow: 0 24px 50px rgba(0,0,0,.12); backdrop-filter: blur(14px); }
.contact-form label { display: block; margin: 0 0 7px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 700; }
.contact-form .errorlist { margin: 0 0 7px; color: #ffd3d3; font-size: 13px; }
.form-input { width: 100%; min-height: 52px; margin-bottom: 17px; padding: 0 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; outline: 0; color: #fff; background: rgba(255,255,255,.1); transition: border-color 180ms ease, background 180ms ease; }
.form-textarea { min-height: 135px; padding-block: 14px; resize: vertical; }
.form-input::placeholder { color: rgba(255,255,255,.48); }
.form-input:focus { border-color: #74dae4; background: rgba(255,255,255,.15); }
.form-messages p { padding: 10px 13px; border-radius: 10px; font-size: 13px; }
.form-messages .success { color: #baffd7; background: rgba(20,142,92,.28); }
.form-messages .error { color: #ffd7d7; background: rgba(181,35,53,.25); }
.submit-button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 58px; padding: 10px 22px; border: 0; border-radius: 14px; color: var(--navy-950); background: #fff; font-weight: 700; cursor: pointer; }

.site-footer { position: relative; display: grid; grid-template-columns: 1.25fr .85fr .85fr 1fr; gap: 42px; padding: 50px clamp(34px, 5.5vw, 86px) 28px; overflow: hidden; color: rgba(255,255,255,.7); background:
    radial-gradient(circle at 100% 100%, rgba(12,167,178,.2), transparent 23rem),
    #041b45; }
.site-footer::before { position: absolute; top: -130px; left: 8%; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.018), 0 0 0 90px rgba(255,255,255,.012); content: ""; }
.footer-logo img { width: 290px; max-height: 105px; object-fit: contain; object-position: right center; }
.site-footer h2 { margin: 0 0 14px; color: #fff; font-size: 18px; }
.footer-contact, .footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact a, .footer-contact span, .footer-links a { margin: 5px 0; }
.site-footer a:hover { color: #82e7ef; }
.footer-social { display: flex; align-content: flex-start; justify-content: flex-end; flex-wrap: wrap; gap: 8px; direction: ltr; }
.footer-social a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; font-family: Arial, sans-serif; font-size: 13px; }
.copyright { grid-column: 1 / -1; margin: 20px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; }

@media (max-width: 1280px) {
    .site-header { padding-inline: 26px; }
    .hero-layout { grid-template-columns: minmax(300px,.85fr) minmax(430px,1fr) minmax(200px,.42fr); padding-inline: 28px; }
    .platform-card { grid-template-columns: 80px 1fr; padding-inline: 14px; }
    .platform-icon { width: 80px; height: 102px; }
    .platform-icon img { width: 56px; height: 56px; }
    .platform-content strong { font-size: 17px; }
    .sector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width:1080px){
    .site-header{
        display: none;
    }
}
@media (max-width: 1080px) {
    .site-shell { width: min(100% - 24px, 1600px); margin: 12px auto; border-radius: 26px; }
    .site-header { direction: rtl; min-height: 84px; padding: 12px 20px; }
    .brand { width: 245px; }
    .menu-toggle { display: grid; margin-right: auto; }
    .main-nav { position: fixed; top: 0; right: 0; left: auto; z-index: 49; display: flex; visibility: hidden; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 5px; width: min(380px,88vw); height: 100dvh; padding: 105px 22px 30px; opacity: 0; border: 0; border-radius: 0 0 0 28px; background:
        radial-gradient(circle at 100% 0, rgba(13,159,202,.13), transparent 20rem),
        #fff; box-shadow: -24px 0 60px rgba(7,39,76,.2); backdrop-filter: none; transform: translateX(30px); transition: opacity 180ms ease, transform 240ms ease, visibility 180ms ease; pointer-events: none; }
    .main-nav:hover, .main-nav:focus-within { width: min(380px,88vw); }
    .main-nav.is-open { visibility: visible; opacity: 1; transform: translateX(0); pointer-events: auto; }
    .main-nav a { direction: rtl; justify-content: flex-start; min-height: 57px; padding: 8px 10px; border-bottom: 1px solid var(--line); border-radius: 12px; font-size: 17px; transform: none; }
    .main-nav a:last-child { border-bottom: 0; }
    .main-nav a::after { display: none; }
    .main-nav a svg { flex-basis: 38px; width: 38px; height: 38px; }
    .main-nav a span, .main-nav:hover a span, .main-nav:focus-within a span { min-width: 0; opacity: 1; transform: none; }
    .hero { background-position: 18% center; }
    .hero-layout { grid-template-columns: .72fr 1fr; min-height: 610px; padding: 44px 28px; }
    .hero-copy { grid-column: 2; padding: 25px; border-radius: 28px; background: rgba(255,255,255,.8); backdrop-filter: blur(9px); }
    .hero-mark { display: none; }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
    .media-center-grid { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .media-card { grid-template-columns: 1fr; }
    .media-image { min-height: 210px; }
    .values-grid { grid-template-columns: 1fr; }
    .principles-card { grid-column: auto; }
    .contact-section { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: repeat(2, 1fr); }
    .footer-social { justify-content: flex-start; }
}

@media (max-width: 720px) {
    .site-shell { width: 100%; margin: 0; border: 0; border-radius: 0; }
    .site-header { padding-inline: 14px; }
    .brand { width: 190px; }
    .hero { min-height: 690px; background-position: 25% bottom; background-size: auto 100%; }
    .hero::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88) 58%, rgba(255,255,255,.12)); content: ""; }
    .hero-layout { display: block; min-height: auto; padding: 42px 18px 255px; }
    .hero-copy { width: 100%; max-width: 100%; padding: 0; background: transparent; backdrop-filter: none; }
    .hero-wordmark { display: block; width: 250px; }
    .hero h1 { font-size: 25px; line-height: 1.7; overflow-wrap: anywhere; }
    .science-divider span { width: 42px; }
    .primary-button { width: min(100%,310px); min-width: 0; gap: 42px; }
    .content-section { padding: 65px 18px; }
    .platforms-section { padding-top: 48px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
    .section-heading h2 { font-size: 32px; }
    .section-heading.with-link > a { width: 100%; text-align: center; }
    .media-center { padding-inline: 0; }
    .media-center-grid { gap: 18px; }
    .media-channel { padding: 24px 0; border-right: 0; border-left: 0; border-radius: 0; }
    .media-channel .section-heading { padding-inline: 18px; }
    .media-grid { display: flex; width: 100%; max-width: 100%; gap: 14px; padding: 0 18px 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .media-grid::-webkit-scrollbar, .platform-grid::-webkit-scrollbar, .sector-grid::-webkit-scrollbar { display: none; }
    .media-card { flex: 0 0 82vw; min-height: 0; scroll-snap-align: center; }
    .media-image { height: 215px; min-height: 215px; }
    .media-body { padding: 22px; }
    .platform-grid, .sector-grid { display: flex; gap: 14px; margin-inline: -18px; padding: 0 18px 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .platform-card { flex: 0 0 86vw; min-height: 170px; grid-template-columns: 82px 1fr; scroll-snap-align: center; }
    .sector-card { flex: 0 0 86vw; min-height: 360px; scroll-snap-align: center; }
    .principles-list { grid-template-columns: 1fr; gap: 0; }
    .contact-section { padding: 68px 18px; }
    .contact-form { padding: 22px 16px; }
    .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 44px 22px 25px; }
    .footer-social { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
