/* --- Variables --- */
:root {
  --navy: #0a1628;
  --navy-deep: #060d18;
  --blue: #1565d8;
  --blue-bright: #1e88e5;
  --blue-soft: #3d6fa8;
  --info-bg: #1a3a5c;
  --yellow: #f5c518;
  --yellow-deep: #e6b400;
  --white: #ffffff;
  --gray-100: #f4f6f8;
  --gray-500: #5c6b7a;
  --text-dark: #0a1628;
  --coral: #e85d4c;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 22px;
  --shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.narrow {
  max-width: 800px;
  margin-inline: auto;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow); /* Bayangan selalu ada agar konsisten */
  transition: transform 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h); /* Dibuat lebih rapat (compact) sesuai permintaan */
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo__img {
  height: clamp(32px, 5vw, 40px); /* Ukuran logo disesuaikan dengan header compact */
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem; /* Gap lebih besar antara menu dan tombol */
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem; /* Gap antar link menu */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-weight: 500;
  font-size: 1rem;
  color: #64748b; /* Warna abu-abu sesuai gambar */
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  color: #64748b;
  padding: 0.5rem 0;
  cursor: pointer;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: #008080;
}

.nav-item--dropdown {
  position: relative;
}

.nav-sublist {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: -0.75rem;
  min-width: 200px;
  padding: 0.6rem;
  margin: 0;
  list-style: none;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.14);
  display: none;
  z-index: 200;
}

.nav-sublist a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  color: #64748b;
  font-weight: 500;
}

.nav-sublist a:hover,
.nav-sublist a:focus-visible {
  background: rgba(21, 101, 216, 0.08);
  color: #008080;
}

.nav-item--dropdown:hover .nav-sublist,
.nav-item--dropdown:focus-within .nav-sublist,
.nav-item--dropdown.is-open .nav-sublist {
  display: block;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: #008080; /* Warna teal untuk active/hover */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.btn:active {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn--nav {
  background: #1565d8;
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 0 #0d47a1; /* Efek 3D tombol */
}

.btn--nav:hover,
.btn--nav:focus-visible {
  background: var(--blue-bright);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #132a45;
}

.btn--block {
  width: 100%;
}

.btn--outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
}

.btn--outline:hover {
  background: rgba(21, 101, 216, 0.08);
}

/* --- Hero --- */
.hero {
  padding: 0;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  height: calc(100vh - var(--header-h)); /* Sesuaikan dengan min-height header baru */
  min-height: 600px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr; /* Memberikan ruang lebih banyak untuk teks, mengecilkan gambar */
  gap: 2rem;
  align-items: center;
  width: 100%;
  height: 100%; /* Pastikan grid mengambil tinggi penuh hero */
}

.hero__content {
  position: relative;
  padding-left: calc((100vw - 1200px) / 2); /* Selaraskan dengan container */
}

@media (max-width: 1200px) {
  .hero__content {
    padding-left: 4vw;
  }
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.04em;
}

.hero__title-blue {
  color: #42b4f5; /* Biru langit sesuai referensi */
}

.hero__title-yellow {
  color: #f5c518; /* Kuning cerah */
}

.hero__subtitle {
  color: #001a41;
  font-weight: 700;
  margin: 0 0 4rem; /* Gap lebih besar untuk scribble */
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.2;
  max-width: 25ch;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  background: #001a41;
  border: none;
  box-shadow: 0 5px 0 #000c1d; /* Efek 3D padat */
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  position: relative;
  z-index: 10;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #000c1d;
}

.hero__cta:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #000c1d;
}

.hero__cta-arrow {
  font-size: 1.4rem;
  line-height: 1;
}

.hero__scribble-img {
  position: absolute;
  left: 5%;
  bottom: -45%; /* Sesuaikan posisi agar menyambung dari bawah tombol */
  width: 440px; /* Diperbesar ukurannya */
  height: auto;
  pointer-events: none;
  opacity: 0.9;
}

.hero__bento-wrap {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* --- Info Seminar --- */
.info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.info-list li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.info-list strong {
  color: var(--yellow);
  display: inline-block;
  min-width: 140px;
}

.info-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin-left: auto;
}

/* --- Sections --- */
.section {
  padding: 5rem 0;
}

.section--navy {
  background: #001a41; /* Navy gelap sesuai gambar */
  color: var(--white);
  padding: 1.5rem 0; /* Dibuat sangat rapat sesuai instruksi */
}

