/* ═══════════════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
    --navy: #0B1D33;
    --navy-mid: #0F2540;
    --navy-card: #112A48;
    --navy-deep: #070F1C;
    --steel: #1A4A78;
    --steel-light: #2260A0;
    --rust: #8B3A1F;
    --rust-light: #A0481F;
    --amber: #C8880A;
    --amber-bright: #E09A0C;
    --white: #EEF2F8;
    --grey-light: #B0C4D8;
    --grey-mid: #6E8EA8;
    --grey-dark: #324E66;
    --rule: rgba(110, 142, 168, 0.16);
    --rule-amber: rgba(200, 136, 10, 0.3);
    --f-serif: 'Lora', Georgia, serif;
    --f-sans: 'Inter', system-ui, sans-serif;
    --f-mono: 'IBM Plex Mono', monospace;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--f-sans);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   KEYFRAMES — Animations
═══════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowShift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 136, 10, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(200, 136, 10, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 136, 10, 0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════ */
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
}

.wrap--narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 48px;
}

.eyebrow {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--amber);
    flex-shrink: 0;
}

.section-head {
    margin-bottom: 60px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--rule-amber);
}

.section-head .eyebrow {
    margin-bottom: 16px;
}

.section-head h2 {
    font-family: var(--f-serif);
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--white);
}

.section-head p {
    margin-top: 18px;
    font-size: 16.5px;
    color: var(--grey-light);
    line-height: 1.75;
    max-width: 620px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.section-head--center {
    text-align: center;
}

.section-head--center .eyebrow {
    justify-content: center;
}

.section-head--center .eyebrow::before {
    display: none;
}

.section-head--center p {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.2s var(--ease);
    cursor: pointer;
    border: none;
}

.btn-amber {
    background: var(--amber-bright);
    color: var(--navy-deep);
    animation: pulseBtn 2.5s ease-in-out infinite 1.2s;
}

.btn-amber:hover {
    background: #d4920e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 136, 10, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--grey-light);
    border: 1px solid var(--grey-dark);
}

.btn-outline:hover {
    border-color: var(--grey-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost-amber {
    background: transparent;
    color: var(--amber);
    border: 1px solid var(--rule-amber);
}

.btn-ghost-amber:hover {
    background: rgba(200, 136, 10, 0.1);
    color: var(--amber-bright);
}

/* Cards */
.card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    padding: 36px 30px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
    border-color: rgba(200, 136, 10, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card--accent {
    border-left: 3px solid var(--amber);
}

/* Tag label */
.tag {
    font-family: var(--f-mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(200, 136, 10, 0.08);
    border: 1px solid rgba(200, 136, 10, 0.22);
    padding: 4px 10px;
    display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 70px;
    background: rgba(7, 15, 28, 0.95);
    border-bottom: 1px solid var(--rule);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: box-shadow 0.3s;
}

.nav.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav__logo {
    height: 38px;
    width: auto;
    display: block;
}

.nav__brand-name {
    font-family: var(--f-serif);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.nav__brand-name small {
    display: block;
    font-family: var(--f-mono);
    font-size: 9px;
    font-weight: 400;
    color: var(--grey-mid);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav__links a {
    display: block;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--grey-mid);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.18s;
    position: relative;
    /* Reserve space for bold text to prevent shift */
    text-shadow: 0 0 0.01px currentColor;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--white);
}

/* Make active link bold */
.nav__links a.active {
    font-weight: 700;
}

.nav__links a:hover::after,
.nav__links a.active::after {
    transform: scaleX(1);
}

.nav__cta {
    font-family: var(--f-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--amber);
    color: var(--navy-deep);
    padding: 9px 18px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.18s, transform 0.15s;
}

.nav__cta:hover {
    background: var(--amber-bright);
    transform: translateY(-1px);
}

/* Hamburger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--grey-light);
    transition: all 0.22s;
}

.nav__burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid var(--rule);
    z-index: 499;
    flex-direction: column;
}

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

.mobile-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-light);
    text-decoration: none;
    padding: 16px 48px;
    border-bottom: 1px solid var(--rule);
    transition: color 0.15s, background 0.15s;
    /* Reserve space for bold text to prevent shift */
    text-shadow: 0 0 0.01px currentColor;
}

.mobile-nav a:hover {
    color: var(--amber);
    background: rgba(255, 255, 255, 0.02);
}

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

/* Make active mobile link bold */
.mobile-nav a.active {
    font-weight: 700;
}

/* ─── Dropdown navigation ────────────────────────────────────────────── */
.nav__links .dropdown {
    position: relative;
}

.nav__links .dropdown > a::after {
    content: ' ▾';
    font-size: 10px;
}

.nav__links .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--navy-deep);
    border: 1px solid var(--rule);
    border-top: 2px solid var(--amber);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    z-index: 600;
    padding: 8px 0;
}

.nav__links .dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--grey-light);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid var(--rule);
}

