    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    table { border-collapse: collapse; width: 100%; }

    :root {
      --navy-deep:     #060D1F;
      --navy-mid:      #0A1535;
      --navy-light:    #122046;
      --sky:           #5BC8F5;
      --sky-bright:    #7DD8FF;
      --sky-dark:      #2A9FD8;
      --white:         #FFFFFF;
      --off-white:     #E8F4FC;
      --bg:            #060D1F;
      --text-primary:   #FFFFFF;
      --text-secondary: #A8D4EE;
      --text-muted:     #5A8BAD;

      --border:         rgba(91, 200, 245, 0.25);
      --border-bright:  rgba(91, 200, 245, 0.6);

      --glow-sky:  0 0 24px rgba(91, 200, 245, 0.25);
      --shadow-card: 0 4px 32px rgba(0,0,0,0.5);

      --r-sm:  6px;
      --r-md:  12px;
      --r-lg:  20px;
      --r-pill: 100px;

      --section-py: 88px;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      background-image:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(91,200,245,0.12) 0%, transparent 70%),;
      pointer-events: none;
    }

    header, section, footer { position: relative; z-index: 1; }

    .container {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .label-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sky);
    }

    .section-rule {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-top: 100px;
      position: relative;
      z-index: 2;
    }

#info {
  margin-top: -96px;
}

    .section-rule__line {
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(6, 13, 31, 0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .header::before {
      content: 'SISTEMA ACADÉMICO · FADU / UBA';
      display: block;
      background: var(--sky);
      color: var(--navy-deep);
      text-align: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      padding: 5px 0;
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 60px;
      gap: 24px;
      padding-top: 10px;
      padding-bottom: 10px;
    }

    .header__brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .header__logo {
      width: 28px;
      height: 28px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
    }

    .header__brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .header__brand-main {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
    }

    .header__brand-sub {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .header__nav {
      display: flex;
      align-items: center;
      gap: 2px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-secondary);
      padding: 6px 14px;
      border-radius: var(--r-sm);
      transition: all 0.15s ease;
    }

    .nav-link:hover,
    .nav-link--active {
      color: var(--sky);
      background: rgba(91,200,245,0.12);
    }

    .badge-active {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: var(--r-pill);
      background: var(--sky);
      color: var(--navy-deep);
      white-space: nowrap;
    }

    .hero {
      padding: 55px 0 0;
      background: var(--navy-deep);
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 72px;
      align-items: start;
    }

    .hero__photo-col {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .photo-frame {
      position: relative;
    }

    .photo-placeholder {
      width: 100%;
      aspect-ratio: 1/1;
      max-width: 320px;
      border-radius: var(--r-lg);
      background: linear-gradient(145deg, var(--navy-mid) 0%, #0C1E44 100%);
      border: 2px solid var(--sky);
      box-shadow: var(--glow-sky), var(--shadow-card);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .photo-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 28px,
        rgba(91,200,245,0.12) 28px,
        rgba(91,200,245,0.12) 32px
      );
    }

    .photo-placeholder__initials {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 72px;
      font-weight: 900;
      color: rgba(91,200,245,0.7);
      letter-spacing: -0.02em;
      position: relative;
      z-index: 1;
    }

    .photo-badge {
      position: absolute;
      bottom: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--sky);
      color: var(--navy-deep);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: var(--r-pill);
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(91,200,245,0.4);
    }

    .quick-data {
      display: flex;
      flex-direction: column;
      margin-top: 1px;
      border: 1.5px solid var(--border);
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--navy-mid);
    }

    .quick-data__item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 16px;
      border-bottom: 1px solid var(--border);
      gap: 12px;
    }

    .quick-data__item:last-child { border-bottom: none; }

    .quick-data__label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .quick-data__value {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--white);
      text-align: right;
    }

    .quick-data__value--sky { color: var(--sky); }

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.status-dot::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #4ADE80;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

    .hero__text-col {
      padding-top: 4px;
    }

    .hero__eyebrow {
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero__eyebrow-line {
      width: 32px;
      height: 2px;
      background: var(--sky);
      border-radius: 2px;
    }

    .hero__name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(72px, 8vw, 112px);
      font-weight: 900;
      line-height: 0.9;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }

    .hero__name-first {
      display: block;
      font-weight: 300;
      font-style: italic;
      font-size: 0.70em;
      letter-spacing: 0.02em;
      margin-bottom: 4px;
      text-transform: none;
      color: var(--sky-bright);
    }

    .hero__name-last {
      display: block;
      color: var(--sky);
      text-shadow: 0 0 40px rgba(91,200,245,0.4);
    }

    .hero__info-line {
      display: flex;
      align-items: center;
      gap: 25px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .hero__info-line span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .hero__info-line strong {
      color: var(--off-white);
      font-weight: 700;
    }

    .hero__info-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--sky);
      flex-shrink: 0;
    }

    .hero__subtitle {
      font-size: 20px;
      font-weight: 300;
      color: var(--text-secondary);
      line-height: 1.65;
      max-width: 460px;
      margin-bottom: 28px;
    }

    .hero__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 36px;
    }

    .tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sky);
      background: rgba(91,200,245,0.08);
      border: 1.5px solid rgba(91,200,245,0.3);
      padding: 5px 14px;
      border-radius: var(--r-pill);
      transition: all 0.15s ease;
    }

    .tag:hover {
      background: rgba(91,200,245,0.18);
      border-color: var(--sky);
      box-shadow: var(--glow-sky);
    }

    .hero__actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 12px 28px;
      border-radius: var(--r-sm);
      transition: all 0.15s ease;
      display: inline-flex;
      align-items: center;
      cursor: pointer;
      border: none;
    }

    .btn--primary {
      background: var(--sky);
      color: var(--navy-deep);
      box-shadow: 0 4px 20px rgba(91,200,245,0.35);
    }

    .btn--primary:hover {
      background: var(--sky-bright);
      box-shadow: 0 6px 28px rgba(91,200,245,0.5);
      transform: translateY(-1px);
    }

    .btn--ghost {
      background: transparent;
      color: var(--sky);
      border: 1.5px solid var(--border-bright);
    }

    .btn--ghost:hover {
      background: rgba(91,200,245,0.1);
    }

    .section {
      padding: 100px 0 0;
      background: var(--navy-deep);
    }

    .section--alt {
      background: var(--navy-mid);
      margin-top: 100px;
      padding-top: 100px;
      padding-bottom: var(--section-py);
      padding-bottom: var(--section-py);
      position: relative;
    }

