:root {
  --white: #ffffff;
  --black: #080808;
  --dark: #111111;
  --muted: #6b6b6b;
  --line: rgba(0, 0, 0, 0.08);
  --hero-soft: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* ================= HEADER ================= */



/* ================= HEADER + FAST MEGA MENU ================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 72px;

  background: #ffffff;


  backdrop-filter: none;
  -webkit-backdrop-filter: none;

 
}

.header-inner {
  width: min(100%, 1320px);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  flex: 0 0 auto;
  color: var(--dark);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-item {
  position: static;
}

.nav-trigger,
.nav-link {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.nav-trigger:hover,
.nav-link:hover,
.nav-item.is-open .nav-trigger {
  color: var(--muted);
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-link,
.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.login-link {
  background: #f4f4f4;
  color: var(--dark);
}

.nav-cta {
  background: var(--dark);
  color: var(--white);
}

/* Mega panel */

.mega-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  color: var(--dark);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none; 
  -webkit-backdrop-filter: none;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);

  transition:
    opacity 120ms ease,
    transform 120ms ease,
    visibility 0s linear 120ms;
}

/* cepat dibuka via hover, focus, dan class JS */
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 120ms ease,
    transform 120ms ease,
    visibility 0s;
}

.mega-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 36px 28px 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 72px;
}

.mega-column p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.mega-column a {
  display: block;
  width: fit-content;
  padding: 6px 0;
  color: var(--dark);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.12;
  font-weight: 520;
  letter-spacing: -0.055em;
  transition: color 120ms ease, transform 120ms ease;
}

.mega-column a:hover,
.mega-column a:focus {
  color: var(--muted);
  transform: translateX(4px);
}

/* ================= MOBILE MENU ================= */

.menu-toggle {
  display: none;
}

@media (max-width: 1120px) {
  .site-header {
    height: 66px;
  }

  .header-inner {
    justify-content: space-between;
    padding: 0 20px;
  }

  .menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #f2f2f2;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--dark);
    transition: 160ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle.is-active span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle.is-active span:last-child {
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    max-height: calc(100svh - 66px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 34px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--dark);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-trigger,
  .nav-link {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    text-align: left;
    font-size: 22px;
    font-weight: 520;
  }

  .nav-trigger::after {
    content: "+";
    font-size: 24px;
    color: var(--muted);
  }

  .nav-item.is-open .nav-trigger::after {
    content: "−";
  }

  .mega-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }

  .nav-item.is-open .mega-menu {
    display: block;
  }

  .mega-inner {
    width: 100%;
    padding: 4px 0 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mega-column p {
    margin: 14px 0 8px;
    font-size: 13px;
  }

  .mega-column a {
    width: 100%;
    padding: 8px 0;
    font-size: 18px;
    letter-spacing: -0.035em;
  }

  .nav-actions {
    margin-left: 0;
    padding-top: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .login-link,
  .nav-cta {
    text-align: center;
  }
}





/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-video,
.hero-overlay {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100% - 72px);
}

.hero-video {
  object-fit: cover;
  object-position: center;
  z-index: -3;
  background: #111;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.68)),
    linear-gradient(to right, rgba(0,0,0,0.58), rgba(0,0,0,0.08) 58%, rgba(0,0,0,0.18));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1320px) / 2 + 28px));
  bottom: clamp(34px, 6vw, 78px);
  z-index: 5;
  width: min(640px, calc(100% - 48px));
}