.nav__links .dropdown-content a:last-child {
    border-bottom: none;
}

.nav__links .dropdown-content a:hover {
    background: rgba(200,136,10,0.08);
    color: var(--white);
}

.nav__links .dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile nav dropdowns – expandable on click */
.mobile-nav .dropdown {
    flex-direction: column;
}

.mobile-nav .dropdown-content {
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,0.02);
}

.mobile-nav .dropdown.open .dropdown-content {
    display: flex;
}

.mobile-nav .dropdown > a {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .dropdown > a::after {
    content: ' ▾';
    font-size: 12px;
    transition: transform 0.2s;
}

.mobile-nav .dropdown.open > a::after {
    transform: rotate(180deg);
}

.mobile-nav .dropdown-content a {
    padding-left: 60px;
    font-size: 13px;
    border-bottom: 1px solid var(--rule);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE SECTIONS — shared full-page feel
═══════════════════════════════════════════════════════════════ */
.page-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 0 100px;
    border-top: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.page-section:first-of-type {
    border-top: none;
    animation-delay: 0.1s;
}

.page-section:nth-child(2) {
    animation-delay: 0.3s;
}
.page-section:nth-child(3) {
    animation-delay: 0.4s;
}
.page-section:nth-child(4) {
    animation-delay: 0.5s;
}
.page-section:nth-child(5) {
    animation-delay: 0.6s;
}
.page-section:nth-child(6) {
    animation-delay: 0.7s;
}

.page-section--tint {
    background: var(--navy-mid);
}

.page-section--deep {
    background: var(--navy-deep);
}

/* Decorative corner bracket */
.corner-deco {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.corner-deco--tl {
    top: 48px;
    left: 48px;
    border-top: 1px solid var(--rule-amber);
    border-left: 1px solid var(--rule-amber);
}

.corner-deco--br {
    bottom: 48px;
    right: 48px;
    border-bottom: 1px solid var(--rule-amber);
    border-right: 1px solid var(--rule-amber);
}

/* ═══════════════════════════════════════════════════════════════
   1. HERO — FULL WIDTH + DYNAMIC
═══════════════════════════════════════════════════════════════ */

#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--navy-deep);
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

#home .hero__parallax-bg {
    position: absolute;
    inset: -20px;
    z-index: 0;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    will-change: transform;
    transform: scale(1.05);
    transition: transform 0.1s ease-out;
}

#home .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200, 136, 10, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(26, 74, 120, 0.3) 0%, transparent 50%),
        rgba(11, 29, 51, 0.78);
    animation: glowShift 12s ease-in-out infinite alternate;
}

#home .hero__grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.3;
}

#home .wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
}

.hero__content {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero__eyebrow {
    justify-content: center;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero__eyebrow .eyebrow::before {
    display: none;
}

.hero__h1 {
    font-family: var(--f-serif);
    font-size: clamp(40px, 5.5vw, 74px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero__h1 em {
    font-style: italic;
    color: var(--amber-bright);
    position: relative;
}

.hero__h1 em::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--amber-bright);
    opacity: 0.4;
}

.hero__sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--grey-light);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: center;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero__stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1s;
}

.hero__stat-item {
    text-align: center;
}

.hero__stat-item .hero__stat-value {
    font-family: var(--f-mono);
    font-size: 38px;
    font-weight: 600;
    color: var(--amber-bright);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.hero__stat-item:hover .hero__stat-value {
    color: #f0b020;
}

.hero__stat-item .hero__stat-label {
    font-size: 13px;
    color: var(--grey-mid);
    line-height: 1.4;
}

.hero__stat-item .hero__stat-source {
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--grey-mid);
    letter-spacing: 0.06em;
    margin-top: 4px;
    display: block;
    transition: color 0.2s;
}