.tentang__content {
  width: 100%;
}

.tentang__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2.5rem;
  color: var(--white);
  max-width: 1000px; /* Diperlebar sedikit agar proporsional */
}

.tentang__text {
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: justify;
  opacity: 0.9;
  max-width: 1200px; /* Sesuai container */
}

/* --- Section Tema (Blue) --- */
.section--blue {
  background: #25478a; /* Biru sesuai gambar */
  color: var(--white);
  padding: 1.5rem 0; /* Dibuat rapat sesuai instruksi */
}

.tema__text p {
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
  opacity: 0.9;
}

.tema__visual {
  display: flex;
  justify-content: flex-end;
}

.tema__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.section--info {
  background: var(--info-bg);
  color: var(--white);
}

.section--speakers {
  background: #1565d8; /* Biru cerah sesuai referensi */
  color: var(--white);
  position: relative;
  overflow: visible; /* Diubah agar ornamen yang jauh tidak terpotong */
  padding: 1.2rem 0; /* Minimal agar pas dengan kalimat */
}

.section--countdown {
  background: var(--white);
  text-align: center;
  padding: 2.5rem 0; /* Tambahkan gap kembali agar tidak terlalu mepet */
}

.section--muted {
  background: var(--gray-100);
}

.section--prosiding {
  background: var(--white);
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.25;
}

.section__title--center {
  text-align: center;
}

.section__title--light {
  color: var(--yellow);
}

.section__title--dark {
  color: var(--navy);
}

.section__text {
  margin: 0;
  opacity: 0.95;
  font-size: 1.1rem;
  line-height: 1.7;
}

.section__text--center {
  text-align: center;
  margin-inline: auto;
}

.section__text--dark {
  color: var(--gray-500);
}

.two-col {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.speakers__heading {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0 0 2.5rem; /* Dikurangi lagi agar lebih rapat */
  text-transform: uppercase;
}

.speakers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.speaker-card {
  text-align: left; /* Alignment teks ke kiri sesuai gambar */
  position: relative;
}

.speaker-card__photo-wrap {
  position: relative;
  background: #ffcc66; /* Kotak kuning di belakang foto */
  padding: 0;
  border: none;
  border-radius: 0;
  margin-bottom: 1.5rem;
  aspect-ratio: 4 / 5; /* Dibuat lebih tinggi (portrait) agar foto tidak terpotong */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.22);
}

.speaker-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0) invert(1) opacity(0.2); /* Efek siluet putih transparan */
}

.speaker-card__photo-wrap::after {
  content: "?";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.speaker-card__ornamen {
  position: absolute;
  width: 55px; /* Sesuaikan ukuran */
  height: auto;
  z-index: 5;
}

.speaker-card__ornamen--left {
  top: -70px; /* Jarak ditambah lebih jauh lagi */
  left: -80px;
}

.speaker-card__ornamen--right {
  top: -70px; /* Jarak ditambah lebih jauh lagi */
  right: -80px;
}

.speaker-card__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  background: #001a41;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 0;
  text-transform: none;
}

.speaker-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--white);
  line-height: 1.4;
}

.speaker-card__role {
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--white);
  line-height: 1.5;
  text-transform: uppercase;
}

.speaker-card:last-child .speaker-card__role {
  text-transform: none; /* Ketua prodi SI tidak kapital semua di gambar */
}

/* --- Countdown --- */
.countdown__brand {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem); /* Diperbesar agar sesuai referensi */
  margin-bottom: 0.5rem;
  color: #f5c518; /* Kuning cerah */
  letter-spacing: 0.02em;
}

.countdown__brand-year {
  color: #f5c518;
}

.countdown__subtitle {
  color: #001a41; /* Navy gelap */
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  max-width: 45ch;
  margin: 0 auto 1.5rem; /* Dikurangi dari 3rem */
  line-height: 1.3;
}

.countdown__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px; /* Diperkecil dari 1120px agar lebih pas dengan kalimat */
  margin: 0 auto 2rem;
  background: #001a41; /* Navy gelap solid */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 0 #000c1d, 0 20px 40px rgba(0, 26, 65, 0.25); /* Efek 3D disesuaikan */
  min-height: 200px; /* Diperkecil dari 280px */
  position: relative;
}

