  /* ═══════════════════════════════════════════
       CSS VARIABLES — LIGHT & DARK
    ═══════════════════════════════════════════ */
    :root {
      --navy:        #0b2240;
      --navy-mid:    #123460;
      --blue:        #1a5fa8;
      --blue-light:  #2d8dd9;
      --sky:         #e8f4ff;
      --sky-mid:     #d0e8fa;
      --gold:        #f5a623;
      --gold-2:      #e09318;
      --gold-light:  #fef3dc;
      --green:       #16a96b;
      --green-light: #d4f5e8;
      --silver:      #adb5bd;
      --bronze:      #cd7f32;
      --red:         #e84040;
      --bg:          #e8eff8;
      --bg2:         #dde8f5;
      --white:       #f4f9ff;
      --card:        #f4f9ff;
      --text:        #0d1f35;
      --muted:       #5a7490;
      --border:      rgba(11,34,64,0.08);
      --border2:     rgba(11,34,64,0.13);
      --shadow-sm:   0 2px 12px rgba(11,34,64,0.07);
      --shadow-md:   0 8px 30px rgba(11,34,64,0.12);
      --shadow-lg:   0 16px 56px rgba(11,34,64,0.18);
      --f-display: 'Playfair Display', Georgia, serif;
      --f-body:    'Plus Jakarta Sans', system-ui, sans-serif;
    }
    :root[data-theme="dark"] {
      --navy:        #b8d0ee;
      --navy-mid:    #a5c5f0;
      --blue:        #5baaf5;
      --blue-light:  #7dbfff;
      --sky:         #1a2a3f;
      --sky-mid:     #1e3250;
      --gold:        #f5a623;
      --gold-light:  #2e2000;
      --green:       #2fd98a;
      --green-light: #0a2a1c;
      --bg:          #0d1826;
      --bg2:         #111f33;
      --white:       #0d1826;
      --card:        #152035;
      --text:        #dce8f8;
      --muted:       #7a9bbb;
      --border:      rgba(255,255,255,0.07);
      --border2:     rgba(255,255,255,0.12);
      --shadow-sm:   0 2px 12px rgba(0,0,0,0.3);
      --shadow-md:   0 8px 30px rgba(0,0,0,0.4);
      --shadow-lg:   0 16px 56px rgba(0,0,0,0.5);
    }

    /* ═══════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--f-body);
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    body.loaded { opacity: 1; }

    /* ═══════════════════════════════════════════
       PAGE LOADER
    ═══════════════════════════════════════════ */
    #page-loader {
      position: fixed; inset: 0; z-index: 9999;
      background: #123460;
      display: flex; align-items: center; justify-content: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    #page-loader.hide { opacity: 0; visibility: hidden; }
    .loader-inner { text-align: center; animation: loaderPulse 1.4s ease-in-out infinite; }
    .loader-logo { width: 68px; height: 68px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.15); padding: 4px; margin: 0 auto 1rem; }
    .loader-logo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
    .loader-text { color: rgba(255,255,255,0.7); font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; }
    .loader-bar { width: 120px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; margin: 0.8rem auto 0; overflow: hidden; }
    .loader-bar-fill { height: 100%; background: var(--gold); border-radius: 2px; animation: loadBar 1.1s ease forwards; }
    @keyframes loadBar { from{width:0} to{width:100%} }
    @keyframes loaderPulse { 0%,100%{opacity:1} 50%{opacity:0.6} }

    /* ═══════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════ */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 0 1.5rem;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .navbar.scrolled {
      background: var(--card);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-sm);
    }
    .nav-inner {
      max-width: 1160px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }
    .nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
    .nav-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; box-shadow: 0 0 0 2px var(--gold), 0 0 0 4px rgba(245,166,35,0.18), 0 4px 14px rgba(245,166,35,0.25); transition: box-shadow 0.25s, transform 0.25s; }
    .nav-brand:hover img { transform: scale(1.08); box-shadow: 0 0 0 2px var(--gold), 0 0 0 6px rgba(245,166,35,0.28), 0 6px 22px rgba(245,166,35,0.35); }
    .navbar.scrolled .nav-brand img { box-shadow: 0 0 0 2px var(--gold), 0 0 0 4px rgba(245,166,35,0.18), 0 4px 14px rgba(245,166,35,0.25); }
    .brand-name { font-family: var(--f-display); font-size: 1.12rem; color: #fff; transition: color 0.3s; white-space: nowrap; }
    .navbar.scrolled .brand-name { color: var(--navy); }
    .nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
    .nav-links a { display: block; padding: 0.45rem 0.85rem; border-radius: 8px; color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: background 0.2s, color 0.2s; }
    .navbar.scrolled .nav-links a { color: var(--muted); }
    .nav-links a:hover { background: rgba(255,255,255,0.15); color: #fff; }
    .navbar.scrolled .nav-links a:hover { background: var(--sky); color: var(--blue); }
    .nav-links a.active { color: var(--gold) !important; font-weight: 700; }
    .nav-cta a { background: var(--gold) !important; color: #0b2240 !important; font-weight: 700 !important; padding: 0.5rem 1.2rem !important; border-radius: 8px; }
    .nav-cta a:hover { background: var(--gold-2) !important; }
    .nav-controls { display: flex; align-items: center; gap: 0.5rem; }
    .theme-toggle {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.2);
      color: #fff; font-size: 1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .navbar.scrolled .theme-toggle { background: var(--sky); color: var(--blue); border-color: var(--border2); }
    .theme-toggle:hover { transform: rotate(20deg) scale(1.1); }
    .nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; width: 40px; height: 40px; border-radius: 8px; align-items: center; justify-content: center; transition: color 0.3s; }
    .navbar.scrolled .nav-toggle { color: var(--navy); }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    .page-hero {
      position: relative;
      background: linear-gradient(150deg, #0b2240 0%, #123460 55%, #0f4d8a 100%);
      padding: 140px 1.5rem 100px;
      text-align: center; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .hero-mesh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .mesh-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.16; animation: blobFloat 12s ease-in-out infinite; }
    .mesh-blob:nth-child(1) { width: 420px; height: 420px; background: #2d8dd9; top: -100px; right: -50px; animation-duration: 14s; }
    .mesh-blob:nth-child(2) { width: 260px; height: 260px; background: #f5a623; bottom: -30px; left: -40px; animation-duration: 10s; animation-delay: -4s; }
    .mesh-blob:nth-child(3) { width: 160px; height: 160px; background: #16a96b; top: 45%; left: 40%; animation-duration: 16s; animation-delay: -8s; opacity: 0.09; }
    @keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(18px,-22px) scale(1.06)} 66%{transform:translate(-12px,16px) scale(0.94)} }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px; padding: 0.4rem 1.1rem;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.88);
      margin-bottom: 1.4rem; position: relative;
      animation: fadeUp 0.7s cubic-bezier(.2,.8,.3,1) 0.2s both;
    }
    .hero-badge i { color: var(--gold); }
    .page-hero h1 {
      font-family: var(--f-display);
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      color: #fff; line-height: 1.12; letter-spacing: -0.02em;
      margin-bottom: 1rem; position: relative;
      animation: fadeUp 0.8s cubic-bezier(.2,.8,.3,1) 0.4s both;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold); }
    .page-hero p {
      max-width: 560px; margin: 0 auto 2.5rem;
      font-size: 1rem; line-height: 1.8; font-weight: 300;
      color: rgba(255,255,255,0.72); position: relative;
      animation: fadeUp 0.8s cubic-bezier(.2,.8,.3,1) 0.6s both;
    }
    @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }

    /* Hero stats bar */
    .hero-stats {
      display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px; max-width: 700px; margin: 0 auto; overflow: hidden;
      animation: fadeUp 0.8s cubic-bezier(.2,.8,.3,1) 0.8s both;
      position: relative;
    }
    .hero-stat {
      flex: 1; min-width: 120px; padding: 1.4rem 1rem;
      text-align: center; border-right: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num { font-family: var(--f-display); font-size: 1.9rem; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
    .hero-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }

    /* ═══════════════════════════════════════════
       STICKY TABS
    ═══════════════════════════════════════════ */
    .tabs-bar {
      position: sticky; top: 72px; z-index: 100;
      background: var(--card);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(16px);
      transition: background 0.35s;
    }
    .tabs-inner {
      max-width: 1160px; margin: 0 auto;
      padding: 0 1.5rem;
      display: flex; gap: 0;
      overflow-x: auto; scrollbar-width: none;
    }
    .tabs-inner::-webkit-scrollbar { display: none; }
    .tab-btn {
      display: flex; align-items: center; gap: 0.5rem;
      padding: 1rem 1.3rem; border: none; background: none;
      font-family: var(--f-body); font-size: 0.88rem; font-weight: 500;
      color: var(--muted); cursor: pointer;
      border-bottom: 3px solid transparent; white-space: nowrap;
      transition: color 0.2s, border-color 0.2s; flex-shrink: 0;
    }
    .tab-btn i { font-size: 0.88rem; }
    .tab-btn:hover { color: var(--blue); }
    .tab-btn.active { color: var(--navy); font-weight: 700; border-bottom-color: var(--blue); }

    /* ═══════════════════════════════════════════
       SCROLL ANIMATIONS
    ═══════════════════════════════════════════ */
    .anim { opacity: 0; transform: translateY(28px); transition: opacity 0.6s cubic-bezier(.2,.8,.3,1), transform 0.6s cubic-bezier(.2,.8,.3,1); }
    .anim.fl { transform: translateX(-28px); }
    .anim.fr { transform: translateX(28px); }
    .anim.fs { transform: scale(0.94); }
    .anim.in { opacity: 1 !important; transform: none !important; }
    .d1{transition-delay:.07s} .d2{transition-delay:.14s} .d3{transition-delay:.21s}
    .d4{transition-delay:.28s} .d5{transition-delay:.35s} .d6{transition-delay:.42s}

    /* ═══════════════════════════════════════════
       MAIN CONTENT
    ═══════════════════════════════════════════ */
    .main { max-width: 1160px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
    .tab-pane { display: none; }
    .tab-pane.active { display: block; animation: tabIn 0.4s cubic-bezier(.2,.8,.3,1); }
    @keyframes tabIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }

    .sec-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 0.6rem; }
    .sec-title { font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--navy); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
    .sec-sub { font-size: 0.92rem; color: var(--muted); line-height: 1.7; max-width: 500px; }
    .sec-header { margin-bottom: 2.5rem; }

    /* Loading & Empty */
    .loading-wrap { text-align: center; padding: 4rem 1rem; color: var(--muted); }
    .spin { display: inline-block; animation: spin 1s linear infinite; font-size: 2rem; color: var(--blue-light); }
    @keyframes spin { to{transform:rotate(360deg)} }
    .empty-state { text-align: center; padding: 4rem 1rem; color: var(--muted); }
    .empty-state i { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: 0.3; }
    .empty-state p { font-size: 0.95rem; }

    /* ═══════════════════════════════════════════
       ACHIEVER CARDS — uniform grid for ALL
    ═══════════════════════════════════════════ */
    .achiever-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .achiever-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; overflow: hidden;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .achiever-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }

    /* rank accent bar */
    .achiever-card .ac-bar { height: 4px; }
    .ac-bar.r1 { background: linear-gradient(90deg, #f5a623, #ffdd66); }
    .ac-bar.r2 { background: linear-gradient(90deg, #adb5bd, #cdd4da); }
    .ac-bar.r3 { background: linear-gradient(90deg, #cd7f32, #e8a060); }
    .ac-bar.rn { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }

    .achiever-card .ac-body {
      padding: 2rem 1.6rem 1.8rem; text-align: center;
    }
    .achiever-rank-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      font-size: 1rem; font-weight: 800; margin-bottom: 1.1rem;
    }
    .rb-1  { background: #fef3dc; color: #8a5e00; }
    .rb-2  { background: #f0f2f5; color: #555; }
    .rb-3  { background: #fff4ee; color: #cd7f32; }
    .rb-n  { background: var(--sky); color: var(--blue); font-size: 0.78rem; }
    [data-theme="dark"] .rb-2 { background: #2a3a4a; color: #bbb; }

    .ac-photo {
      width: 100px; height: 100px; border-radius: 50%;
      object-fit: cover; display: block; margin: 0 auto 1.1rem;
      border: 3px solid var(--border2);
    }
    .ac-photo.gold-ring   { border-color: #f5a623; box-shadow: 0 0 0 4px rgba(245,166,35,0.18); }
    .ac-photo.silver-ring { border-color: #adb5bd; box-shadow: 0 0 0 4px rgba(173,181,189,0.18); }
    .ac-photo.bronze-ring { border-color: #cd7f32; box-shadow: 0 0 0 4px rgba(205,127,50,0.18); }
    .ac-fallback {
      width: 100px; height: 100px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--f-display); font-size: 2rem; color: #fff;
      margin: 0 auto 1.1rem;
    }
    .af-gold   { background: linear-gradient(135deg, #f5a623, #e09318); }
    .af-silver { background: linear-gradient(135deg, #adb5bd, #868e96); }
    .af-bronze { background: linear-gradient(135deg, #cd7f32, #b8701c); }
    .af-plain  { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }

    .ac-name { font-family: var(--f-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 0.3rem; }
    .ac-cgpa { font-family: var(--f-display); font-size: 1.8rem; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
    .ac-course { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
    .ac-quote {
      font-size: 0.82rem; color: var(--muted); font-style: italic;
      line-height: 1.6; padding: 0.7rem 0.9rem;
      background: var(--bg); border-radius: 10px;
      border-left: 3px solid var(--gold);
      text-align: left;
    }
    [data-theme="dark"] .ac-quote { background: var(--sky); }

    /* ═══════════════════════════════════════════
       EVENT AWARD CARDS
    ═══════════════════════════════════════════ */
    .award-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.3rem; }
    .award-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; overflow: hidden;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .award-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
    .award-img {
      width: 100%; height: 260px; object-fit: contain;
      display: block; transition: transform 0.4s;
    }
    .award-card:hover .award-img { transform: scale(1.02); }
    .award-img-wrap { overflow: hidden; height: 260px; background: #111c2b; display: flex; align-items: center; justify-content: center; }
    .award-img-placeholder { font-size: 3rem; color: var(--blue-light); }
    .award-body { padding: 1.3rem 1.4rem 1.5rem; }
    .prize-badge {
      display: inline-flex; align-items: center; gap: 0.3rem;
      padding: 0.28rem 0.8rem; border-radius: 50px;
      font-size: 0.72rem; font-weight: 700; margin-bottom: 0.7rem;
    }
    .p-gold   { background: var(--gold-light); color: #8a5e00; }
    .p-silver { background: #f0f2f5; color: #555; }
    .p-bronze { background: #fff4ee; color: var(--bronze); }
    .p-special{ background: var(--green-light); color: var(--green); }
    [data-theme="dark"] .p-silver { background: #2a3a4a; color: #bbb; }
    .award-title { font-family: var(--f-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.4rem; line-height: 1.35; }
    .award-team { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; }
    .award-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

    /* ═══════════════════════════════════════════
       CONTRIBUTOR CARDS
    ═══════════════════════════════════════════ */
    .contributor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.3rem; }
    .contributor-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 1.8rem 1.5rem; text-align: center;
      position: relative; overflow: hidden;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .contributor-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
    .contributor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
    .contributor-photo { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; border: 3px solid var(--sky-mid); margin: 0 auto 1rem; display: block; }
    .contributor-fallback { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-light)); display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 1.5rem; color: #fff; margin: 0 auto 1rem; }
    .contributor-name { font-family: var(--f-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.35rem; }
    .contributor-role-badge {
      display: inline-flex; align-items: center; gap: 0.3rem;
      padding: 0.25rem 0.75rem; border-radius: 50px;
      font-size: 0.72rem; font-weight: 700;
      background: var(--sky); color: var(--blue); margin-bottom: 0.7rem;
    }
    .contributor-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

    /* ═══════════════════════════════════════════
       COMMUNITY HONOURS
    ═══════════════════════════════════════════ */
    .org-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.3rem; }
    .org-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; overflow: hidden;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .org-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .org-card-img-wrap { height: 180px; background: #111c2b; overflow: hidden; display: flex; align-items: center; justify-content: center; }
    .org-card-img { width: 100%; height: 180px; object-fit: contain; display: block; }
    .org-card-img-placeholder { font-size: 3rem; }
    .org-card-body { padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
    .org-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: var(--gold-light); display: flex; align-items: center;
      justify-content: center; font-size: 1.4rem; flex-shrink: 0;
      transition: background 0.35s;
    }
    [data-theme="dark"] .org-icon { background: #2e2000; }
    .org-name { font-weight: 700; font-size: 0.98rem; color: var(--navy); margin-bottom: 0.2rem; line-height: 1.4; }
    .org-from { font-size: 0.78rem; color: var(--blue); font-weight: 600; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.3rem; }
    .org-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
    .org-year { font-size: 0.72rem; color: var(--muted); margin-top: 0.5rem; display: flex; align-items: center; gap: 0.3rem; }

    /* contributor photo also used for org */
    .contributor-img-wrap { height: 180px; background: #111c2b; overflow: hidden; display: flex; align-items: center; justify-content: center; border-radius: 20px 20px 0 0; }
    .contributor-img { width: 100%; height: 180px; object-fit: contain; display: block; }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer { background: #07162a; color: rgba(255,255,255,0.5); padding: 2.5rem 1.5rem; text-align: center; }
    .footer-inner { max-width: 1160px; margin: 0 auto; }
    .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.2rem; }
    footer a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
    footer a:hover { color: var(--gold); }
    .footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 1.2rem; }
    .footer-ci { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; }
    .footer-bottom { font-size: 0.8rem; }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 900px) {
      .podium-wrap { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
      .podium-card.rank-1 { order: -1; }
    }
    @media (max-width: 680px) {
      .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--card); backdrop-filter: blur(20px); padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid var(--border); gap: 0.25rem; z-index: 199; }
      .nav-links.open { display: flex; }
      .nav-links a { color: var(--muted) !important; padding: 0.6rem 0.9rem; }
      .nav-links a:hover { background: var(--sky); color: var(--blue) !important; }
      .nav-toggle { display: flex; }
      .page-hero { padding: 120px 1.2rem 70px; }
      .main { padding: 2rem 1rem 4rem; }
      .hero-stat { min-width: 90px; }
      .award-grid, .contributor-grid, .org-grid, .achiever-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 400px) {
      .hero-stats { flex-direction: column; }
      .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .hero-stat:last-child { border-bottom: none; }
    }

    /* Global theme transitions */
    *, *::before, *::after { transition: background-color 0.35s ease, border-color 0.35s ease, color 0.2s ease, box-shadow 0.3s ease; }
    .anim { transition: opacity 0.6s cubic-bezier(.2,.8,.3,1), transform 0.6s cubic-bezier(.2,.8,.3,1) !important; }