.hero-kicker {
  margin-bottom: 12px;
  color: var(--hero-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.02;
  font-weight: 460;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.hero-text {
  max-width: 540px;
  margin-top: 18px;
  color: var(--hero-soft);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-btn {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.hero-btn.primary {
  background: var(--white);
  color: var(--dark);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

/* ================= MOBILE ================= */

.menu-toggle {
  display: none;
}

@media (max-width: 1120px) {
  .header-inner {
    justify-content: space-between;
    padding: 0 22px;
  }

  .menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #f2f2f2;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--dark);
    transition: 180ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle.is-active span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle.is-active span:last-child {
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    padding: 26px 22px 38px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-trigger,
  .nav-link {
    width: 100%;
    text-align: left;
    font-size: 23px;
    font-weight: 500;
  }

  .nav-actions {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .login-link,
  .nav-cta {
    text-align: center;
  }

  .mega-menu {
    position: static;
    margin-top: 14px;
    display: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-item.is-open .mega-menu {
    display: block;
  }

  .mega-inner {
    padding: 10px 0 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mega-column a {
    font-size: 20px;
    letter-spacing: -0.035em;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 66px;
  }

  .brand {
    font-size: 22px;
  }

  .main-nav {
    top: 66px;
    max-height: calc(100svh - 66px);
  }

  .hero {
    padding-top: 66px;
  }

  .hero-video,
  .hero-overlay {
    top: 66px;
    height: calc(100% - 66px);
  }

  .hero-content {
    left: 20px;
    bottom: 30px;
    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 52px);
    letter-spacing: -0.055em;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-btn {
    width: 100%;
  }
}





/* ================= NEWS SECTION ================= */

.news-section {
  background: #ffffff;
  color: #111111;
  padding: clamp(72px, 9vw, 120px) 0;
}

.news-container {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 28px;
}

.section-head {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 560;
  letter-spacing: -0.055em;
}

.view-all {
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.view-all:hover {
  color: #666;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card a {
  display: block;
}

.news-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: #eeeeee;
}

.news-category {
  margin-top: 18px;
  color: #666666;
  font-size: 14px;
  font-weight: 600;
}

.news-card h3 {
  margin-top: 8px;
  max-width: 95%;
  color: #111111;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.18;
  font-weight: 520;
  letter-spacing: -0.045em;
}

.news-card:hover h3 {
  color: #666666;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .news-card img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .news-container {
    padding: 0 20px;
  }

  .section-head {
    align-items: flex-end;
  }

  .view-all {
    font-size: 14px;
  }
}





.prodi-simple {
  background: #fff;
  color: #111;
  padding: clamp(72px, 9vw, 110px) 0;
}

.prodi-wrap {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

.prodi-head {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.prodi-head h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 520;
  letter-spacing: -0.06em;
}

.prodi-head a {
  color: #555;
  font-size: 15px;
  font-weight: 600;
}

.prodi-list {
  border-top: 1px solid #e8e8e8;
}

.prodi-list a {
  min-height: 72px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #e8e8e8;
  color: #111;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 480;
  letter-spacing: -0.045em;
  transition: 180ms ease;
}

.prodi-list a span {
  width: 34px;
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.prodi-list a::after {
  content: "→";
  margin-left: auto;
  color: #999;
  opacity: 0;
  transform: translateX(-6px);
  transition: 180ms ease;
}

.prodi-list a:hover {
  padding-left: 14px;
  color: #000;
  background: #fafafa;
}

.prodi-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .prodi-wrap {
    padding: 0 20px;
  }

  .prodi-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .prodi-list a {
    min-height: 64px;
    gap: 14px;
  }
}




/* ================= FILOSOFI ================= */

.philosophy {
  background: #f7f7f4;
  color: #111;
  padding: clamp(80px, 10vw, 140px) 0;
}

.philosophy-wrap {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 28px;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* IMAGE */

.philosophy-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

/* TEXT */

.philosophy-label {
  margin-bottom: 14px;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.philosophy-content h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 520;
  letter-spacing: -0.06em;
}

.philosophy-content h2 span {
  display: block;
  color: #000;
}

.philosophy-text {
  margin-top: 20px;
  max-width: 420px;
  color: #555;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
}

/* MOBILE */

@media (max-width: 900px) {
  .philosophy-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-content h2 {
    font-size: clamp(32px, 8vw, 46px);
  }

  .philosophy-text {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .philosophy-wrap {
    padding: 0 20px;
  }
}









/* ================= RISET & INOVASI ================= */

.research {
  background: #ffffff;
  color: #111;
  padding: clamp(80px, 10vw, 120px) 0;
}

.research-wrap {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 28px;
}

/* header */

.research-head {
  margin-bottom: 48px;
  max-width: 680px;
}

.research-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 520;
  letter-spacing: -0.06em;
}

.research-head p {
  margin-top: 14px;
  color: #555;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
}

/* grid */

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* item */

.research-item {
  padding-top: 18px;
  border-top: 1px solid #e8e8e8;
}

.research-number {
  color: #999;
  font-size: 13px;
  font-weight: 700;
}

.research-item h3 {
  margin-top: 10px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 540;
  letter-spacing: -0.04em;
}

.research-item p {
  margin-top: 12px;
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* subtle hover */

.research-item:hover h3 {
  color: #000;
}

/* mobile */

@media (max-width: 900px) {
  .research-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .research-wrap {
    padding: 0 20px;
  }

  .research-head {
    margin-bottom: 32px;
  }
}











/* ================= RISET VISUAL ================= */

.research {
  background: #fff;
  color: #111;
  padding: clamp(80px, 10vw, 120px) 0;
}

.research-wrap {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 28px;
}

/* header */
.research-head {
  margin-bottom: 44px;
  max-width: 640px;
}

.research-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 520;
  letter-spacing: -0.06em;
}

.research-head p {
  margin-top: 12px;
  color: #555;
}

/* grid */
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* card */

.research-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

/* image */

.research-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* overlay */

.research-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;

  background:
    linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
}

.research-overlay span {
  font-size: 13px;
  opacity: 0.8;
}

.research-overlay h3 {
  margin-top: 6px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 520;
  letter-spacing: -0.04em;
}

/* hover effect */

.research-card:hover img {
  transform: scale(1.05);
}

/* mobile */

@media (max-width: 900px) {
  .research-grid {
    grid-template-columns: 1fr;
  }

  .research-card img {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 640px) {
  .research-wrap {
    padding: 0 20px;
  }
}










/* ================= EVENTS ================= */

.events {
  background: #f7f7f4;
  color: #111;
  padding: clamp(80px, 10vw, 120px) 0;
}

.events-wrap {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 28px;
}

/* header */

.events-head {
  margin-bottom: 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.events-head h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 520;
  letter-spacing: -0.06em;
}

.events-head a {
  font-size: 15px;
  color: #555;
  font-weight: 600;
}

.events-head a:hover {
  color: #111;
}

/* grid */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* card */

.event-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  transition: 0.25s ease;
}

.event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* info */

.event-info {
  padding: 20px;
}

.event-date {
  font-size: 13px;
  color: #888;
  font-weight: 700;
}

.event-card h3 {
  margin-top: 6px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  font-weight: 520;
}

.event-info p {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}

/* hover */

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* mobile */

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .events-wrap {
    padding: 0 20px;
  }
}











/* ================= PARTNERS ================= */

.partners {
  background: #ffffff;
  color: #111;
  padding: clamp(70px, 9vw, 100px) 0;
  border-top: 1px solid #eee;
}

.partners-wrap {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 0 28px;
}

/* header */

.partners-head {
  text-align: center;
  margin-bottom: 40px;
}

.partners-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 520;
  letter-spacing: -0.05em;
}

.partners-head p {
  margin-top: 10px;
  color: #666;
  font-size: 15px;
}

/* logos */

.partners-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: center;
}

/* logo style */

.partners-logos img {
  width: 100%;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: 0.25s ease;
}

/* hover effect */

.partners-logos img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* tablet */

@media (max-width: 900px) {
  .partners-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* mobile */

@media (max-width: 640px) {
  .partners-wrap {
    padding: 0 20px;
  }

  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partners-logos img {
    max-height: 32px;
  }
}



.footer {
  background: #fff;
  color: #111;
  padding: 80px 0 28px;
  border-top: 1px solid #eee;
}

.footer-wrap {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand {
  max-width: 420px;
  margin-bottom: 56px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.05em;
}

.footer-brand p {
  margin-top: 16px;
  color: #666;
  font-size: 15px;
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.footer-col h4 {
  margin-bottom: 18px;
  color: #777;
  font-size: 14px;
  font-weight: 650;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
}

.footer-col a:hover {
  color: #666;
}

.footer-bottom {
  margin-top: 82px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111;
  transition: 0.18s ease;
}

.footer-social a:hover {
  background: #f2f2f2;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-bottom p {
  color: #333;
  text-align: center;
  white-space: nowrap;
}

.footer-lang {
  justify-self: end;
  padding: 9px 16px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #111;
  font-weight: 600;
}

.footer-lang:hover {
  background: #ededed;
}

@media (max-width: 900px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-bottom p {
    text-align: left;
  }

  .footer-lang {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .footer {
    padding-top: 60px;
  }

  .footer-wrap {
    padding: 0 20px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    margin-bottom: 42px;
  }
}



/* ================= ARTICLE SIMPLE ================= */

.article {
  background: #fff;
  color: #111;
  padding: 80px 0;
}

.article-wrap {
  max-width: 720px;
  margin: auto;
  padding: 0 20px;
}

/* back */

.back {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 14px;
  color: #666;
}

.back:hover {
  color: #111;
}

/* header */

.category {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
}

.article h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.meta {
  margin-top: 16px;
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #000000;
}

/* image */

.article img {
  margin: 32px 0;
  width: 100%;
  border-radius: 6px;
}

/* content */

.content {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.content p {
  margin-bottom: 20px;
}

.lead {
  font-size: 20px;
  color: #111;
}

/* subheading */

.content h2 {
  margin: 40px 0 12px;
  font-size: 26px;
  font-weight: 600;
}

/* quote */

blockquote {
  margin: 30px 0;
  padding-left: 16px;
  border-left: 2px solid #111;
  font-size: 20px;
  color: #111;
}

/* mobile */

@media (max-width: 600px) {
  .article {
    padding: 60px 0;
  }

  .article h1 {
    font-size: 30px;
  }

  .content {
    font-size: 16px;
  }
}






/* ================= SIMPLE PAGE ================= */

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: #000; /* teks hitam */
  background: #fff;
}

/* layout */

.container {
  max-width: 720px;
  margin: auto;
  padding: 0 20px;
}

.narrow {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* header */

.simple-header {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}

/* title */

h1 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* text */

p {
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 16px;
}

/* footer */

.simple-footer {
  border-top: 1px solid #eee;
  padding: 20px 0;
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* image */

.simple-image {
  margin-bottom: 30px;
}

.simple-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}









/* ================= VISI MISI ================= */

h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 22px;
}

/* list */

.simple-list {
  margin-top: 10px;
  padding-left: 18px;
}

.simple-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}






/* ================= STRUKTUR ================= */

.desc {
  margin-bottom: 20px;
  color: #333;
}

/* gambar */

.struktur-image {
  margin: 30px 0;
}

.struktur-image img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
  border-radius: 6px;
}

/* caption */

.caption {
  font-size: 14px;
  color: #666;
  text-align: center;
}





/* ================= PRODI PAGE CLEAN ================= */

.page-kicker {
  margin-bottom: 10px;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desc {
  max-width: 620px;
  margin-top: 14px;
  color: #444;
  font-size: 16px;
  line-height: 1.65;
}

.prodi-list-clean {
  margin-top: 42px;
  border-top: 1px solid #e8e8e8;
}

.prodi-list-clean a {
  min-height: 70px;
  padding: 0 4px;
  display: grid;
  grid-template-columns: 1fr auto 24px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #e8e8e8;
  color: #111;
  text-decoration: none;
  transition: background 160ms ease, padding 160ms ease;
}

.prodi-list-clean span {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.prodi-list-clean small {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.prodi-list-clean a::after {
  content: "→";
  color: #999;
  opacity: 0;
  transform: translateX(-6px);
  transition: 160ms ease;
}

.prodi-list-clean a:hover {
  padding-left: 14px;
  background: #fafafa;
}

.prodi-list-clean a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .prodi-list-clean a {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .prodi-list-clean a::after {
    display: none;
  }

  .prodi-list-clean span {
    font-size: 18px;
  }
}





/* ================= FAKULTAS ================= */

.fakultas-list {
  margin-top: 40px;
  border-top: 1px solid #e8e8e8;
}

.fakultas-list a {
  display: block;
  padding: 20px 6px;
  border-bottom: 1px solid #e8e8e8;
  text-decoration: none;
  color: #111;
  transition: 0.2s ease;
}

.fakultas-list span {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.fakultas-list p {
  margin-top: 4px;
  color: #666;
  font-size: 14px;
}

/* hover effect minimal */
.fakultas-list a:hover {
  padding-left: 14px;
  background: #fafafa;
}





/* ================= AKREDITASI PAGE ================= */

.wide {
  max-width: 1100px;
}

.table-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

.akreditasi-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  color: #111;
}

.akreditasi-table th {
  padding: 18px 20px;
  background: #f4f1ff;
  color: #111;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}

.akreditasi-table td {
  padding: 18px 20px;
  border-top: 1px solid #eee;
  font-size: 15px;
  line-height: 1.4;
}

.akreditasi-table tbody tr:nth-child(even) {
  background: #faf7fb;
}

.akreditasi-table tbody tr:hover {
  background: #f7f7f4;
}

.akreditasi-table td:nth-child(1),
.akreditasi-table td:nth-child(3),
.akreditasi-table td:nth-child(4),
.akreditasi-table td:nth-child(5) {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .akreditasi-table th,
  .akreditasi-table td {
    padding: 14px 16px;
  }
}






/* ================= BPMI / AKREDITASI ================= */

.content-section {
  margin-top: 46px;
}

.content-section h2 {
  margin-bottom: 14px;
  color: #111;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.content-section p {
  color: #222;
  font-size: 16px;
  line-height: 1.75;
}

.download-list {
  margin-top: 22px;
  border-top: 1px solid #e8e8e8;
}

.download-list a {
  min-height: 66px;
  padding: 0 4px;
  display: grid;
  grid-template-columns: 1fr auto 24px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #e8e8e8;
  color: #111;
  text-decoration: none;
  transition: background 160ms ease, padding 160ms ease;
}

.download-list a::after {
  content: "↓";
  color: #999;
  opacity: 0;
  transform: translateY(-4px);
  transition: 160ms ease;
}

.download-list a:hover {
  padding-left: 12px;
  background: #fafafa;
}

.download-list a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.download-list span {
  font-size: 16px;
  font-weight: 550;
}

.download-list small {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .download-list a {
    grid-template-columns: 1fr auto;
  }

  .download-list a::after {
    display: none;
  }
}












/* ================= PEOPLE LIST ================= */

.people-list {
  margin-top: 22px;
  border-top: 1px solid #e8e8e8;
}

.person-item {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.person-item span {
  color: #777;
  font-size: 14px;
  font-weight: 650;
}

.person-item strong {
  color: #111;
  font-size: 17px;
  font-weight: 650;
}

@media (max-width: 640px) {
  .person-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}










/* ================= KONTAK + WHATSAPP ================= */

.contact-list {
  margin-top: 20px;
  border-top: 1px solid #e8e8e8;
}

.contact-item {
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.contact-item p {
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.5;
}

.wa-button {
  width: fit-content;
  margin-top: 24px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 160ms ease;
}

.wa-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wa-button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

@media (max-width: 640px) {
  .wa-button {
    width: 100%;
    justify-content: center;
  }
}





/* ================= PKKMB / INFO LIST ================= */

.info-list {
  margin-top: 22px;
  border-top: 1px solid #e8e8e8;
}

.info-list div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-bottom: 1px solid #e8e8e8;
}

.info-list span {
  color: #777;
  font-size: 13px;
  font-weight: 800;
}

.info-list p {
  margin: 0;
  color: #222;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}





.primary-link-button {
  width: fit-content;
  margin-top: 18px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 160ms ease;
}

.primary-link-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .primary-link-button {
    width: 100%;
  }
}















/* ================= DETAIL PRODI STI ================= */

.sti-page {
  background: #fff;
  color: #111;
}

.sti-container {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 64px 20px 90px;
}

.sti-kicker {
  margin-bottom: 10px;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sti-page h1 {
  max-width: 760px;
  color: #111;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 560;
  letter-spacing: -0.06em;
}

.sti-page h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

.sti-desc {
  max-width: 640px;
  margin-top: 22px;
  color: #444;
  font-size: 17px;
  line-height: 1.65;
}

.sti-section {
  padding: 52px 0;
  border-top: 1px solid #e8e8e8;
}

.sti-section h2 {
  margin-bottom: 20px;
  color: #111;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.sti-section p {
  margin-bottom: 16px;
  color: #222;
  font-size: 16px;
  line-height: 1.75;
}

.sti-data-list {
  border-top: 1px solid #e8e8e8;
}

.sti-data-list div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.sti-data-list span {
  color: #777;
  font-size: 14px;
  font-weight: 700;
}

.sti-data-list p {
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.5;
}

.sti-vision {
  max-width: 760px;
  color: #111 !important;
  font-size: 20px !important;
  line-height: 1.6 !important;
}

.sti-misi-list {
  padding-left: 20px;
}

.sti-misi-list li {
  margin-bottom: 14px;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
}

.sti-dosen-list {
  border-top: 1px solid #e8e8e8;
}

.sti-dosen-item {
  padding: 22px 0;
  border-bottom: 1px solid #e8e8e8;
}

.sti-dosen-item h3 {
  margin-bottom: 10px;
  color: #111;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.sti-dosen-item p {
  margin: 4px 0;
  color: #444;
  font-size: 15px;
  line-height: 1.55;
}

.sti-sks-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sti-sks-grid div {
  padding: 22px;
  border-radius: 8px;
  background: #f7f7f4;
}

.sti-sks-grid strong {
  display: block;
  color: #111;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.sti-sks-grid span {
  display: block;
  margin-top: 8px;
  color: #666;
  font-size: 14px;
}

@media (max-width: 700px) {
  .sti-container {
    padding-top: 48px;
  }

  .sti-data-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sti-sks-grid {
    grid-template-columns: 1fr;
  }

  .sti-page h1 {
    font-size: 38px;
  }
}








.back {
  display: inline-block;
  margin-bottom: 34px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
}

.back:hover {
  color: #111;
}

.news-quote {
  margin: 34px 0;
  padding-left: 18px;
  border-left: 3px solid #111;
  color: #111;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}














.brand {
  display: inline-flex;
  align-items: center;
  
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}