.countdown__unit {
  padding: 2rem 1rem; /* Diperkecil dari 3rem agar lebih compact */
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.countdown__unit:last-child { border-right: none; }

.countdown__num {
  display: block;
  font-size: clamp(3.5rem, 7vw, 5.5rem); /* Ukuran angka disesuaikan dengan box yang lebih kecil */
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.countdown__label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: none;
}

@media (max-width: 768px) {
  .countdown__box {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
    box-shadow: 0 10px 0 #000c1d, 0 15px 30px rgba(0, 26, 65, 0.3);
  }
  .countdown__unit {
    padding: 2.5rem 1rem;
  }
  .countdown__unit:nth-child(2) { border-right: none; }
  .countdown__unit:nth-child(1),
  .countdown__unit:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .countdown__num {
    font-size: 4.5rem;
  }
}

.countdown__footer {
  color: #001a41;
  font-weight: 800;
  margin-top: 1.5rem;
  font-size: 1.3rem;
}

/* --- Typography Helpers --- */
.display {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* --- Program Kegiatan --- */
.section--program {
  background: #001a41;
  padding: 4rem 0;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; /* Gap diperbesar agar tidak tabrakan */
  align-items: center;
  position: relative;
}

.program-grid__intro {
  position: relative;
  z-index: 2;
}

/* Background dekoratif Program Kegiatan dipasang kembali di pojok kiri */
.program-grid__intro {
  position: relative;
  padding-left: 0; /* Hapus padding agar teks benar-benar di pojok kiri */
  z-index: 2;
}

.program__bg-pattern {
  position: absolute;
  top: 50%;
  left: -220px;
  width: 520px;
  height: auto;
  transform: translateY(-50%);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

.program__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 2rem;
  max-width: 12ch;
  position: relative;
  z-index: 3; /* Pastikan teks di atas ornamen */
}

.program__text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white);
  opacity: 1; /* Teks sangat jelas */
  max-width: 42ch;
  position: relative;
  z-index: 3; /* Pastikan teks di atas ornamen */
}

.program__arrow {
  position: absolute;
  top: -80px;
  left: -30px;
  width: 130px;
  height: auto;
  opacity: 1;
  z-index: 5;
  transform: rotate(-10deg);
}

.program-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 2;
}

.program-card {
  background: #1565d8; /* Solid blue */
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Pola background murni CSS tanpa gambar yang ada teksnya */
.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 1;
  z-index: 1;
}

.program-card--presentasi::before {
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.program-card__content {
  position: relative;
  z-index: 3;
}

.program-card--presentasi .program-card__content {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-35%);
  text-align: right;
}

.program-card--presentasi .program-card__title {
  max-width: 9ch;
}

.program-card__title {
  font-size: 2.5rem;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.program-card__icon {
  position: absolute;
  z-index: 4;
  width: 160px;
  height: auto;
  display: flex;
  pointer-events: none;
}

.program-card__icon img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}

/* Layout Seminar: Ikon kanan atas, Judul kiri bawah */
.program-card--seminar .program-card__icon {
  top: 15px;
  right: 15px;
}

/* Layout Presentasi: Ikon kiri atas, Judul kanan bawah */
.program-card--presentasi .program-card__icon {
  top: 15px;
  left: 15px;
}

@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .program__title, .program__text {
    margin-inline: auto;
  }

  .program__arrow {
    display: none;
  }

  .program-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .program-card__icon {
    width: 100px;
    margin-inline: auto !important;
  }

  .program-card__content {
    margin-top: 1.5rem;
    text-align: center !important;
  }

  .program-card--presentasi .program-card__content {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    max-width: none;
  }
}

/* --- Registration --- */
.reg-form {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.reg-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reg-form__field span {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.reg-form__field input,
.reg-form__field select {
  padding: 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reg-form__field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 101, 216, 0.1);
  outline: none;
}

/* --- Prosiding --- */
.prosiding-card {
  background: var(--gray-100);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.prosiding-card__label {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.prosiding-card__list {
  list-style: none;
  padding: 0;
}

.prosiding-card__list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
}

.prosiding-card__list li::before {
  content: "✓";
  color: var(--blue);
  position: absolute;
  left: 0;
  font-weight: 900;
}

/* --- Footer --- */
.site-footer {
  background: var(--gray-100);
  padding: 0;
}

.footer__top {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
}

.footer__contact {
  width: 100%;
}

.footer__contact-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  color: #001a41;
  letter-spacing: 0.02em;
}

.footer__buttons,
.contact-page__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 1.5rem;
  padding-bottom: 8px;
}