.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 64px);
  max-width: 1140px;
  height: 1px;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 10;
}

.section--alt::after {
  content: '§ 02';
  position: absolute;
  top: -8px;
  right: max(32px, calc((100% - 1140px) / 2));
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  z-index: 10;
}

    .section__header {
      margin-bottom: 44px;
      
    }

    .section__eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .section__eyebrow-line {
      width: 28px;
      height: 2px;
      background: var(--sky);
    }

    .section__title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--white);
      line-height: 1;
      margin-bottom: 10px;
    }

    .section__title--underline {
      display: inline-block;
      border-bottom: 3px solid var(--sky);
      padding-bottom: 4px;
    }

    .section__desc {
      font-size: 18px;
      font-weight: 300;
      color: var(--text-muted);
      max-width: 560px;
    }

    .stats-wrapper {
      border: 1.5px solid var(--border-bright);
      border-radius: var(--r-md);
      overflow: hidden;
      margin-bottom: 36px;
      background: var(--navy-mid);
    }

    .stats-header {
      background: rgba(91,200,245,0.1);
      border-bottom: 1.5px solid var(--border-bright);
      padding: 1px 24px;
      text-align: center;
    }

    .stats-header span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sky);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-card {
      padding: 28px 20px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: center;
      text-align: center;
      border-right: 1px solid var(--border);
      transition: background 0.15s ease;
    }

    .stat-card:last-child { border-right: none; }
    .stat-card:hover { background: rgba(91,200,245,0.06); }

    .stat-card__number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 44px;
      font-weight: 900;
      color: var(--sky);
      letter-spacing: -0.02em;
      line-height: 1;
      text-shadow: 0 0 20px rgba(91,200,245,0.3);
    }

    .stat-card__label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .stat-card--accent .stat-card__number { color: var(--white); }
    .stat-card--accent { background: rgba(91,200,245,0.06); }

    .table-wrapper {
      border: 1.5px solid var(--border);
      border-radius: var(--r-md);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .academic-table thead tr {
      background: rgba(91,200,245,0.1);
      border-bottom: 1.5px solid var(--border-bright);
    }

    .academic-table th {
      padding: 12px 20px;
      text-align: left;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sky);
    }

    .academic-table tbody tr {
      border-bottom: 1px solid var(--border);
      transition: background 0.12s ease;
      background: var(--navy-mid);
    }

    .academic-table tbody tr:nth-child(even) { background: rgba(10,21,53,0.6); }
    .academic-table tbody tr:last-child { border-bottom: none; }
    .academic-table tbody tr:hover { background: rgba(91,200,245,0.07); }

    .academic-table td {
      padding: 13px 20px;
      font-size: 16.5px;
      color: var(--off-white);
    }

    .academic-table td.code-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--sky);
    }

    .grade {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 800;
    }

    .grade--high { color: var(--sky); }
    .grade--mid { color: var(--sky-dark); }
    .grade--pending { color: var(--text-muted); }

    .chip {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 12px;
      border-radius: var(--r-pill);
      display: inline-flex;
    }

    .chip--green {
      background: rgba(74,222,128,0.15);
      color: #4ADE80;
      border: 1px solid rgba(74,222,128,0.3);
    }

    .chip--blue {
      background: rgba(91,200,245,0.12);
      color: var(--sky);
      border: 1px solid var(--border);
    }

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

    .team-card {
      background: var(--navy-mid);
      border: 1.5px solid var(--border);
      border-radius: var(--r-md);
      padding: 22px 20px;
      min-height: 140px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      transition: all 0.18s ease;
    }

    .team-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 26px,
        rgba(91,200,245,0.04) 26px,
        rgba(91,200,245,0.04) 29px
      );
      pointer-events: none;
    }

    .team-card:hover {
      border-color: var(--border-bright);
      box-shadow: var(--glow-sky);
      transform: translateY(-2px);
    }

    .team-card__top,
    .team-card__bottom {
      position: relative;
      z-index: 1;
    }

    .team-card__number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .team-card__name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 23px;
      font-weight: 800;
      line-height: 1;
      text-transform: uppercase;
      color: var(--sky);
      text-shadow: 0 0 20px rgba(91,200,245,0.2);
      margin-bottom: 8px;
      white-space: nowrap;
    }

    .team-card__role {
      font-size: 13px;
      font-weight: 300;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    .academic-data-panel {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .academic-data-card {
      background: linear-gradient(180deg, rgba(10,21,53,0.98) 0%, rgba(6,13,31,0.98) 100%);
      border: 1.5px solid var(--border);
      border-radius: var(--r-md);
      padding: 22px 22px 20px;
      position: relative;
      overflow: hidden;
      min-height: 170px;
      transition: all 0.18s ease;
      box-shadow: var(--shadow-card);
    }

    .academic-data-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: transparent;
      transition: background 0.18s ease;
    }

    .academic-data-card:hover {
      border-color: var(--border-bright);
      background: linear-gradient(180deg, rgba(13,28,67,0.98) 0%, rgba(6,13,31,0.98) 100%);
    }

    .academic-data-card:hover::before {
      background: var(--sky);
    }

    .academic-data-card--full {
      grid-column: 1 / -1;
    }

    .academic-data-card__label {
      display: block;
      margin-bottom: 12px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--sky);
    }

    .academic-data-card__title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 26px;
      font-weight: 800;
      line-height: 1.05;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 10px;
    }

    .academic-data-card__title strong {
      color: var(--sky);
      font-weight: 800;
    }

    .academic-data-card__text {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.65;
      color: var(--text-secondary);
    }

    .academic-data-card__text strong {
      color: var(--off-white);
      font-weight: 600;
    }

    .footer {
      background: var(--navy-deep);
      border-top: 1px solid var(--border);
      padding: 36px 0 24px;
      margin-top: var(--section-py);
    }

    .footer::before {
      content: '';
      display: block;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--sky), transparent);
      margin-bottom: 36px;
    }

    .footer__inner {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 22px;
    }

    .footer__brand-block {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer__logo {
      width: 28px;
      height: 28px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
    }

    .footer__brand-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .footer__brand-main {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--off-white);
    }

    .footer__legal {
      font-size: 12px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 400px;
    }

    .footer__right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .footer__copy {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .footer__nav {
      display: flex;
      gap: 20px;
    }

    .footer__nav a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.15s ease;
    }

    .footer__nav a:hover { color: var(--sky); }

    .footer__disclaimer {
      border-top: 1px solid rgba(91, 200, 245, 0.18);
      padding-top: 16px;
      max-width: 100%;
    }

    .footer__disclaimer-text {
      font-size: 11px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-muted);
      opacity: 0.95;
      max-width: 980px;
    }

