:root {
      --blue: #0077bc;
      --sky: #00a0e3;
      --navy: #0f2742;
      --dark: #111827;
      --text: #1f2937;
      --muted: #6b7280;
      --line: #e5e7eb;
      --bg: #f8fafc;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
      --radius: 20px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body#myB {
      margin: 0;
      color: var(--text);
      background: var(--white);
      font-family: "Noto Sans KR", sans-serif;
      line-height: 1.7;
      word-break: keep-all;
      overflow-wrap: break-word;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      color: var(--sky);
    }

    a:focus-visible {
      outline: 3px solid rgba(0, 160, 227, 0.4);
      outline-offset: 4px;
      border-radius: 6px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Header */
    #Pheader {
      width: 100%;
      max-width: none;
      height: auto;
      margin: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid rgba(229, 231, 235, 0.9);
      backdrop-filter: blur(12px);
    }

    #Pheader-inner {
      max-width: 1200px;
      height: auto;
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .mainLogo {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .mainLogo img {
      width: min(300px, 70vw);
      height: auto;
    }

    #menus {
      height: auto;
      margin: 0;
      padding: 0;
      float: none;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 28px;
      list-style: none;
      white-space: nowrap;
    }

    #menus li {
      margin: 0;
      list-style: none;
      display: block;
    }

    .menuText {
      color: var(--text);
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.2s ease;
    }

    .menuText:hover,
    .menuText.active {
      color: var(--sky);
    }

    /* Common */
    main {
      overflow: hidden;
    }

    .main-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(72px, 8vw, 120px) 24px;
      font-family: "Noto Sans KR", sans-serif;
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    h2 {
      color: var(--blue);
      font-family: "Poppins", sans-serif;
      font-size: clamp(32px, 4vw, 46px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.03em;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 14px;
      color: var(--sky);
      font-family: "Poppins", sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .section-kicker::before {
      content: "";
      width: 34px;
      height: 2px;
      margin-right: 10px;
      background: var(--sky);
      border-radius: 999px;
    }

    .section-heading {
      margin-bottom: 40px;
    }

    .section-desc {
      max-width: 780px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.8;
    }

    /* Page hero */
    #project-title {
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(4, 24, 48, 0.84) 0%, rgba(4, 24, 48, 0.62) 52%, rgba(4, 24, 48, 0.28) 100%),
        url("../../../images/title_banner.jpg") center / cover no-repeat;
    }

    .page-hero {
      min-height: clamp(360px, 48vw, 520px);
      display: flex;
      align-items: center;
    }

    .page-hero h1 {
      color: var(--white);
      font-family: "Poppins", sans-serif;
      font-size: clamp(50px, 8vw, 86px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.06em;
    }

    .page-hero p {
      max-width: 780px;
      margin-top: 22px;
      color: rgba(255, 255, 255, 0.88);
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.75;
    }

    .page-hero-tags {
      margin-top: 28px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .page-hero-tag {
      padding: 7px 12px;
      color: rgba(255, 255, 255, 0.92);
      font-family: "Poppins", sans-serif;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
    }

    /* Project main */
    #project-main {
      background: var(--bg);
    }

    .project-summary {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-bottom: 72px;
    }

    .summary-card {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    }

    .summary-card strong {
      display: block;
      color: var(--blue);
      font-family: "Poppins", sans-serif;
      font-size: 34px;
      font-weight: 800;
      line-height: 1;
    }

    .summary-card span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 600;
    }

    .research-topic-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      margin-bottom: 84px;
    }

    .topic-card {
      min-height: 180px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    }

    .topic-number {
      color: rgba(0, 160, 227, 0.24);
      font-family: "Poppins", sans-serif;
      font-size: 34px;
      font-weight: 800;
      line-height: 1;
    }

    .topic-card h3 {
      margin-top: 24px;
      color: var(--dark);
      font-family: "Poppins", "Noto Sans KR", sans-serif;
      font-size: 19px;
      font-weight: 800;
      line-height: 1.35;
      letter-spacing: -0.035em;
    }

    .topic-card p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.7;
    }

    .project-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
      margin: 0;
    }

    .project-card {
      min-width: 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .project-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 160, 227, 0.38);
      box-shadow: var(--shadow);
    }

    .project-card-inner {
      height: 100%;
      display: grid;
      grid-template-rows: auto 1fr;
      color: inherit;
    }

    .project-image {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 20%, rgba(0, 160, 227, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
    }

    .project-image img {
      width: 100%;
      height: 100%;
      padding: 18px;
      object-fit: contain;
      object-position: center;
      transition: transform 0.25s ease;
    }

    .project-card:hover .project-image img {
      transform: scale(1.03);
    }

    .project-status {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      color: var(--white);
      background: rgba(0, 119, 188, 0.92);
      border-radius: 999px;
      font-family: "Poppins", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
      backdrop-filter: blur(8px);
    }

    .project-status.soon {
      color: #475569;
      background: rgba(241, 245, 249, 0.94);
      border: 1px solid rgba(226, 232, 240, 0.9);
    }

    .project-body {
      padding: clamp(24px, 3vw, 32px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .project-category {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      color: var(--blue);
      background: #eef8ff;
      border: 1px solid rgba(0, 160, 227, 0.18);
      border-radius: 999px;
      font-family: "Poppins", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .project-body h3 {
      margin-top: 18px;
      color: var(--dark);
      font-family: "Poppins", "Noto Sans KR", sans-serif;
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: -0.045em;
    }

    .project-body p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.8;
    }

    .project-tags {
      margin-top: 22px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .project-tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      color: #475569;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }

    .project-action {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      width: fit-content;
      color: var(--blue);
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-weight: 800;
    }

    .project-action::after {
      content: "→";
      margin-left: 8px;
      transition: transform 0.2s ease;
    }

    .project-card:hover .project-action::after {
      transform: translateX(4px);
    }

    .project-card.disabled .project-action {
      color: #94a3b8;
    }

    .project-card.disabled .project-action::after {
      content: "";
      margin-left: 0;
    }

    .project-note-box {
      margin-top: 84px;
      padding: clamp(32px, 5vw, 52px);
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) auto;
      gap: 28px;
      align-items: center;
      color: var(--white);
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(5, 28, 52, 0.94), rgba(0, 119, 188, 0.82)),
        url("../../../images/bg_contact.png") center / cover no-repeat;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    }

    .project-note-box h2 {
      color: var(--white);
    }

    .project-note-box p {
      max-width: 720px;
      margin-top: 16px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 17px;
      line-height: 1.8;
    }

    .btn {
      min-height: 46px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: var(--white);
      background: var(--sky);
      box-shadow: 0 12px 30px rgba(0, 160, 227, 0.24);
    }

    .btn-primary:hover {
      color: var(--white);
      background: #008dd0;
    }

    .btn-secondary {
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.52);
      background: rgba(255, 255, 255, 0.10);
    }

    .btn-secondary:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.18);
    }

    .contact-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Footer */
    #main-footer {
      width: 100%;
      color: rgba(255, 255, 255, 0.78);
      background: #111827;
      text-align: center;
      font-size: 14px;
      letter-spacing: -0.02em;
    }

    #main-footer .main-inner {
      padding: 48px 24px;
    }

    .footer-logo {
      width: min(300px, 70vw);
      margin: 0 auto 18px;
    }

    /* Responsive */
    @media (max-width: 1020px) {
      .research-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .project-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 860px) {
      #Pheader-inner {
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        padding: 14px 20px;
      }

      #menus {
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
      }

      .page-hero {
        text-align: center;
        justify-content: center;
      }

      .page-hero-tags {
        justify-content: center;
      }

      .section-heading {
        text-align: center;
      }

      .section-kicker {
        justify-content: center;
      }

      .section-kicker::before {
        display: none;
      }

      .section-desc {
        margin-left: auto;
        margin-right: auto;
      }

      .project-summary {
        grid-template-columns: 1fr;
      }

      .summary-card {
        text-align: center;
      }

      .project-note-box {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .project-note-box .contact-actions {
        justify-content: center;
      }
    }

    @media (max-width: 640px) {
      .main-inner {
        padding: 64px 20px;
      }

      .mainLogo img {
        width: 250px;
      }

      #menus {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
        text-align: center;
      }

      .menuText {
        font-size: 13px;
      }

      .page-hero {
        min-height: 420px;
      }

      .page-hero h1 {
        font-size: clamp(44px, 14vw, 62px);
      }

      .page-hero p {
        font-size: 16px;
      }

      .research-topic-grid {
        grid-template-columns: 1fr;
      }

      .project-image {
        aspect-ratio: 4 / 3;
      }

      .project-body {
        padding: 24px;
      }

      .project-body h3 {
        font-size: 22px;
      }

      .contact-actions,
      .btn {
        width: 100%;
      }
    }