.footer__buttons .btn-contact,
.contact-page__buttons .btn-contact {
  min-width: min(300px, 100%);
}

.btn-contact {
  --btn-depth: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 2rem;
  min-width: 280px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  border: none;
  box-shadow: 0 var(--btn-depth) 0 0 var(--btn-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-contact::before {
  content: "";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 calc(var(--btn-depth) + 2px) 0 0 var(--btn-shadow);
}

.btn-contact:active {
  transform: translateY(var(--btn-depth));
  box-shadow: 0 0 0 0 var(--btn-shadow);
}

.btn-contact--primary {
  background: #1e4a8e;
  --btn-shadow: #122d56;
}

.btn-contact--accent {
  background: #ffc35e;
  --btn-shadow: #a67c37;
}

/* --- Page Tentang Styles --- */
.section--white {
  background: var(--white);
}

.section--cfp {
  padding: 5rem 0 3rem;
  text-align: center;
}

.cfp__title {
  color: var(--yellow);
  font-size: clamp(3rem, 7vw, 4.5rem);
  margin-bottom: 2rem;
}

.cfp__subtitle {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-500);
}

.btn--download {
  --btn-depth: 8px;
  background: #001a41;
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 var(--btn-depth) 0 0 var(--btn-shadow, #000814);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  text-transform: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--download.btn--download--light {
  background: var(--white);
  color: #0d5c6e;
  --btn-shadow: #5a5f66;
}

.btn--download:hover,
.btn--download:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 calc(var(--btn-depth) + 2px) 0 0 var(--btn-shadow, #000814);
  filter: none;
}

.btn--download:active {
  transform: translateY(var(--btn-depth));
  box-shadow: 0 0 0 0 var(--btn-shadow, #000814);
  filter: none;
}

.btn--download svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.cfp__cta-wrap {
  padding-bottom: 4px;
}

.section--scope {
  padding: 4rem 0;
  overflow: visible;
}

.scope__heading {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.scope__list-wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
}

.scope__list {
  --scope-pad-left: 2.25rem;
  --scope-line-w: 2px;
  --scope-line-center: 0.75rem;
  --scope-dot-size: 14px;
  --scope-dot-r: calc(var(--scope-dot-size) / 2);
  list-style: none;
  padding: 0 0 0 var(--scope-pad-left);
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.scope__list::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  bottom: 0.55rem;
  left: calc(var(--scope-line-center) - var(--scope-line-w) / 2);
  border-left: var(--scope-line-w) dashed rgba(255, 255, 255, 0.85);
}

.scope__item {
  color: var(--white);
  line-height: 1.4;
  position: relative;
}

.scope__item::before {
  content: "";
  position: absolute;
  left: calc(var(--scope-line-center) - var(--scope-dot-r) - var(--scope-pad-left));
  top: 0.35rem;
  width: var(--scope-dot-size);
  height: var(--scope-dot-size);
  border-radius: 999px;
  background: var(--white);
}

.scope__num {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
}

.scope__sublist {
  list-style: none;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0.85;
  font-size: 1rem;
}

.scope__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.scope__img {
  width: min(560px, 100%);
  max-width: 560px;
  height: auto;
  transform: none;
  margin-left: auto;
}

.cfp__cta-wrap--bottom {
  margin-top: 4rem;
}

.section--dates {
  padding: 5rem 0 3.5rem;
}

.dates__title {
  text-align: center;
  color: var(--yellow);
  font-size: clamp(3rem, 7vw, 4.5rem);
  margin: 0 0 3rem;
}

.dates__list {
  --dates-col-date: 180px;
  --dates-col-dot: 56px;
  --dates-gap: 1.25rem;
  --dates-line-w: 3px;
  --dates-line-center: calc(var(--dates-col-date) + var(--dates-gap) + (var(--dates-col-dot) / 2));
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.4rem;
  position: relative;
}

.dates__list::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: calc(var(--dates-line-center) - var(--dates-line-w) / 2);
  border-left: var(--dates-line-w) dashed var(--yellow);
  opacity: 0.95;
}

.dates__item {
  display: grid;
  grid-template-columns: var(--dates-col-date) var(--dates-col-dot) 1fr;
  align-items: center;
  gap: var(--dates-gap);
}

.dates__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  justify-self: end;
}

.dates__badge--navy {
  background: #001a41;
  color: var(--white);
}

.dates__badge--yellow {
  background: var(--yellow);
  color: #001a41;
}

.dates__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #001a41;
  justify-self: center;
  position: relative;
  z-index: 2;
}