#info {
  position: relative;
  margin-top: -8px;
  padding-top: calc(var(--section-py) + 8px);
}

#info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 64px);
  max-width: 1140px;
  height: 1px;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 10;
}

#info::after {
  content: '§ 03';
  position: absolute;
  top: -8px;
  right: max(32px, calc((100% - 1140px) / 2));
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  z-index: 10;
}

    @media (max-width: 900px) {
      :root { --section-py: 64px; }

      .hero__grid { grid-template-columns: 1fr; gap: 40px; }
      .hero__photo-col { flex-direction: row; gap: 24px; align-items: flex-start; }
      .photo-placeholder { max-width: 130px; }
      .hero__name { font-size: 64px; }

      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
      .stat-card:nth-child(odd) { border-right: 1px solid var(--border); }
      .stat-card:last-child, .stat-card:nth-last-child(2):nth-child(odd) { border-bottom: none; }

      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .academic-data-panel { grid-template-columns: 1fr; }

      .footer__inner { flex-direction: column; gap: 24px; }
      .footer__right { align-items: flex-start; }
    }

    @media (max-width: 600px) {
      :root { --section-py: 48px; }

      .container { padding: 0 20px; }
      .header__brand-sub { display: none; }
      .header__nav .nav-link { padding: 6px 10px; font-size: 12px; }
      .hero__photo-col { flex-direction: column; }
      .hero__name { font-size: 52px; }
      .hero__actions { flex-direction: column; align-items: flex-start; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .table-wrapper { overflow-x: auto; }

      .academic-table th,
      .academic-table td {
        padding: 10px 14px;
        white-space: nowrap;
        font-size: 12.5px;
      }

      .section__title { font-size: 32px; }
      .team-grid { grid-template-columns: 1fr; }
      .team-card__name { font-size: 21px; }
      .academic-data-card__title { font-size: 22px; }
      .footer__disclaimer-text { font-size: 10.5px; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes glowPulse {
      0%, 100% { text-shadow: 0 0 40px rgba(91,200,245,0.4); }
      50% { text-shadow: 0 0 60px rgba(91,200,245,0.65); }
    }

    .hero__photo-col { animation: fadeUp 0.6s 0.05s ease both; }
    .hero__text-col  { animation: fadeUp 0.6s 0.15s ease both; }
    .hero__name-last { animation: glowPulse 4s ease-in-out infinite; }

    .stat-card:nth-child(1) { animation: fadeUp 0.4s 0.10s ease both; }
    .stat-card:nth-child(2) { animation: fadeUp 0.4s 0.18s ease both; }
    .stat-card:nth-child(3) { animation: fadeUp 0.4s 0.26s ease both; }
    .stat-card:nth-child(4) { animation: fadeUp 0.4s 0.34s ease both; }
    .profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  }