@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
    --navy: #0B1F4A;
    --navy-light: #0f2860;
    --bg-dark: #080e1e;
    --bg-mid: #0d1629;
    --bg-card: rgba(11, 31, 74, 0.45);
    --bg-card-alt: rgba(255, 255, 255, 0.03);

    --primary: #3b82f6;
    /* Electric Blue */
    --gold: #D4AF37;
    /* Authority Gold */
    --teal: #0891B2;
    /* Trust Teal */
    --accent: #f59e0b;
    /* Amber */
    --success: #10b981;

    --text-main: #f0f4ff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-border-h: 1px solid rgba(59, 130, 246, 0.35);
    --nav-height: 76px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.18);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.bg-alt {
    background: rgba(255, 255, 255, 0.015);
}

.bg-navy {
    background: var(--navy);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #f5d97b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-teal {
    background: linear-gradient(135deg, var(--teal) 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1.25rem;
    background: linear-gradient(to right, #fff 50%, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.75;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 2px;
    margin: 1rem 0 2rem;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.55);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b8960e 100%);
    color: #080e1e;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn-teal {
    background: linear-gradient(135deg, var(--teal) 0%, #0e7490 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.35);
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.55);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(8, 14, 30, 0.82);
    border-bottom: var(--glass-border);
    padding: 0 2rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(8, 14, 30, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    height: 52px;
    width: auto;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
}

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

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(8, 14, 30, 0.97);
    border: var(--glass-border);
    border-radius: var(--radius-sm);
    min-width: 200px;
    padding: 0.5rem;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    z-index: 100;
}

.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 0.55rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: rgba(8, 14, 30, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    border-top: var(--glass-border);
    overflow-y: auto;
}

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

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border-bottom: var(--glass-border);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-menu a.active {
    color: var(--gold);
}

.mobile-section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    padding: 1rem 1rem 0.25rem;
    font-weight: 600;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(212, 175, 55, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(8, 145, 178, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual img {
    max-width: 100%;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.25));
    animation: float 7s ease-in-out infinite;
}

.hero-stat-pills {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
}

.stat-pill {
    background: rgba(11, 31, 74, 0.8);
    border: var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    box-shadow: var(--shadow-card);
}

.stat-pill strong {
    color: var(--gold);
    margin-right: 0.3rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
    background: linear-gradient(135deg, rgba(11, 31, 74, 0.9) 0%, rgba(8, 14, 30, 0.9) 100%);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
    padding: 2.5rem 0;
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* =====================================================
   CARDS — GLASS & FOCUS
   ===================================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.glass-card {
    background: var(--bg-card);
    border: var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: var(--shadow-glow);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.975rem;
}

/* Focus Area Cards */
.focus-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.focus-card .icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}

.focus-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.focus-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.focus-card .arrow {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Safety / Governance / Ethics color accents */
.focus-card.safety:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.focus-card.governance:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.focus-card.governance:hover {
    box-shadow: var(--shadow-gold);
}

.focus-card.ethics:hover {
    border-color: rgba(8, 145, 178, 0.4);
}

/* =====================================================
   MISSION STRIP
   ===================================================== */
.mission-strip {
    background: linear-gradient(135deg, rgba(11, 31, 74, 0.6) 0%, rgba(8, 14, 30, 0.6) 100%);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mission-strip::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.mission-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 820px;
    line-height: 1.8;
}

.mission-text strong {
    color: var(--text-main);
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
    background: linear-gradient(135deg, rgba(11, 31, 74, 0.95) 0%, rgba(8, 20, 50, 0.95) 100%);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: var(--text-muted);
    max-width: 480px;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
    padding: calc(var(--nav-height) + 4rem) 0 4rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--text-dim);
}

.breadcrumb a:hover {
    color: var(--text-main);
}

.breadcrumb span {
    color: var(--text-dim);
}

/* =====================================================
   TEAM / MEMBER CARDS
   ===================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.member-card {
    text-align: center;
    padding: 2.5rem 1.75rem;
    background: var(--bg-card-alt);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.member-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--primary));
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.role {
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================================================
   PARTNER CARDS (Global Network)
   ===================================================== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.partner-card {
    background: var(--bg-card-alt);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-3px);
}

.partner-flag {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.partner-info h4 {
    font-size: 0.975rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.partner-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.partner-info .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-top: 0.5rem;
    border: 1px solid;
}

.tag-research {
    color: var(--primary);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.08);
}

.tag-community {
    color: var(--teal);
    border-color: rgba(8, 145, 178, 0.3);
    background: rgba(8, 145, 178, 0.08);
}

.tag-education {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
}

.tag-policy {
    color: var(--accent);
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.08);
}

/* =====================================================
   WORLD MAP SECTION
   ===================================================== */