.dates__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: #111827;
  font-weight: 600;
}

.section--template {
  padding: 4rem 0;
}

.section--rundown {
  padding: 7rem 0;
  text-align: center;
}

.rundown__title {
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  color: #111827;
  margin: 0 0 1.25rem;
  text-align: center;
}

.rundown__note {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

.section--prosiding {
  padding: 7rem 0;
  text-align: center;
}

.prosiding__title {
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  color: #111827;
  margin: 0 0 1.25rem;
  text-align: center;
}

.prosiding__text {
  margin: 0;
  max-width: 52ch;
  color: #64748b;
  font-weight: 500;
  line-height: 1.75;
}

.section--contact-page {
  padding: clamp(4rem, 10vw, 7rem) 0;
  text-align: center;
  background: var(--gray-100);
  min-height: calc(100vh - var(--header-h) - 72px);
  display: flex;
  align-items: center;
}

.section--contact-page .container {
  width: 100%;
}

.contact-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #001a41;
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.02em;
}

.btn-contact--sky {
  background: #4da3e0;
  --btn-shadow: #2d7ab5;
}

.site-footer--minimal {
  padding: 0;
}

.site-footer--minimal .footer__bar {
  border-top: none;
}

.section--lokasi {
  padding: 3.75rem 0;
}

.lokasi__title {
  margin: 0 0 2.5rem;
  font-size: clamp(3rem, 6vw, 4rem);
  color: var(--white);
}

.lokasi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 1.75rem;
}

.lokasi__card {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.22);
}