.hero__credit {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 4;
    font-family: var(--f-mono);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
    text-align: right;
    line-height: 1.4;
}

.hero__credit a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.hero__credit a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════════════════
   2. ABOUT
═══════════════════════════════════════════════════════════════ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about__text p {
    font-size: 16px;
    color: var(--grey-light);
    line-height: 1.82;
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__text strong {
    color: var(--white);
    font-weight: 600;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vm-card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 3px solid transparent;
    padding: 30px 28px;
    transition: border-color 0.2s, border-left-color 0.2s, transform 0.2s var(--ease);
}

.vm-card:hover {
    border-color: rgba(200, 136, 10, 0.3);
    border-left-color: var(--amber);
    transform: translateY(-4px);
}

.vm-card__label {
    font-family: var(--f-mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
}

.vm-card__title {
    font-family: var(--f-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.vm-card__text {
    font-size: 14px;
    color: var(--grey-light);
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-top: 4px;
}

.values-list li {
    list-style: none;
    font-size: 13px;
    color: var(--grey-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.values-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--amber);
    flex-shrink: 0;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   3. WHY CORROSION MATTERS
═══════════════════════════════════════════════════════════════ */
.why__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 72px;
}

.why__intro-text p {
    font-size: 16px;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.why__intro-text p:last-child {
    margin-bottom: 0;
}

.why__big-number {
    text-align: center;
    padding: 48px 36px;
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-top: 3px solid var(--rust-light);
}

.why__big-number-val {
    font-family: var(--f-mono);
    font-size: 80px;
    font-weight: 600;
    color: var(--amber-bright);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.why__big-number-label {
    font-size: 15px;
    color: var(--grey-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

.why__big-number-note {
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--grey-mid);
    letter-spacing: 0.1em;
}

.why__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.why__card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 3px solid transparent;
    padding: 36px 26px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, border-left-color 0.2s, transform 0.2s var(--ease);
}

.why__card:hover {
    border-color: rgba(200, 136, 10, 0.3);
    border-left-color: var(--amber);
    transform: translateY(-4px);
}

.why__card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(200, 136, 10, 0.1);
    border: 1px solid rgba(200, 136, 10, 0.15);
    border-radius: 10px;
    margin-bottom: 18px;
    color: var(--amber);
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}

.why__card:hover .why__card-icon-wrap {
    background: rgba(200, 136, 10, 0.2);
    border-color: rgba(200, 136, 10, 0.4);
    transform: scale(1.05);
}

.why__card-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.why__card-title {
    font-family: var(--f-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.why__card-text {
    font-size: 13.5px;
    color: var(--grey-mid);
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* ═══════════════════════════════════════════════════════════════
   4. RESEARCH
═══════════════════════════════════════════════════════════════ */
.research__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.research__card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    padding: 40px 36px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 14px;
    transition: border-color 0.2s, transform 0.2s var(--ease);
    position: relative;
    overflow: hidden;
}

.research__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--amber);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s var(--ease);
}

.research__card:hover {
    border-color: rgba(200, 136, 10, 0.25);
    transform: translateY(-3px);
}

.research__card:hover::before {
    transform: scaleY(1);
}

.research__card-tag {
    font-family: var(--f-mono);
    font-size: 9.5px;
    color: var(--amber);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.research__card-title {
    font-family: var(--f-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.25;
}

.research__card-desc {
    font-size: 14px;
    color: var(--grey-mid);
    line-height: 1.72;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.research__card-keys {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--rule);
}

.research__key {
    font-family: var(--f-mono);
    font-size: 9px;
    color: var(--grey-light);
    background: rgba(110, 142, 168, 0.12);
    border: 1px solid rgba(110, 142, 168, 0.25);
    padding: 3px 8px;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════
   5. EDUCATION
═══════════════════════════════════════════════════════════════ */
.edu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 64px;
}

.edu__card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 3px solid transparent;
    padding: 36px 28px;
    position: relative;
    transition: border-color 0.2s, border-left-color 0.2s, transform 0.2s var(--ease);
}

.edu__card:hover {
    border-color: rgba(200, 136, 10, 0.3);
    border-left-color: var(--amber);
    transform: translateY(-4px);
}

.edu__card-num {
    font-family: var(--f-mono);
    font-size: 44px;
    font-weight: 600;
    color: rgba(200, 136, 10, 0.12);
    line-height: 1;
    margin-bottom: 20px;
}

.edu__card-title {
    font-family: var(--f-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.edu__card-text {
    font-size: 13.5px;
    color: var(--grey-mid);
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* Publication strip */
.pub-strip {
    background: var(--navy-deep);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--amber);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.pub-strip__year {
    font-family: var(--f-mono);
    font-size: 10.5px;
    color: var(--amber);
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}

.pub-strip__title {
    font-family: var(--f-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pub-strip__authors {
    font-size: 13.5px;
    color: var(--grey-light);
    margin-bottom: 6px;
}

.pub-strip__journal {
    font-size: 13px;
    color: var(--grey-mid);
    font-style: italic;
    margin-bottom: 14px;
}

.pub-strip__doi a {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--amber);
    text-decoration: none;
}

.pub-strip__doi a:hover {
    text-decoration: underline;
}

.pub-strip__badge {
    font-family: var(--f-mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(200, 136, 10, 0.1);
    border: 1px solid rgba(200, 136, 10, 0.3);
    padding: 7px 14px;
    white-space: nowrap;
    align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════════════
   6. CAREERS
═══════════════════════════════════════════════════════════════ */
.careers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.careers__text p {
    font-size: 16px;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.career-path__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.career-path__item {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--amber);
    padding: 16px 18px;
    font-size: 14px;
    color: var(--grey-light);
    line-height: 1.6;
    transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.career-path__item:hover {
    border-color: rgba(200, 136, 10, 0.4);
    transform: translateY(-2px);
}

.career-path__item strong {
    color: var(--white);
    font-weight: 600;
}

.careers__sectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.sector-item {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.18s, background 0.18s;
}

.sector-item:hover {
    border-color: rgba(200, 136, 10, 0.3);
    background: rgba(200, 136, 10, 0.04);
}

.sector-item__image {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    border: 1px solid var(--rule);
}

.sector-item__name {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════
   7. INDUSTRY
═══════════════════════════════════════════════════════════════ */
.industry__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.industry__card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    padding: 34px 26px;
    transition: border-color 0.2s, transform 0.2s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.industry__card:hover {
    border-color: rgba(200, 136, 10, 0.3);
    transform: translateY(-4px);
}

.industry__card__image {
    width: 100%;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.industry__card__image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s var(--ease);
}

.industry__card:hover .industry__card__image img {
    transform: scale(1.05);
}

.industry__card__name {
    font-family: var(--f-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.industry__card__desc {
    font-size: 13px;
    color: var(--grey-mid);
    line-height: 1.65;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* ═══════════════════════════════════════════════════════════════
   8. EVENTS
═══════════════════════════════════════════════════════════════ */
.event__featured {
    background: var(--navy-card);
    border: 1px solid rgba(200, 136, 10, 0.3);
    padding: 60px 56px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 52px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.event__featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(26, 74, 120, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.event__date-block {
    background: rgba(200, 136, 10, 0.1);
    border: 1px solid rgba(200, 136, 10, 0.3);
    padding: 22px 14px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.event__day {
    font-family: var(--f-mono);
    font-size: 48px;
    font-weight: 600;
    color: var(--amber-bright);
    line-height: 1;
    display: block;
}

.event__month {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--grey-mid);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.event__body {
    position: relative;
    z-index: 1;
}

.event__badge {
    font-family: var(--f-mono);
    font-size: 9.5px;
    font-weight: 600;
    background: var(--amber);
    color: var(--navy-deep);
    padding: 3px 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.event__title {
    font-family: var(--f-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 12px;
}

.event__desc {
    font-size: 14.5px;
    color: var(--grey-light);
    line-height: 1.72;
    margin-bottom: 18px;
    max-width: 540px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.event__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.event__meta-item {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--grey-mid);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event__meta-item strong {
    color: var(--white);
}

.event__cta {
    position: relative;
    z-index: 1;
    align-self: center;
}

/* ═══════════════════════════════════════════════════════════════
   9. STRATEGIC PRIORITIES
═══════════════════════════════════════════════════════════════ */
.priorities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.priority__card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 3px solid transparent;
    padding: 38px 30px;
    transition: border-color 0.2s, border-left-color 0.2s, transform 0.2s var(--ease);
}

.priority__card:hover {
    border-color: rgba(200, 136, 10, 0.3);
    border-left-color: var(--amber);
    transform: translateY(-4px);
}

.priority__num {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.priority__title {
    font-family: var(--f-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.priority__text {
    font-size: 14px;
    color: var(--grey-mid);
    line-height: 1.72;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* ═══════════════════════════════════════════════════════════════
   10. CONTACT
═══════════════════════════════════════════════════════════════ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__info h3 {
    font-family: var(--f-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}

.contact__info>p {
    font-size: 15px;
    color: var(--grey-light);
    line-height: 1.78;
    margin-bottom: 36px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.collab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.collab-grid-item {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--amber);
    padding: 8px 12px;
    font-size: 13px;
    color: var(--grey-light);
    line-height: 1.4;
}

.contact-card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--amber);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2px;
    transition: border-color 0.2s, transform 0.2s var(--ease);
}

.contact-card:hover {
    border-color: rgba(200, 136, 10, 0.4);
    transform: translateY(-2px);
}

.contact-card__icon {
    font-family: var(--f-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--amber);
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}

.contact-card__text {
    font-size: 14px;
    color: var(--grey-light);
    line-height: 1.5;
}

.contact-card__text a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.18s;
}

.contact-card__text a:hover {
    color: var(--amber);
}

/* Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-label {
    font-family: var(--f-mono);
    font-size: 9.5px;
    font-weight: 600;
    color: var(--grey-mid);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.form-field {
    background: var(--navy-card);
    border: 1px solid rgba(110, 142, 168, 0.2);
    color: var(--white);
    font-family: var(--f-sans);
    font-size: 14px;
    padding: 11px 16px;
    outline: none;
    transition: border-color 0.18s;
    -webkit-appearance: none;
}

.form-field:focus {
    border-color: var(--amber);
}

.form-field::placeholder {
    color: var(--grey-mid);
}

select.form-field option {
    background: var(--navy-card);
}

textarea.form-field {
    resize: vertical;
    min-height: 110px;
}

#formFeedback {
    font-size: 13px;
    color: var(--amber);
    display: none;
    line-height: 1.5;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   11. RESOURCES
═══════════════════════════════════════════════════════════════ */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

@media (max-width: 700px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   12. CONTACT CARDS & BADGES
═══════════════════════════════════════════════════════════════ */
.collab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.collab-grid-item {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--amber);
    padding: 8px 12px;
    font-size: 13px;
    color: var(--grey-light);
    line-height: 1.4;
}

.contact-card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--amber);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2px;
    transition: border-color 0.2s, transform 0.2s var(--ease);
}

.contact-card:hover {
    border-color: rgba(200, 136, 10, 0.4);
    transform: translateY(-2px);
}

.contact-card__icon {
    font-family: var(--f-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--amber);
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}

.contact-card__text {
    font-size: 14px;
    color: var(--grey-light);
    line-height: 1.5;
}

.contact-card__text a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.18s;
}

.contact-card__text a:hover {
    color: var(--amber);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Redesigned
═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--navy-deep);
    border-top: 3px solid var(--amber);
    padding: 60px 0 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__logo {
    height: 44px;
    width: auto;
    display: block;
}

.footer__tagline {
    font-family: var(--f-serif);
    font-size: 15px;
    font-style: italic;
    color: var(--grey-mid);
    line-height: 1.6;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.footer__social a {
    color: var(--grey-mid);
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--rule);
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
}

.footer__social a:hover {
    color: var(--amber-bright);
    border-color: var(--amber);
    transform: translateY(-3px);
    background: rgba(200,136,10,0.08);
}

.footer__links-col .footer__col-title {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 10px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 13.5px;
    color: var(--grey-mid);
    text-decoration: none;
    transition: color 0.15s, padding-left 0.15s;
    display: inline-block;
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid var(--rule);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copy {
    font-size: 12px;
    color: var(--grey-mid);
}

.footer__back-top {
    color: var(--grey-mid);
    text-decoration: none;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    transition: color 0.15s;
}

.footer__back-top:hover {
    color: var(--amber);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1040px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer__brand-col {
        grid-column: auto;
    }
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FOUNDER SECTION
═══════════════════════════════════════════════════════════════ */
.founder__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: start;
}

.founder__photo-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.founder__photo-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--rule);
}

.founder__photo {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(15%) contrast(1.04);
    transition: filter 0.3s;
}

.founder__photo-wrap:hover .founder__photo {
    filter: grayscale(0%) contrast(1.0);
}

.founder__photo-caption {
    background: var(--navy-deep);
    border-top: 2px solid var(--amber);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.founder__photo-name {
    font-family: var(--f-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}

.founder__photo-title {
    font-family: var(--f-mono);
    font-size: 9.5px;
    color: var(--amber);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.founder__connect {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.founder__connect-label {
    font-family: var(--f-mono);
    font-size: 9.5px;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.founder__connect-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    text-decoration: none;
    border: 1px solid var(--rule);
    background: var(--navy-mid);
    transition: border-color 0.18s, background 0.18s;
    margin-bottom: 2px;
}

.founder__connect-row:hover {
    border-color: rgba(200, 136, 10, 0.3);
    background: rgba(200, 136, 10, 0.05);
}

.founder__connect-icon {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--amber);
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

.founder__connect-row span:last-child {
    font-size: 12.5px;
    color: var(--grey-light);
    line-height: 1.3;
}

.founder__name {
    font-family: var(--f-serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.founder__role {
    font-family: var(--f-mono);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--rule);
}

.founder__bio-text p {
    font-size: 15.5px;
    color: var(--grey-light);
    line-height: 1.82;
    margin-bottom: 16px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.founder__bio-text p:last-child {
    margin-bottom: 0;
}

.founder__bio-text strong {
    color: var(--white);
    font-weight: 600;
}

.founder__two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
}

.founder__sub-label {
    font-family: var(--f-mono);
    font-size: 9.5px;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.founder__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.founder__list li {
    font-size: 13px;
    color: var(--grey-light);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.founder__list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--amber);
    flex-shrink: 0;
    margin-top: 6px;
    display: block;
}

.founder__pub-card {
    background: var(--navy-deep);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--amber);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.founder__pub-year {
    font-family: var(--f-mono);
    font-size: 9px;
    color: var(--amber);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.founder__pub-title {
    font-family: var(--f-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
}

.founder__pub-authors {
    font-size: 12px;
    color: var(--grey-light);
}

.founder__pub-journal {
    font-size: 12px;
    color: var(--grey-mid);
    font-style: italic;
}

.founder__pub-doi {
    font-family: var(--f-mono);
    font-size: 10.5px;
    color: var(--amber);
    text-decoration: none;
    margin-top: 4px;
}

.founder__pub-doi:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — consolidated, mobile-first cascade
   Breakpoints: 1040 / 860 / 700 / 600 / 420
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1040px) {
    .wrap,
    .wrap--narrow {
        padding: 0 36px;
    }

    .nav__inner {
        padding: 0 36px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why__intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .research__grid {
        grid-template-columns: 1fr;
    }

    .edu__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .industry__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .priorities__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .founder__grid {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }

    /* Footer responsive handled above */
}

@media (max-width: 860px) {
    .wrap,
    .wrap--narrow {
        padding: 0 28px;
    }

    .nav__inner {
        padding: 0 28px;
    }

    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .mobile-nav a {
        padding: 16px 28px;
    }

    .page-section {
        padding: 88px 0 76px;
        min-height: auto;
    }

    #home {
        min-height: auto;
        padding: 100px 0 60px;
    }

    #home .wrap {
        padding: 0 28px;
    }

    .hero__h1 {
        font-size: 34px;
    }

    .hero__sub {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero__stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-top: 36px;
        padding-top: 28px;
    }

    .hero__stat-item .hero__stat-value {
        font-size: 30px;
    }

    #home .hero__parallax-bg {
        transform: scale(1);
    }

    .section-head {
        margin-bottom: 52px;
    }

    .event__featured {
        grid-template-columns: 96px 1fr;
        padding: 36px 32px;
        gap: 28px;
    }

    .event__cta {
        grid-column: 1 / -1;
        margin-top: 4px;
    }

    .pub-strip {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pub-strip__badge {
        align-self: flex-start;
    }

    .founder__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .founder__photo-col {
        max-width: 360px;
    }

    .corner-deco {
        display: none;
    }
}

@media (max-width: 700px) {
    .section-head p,
    .hero__sub,
    .about__text p,
    .vm-card__text,
    .why__intro-text p,
    .why__card-text,
    .research__card-desc,
    .edu__card-text,
    .careers__text p,
    .industry__card__desc,
    .event__desc,
    .priority__text,
    .contact__info>p,
    .founder__bio-text p {
        text-align: left;
        text-justify: auto;
    }

    .why__cards {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .edu__grid {
        grid-template-columns: 1fr;
    }

    .industry__grid {
        grid-template-columns: 1fr 1fr;
    }

    .priorities__grid {
        grid-template-columns: 1fr;
    }

    .careers__sectors {
        grid-template-columns: 1fr 1fr;
    }

    .vision-mission .values-list {
        grid-template-columns: 1fr;
    }

    .collab-grid {
        grid-template-columns: 1fr;
    }

    .founder__two-col {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero__stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 28px;
        padding-top: 20px;
    }

    .event__featured {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .event__date-block {
        width: 96px;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 15px;
    }

    .wrap,
    .wrap--narrow {
        padding: 0 20px;
    }

    .nav__inner {
        padding: 0 20px;
    }

    .nav__brand-name {
        font-size: 13px;
    }

    .nav__brand-name small {
        display: none;
    }

    .page-section {
        padding: 76px 0 64px;
    }

    #home {
        padding: 92px 0 50px;
    }

    #home .wrap {
        padding: 0 20px;
    }

    .hero__h1 {
        font-size: 28px;
    }

    .hero__sub {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }

    .hero__stat-item .hero__stat-value {
        font-size: 26px;
    }

    .hero__credit {
        bottom: 12px;
        right: 16px;
        font-size: 8px;
    }

    .why__cards {
        grid-template-columns: 1fr;
    }

    .industry__grid {
        grid-template-columns: 1fr;
    }

    .careers__sectors {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 28px;
    }

    .research__card,
    .what-card,
    .priority__card,
    .edu__card,
    .industry__card,
    .why__card {
        padding: 28px 22px;
    }

    .event__featured {
        padding: 28px 22px;
    }

    .event__title {
        font-size: 19px;
    }

    .event__meta {
        gap: 12px 16px;
    }

    .pub-strip {
        padding: 28px 24px;
    }

    .founder__connect-row span:last-child {
        font-size: 12px;
        word-break: break-word;
    }
}

@media (max-width: 420px) {
    .wrap,
    .wrap--narrow {
        padding: 0 16px;
    }

    .nav__inner {
        padding: 0 16px;
    }

    .hero__h1 {
        font-size: 24px;
    }

    .hero__sub {
        font-size: 14px;
    }

    .hero__actions .btn {
        font-size: 10px;
        padding: 12px 20px;
    }

    .hero__stat-item .hero__stat-value {
        font-size: 22px;
    }

    .section-head h2 {
        font-size: 24px;
    }

    .sector-item {
        padding: 14px 16px;
    }

    .event__date-block {
        width: 80px;
        padding: 16px 8px;
    }

    .event__day {
        font-size: 36px;
    }

    .founder__name {
        font-size: 26px;
    }

    .founder__photo-col {
        max-width: 100%;
    }

    .contact__form {
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ADDITIONAL MOBILE FIXES
═══════════════════════════════════════════════════════════════ */

@media (max-width: 860px) {
    #home {
        padding-top: 110px;
    }
}

@media (max-width: 600px) {
    #home {
        padding-top: 100px;
    }
    .mobile-nav .dropdown-content a {
        padding-left: 60px !important;
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO — Center-aligned on all screens
═══════════════════════════════════════════════════════════════════════ */
.hero__content {
    text-align: center !important;
    max-width: 820px !important;
    margin: 0 auto !important;
}

.hero__sub {
    text-align: center !important;
    margin: 0 auto 44px !important;
}

.hero__actions {
    justify-content: center !important;
}

.hero__stat-item {
    text-align: center !important;
}

.hero__eyebrow {
    justify-content: center !important;
}

.hero__eyebrow .eyebrow {
    display: inline-block !important;
    padding-bottom: 6px !important;
    border-bottom: 2px solid var(--amber) !important;
}

.hero__eyebrow .eyebrow::before {
    display: none !important;
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .hero__content {
        max-width: 740px !important;
    }
    .hero__eyebrow .eyebrow {
        font-size: 10px !important;
        letter-spacing: 0.25em !important;
        white-space: nowrap !important;
    }
    .hero__h1 {
        font-size: clamp(32px, 4.2vw, 52px) !important;
    }
    .hero__sub {
        font-size: 16px !important;
        padding: 0 10px !important;
    }
    .hero__stat-item .hero__stat-value {
        font-size: 32px !important;
    }
}

@media (min-width: 1281px) {
    .hero__eyebrow .eyebrow {
        font-size: 11px !important;
        letter-spacing: 0.28em !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 1023px) {
    .hero__eyebrow .eyebrow {
        white-space: normal !important;
        font-size: 10px !important;
        letter-spacing: 0.22em !important;
    }
    .hero__content {
        max-width: 820px !important;
    }
}

@media (max-width: 420px) {
    .hero__eyebrow .eyebrow {
        font-size: 9px !important;
        letter-spacing: 0.2em !important;
        padding-bottom: 4px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   EVENT DETAIL — FULLY RESPONSIVE LAYOUT
═══════════════════════════════════════════════════════════════ */

.event-detail-hero {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-card));
    padding: 60px 48px 40px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    border-bottom: 3px solid var(--amber);
    margin-bottom: 24px;
}

.event-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.event-detail-card {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--amber);
    padding: 30px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-meta {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-detail-card h3 {
    font-family: var(--f-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.25;
}

.event-description {
    font-size: 14px;
    color: var(--grey-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.event-action {
    border-top: 1px solid var(--rule);
    padding-top: 16px;
}

.event-action .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1400px) {
    .event-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .event-detail-hero {
        padding: 40px 32px 30px;
    }
    .event-detail-card {
        padding: 24px 24px;
    }
}

@media (max-width: 600px) {
    .event-detail-hero {
        padding: 32px 20px 24px;
    }
    .event-detail-hero h2 {
        font-size: clamp(24px, 6vw, 32px);
    }
    .event-detail-card {
        padding: 20px 18px;
    }
    .event-detail-card h3 {
        font-size: 18px;
    }
    .event-description {
        font-size: 13px;
        text-align: left;
        text-justify: auto;
    }
    .event-detail-grid {
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE GRID SYSTEM
═══════════════════════════════════════════════════════════════ */

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

@media (max-width: 1040px) { 
    .grid-4 { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 860px) { 
    .grid-2, .grid-4 { grid-template-columns: 1fr; } 
    .grid-2 { gap: 16px; } 
    .grid-4 { gap: 16px; }
}
@media (max-width: 700px) { 
    .grid-3 { grid-template-columns: 1fr; gap: 16px; } 
}

/* ═══════════════════════════════════════════════════════════════
   BLOG & BLOG DETAIL
═══════════════════════════════════════════════════════════════ */
.blog-detail-hero {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-card));
    padding: 60px 48px 40px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    border-bottom: 3px solid var(--amber);
}
.blog-detail-card {
    background: var(--navy-card);
    border-left: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
    padding: 48px 48px 40px;
}
.blog-detail-text {
    font-size: 16.5px;
    color: var(--grey-light);
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

@media (max-width: 860px) {
    .blog-detail-hero { padding: 40px 32px 30px; }
    .blog-detail-card { padding: 32px 24px; }
}
@media (max-width: 600px) {
    .blog-detail-hero { padding: 32px 20px 24px; }
    .blog-detail-card { padding: 24px 18px; }
    .blog-detail-text { 
        font-size: 15px; 
        text-align: left; 
        text-justify: auto;
    }
}

/* ═══════════════════════════════════════════════════════════════
   EVENT & RESOURCES LIST
═══════════════════════════════════════════════════════════════ */
.event-list-item {
    background: var(--navy-card);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--amber);
    padding: 30px 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.event-list-item .btn { flex-shrink: 0; }

@media (max-width: 700px) {
    .event-list-item {
        padding: 20px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .event-list-item .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   IMAGE ASPECT-RATIO FIXES
═══════════════════════════════════════════════════════════════ */
.sector-item__image {
    width: 44px; height: 44px; aspect-ratio: 1/1;
    object-fit: cover; border-radius: 50%; flex-shrink: 0;
}
.industry__card__image img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    display: block; border-radius: 6px;
    transition: transform 0.3s var(--ease);
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHARTS
═══════════════════════════════════════════════════════════════ */
.chart-wrapper { max-width: 100%; overflow: hidden; padding: 0 10px; }
.chart-wrapper canvas { max-width: 100%; height: auto !important; }