.map-frame {
    background: rgba(11, 31, 74, 0.35);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.25;
}

.map-overlay {
    position: relative;
    margin-top: -2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0 0.5rem 0.5rem;
}

.region-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.region-badge.hl {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold);
}

.region-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.region-dot.gold {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* =====================================================
   EVENTS
   ===================================================== */
.event-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.event-type-card {
    background: var(--bg-card-alt);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.event-type-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: var(--shadow-glow);
}

.event-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-type-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.event-type-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

/* =====================================================
   FORM STYLES
   ===================================================== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.975rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* =====================================================
   RESOURCES
   ===================================================== */
.resource-card {
    background: var(--bg-card-alt);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.resource-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.resource-icon {
    font-size: 1.75rem;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-info h4 {
    font-size: 0.975rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.resource-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.resource-info .ext-link {
    font-size: 0.78rem;
    color: var(--primary);
    margin-top: 0.3rem;
    display: block;
}

/* Org table */
.org-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.org-table th {
    text-align: left;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.org-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    vertical-align: middle;
}

.org-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
}

.org-table td a {
    color: var(--primary);
}

.org-table td a:hover {
    text-decoration: underline;
}

.org-table td:first-child {
    font-weight: 600;
    color: var(--text-main);
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card-alt);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-3px);
}

.contact-method-icon {
    font-size: 1.75rem;
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-info h4 {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.2rem;
    font-weight: 400;
}

.contact-method-info p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.social-placeholder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-dim);
    cursor: default;
}

.social-icon {
    font-size: 1.25rem;
}

/* =====================================================
   PROSE / CONTENT SECTIONS (Focus area pages)
   ===================================================== */
.prose-section {
    background: var(--bg-card-alt);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.prose-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.prose-section p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.9rem;
}

.prose-section ul {
    padding-left: 1.5rem;
    list-style: disc;
}

.prose-section ul li {
    color: var(--text-muted);
    padding: 0.3rem 0;
    line-height: 1.65;
}

.reading-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reading-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    transition: var(--transition);
    text-decoration: none;
}

.reading-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--text-main);
}

.reading-item::before {
    content: '📄';
    flex-shrink: 0;
}

/* =====================================================
   ANIMATIONS / SCROLL REVEAL
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: #000;
    border-top: var(--glass-border);
    padding: 4rem 0 2rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: var(--glass-border);
    margin-bottom: 2rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin: 0.75rem 0 1.25rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul a {
    font-size: 0.875rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-contact a {
    color: var(--primary);
    font-size: 0.85rem;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* =====================================================
   SCROLL-TO-TOP / MISC
   ===================================================== */
.notice-bar {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.notice-bar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stat-pills {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stats-grid> :last-child:nth-child(odd) {
        grid-column: span 2;
    }

    .stat-item+.stat-item::before {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .org-table {
        font-size: 0.8rem;
    }

    .org-table th,
    .org-table td {
        padding: 0.6rem 0.75rem;
    }

    .hero-stat-pills {
        display: none;
    }
}

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

    .stats-grid> :last-child:nth-child(odd) {
        grid-column: 1;
    }

    .stat-number {
        font-size: 2rem;
    }

    .prose-section {
        padding: 1.5rem;
    }

    .cta-banner {
        padding: 2rem 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* =====================================================
   TEAM MEMBER PHOTOS
   ===================================================== */
.member-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.member-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), var(--shadow-gold);
}

.member-photo-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08), 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.member-card:hover .member-photo-wrap {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18), 0 8px 24px rgba(0, 0, 0, 0.4);
    transform: scale(1.04);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.member-card:hover .member-photo {
    transform: scale(1.07);
}

.member-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

.member-card .role {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.role-tag {
    background: rgba(8, 145, 178, 0.18);
    color: #22d3ee;
    border: 1px solid rgba(8, 145, 178, 0.35);
    font-size: 0.68rem;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-card .member-bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 auto 1.25rem;
    color: #fff;
    border: 2px solid rgba(59, 130, 246, 0.3);
}