.lokasi__img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.lokasi__map {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

.lokasi__address {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.15rem;
}

.lokasi__pin {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.lokasi__pin svg {
  width: 22px;
  height: 22px;
}

.section--speakers-page {
  padding: 3.5rem 0 4.5rem;
}

@media (max-width: 900px) {
  .lokasi__grid {
    grid-template-columns: 1fr;
  }
  .lokasi__img {
    min-height: 220px;
  }
  .lokasi__map {
    min-height: 220px;
  }
}

.section--registrasi {
  padding: 4.75rem 0 4rem;
}

.registrasi__title {
  text-align: center;
  color: var(--yellow);
  font-size: clamp(3rem, 7vw, 4.5rem);
  margin: 0 0 1.5rem;
}

.registrasi__subtitle {
  max-width: 980px;
  margin: 0 auto 2.75rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.8;
}

.registrasi__grid {
  width: min(820px, 100%);
  margin: 0 auto 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.reg-card {
  background: #113a7a;
  color: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.reg-card--paper {
  background: #001a41;
}

.reg-card__head {
  padding: 0.25rem 0.25rem 0.75rem;
}

.reg-card__title {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}

.reg-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.reg-card__body {
  padding: 0.75rem 0.25rem 1rem;
  flex: 1 1 auto;
}

.reg-card__label {
  opacity: 0.9;
  font-weight: 500;
}

.reg-card__line {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  line-height: 1.35;
}

.reg-card__line strong {
  font-size: 1rem;
}

.reg-card__group {
  margin-bottom: 1rem;
}

.reg-card__group-title {
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.reg-card__list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  opacity: 0.95;
  font-size: 0.9rem;
}

.reg-card__list strong {
  font-weight: 800;
}

.reg-card__text-center {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  padding: 0 1rem;
}

.reg-card__list--justify {
  text-align: justify;
}

.reg-card__title--center {
  text-align: center;
}

.reg-card__body--flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.reg-card__text-justify-center {
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 0 1.5rem;
}

.reg-card__foot {
  padding: 0.5rem 0.25rem 0.25rem;
}

.reg-card__cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: #0f766e;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  box-shadow: 0 5px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.reg-card__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.reg-card__cta:active {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.registrasi__note {
  width: min(920px, 100%);
  margin: 0 auto;
  background: #e53935;
  color: var(--white);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.registrasi__note-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.registrasi__note-icon svg {
  width: 24px;
  height: 24px;
}

.registrasi__note-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 900px) {
  .registrasi__grid {
    grid-template-columns: 1fr;
  }
  .reg-card {
    min-height: 0;
  }
}

.template__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.template__title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  color: var(--white);
}

.template__btn {
  --btn-depth: 8px;
  --btn-shadow: #966b33;
  background: #f9c464;
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 var(--btn-depth) 0 0 var(--btn-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.template__btn:hover,
.template__btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 calc(var(--btn-depth) + 2px) 0 0 var(--btn-shadow);
  filter: none;
}

.template__btn:active {
  transform: translateY(var(--btn-depth));
  box-shadow: 0 0 0 0 var(--btn-shadow);
  filter: none;
}

.template__btn svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.template__text {
  margin: 0;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 720px) {
  .dates__list {
    --dates-col-date: 120px;
    --dates-col-dot: 44px;
    --dates-gap: 0.9rem;
  }
  .dates__badge {
    font-size: 0.85rem;
    padding: 0.45rem 0.8rem;
    min-height: 32px;
  }
  .template__top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 901px) {
  .section--scope .two-col {
    grid-template-columns: 1fr;
  }

  .scope__content {
    padding-right: 600px;
  }

  .scope__visual {
    position: absolute;
    right: calc(50% - 50vw);
    top: 50%;
    transform: translateY(-50%);
    width: 560px;
    max-width: 46vw;
    pointer-events: none;
  }

  .scope__img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .scope__visual {
    order: -1;
    margin-bottom: 3rem;
  }
}

/* --- Footer Bar fix --- */
.footer__bar {
  background: #f8fafc;
  padding: 1.5rem;
  text-align: center;
  font-weight: 500;
  color: var(--gray-500);
  font-size: 0.9rem;
  border-top: 1px solid #e2e8f0;
}
/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.12s;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero {
    height: auto;
    padding: 4rem 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero__content {
    padding-left: 0;
  }

  .hero__bento-wrap {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .two-col,
  .program-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .speakers__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0; /* Sesuaikan dengan tinggi header baru */
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .btn--nav {
    width: 100%;
  }

  body.nav-open {
    overflow: hidden;
  }

  .countdown__box {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown__unit:nth-child(2) {
    border-right: none;
  }

  .countdown__unit:nth-child(3),
  .countdown__unit:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-item--dropdown {
    position: static;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-sublist {
    position: static;
    display: none;
    box-shadow: none;
    padding: 0.25rem 0 0.5rem 0.75rem;
    min-width: 0;
    border-radius: 0;
  }

  .nav-item--dropdown.is-open .nav-sublist {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .float-icon,
  .program-emoji--glow,
  .speakers__decor {
    animation: none;
  }

  .btn:hover,
  .btn:focus-visible,
  .btn-contact:hover,
  .btn-contact:active,
  .btn--download:hover,
  .btn--download:focus-visible,
  .btn--download:active,
  .template__btn:hover,
  .template__btn:focus-visible,
  .template__btn:active {
    transform: none;
    box-shadow: 0 var(--btn-depth) 0 0 var(--btn-shadow, #000814);
  }

  .template__btn:hover,
  .template__btn:focus-visible,
  .template__btn:active {
    box-shadow: 0 var(--btn-depth) 0 0 var(--btn-shadow);
  }

  .btn-contact:hover,
  .btn-contact:active {
    box-shadow: 0 var(--btn-depth) 0 0 var(--btn-shadow);
  }
}

/* --- Announcement Box --- */
.announcement-box {
  background-color: #1B4A93;
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 500;
  margin: 2rem auto;
  text-align: center;
  max-width: 800px;
}

.announcement-box svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* --- Rundown Table --- */
.rundown__table-container {
  overflow-x: auto;
  margin: 2rem 0;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); /* Shadow sedikit lebih kuat */
}

.rundown__table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 600px;
}

.rundown__table th {
  background-color: #D6E4FF; /* Biru muda sesuai gambar */
  color: #001a41;
  padding: 1.25rem;
  text-align: center;
  font-weight: 700;
  border: 1px solid #000;
  font-size: 1.1rem;
}

.rundown__table td {
  padding: 1rem;
  border: 1px solid #000;
  color: #111827;
  text-align: center;
  font-size: 1rem;
}

.rundown__table tr:nth-child(even) {
  background-color: #f9fafb;
}

.rundown__table tr:hover {
  background-color: #f3f4f6;
}

.rundown__table td:nth-child(2) {
  text-align: center;
}
