
  :root {
    --bg: #F7F4EF;
    --bg2: #EDE9E2;
    --ink: #1A1714;
    --ink2: #4A4540;
    --ink3: #8A837A;
    --g: #2D6A4F;
    --g2: #40916C;
    --g3: #D8F3DC;
    --gold: #C8893A;
    --gold-l: #FDF0DC;
    --border: #D8D2C8;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --mono: 'DM Mono', 'Courier New', monospace;
    --r: 6px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 300;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 60px;
  }
  .nav-logo {
    font-family: var(--serif); font-size: 1.35rem;
    letter-spacing: 0.12em; color: var(--ink);
    cursor: pointer; user-select: none;
    display: flex; gap: 1px;
  }
  .nav-logo span { transition: color 0.15s; }
  .nav-logo:hover span { color: var(--g); }
  .nav-links { display: flex; gap: 0.1rem; align-items: center; }
  .nav-links button {
    background: none; border: none; cursor: pointer;
    font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
    color: var(--ink2); padding: 0.4rem 0.85rem;
    border-radius: var(--r); transition: all 0.15s; letter-spacing: 0.02em;
  }
  .nav-links button:hover { background: var(--bg2); color: var(--ink); }
  .nav-links button.active { background: var(--ink); color: var(--bg); }

  /* PAGES */
  .page { display: none; }
  .page.active { display: block; }

  /* =============================================
     BACKGROUND GRADIENT ANIMATION (from BackgroundGradientAnimation)
     Hero section animated orbs
  ============================================= */
  @keyframes moveVertical {
    0%   { transform: translateY(-50%); }
    50%  { transform: translateY(50%); }
    100% { transform: translateY(-50%); }
  }
  @keyframes moveInCircle {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
  }
  @keyframes moveHorizontal {
    0%   { transform: translateX(-50%) translateY(-10%); }
    50%  { transform: translateX(50%) translateY(10%); }
    100% { transform: translateX(-50%) translateY(-10%); }
  }

  .hero {
    min-height: calc(100vh - 60px);
    display: grid; place-items: center;
    padding: 4rem 2rem;
    position: relative; overflow: hidden;
    background: linear-gradient(40deg, #eef8f2, #fdfaf3);
  }
  .hero-gradient-layer {
    position: absolute; inset: 0; pointer-events: none;
    filter: blur(72px); opacity: 0.6;
  }
  .hg-1 {
    position: absolute; width: 72%; height: 72%; top: 14%; left: 14%;
    background: radial-gradient(circle at center, rgba(45,106,79,0.38) 0%, transparent 65%);
    animation: moveVertical 20s ease infinite;
  }
  .hg-2 {
    position: absolute; width: 60%; height: 60%; top: 20%; left: 20%;
    background: radial-gradient(circle at center, rgba(200,137,58,0.25) 0%, transparent 65%);
    animation: moveInCircle 16s reverse infinite;
    transform-origin: calc(50% - 240px);
  }
  .hg-3 {
    position: absolute; width: 56%; height: 56%; top: 22%; left: 22%;
    background: radial-gradient(circle at center, rgba(64,145,108,0.30) 0%, transparent 65%);
    animation: moveInCircle 26s linear infinite;
    transform-origin: calc(50% + 240px);
  }
  .hg-4 {
    position: absolute; width: 50%; height: 50%; top: 25%; left: 25%;
    background: radial-gradient(circle at center, rgba(253,240,220,0.5) 0%, transparent 65%);
    animation: moveHorizontal 30s ease infinite; opacity: 0.85;
  }
  .hero-inner {
    max-width: 720px; text-align: center; position: relative; z-index: 2;
  }
  .hero-kicker {
    font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--g);
    margin-bottom: 1.5rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .hero-kicker::before, .hero-kicker::after {
    content: ''; display: block; width: 24px; height: 1px; background: var(--g);
  }
  .hero-h1 {
    font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.12; letter-spacing: -0.01em;
    color: var(--ink); margin-bottom: 1.4rem;
  }
  .hero-h1 em { font-style: italic; color: var(--g); }
  .hero-sub {
    font-size: 1.05rem; color: var(--ink2); max-width: 520px;
    margin: 0 auto 2.5rem; line-height: 1.7;
  }
  .hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

  /* BUTTONS */
  .btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.7rem 1.4rem; border-radius: var(--r);
    font-family: var(--sans); font-size: 0.88rem; font-weight: 500;
    cursor: pointer; border: none; transition: all 0.18s;
    text-decoration: none;
  }
  .btn-primary { background: var(--ink); color: var(--bg); }
  .btn-primary:hover { background: var(--g); transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
  .btn-outline:hover { border-color: var(--ink); background: var(--bg2); }

  /* SCHOLARSHIP FAB */
  .scholarship-fab {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 500; background: var(--g); color: white;
    border: none; cursor: pointer;
    font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
    padding: 0.85rem 1.8rem; border-radius: 2rem;
    box-shadow: 0 4px 20px rgba(45,106,79,0.35);
    display: flex; align-items: center; gap: 0.5rem;
    transition: all 0.2s; letter-spacing: 0.02em; white-space: nowrap;
  }
  .scholarship-fab:hover {
    background: var(--g2); transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 28px rgba(45,106,79,0.4);
  }

  /* HOME SECTIONS */
  .section { padding: 5rem 2rem; }
  .section-inner { max-width: 1080px; margin: 0 auto; }
  .section-label {
    font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--g); margin-bottom: 0.6rem;
  }
  .section-h2 {
    font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2; margin-bottom: 1rem; color: var(--ink);
  }
  .section-h2 em { font-style: italic; color: var(--g); }
  .section-sub {
    color: var(--ink2); max-width: 540px; line-height: 1.7; margin-bottom: 2.5rem;
  }

  /* STATS */
  .stats-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem; margin-bottom: 4rem;
  }
  .stat-card {
    background: white; border: 1px solid var(--border); border-radius: var(--r);
    padding: 1.5rem; text-align: center;
  }
  .stat-n {
    font-family: var(--serif); font-size: 2.4rem; color: var(--g);
    line-height: 1; margin-bottom: 0.3rem;
  }
  .stat-l { font-size: 0.8rem; color: var(--ink3); font-weight: 500; }

  /* =============================================
     SHINE BORDER (from ShineBorder)
     Feature cards with animated shine on hover
  ============================================= */
  @keyframes shine {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
  }
  .feature-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
  }
  .feature-card {
    background: white; border-radius: var(--r);
    padding: 2rem; cursor: pointer;
    position: relative; overflow: hidden;
    border: 1px solid transparent;
    transition: box-shadow 0.25s, transform 0.2s;
  }
  /* Subtle resting border */
  .feature-card::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--r);
    border: 1px solid var(--border);
    pointer-events: none;
    transition: opacity 0.3s;
  }
  /* Shine pseudo-element */
  .feature-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--r);
    padding: 1.5px;
    background: radial-gradient(transparent, transparent, #2D6A4F, #C8893A, transparent, transparent);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: shine 5s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
  }
  .feature-card:hover::before { opacity: 1; }
  .feature-card:hover::after { opacity: 0; }
  .feature-card:hover {
    box-shadow: 0 6px 28px rgba(45,106,79,0.13);
    transform: translateY(-2px);
  }
  .feature-card > * { position: relative; z-index: 1; }
  .feature-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--g3); display: grid; place-items: center;
    font-size: 1.2rem; margin-bottom: 1rem;
  }
  .feature-title { font-weight: 600; margin-bottom: 0.4rem; }
  .feature-desc { font-size: 0.88rem; color: var(--ink2); line-height: 1.6; }

  /* HOME TEAM GRID */
  #home-team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem; margin-bottom: 1.5rem;
  }

  /* PAGE HEADER */
  .page-header {
    background: white; border-bottom: 1px solid var(--border);
    padding: 3rem 2rem 2rem;
  }
  .page-header-inner { max-width: 1080px; margin: 0 auto; }
  .page-title {
    font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 0.5rem;
  }
  .page-desc { color: var(--ink2); max-width: 500px; }

  /* =============================================
     GALLERY4 CAROUSEL (from Gallery4)
     Featured articles horizontal scroll carousel
  ============================================= */
  .pub-carousel-wrap {
    background: white; border-bottom: 1px solid var(--border);
    padding: 3rem 0 2.5rem;
  }
  .pub-carousel-header {
    max-width: 1080px; margin: 0 auto;
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 0 2rem; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
  }
  .pub-carousel-title {
    font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    line-height: 1.15; color: var(--ink);
  }
  .pub-carousel-desc { font-size: 0.88rem; color: var(--ink3); max-width: 380px; margin-top: 0.3rem; }
  .pub-carousel-nav { display: flex; gap: 0.5rem; flex-shrink: 0; }
  .carousel-nav-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--bg2); border: 1px solid var(--border);
    cursor: pointer; display: grid; place-items: center;
    font-size: 1.1rem; color: var(--ink2);
    transition: all 0.15s;
  }
  .carousel-nav-btn:hover:not(:disabled) { background: var(--ink); color: white; border-color: var(--ink); }
  .carousel-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
  .pub-carousel-viewport { overflow: hidden; width: 100%; }
  .pub-carousel-track {
    display: flex;
    will-change: transform;
    transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-left: max(2rem, calc(50vw - 530px));
    padding-right: 2rem;
  }
  .pub-carousel-slide {
    flex: 0 0 320px; max-width: 320px; padding-right: 20px;
  }
  @media(min-width: 1024px) { .pub-carousel-slide { flex: 0 0 360px; max-width: 360px; } }
  .pub-carousel-card {
    display: block; text-decoration: none; border-radius: 12px;
    overflow: hidden; position: relative; height: 430px;
    cursor: pointer;
  }
  .pub-carousel-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.38s ease;
  }
  .pub-carousel-card:hover img { transform: scale(1.06); }
  .pub-carousel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
      rgba(26,23,20,0) 25%,
      rgba(26,23,20,0.5) 60%,
      rgba(26,23,20,0.88) 100%);
  }
  .pub-carousel-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.75rem; color: white;
  }
  .pub-carousel-cat {
    font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.1em;
    text-transform: uppercase; background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.18rem 0.5rem; border-radius: 3px;
    display: inline-block; margin-bottom: 0.65rem;
  }
  .pub-carousel-card-title {
    font-family: var(--serif); font-size: 1.1rem; line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  .pub-carousel-card-desc {
    font-size: 0.8rem; opacity: 0.8; line-height: 1.55;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; margin-bottom: 1rem;
  }
  .pub-carousel-read {
    font-size: 0.78rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.3rem;
  }
  .pub-carousel-read .arrow { display: inline-block; transition: transform 0.2s; }
  .pub-carousel-card:hover .pub-carousel-read .arrow { transform: translateX(4px); }
  .carousel-dots {
    display: flex; justify-content: center; gap: 6px;
    margin-top: 1.5rem; padding: 0 2rem;
  }
  .carousel-dot {
    height: 7px; width: 7px; border-radius: 4px;
    background: var(--border); border: none; cursor: pointer;
    transition: background 0.2s, width 0.25s; padding: 0;
  }
  .carousel-dot.active { background: var(--g); width: 22px; }

  /* PUB CONTROLS + GRID */
  .pub-controls {
    background: var(--bg2); border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
  }
  .pub-controls-inner {
    max-width: 1080px; margin: 0 auto; width: 100%;
    display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  }
  .search-input {
    flex: 1; min-width: 200px;
    background: white; border: 1px solid var(--border); border-radius: var(--r);
    padding: 0.55rem 0.9rem; font-family: var(--sans); font-size: 0.88rem;
    color: var(--ink); outline: none;
  }
  .search-input:focus { border-color: var(--g); }
  .filter-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; }
  .chip {
    background: white; border: 1.5px solid var(--border); border-radius: 2rem;
    padding: 0.3rem 0.85rem; font-size: 0.78rem; font-weight: 500;
    cursor: pointer; transition: all 0.15s; color: var(--ink2);
  }
  .chip.active { background: var(--ink); border-color: var(--ink); color: white; }
  .chip:hover:not(.active) { border-color: var(--g); color: var(--g); }
  .articles-section { padding: 2rem; }
  .articles-inner { max-width: 1080px; margin: 0 auto; }
  .articles-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
  }
  .article-card {
    background: white; border: 1px solid var(--border); border-radius: var(--r);
    padding: 1.75rem; cursor: pointer;
    transition: all 0.18s; display: flex; flex-direction: column;
  }
  .article-card:hover { border-color: var(--g); box-shadow: 0 4px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
  .article-cat {
    display: inline-block; font-family: var(--mono); font-size: 0.68rem;
    letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.55rem;
    border-radius: 3px; margin-bottom: 0.9rem; font-weight: 500;
  }
  .cat-college { background: #E0F0FF; color: #1565C0; }
  .cat-career { background: #FFF3E0; color: #E65100; }
  .cat-academic { background: var(--g3); color: var(--g); }
  .cat-student { background: #F3E5F5; color: #6A1B9A; }
  .cat-cultural { background: #FCE4EC; color: #AD1457; }
  .article-title { font-family: var(--serif); font-size: 1.2rem; line-height: 1.3; margin-bottom: 0.65rem; }
  .article-excerpt { font-size: 0.86rem; color: var(--ink2); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
  .article-meta { display: flex; justify-content: space-between; align-items: center; }
  .article-author { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
  .article-date { font-family: var(--mono); font-size: 0.72rem; color: var(--ink3); }
  .no-results { grid-column: 1/-1; padding: 4rem; text-align: center; color: var(--ink3); font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em; }

  /* PROJECTS */
  .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem; }
  .project-card {
    background: white; border: 1px solid var(--border); border-radius: var(--r);
    padding: 1.75rem; transition: all 0.18s;
  }
  .project-card:hover { border-color: var(--g); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
  .project-status {
    display: inline-block; font-family: var(--mono); font-size: 0.68rem;
    letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.55rem;
    border-radius: 3px; margin-bottom: 1rem;
  }
  .status-Completed { background: var(--g3); color: var(--g); }
  .status-Ongoing { background: #FFF3E0; color: #E65100; }
  .status-Upcoming { background: #E8EAF6; color: #3949AB; }
  .project-title { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.5rem; }
  .project-sub { font-size: 0.88rem; color: var(--ink2); margin-bottom: 1rem; line-height: 1.6; }
  .project-detail { font-size: 0.82rem; color: var(--ink3); margin-bottom: 0.3rem; line-height: 1.6; }
  .project-detail strong { color: var(--ink2); }

  /* COMPETITIONS */
  .comps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
  .comp-card {
    background: white; border: 1px solid var(--border); border-radius: var(--r);
    padding: 1.75rem; transition: all 0.18s;
  }
  .comp-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(200,137,58,0.1); }
  .comp-type { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
  .comp-title { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.5rem; }
  .comp-desc { font-size: 0.87rem; color: var(--ink2); line-height: 1.65; margin-bottom: 1rem; }
  .comp-prize { font-family: var(--mono); font-size: 0.8rem; color: var(--g); font-weight: 500; }

  /* =============================================
     RADIAL ORBITAL TIMELINE (from RadialOrbitalTimeline)
     Team page: dark orbital visualization + list
  ============================================= */
  @keyframes orb-ping {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.7); opacity: 0; }
  }
  @keyframes orb-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0.0); }
  }
  @keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .team-split {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 240px);
  }
  @media(max-width: 760px) { .team-split { grid-template-columns: 1fr; } }

  .orbital-section {
    background: #0d0c0a;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    min-height: 560px;
  }
  .orbital-wrap {
    position: relative;
    width: 480px; height: 480px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .orbital-ring {
    position: absolute;
    width: 400px; height: 400px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.09);
    pointer-events: none;
  }
  .orbital-ring-outer {
    position: absolute;
    width: 450px; height: 450px; border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.04);
    pointer-events: none;
    animation: spin-slow 60s linear infinite;
  }
  .orbital-center {
    position: absolute; z-index: 10;
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #2D6A4F 0%, #C8893A 60%, #40916C 100%);
    display: flex; align-items: center; justify-content: center;
    cursor: default;
  }
  .orbital-center-inner {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(247,244,239,0.9);
  }
  .orbital-center::after {
    content: '';
    position: absolute; width: 70px; height: 70px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
    animation: orb-ping 2.2s ease-out infinite;
  }

  .orbital-node {
    position: absolute; cursor: pointer;
    transition: all 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
  }
  .orbital-node-dot {
    width: 42px; height: 42px; border-radius: 50%;
    background: #181614; border: 2px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: var(--serif); font-size: 0.9rem;
    transition: all 0.3s; user-select: none;
  }
  .orbital-node.active .orbital-node-dot {
    background: white; color: #0d0c0a;
    border-color: white; transform: scale(1.45);
    box-shadow: 0 0 22px rgba(255,255,255,0.28);
  }
  .orbital-node.related .orbital-node-dot {
    background: rgba(255,255,255,0.2); border-color: white;
    animation: orb-pulse 1.3s ease infinite;
  }
  .orbital-node-label {
    position: absolute; top: 50px; left: 50%; transform: translateX(-50%);
    white-space: nowrap; font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.05em; color: rgba(255,255,255,0.55);
    transition: all 0.3s; text-align: center; pointer-events: none;
  }
  .orbital-node.active .orbital-node-label {
    color: rgba(255,255,255,0.9); transform: translateX(-50%) scale(1.1);
  }
  .orbital-info-card {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    width: 240px;
    background: rgba(13,12,10,0.96);
    border: 1px solid rgba(255,255,255,0.18); border-radius: 8px;
    padding: 1rem 1.1rem; color: white; z-index: 50;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    transition: opacity 0.2s, transform 0.2s;
  }
  .orbital-info-card.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(6px); }
  .orbital-info-role {
    font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.3rem;
  }
  .orbital-info-name { font-family: var(--serif); font-size: 1.05rem; line-height: 1.2; }
  .orbital-hint {
    position: absolute; top: 1.2rem; left: 50%; transform: translateX(-50%);
    font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.25);
    white-space: nowrap;
  }

  .team-list-side {
    background: var(--bg); padding: 2.5rem 2rem;
    border-left: 1px solid var(--border); overflow-y: auto;
  }
  .team-list-heading {
    font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--g); margin-bottom: 1.25rem;
  }
  .team-list-item {
    display: flex; align-items: center; gap: 0.9rem;
    padding: 0.8rem 1rem; border-radius: var(--r);
    cursor: pointer; transition: background 0.15s; margin-bottom: 0.2rem;
  }
  .team-list-item:hover { background: var(--bg2); }
  .team-list-item.highlighted { background: var(--g3); }
  .team-list-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg2); border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 0.82rem; color: var(--g);
    flex-shrink: 0; transition: all 0.15s;
  }
  .team-list-item.highlighted .team-list-avatar { background: var(--g); color: white; border-color: var(--g); }
  .team-list-name { font-weight: 600; font-size: 0.9rem; }
  .team-list-role { font-size: 0.78rem; color: var(--ink3); }

  /* Team card fallback (home grid) */
  .team-card {
    background: white; border: 1px solid var(--border); border-radius: var(--r);
    padding: 1.5rem; text-align: center; transition: all 0.18s;
  }
  .team-card:hover { border-color: var(--g); }
  .team-avatar {
    width: 56px; height: 56px; border-radius: 50%; background: var(--g3);
    display: grid; place-items: center;
    font-family: var(--serif); font-size: 1.1rem; color: var(--g);
    margin: 0 auto 0.75rem; border: 2px solid var(--border);
  }
  .team-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
  .team-role { font-size: 0.78rem; color: var(--ink3); }

  /* SCHOLARSHIPS */
  .scholarships-header {
    background: var(--g); color: white;
    padding: 3rem 2rem 2rem;
  }
  .sch-header-inner { max-width: 1080px; margin: 0 auto; }
  .sch-back {
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    color: white; border-radius: var(--r); padding: 0.4rem 0.9rem;
    font-size: 0.82rem; font-weight: 500; cursor: pointer; margin-bottom: 1.5rem;
    display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--sans);
    transition: background 0.15s;
  }
  .sch-back:hover { background: rgba(255,255,255,0.25); }
  .sch-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 0.5rem; }
  .sch-desc { opacity: 0.85; max-width: 540px; }
  .sch-stats-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem; background: white; border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
  }
  .sch-stat { text-align: center; }
  .sch-stat-n { font-family: var(--serif); font-size: 1.8rem; color: var(--g); }
  .sch-stat-l { font-size: 0.78rem; color: var(--ink3); font-weight: 500; margin-top: 0.15rem; }
  .sch-controls { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
  .sch-controls-inner {
    max-width: 1080px; margin: 0 auto;
    display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  }
  .sch-sort {
    background: white; border: 1px solid var(--border); border-radius: var(--r);
    padding: 0.55rem 0.9rem; font-family: var(--sans); font-size: 0.85rem;
    color: var(--ink); cursor: pointer; outline: none;
  }
  .sch-section { padding: 2rem; }
  .sch-inner { max-width: 1080px; margin: 0 auto; }
  .sch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem; }
  .sch-card {
    background: white; border: 1px solid var(--border); border-radius: var(--r);
    padding: 1.75rem; display: flex; flex-direction: column; transition: all 0.18s;
  }
  .sch-card:hover { border-color: var(--g); box-shadow: 0 4px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
  .sch-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
  .sch-source-badge {
    font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.18rem 0.5rem; border-radius: 3px;
  }
  .badge-scholarships { background: #E3F2FD; color: #1565C0; }
  .badge-fastweb { background: #FFF3E0; color: #E65100; }
  .badge-niche { background: #F3E5F5; color: #6A1B9A; }
  .badge-curated { background: var(--g3); color: var(--g); }
  .sch-grade-badge { font-family: var(--mono); font-size: 0.65rem; padding: 0.18rem 0.5rem; border-radius: 3px; background: var(--gold-l); color: #7A5200; }
  .sch-amount-badge { font-family: var(--mono); font-size: 0.65rem; padding: 0.18rem 0.5rem; border-radius: 3px; background: #E8F5E9; color: #1B5E20; }
  .sch-card-title { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.3; }
  .sch-card-desc { font-size: 0.85rem; color: var(--ink2); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
  .sch-card-footer { display: flex; justify-content: space-between; align-items: center; }
  .sch-card-date { font-family: var(--mono); font-size: 0.72rem; color: var(--ink3); }
  .sch-link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.82rem; font-weight: 600; color: var(--g); text-decoration: none;
    border: 1.5px solid var(--g3); border-radius: var(--r);
    padding: 0.35rem 0.7rem; transition: all 0.15s;
  }
  .sch-link:hover { background: var(--g); color: white; border-color: var(--g); }
  .sch-loading, .sch-empty {
    grid-column: 1/-1; text-align: center; padding: 4rem 2rem;
    color: var(--ink3); font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em;
  }
  @keyframes dots {
    0%,20%{content:''} 40%{content:'.'} 60%{content:'..'} 80%,100%{content:'...'}
  }
  .loading-dots::after { content: ''; animation: dots 1.5s steps(4, end) infinite; }
  .refresh-row {
    text-align: right; margin-bottom: 1rem;
    font-family: var(--mono); font-size: 0.72rem; color: var(--ink3);
    display: flex; justify-content: space-between; align-items: center;
  }
  .refresh-btn {
    background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
    padding: 0.3rem 0.7rem; font-size: 0.78rem; cursor: pointer; font-family: var(--sans);
    color: var(--ink2); transition: all 0.15s;
  }
  .refresh-btn:hover { background: var(--g3); border-color: var(--g); color: var(--g); }

  /* MODAL */
  .modal-backdrop {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(26,23,20,0.6); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 1.5rem;
  }
  .modal-backdrop.open { display: flex; }
  .modal {
    background: var(--bg); border-radius: 10px; max-width: 680px; width: 100%;
    max-height: 88vh; overflow-y: auto;
    padding: 2.5rem; position: relative;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  }
  .modal-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    background: var(--bg2); border: none; border-radius: 50%;
    width: 32px; height: 32px; cursor: pointer; font-size: 0.9rem;
    display: grid; place-items: center; color: var(--ink2); transition: background 0.15s;
  }
  .modal-close:hover { background: var(--border); }
  .modal-cat { margin-bottom: 0.75rem; }
  .modal-title { font-family: var(--serif); font-size: 1.7rem; line-height: 1.2; margin-bottom: 0.75rem; }
  .modal-meta { font-size: 0.82rem; color: var(--ink3); margin-bottom: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
  .modal-langs { display: flex; gap: 0.5rem; padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
  .lang-btn {
    background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
    padding: 0.35rem 0.8rem; font-size: 0.8rem; cursor: pointer; font-family: var(--sans);
    color: var(--ink2); transition: all 0.15s;
  }
  .lang-btn.active { background: var(--g); border-color: var(--g); color: white; }
  .modal-body { font-size: 0.93rem; line-height: 1.75; color: var(--ink2); white-space: pre-wrap; }

  /* FOOTER */
  footer {
    background: var(--ink); color: var(--bg); margin-top: 5rem;
    padding: 3rem 2rem 0;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
  }
  @media(max-width: 720px) { footer { grid-template-columns: 1fr 1fr; } }
  @media(max-width: 480px) { footer { grid-template-columns: 1fr; } }
  .footer-logo { font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.15em; margin-bottom: 0.75rem; cursor: pointer; }
  .footer-tagline { font-size: 0.84rem; opacity: 0.65; line-height: 1.6; margin-bottom: 0.5rem; }
  .footer-legal { font-family: var(--mono); font-size: 0.7rem; opacity: 0.45; margin-top: 0.5rem; }
  .footer-heading { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.5; margin-bottom: 1rem; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 0.5rem; }
  .footer-links a { font-size: 0.88rem; opacity: 0.8; cursor: pointer; text-decoration: none; color: inherit; transition: opacity 0.15s; }
  .footer-links a:hover { opacity: 1; }
  .footer-email-row { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
  .footer-email-input {
    flex: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r); padding: 0.5rem 0.75rem;
    font-family: var(--sans); font-size: 0.85rem; color: white; outline: none;
  }
  .footer-email-input::placeholder { opacity: 0.5; }
  .footer-email-input:focus { border-color: rgba(255,255,255,0.4); }
  .footer-sub-btn {
    background: var(--g); border: none; border-radius: var(--r);
    padding: 0.5rem 1rem; color: white; font-family: var(--sans);
    font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background 0.15s;
  }
  .footer-sub-btn:hover { background: var(--g2); }
  .footer-bottom {
    background: var(--ink); border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 2rem; display: flex; justify-content: space-between;
    align-items: center; font-size: 0.78rem; opacity: 0.5; margin-top: 2rem; color: var(--bg);
  }

  /* TOAST */
  .toast {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 2000;
    background: var(--ink); color: var(--bg);
    padding: 0.7rem 1.2rem; border-radius: var(--r);
    font-size: 0.85rem; font-weight: 500;
    transform: translateY(2rem); opacity: 0; transition: all 0.25s; pointer-events: none;
  }
  .toast.show { transform: translateY(0); opacity: 1; }

/* Article & project detail pages */
.article-page { padding: 2rem; }
.article-page-inner { max-width: 720px; margin: 0 auto; }
.article-prose { font-size: 0.95rem; line-height: 1.8; color: var(--ink2); }
.article-prose h1, .article-prose h2, .article-prose h3 {
  font-family: var(--serif); color: var(--ink); margin: 2rem 0 0.75rem; line-height: 1.25;
}
.article-prose h1 { font-size: 1.6rem; }
.article-prose h2 { font-size: 1.35rem; }
.article-prose h3 { font-size: 1.15rem; }
.article-prose p { margin-bottom: 1rem; }
.article-prose ul, .article-prose ol { margin: 0 0 1rem 1.25rem; }
.article-prose li { margin-bottom: 0.35rem; }
.article-prose strong { color: var(--ink); font-weight: 600; }
.article-prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.article-prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.88rem; }
.article-prose th, .article-prose td { border: 1px solid var(--border); padding: 0.5rem 0.65rem; text-align: left; }
.article-prose th { background: var(--bg2); font-weight: 600; }
.breadcrumb { font-family: var(--mono); font-size: 0.72rem; color: var(--ink3); margin-bottom: 1rem; }
.breadcrumb a { color: var(--g); text-decoration: none; }
.project-detail-page { padding: 2rem; }
.project-detail-inner { max-width: 800px; margin: 0 auto; }
.project-block { margin-bottom: 2rem; }
.project-block h2 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--ink); }
.project-block p, .project-block li { color: var(--ink2); line-height: 1.75; font-size: 0.92rem; }
.project-block ul { margin-left: 1.25rem; }
.nav-links a {
  text-decoration: none; font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  color: var(--ink2); padding: 0.4rem 0.85rem; border-radius: var(--r);
  transition: all 0.15s; letter-spacing: 0.02em; display: inline-block;
}
.nav-links a:hover { background: var(--bg2); color: var(--ink); }
.nav-links a.active { background: var(--ink); color: var(--bg); }
.nav-logo { text-decoration: none; color: inherit; }
a.feature-card { text-decoration: none; color: inherit; }

/* PARTNERS */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.partner-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.partner-founding {
  border-color: var(--gold);
  background: var(--gold-l);
  box-shadow: 0 0 0 1px rgba(200, 137, 58, 0.15);
}
.partner-badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.partner-logo-wrap {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
}
.partner-logo-gold {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 137, 58, 0.2);
}
.partner-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partner-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  max-width: 240px;
}
.partner-founding .partner-name { color: #8B5A14; }

.footer-admin-link {
  font-size: 0.75rem;
  color: var(--ink3);
  text-decoration: none;
  opacity: 0.7;
}
.footer-admin-link:hover { color: var(--g); opacity: 1; }
