:root {
      --bg: #f6fbf7;
      --surface: #ffffff;
      --line: #d8eadf;
      --ink: #10201a;
      --muted: #5f7168;
      --green: #008c3a;
      --green-soft: #dff5e7;
      --radius: 24px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: Inter, system-ui, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(0, 140, 58, .10), transparent 34rem),
        var(--bg);
      color: var(--ink);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    .container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 40;
      border-bottom: 1px solid rgba(216, 234, 223, .82);
      background: rgba(246, 251, 247, .82);
      backdrop-filter: blur(18px);
    }

    .nav-inner {
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .brand-logo {
      width: 42px;
      height: 42px;
      object-fit: contain;
    }

    .brand-text strong { display: block; line-height: 1; font-size: 1.05rem; }
    .brand-text span { display: block; color: var(--muted); font-size: .74rem; letter-spacing: .01em; margin-top: 3px; }

    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
      color: var(--muted);
      font-size: .94rem;
      font-weight: 700;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      line-height: 1;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--green); }

    .nav-art {
      display: block;
      width: 80px;
      height: 80px;
      object-fit: contain;
      flex: 0 0 80px;
    }

    .nav-item {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .submenu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      display: none;
      min-width: 104px;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--surface);
      box-shadow: 0 14px 32px rgba(0,0,0,.08);
      z-index: 60;
    }

    .nav-item:hover .submenu,
    .nav-item:focus-within .submenu {
      display: grid;
      gap: 4px;
    }

    .submenu a {
      padding: 8px 10px;
      border-radius: 10px;
      white-space: nowrap;
    }

    .submenu a:hover {
      background: var(--green-soft);
      text-decoration: none;
    }

    header {
      position: relative;
      overflow: hidden;
      min-height: 410px;
      padding: 92px 0 92px;
      isolation: isolate;
    }

    header::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: url("../images/profile/02_PI.png");
      background-position: center top;
      background-size: max(100%, 980px) auto;
      background-repeat: no-repeat;
      opacity: .72;
      -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 54%, rgba(0,0,0,.48) 70%, transparent 88%);
      mask-image: linear-gradient(180deg, #000 0%, #000 54%, rgba(0,0,0,.48) 70%, transparent 88%);
      pointer-events: none;
    }

    header::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(90deg, rgba(246, 251, 247, .88) 0%, rgba(246, 251, 247, .58) 46%, rgba(246, 251, 247, .18) 100%),
        linear-gradient(180deg, rgba(246, 251, 247, .06) 0%, rgba(246, 251, 247, .12) 46%, rgba(246, 251, 247, .68) 74%, var(--bg) 94%, var(--bg) 100%);
      pointer-events: none;
    }

    header .container {
      position: relative;
      z-index: 1;
    }

    .kicker {
      color: var(--green);
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .14em;
    }

    h1 {
      margin: 14px 0 18px;
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: .92;
      letter-spacing: -.00em;
    }

    .lead {
      max-width: 760px;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .highlight-line {
      margin: 0 0 18px;
      color: var(--green);
      font-size: clamp(1.5rem, 3vw, 2.3rem);
      font-weight: 900;
      line-height: 1.2;
    }

    .section-title {
      margin: 28px 0 20px;
      font-size: 2rem;
      letter-spacing: -.00em;
    }

    .pi-card {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 28px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 32px;
      padding: 26px;
      box-shadow: 0 18px 48px rgba(0,0,0,.05);
    }

    .photo {
      aspect-ratio: 1 / 1;
      border-radius: 24px;
      background-color: var(--green-soft);
      overflow: hidden;
      border: 1px solid var(--line);
    }

    .photo img,
    .person-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      -webkit-user-drag: none;
      user-select: none;
    }

    .profile-name {
      margin: 0;
      color: var(--ink);
      font-weight: 900;
      line-height: 1.16;
      letter-spacing: 0;
    }

    .profile-name a:hover {
      color: var(--green);
    }

    .pi-card .profile-name {
      margin: 0 0 8px;
      font-size: 2rem;
    }

    .profile-position {
      margin-top: 8px;
      color: var(--green);
      font-weight: 900;
      font-size: clamp(1.2rem, 2vw, 1.55rem);
      line-height: 1.24;
      letter-spacing: 0;
    }

    .profile-research {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: .98rem;
      font-weight: 650;
      line-height: 1.55;
    }

    .profile-joined {
      margin-top: 6px;
      color: var(--muted);
      font-size: .9rem;
      font-weight: 800;
      line-height: 1.35;
    }

    .pi-card .profile-research {
      max-width: 680px;
      font-size: 1.03rem;
      font-weight: 600;
    }

    .links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      background: var(--green-soft);
      color: var(--green);
      font-weight: 800;
      font-size: .9rem;
    }

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

    .person {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 10px 32px rgba(0,0,0,.04);
    }

    .person-photo {
      aspect-ratio: 1 / 1;
      background-color: var(--green-soft);
      border-bottom: 1px solid var(--line);
    }

    .person-photo img[src*="mint-lab-profile"] {
      object-fit: contain;
      padding: 18px;
    }

    .person-body {
      display: grid;
      padding: 20px;
    }

    .person .profile-name {
      font-size: 1.42rem;
    }

    .person .profile-position {
      font-size: 1.12rem;
    }

    .person .profile-joined {
      font-size: .9rem;
    }

    .person .profile-research {
      font-size: .96rem;
    }

    .alumni {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
    }

    .alumni ul {
      margin: 0;
      padding-left: 20px;
      color: var(--muted);
    }

    #join {
      margin-top: 54px;
    }

    .join {
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(0,140,58,.95), rgba(0,92,41,.96)),
        var(--green);
      color: white;
      padding: 44px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 24px;
      box-shadow: 0 28px 80px rgba(0, 70, 32, 0.12);
    }

    .join h2 {
      color: white;
      margin: 0 0 12px;
      font-size: clamp(2.1rem, 3.5vw, 3.65rem);
      line-height: .98;
      letter-spacing: 0;
    }

    .join p {
      max-width: 920px;
      margin: 0;
      color: rgba(255,255,255,.78);
    }

    .join .join-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 19px;
      border-radius: 999px;
      font-weight: 900;
      background: white;
      color: var(--ink);
      border: 1px solid var(--line);
      white-space: nowrap;
    }

    .footer-inner { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }

    footer {
      border-top: 1px solid var(--line);
      margin-top: 80px;
      padding: 32px 0;
      color: var(--muted);
    }

    @media (max-width: 760px) {
      header {
        min-height: auto;
        padding: 58px 0 64px;
      }

      header::before {
        background-size: auto 520px;
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 32%, rgba(0,0,0,.36) 48%, transparent 64%);
        mask-image: linear-gradient(180deg, #000 0%, #000 32%, rgba(0,0,0,.36) 48%, transparent 64%);
      }

      header::after {
        background:
          linear-gradient(180deg, rgba(246, 251, 247, .12) 0%, rgba(246, 251, 247, .48) 30%, rgba(246, 251, 247, .92) 52%, var(--bg) 68%, var(--bg) 100%),
          linear-gradient(90deg, rgba(246, 251, 247, .90) 0%, rgba(246, 251, 247, .64) 52%, rgba(246, 251, 247, .34) 100%);
      }

      .pi-card, .people-grid { grid-template-columns: 1fr; }
      .join {
        grid-template-columns: 1fr;
        padding: 30px;
      }
      .join .join-button {
        justify-self: start;
      }
      .career-item { grid-template-columns: 1fr; gap: 2px; }
      .nav-inner { gap: 16px; }
      .nav-links { gap: 14px; font-size: .92rem; }
    }

    @media (min-width: 761px) and (max-width: 1040px) {
      .people-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
