/* =========================================================
   PUBLIC — Siohioma-aligned (selaras dengan Admin)
   ========================================================= */
html {
  margin: 0;
  padding: 0;
}

.public-body {
  --adm-sidebar: #0a1f11;
  --adm-lime: #b6f031;
  --adm-lime-soft: rgba(182, 240, 49, 0.15);
  --adm-bg: #ffffff;
  --adm-card: #ffffff;
  --adm-text: #111827;
  --adm-text-secondary: #4b5563;
  --adm-muted: #9ca3af;
  --adm-border: #e5e7eb;
  --adm-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --adm-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.08);
  --adm-radius: 20px;
  --adm-radius-sm: 12px;
  --adm-radius-pill: 9999px;
  --adm-green: #1a4034;
  --adm-green-dark: #0a1f11;

  --black: var(--adm-bg);
  --surface-950: var(--adm-bg);
  --surface-900: var(--adm-card);
  --surface-850: var(--adm-card);
  --surface-800: #f3f4f6;
  --surface-700: #e5e7eb;
  --accent: var(--adm-green-dark);
  --accent-hover: var(--adm-green);
  --accent-light: var(--adm-green);
  --accent-muted: var(--adm-text-secondary);
  --accent-soft: var(--adm-lime-soft);
  --accent-dim: rgba(26, 64, 52, 0.08);
  --accent-glow: rgba(10, 31, 17, 0.18);
  --on-accent: #ffffff;
  --text: var(--adm-text);
  --text-secondary: var(--adm-text-secondary);
  --text-muted: var(--adm-muted);
  --border: var(--adm-border);
  --border-strong: var(--adm-border);
  --display: var(--body);
  --radius-sm: var(--adm-radius-sm);
  --radius-md: var(--adm-radius-sm);
  --radius-lg: var(--adm-radius);
  --radius-xl: var(--adm-radius);
  --shadow-sm: var(--adm-shadow);
  --shadow-md: var(--adm-shadow-lg);

  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--adm-text);
  font-family: var(--body);
  line-height: 1.55;
  background: #ffffff;
  overflow-x: clip;
}

.public-body * { box-sizing: border-box; }
.public-body img { max-width: 100%; display: block; }
.public-body a { color: inherit; text-decoration: none; }
.public-body h1, .public-body h2, .public-body h3, .public-body h4 {
  font-family: var(--body);
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  color: var(--adm-text);
  font-weight: 800;
}
.public-body p { margin: 0 0 1em; color: var(--adm-text-secondary); }
.public-body .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.public-body ::selection { background: var(--adm-lime); color: var(--adm-green-dark); }
.public-body :focus-visible { outline: 3px solid var(--adm-lime); outline-offset: 2px; }

/* Buttons — match admin */
.public-body .btn { border-radius: var(--adm-radius-pill); font-weight: 600; }
.public-body .btn-primary {
  background: var(--adm-green-dark);
  color: #fff;
  border-color: transparent;
}
.public-body .btn-primary:hover {
  background: var(--adm-green);
  box-shadow: 0 8px 24px rgba(10, 31, 17, 0.2);
}
.public-body .btn-ghost {
  background: var(--adm-card);
  border-color: var(--adm-border);
  color: var(--adm-text);
}
.public-body .btn-ghost:hover {
  border-color: var(--adm-green);
  color: var(--adm-green);
}
.public-body .btn-lime {
  background: var(--adm-lime);
  color: var(--adm-green-dark);
  font-weight: 700;
}

/* Form controls — light */
.public-body input:not([type="checkbox"]):not([type="radio"]),
.public-body select,
.public-body textarea {
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
  color: var(--adm-text);
  border-radius: var(--adm-radius-sm);
}
.public-body input:not([type="checkbox"]):not([type="radio"]):focus,
.public-body select:focus,
.public-body textarea:focus {
  border-color: var(--adm-green);
  box-shadow: 0 0 0 3px var(--adm-lime-soft);
}
.public-body .form-group label { color: var(--adm-text-secondary); }
.public-body .form-section-title {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--adm-green);
  font-weight: 700;
}

/* Navbar */
.pub-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--adm-border);
  box-shadow: var(--adm-shadow);
}
.pub-navbar.scrolled { background: rgba(255, 255, 255, 0.98); }
.pub-navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.pub-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.pub-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--adm-green-dark);
  color: var(--adm-lime);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.pub-brand-text {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--adm-text);
}
.pub-brand-text span { color: var(--adm-green); }
.pub-brand-logo { max-height: 40px; width: auto; }
.pub-nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1;
  min-width: 0;
}
.pub-nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
}
.pub-nav-links a { color: var(--adm-text-secondary); transition: color 0.2s; white-space: nowrap; }
.pub-nav-links a:hover { color: var(--adm-green); }
.pub-nav-cta {
  position: relative;
  z-index: 2;
  font-size: 13px !important;
  padding: 11px 22px !important;
  flex-shrink: 0;
}
.pub-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  padding: 8px;
  margin-left: auto;
}
.pub-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--adm-text);
  border-radius: 2px;
}

/* Hero — dark band seperti sidebar admin */
.pub-hero {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 0 72px;
  background: var(--adm-green-dark);
  color: #fff;
}
.pub-hero .hero-carousel { position: absolute; inset: 0; z-index: 0; }
.pub-hero .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}
.pub-hero .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 17, 0.72) 0%,
    rgba(10, 31, 17, 0.82) 45%,
    rgba(10, 31, 17, 0.92) 100%
  );
}
.pub-hero .hero-slide.active { opacity: 1; }

.pub-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}
.pub-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}
.pub-hero-copy h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 800;
}
.public-body .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--adm-lime);
  margin-bottom: 14px;
  background: rgba(182, 240, 49, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}
.public-body .eyebrow::before { content: "✦"; color: var(--adm-lime); }
.public-body .hero-lead {
  font-size: 18px;
  color: #ffffff;
  font-weight: 300;
  max-width: 560px;
  margin: 0 0 0.75em;
}
.public-body .hero-desc {
  font-size: 15px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}
.pub-hero .btn-primary {
  background: var(--adm-lime);
  color: var(--adm-green-dark);
  font-weight: 700;
}
.pub-hero .btn-primary:hover {
  background: #c8f54a;
  box-shadow: 0 8px 28px rgba(182, 240, 49, 0.35);
}
.pub-hero .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.pub-hero .btn-ghost:hover {
  border-color: var(--adm-lime);
  color: var(--adm-lime);
  background: rgba(255, 255, 255, 0.06);
}

.public-body .bib-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: 100%;
  max-width: 520px;
  text-align: center;
}
.public-body .countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.public-body .countdown .cd-box {
  background: none;
  border: none;
  border-radius: 0;
  text-align: center;
  padding: 0;
  min-width: 64px;
  backdrop-filter: none;
}
.public-body .countdown .cd-num {
  font-size: 42px;
  font-weight: 200;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}
.public-body .countdown .cd-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  font-weight: 500;
}
.public-body .countdown-lokasi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
}
.public-body .countdown-lokasi svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.9;
}
/* Stats */
.pub-stats {
  background: transparent;
  padding: 48px 0 56px;
  margin-top: 0;
  position: relative;
  z-index: 2;
}
.pub-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pub-stat-item {
  text-align: center;
  padding: 12px 16px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.pub-stat-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(40px, 5vw, 52px);
  line-height: 1;
  color: var(--adm-green-dark);
  font-weight: 200;
  letter-spacing: 0.02em;
}
.pub-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7cb518;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.pub-stat-item:hover .pub-stat-icon {
  transform: translateY(-2px);
}
.pub-stat-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.pub-stat-label {
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--adm-muted);
  font-weight: 600;
  margin: 10px 0 8px;
}
.pub-stat-item p { font-size: 14px; margin: 0; color: var(--adm-text-secondary); }

/* Landing page reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(var(--prox-x, 0px), var(--prox-y, 0px), 0);
}

/* Cursor proximity motion */
.pub-prox {
  --prox-x: 0px;
  --prox-y: 0px;
}
.pub-prox:not([data-reveal]),
.pub-prox.pub-prox-live,
[data-reveal].is-revealed {
  transform: translate3d(var(--prox-x, 0px), var(--prox-y, 0px), 0);
  will-change: transform;
}
.pub-prox:not([data-reveal]),
.pub-prox.pub-prox-live {
  transition: transform 0.18s ease-out;
  transition-delay: 0ms;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pub-prox:not([data-reveal]),
  .pub-prox.pub-prox-live,
  [data-reveal].is-revealed {
    transform: none;
    transition: none;
  }
}

/* Sections */
.public-body section { padding: 72px 0; }
.public-body .section-head { max-width: 680px; margin-bottom: 36px; }
.public-body .section-head-center { margin-inline: auto; text-align: center; }
.public-body .section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--adm-green);
}
.public-body .section-head h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-top: 8px;
  font-weight: 800;
}
.pub-text-link {
  color: var(--adm-green);
  font-weight: 700;
  font-size: 14px;
}
.pub-text-link:hover { color: var(--adm-green-dark); }

/* About */
.pub-about { background: transparent; border-block: 1px solid var(--adm-border); }
.pub-about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center; }
.pub-about-visual {
  position: relative;
  min-height: 320px;
  border-radius: var(--adm-radius);
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pub-about-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
}

/* Kategori cards — panel admin style */
/* Process timeline — vertical zigzag */
.pub-process {
  background: transparent;
  padding: 72px 0 56px;
}
.pub-process .section-lead {
  max-width: 520px;
  margin: 8px auto 0;
  color: var(--adm-text-secondary);
  font-size: 15px;
}

.ztimeline {
  list-style: none;
  margin: 48px auto 0;
  padding: 0;
  max-width: 920px;
  position: relative;
}
.ztimeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: #e5e7eb;
  z-index: 0;
}
.ztimeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right";
  align-items: center;
  column-gap: 56px;
  margin-bottom: 28px;
  position: relative;
}
.ztimeline-item:last-child { margin-bottom: 0; }

/* Node always centered on the spine + vertically middle of its card */
.ztimeline-axis {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.ztimeline-node {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  color: var(--adm-text);
  font-size: 15px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  pointer-events: auto;
}

.ztimeline-card {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 22px;
  padding: 22px 24px;
  position: relative;
  width: 100%;
}
.ztimeline-item.is-left .ztimeline-card { grid-area: left; }
.ztimeline-item.is-right .ztimeline-card { grid-area: right; }
.ztimeline-item.is-left .ztimeline-card::after,
.ztimeline-item.is-right .ztimeline-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1.5px;
  background: #e5e7eb;
  transform: translateY(-50%);
}
.ztimeline-item.is-left .ztimeline-card::after { right: -28px; }
.ztimeline-item.is-right .ztimeline-card::after { left: -28px; }

.ztimeline-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.ztimeline-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--adm-text);
  letter-spacing: -0.02em;
}
.ztimeline-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--adm-green-dark);
  background: linear-gradient(135deg, rgba(182, 240, 49, 0.55), rgba(26, 64, 52, 0.18));
  white-space: nowrap;
}
.ztimeline-item.is-registrasi .ztimeline-badge {
  background: linear-gradient(135deg, rgba(10, 31, 17, 0.12), rgba(182, 240, 49, 0.35));
}
.ztimeline-item.is-race_pack .ztimeline-badge {
  background: linear-gradient(135deg, rgba(26, 64, 52, 0.16), rgba(182, 240, 49, 0.45));
}
.ztimeline-item.is-hari_h .ztimeline-badge,
.ztimeline-item.is-accent .ztimeline-badge {
  background: linear-gradient(135deg, #b6f031, rgba(26, 64, 52, 0.22));
}

.ztimeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ztimeline-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--adm-text-secondary);
}
.ztimeline-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 31, 17, 0.18);
  color: var(--adm-green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  background: #fff;
}
.ztimeline-check svg { width: 11px; height: 11px; }

.ztimeline-item.is-accent .ztimeline-card {
  background: linear-gradient(165deg, rgba(182, 240, 49, 0.28) 0%, #fff 55%, rgba(26, 64, 52, 0.06) 100%);
  border-color: rgba(182, 240, 49, 0.35);
}
.ztimeline-item.is-accent .ztimeline-node {
  background: var(--adm-lime);
  border-color: rgba(10, 31, 17, 0.12);
  color: var(--adm-green-dark);
}

@media (max-width: 800px) {
  .ztimeline { margin-top: 36px; max-width: 100%; }
  .ztimeline::before { left: 21px; transform: none; }
  .ztimeline-item {
    grid-template-columns: 42px 1fr;
    grid-template-areas: "axis card";
    column-gap: 14px;
    margin-bottom: 18px;
  }
  .ztimeline-axis {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    grid-area: axis;
    align-self: start;
    pointer-events: auto;
  }
  .ztimeline-item.is-left .ztimeline-card,
  .ztimeline-item.is-right .ztimeline-card {
    grid-area: card;
  }
  .ztimeline-item.is-left .ztimeline-card::after,
  .ztimeline-item.is-right .ztimeline-card::after {
    display: none;
  }
  .ztimeline-card { padding: 18px 18px; border-radius: 18px; }
  .ztimeline-card h3 { font-size: 17px; }
  .ztimeline-node { width: 42px; height: 42px; }
}

.pub-kategori { background: transparent; }
.public-body .kategori-grid {
  display: grid;
  gap: 20px;
  justify-content: center;
}

/* 1 kategori — card lebar, foto di kanan */
.public-body .kategori-grid[data-count="1"] {
  grid-template-columns: minmax(0, 640px);
}
.public-body .kategori-grid[data-count="1"] .kategori-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.9fr);
  align-items: stretch;
  max-width: 640px;
  justify-self: center;
}
.public-body .kategori-grid[data-count="1"] .kategori-card--plain {
  grid-template-columns: 1fr;
  max-width: 420px;
}
.public-body .kategori-grid[data-count="1"] .kategori-card-media {
  min-height: 100%;
}

/* 2+ kategori — bersusun ke samping, foto di atas */
.public-body .kategori-grid:not([data-count="1"]) {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1040px;
  margin-inline: auto;
  width: 100%;
}
.public-body .kategori-grid:not([data-count="1"]) .kategori-card {
  display: flex;
  flex-direction: column;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}
.public-body .kategori-grid:not([data-count="1"]) .kategori-card-media {
  order: -1;
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-height: 220px;
  width: 100%;
  flex-shrink: 0;
}

.public-body .kategori-card {
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--adm-shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .public-body .kategori-card:hover {
    border-color: rgba(26, 64, 52, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--adm-shadow-lg);
  }
  .public-body .kategori-card:hover .kategori-card-media img {
    transform: scale(1.04);
  }
}
.public-body .kategori-card-media {
  overflow: hidden;
  background: var(--adm-green-dark);
}
.public-body .kategori-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.public-body .kategori-card-body {
  padding: 24px 22px 24px 24px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.public-body .kategori-card .jarak {
  font-size: 40px;
  color: var(--adm-green-dark);
  line-height: 1;
  font-weight: 800;
}
.public-body .kategori-card .jarak span { font-size: 16px; color: var(--adm-muted); font-weight: 600; }
.public-body .kategori-card .nama {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--adm-text-secondary);
  margin: 8px 0 12px;
}
.public-body .kategori-card .harga {
  font-size: 20px;
  font-weight: 800;
  color: var(--adm-green-dark);
  margin-bottom: 8px;
}
.public-body .kategori-card .kuota { font-size: 12px; color: var(--adm-muted); margin-bottom: 14px; }
.public-body .kategori-benefits {
  margin: 0 0 18px;
  padding-top: 14px;
  border-top: 1px solid var(--adm-border);
}
.public-body .kategori-benefits-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--adm-muted);
  margin-bottom: 10px;
}
.public-body .kategori-benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.public-body .kategori-benefits li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--adm-text-secondary);
  line-height: 1.35;
}
.public-body .kategori-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--adm-lime-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a4034' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.public-body .kategori-card-body .btn { margin-top: auto; }
.public-body .progress {
  height: 6px;
  background: var(--adm-bg);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}
.public-body .progress > div { height: 100%; background: var(--adm-lime); border-radius: 999px; }

/* Info sections */
.pub-info-section { padding: 72px 0; background: transparent; }
.pub-info-section-alt { background: transparent; }
.pub-info-card {
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius);
  padding: 24px 28px;
  line-height: 1.8;
  color: var(--adm-text-secondary);
  white-space: pre-line;
  box-shadow: var(--adm-shadow);
}
.pub-info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.pub-info-visual img {
  width: 100%;
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
  box-shadow: var(--adm-shadow);
}

/* Sponsor */
.pub-sponsor { background: transparent; border-top: 1px solid var(--adm-border); }
.public-body .sponsor-tier-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--adm-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.public-body .sponsor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.public-body .sponsor-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  min-height: 0;
  opacity: 0.9;
  filter: none;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .public-body .sponsor-logo {
    filter: grayscale(1);
    opacity: 0.7;
  }
  .public-body .sponsor-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: none;
  }
}
@media (hover: none) {
  .public-body .sponsor-logo {
    filter: none;
    opacity: 0.9;
  }
}
.public-body .sponsor-logo img { max-height: 52px; max-width: 160px; object-fit: contain; }

/* Footer — background full-bleed, konten sejajar navbar */
.pub-footer {
  width: 100%;
  margin: 0;
  margin-top: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: var(--adm-green-dark);
  color: rgba(255, 255, 255, 0.78);
  flex-shrink: 0;
}
.public-body .pub-footer-main {
  padding: 64px 24px 36px;
}
.pub-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.pub-footer-brand p { font-size: 14px; max-width: 320px; color: rgba(255, 255, 255, 0.65); }
.pub-footer-note { font-size: 13px !important; margin-top: 12px !important; }
.pub-footer .pub-brand-text { color: #fff; }
.pub-footer .pub-brand-text span { color: var(--adm-lime); }
.pub-footer .pub-brand-mark { background: rgba(255, 255, 255, 0.1); color: var(--adm-lime); }
.pub-footer .pub-brand-logo {
  filter: brightness(0) invert(1);
}
.pub-footer h4 {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--adm-lime);
  margin-bottom: 14px;
  font-weight: 700;
}
.pub-footer ul { list-style: none; padding: 0; margin: 0; }
.pub-footer li { margin-bottom: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.65); }
.pub-footer li a:hover { color: var(--adm-lime); }
.pub-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.45;
}
.pub-footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--adm-lime);
}
.pub-footer-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.pub-footer-contact a { color: rgba(255, 255, 255, 0.65); }
.pub-footer-contact a:hover { color: var(--adm-lime); }
.pub-footer-copy {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Inner pages */
.pub-page-hero {
  padding: 64px 0 40px;
  background: transparent;
  border-bottom: 1px solid var(--adm-border);
}
.pub-page-hero-dark {
  background: var(--adm-green-dark);
  border-bottom: none;
  color: #fff;
  text-align: center;
  padding: 72px 0 56px;
}
.pub-page-hero-compact { padding: 56px 0 40px; }
.pub-page-hero-inner { max-width: 720px; }
.pub-page-hero-dark .pub-page-hero-inner {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pub-page-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
}
.pub-page-hero-dark h1 { color: #fff; margin-bottom: 12px; }
.pub-page-hero-dark p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 520px;
}
.pub-page-hero-dark .eyebrow { margin-bottom: 16px; }
.pub-error-page { max-width: 640px; margin-inline: auto; text-align: center; }
.pub-error-page .pub-error-cta,
.pub-error-page .btn { margin-top: 20px; }

/* Register — solo card (no nav/footer) */
.register-solo {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(182, 240, 49, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(26, 64, 52, 0.08), transparent 50%),
    var(--adm-bg);
}
.register-solo-page {
  min-height: 100vh;
  padding: 28px 16px 48px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.register-solo-wrap {
  width: 100%;
  max-width: 720px;
}
.register-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--adm-green-dark);
  text-decoration: none;
}
.register-back svg {
  width: 18px;
  height: 18px;
}
.register-back:hover { color: var(--adm-green); }
.register-card {
  background: #fff;
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow-lg);
  overflow: hidden;
}
.register-card-head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--adm-border);
  background: linear-gradient(180deg, rgba(182, 240, 49, 0.08), transparent);
}
.register-card-head .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--adm-green);
  margin-bottom: 8px;
}
.register-card-head h1 {
  font-size: clamp(22px, 4vw, 28px);
  margin: 0 0 8px;
  color: var(--adm-text);
}
.register-card-head p {
  margin: 0;
  font-size: 14px;
  color: var(--adm-text-secondary);
}
.register-card-body {
  padding: 8px 28px 28px;
}
.register-card .alert {
  margin: 20px 28px 0;
}
.register-solo .reg-wizard { padding-top: 8px; }

/* Forms — register (legacy wrappers) */
.public-body .form-page { padding: 48px 0 88px; background: transparent; }
.public-body .form-wrap { max-width: 760px; margin: 0 auto; }
.public-body .form-shell { background: transparent; border: none; padding: 0; box-shadow: none; }
.public-body .form-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.reg-form { display: flex; flex-direction: column; gap: 0; }

/* Wizard / onboarding */
.reg-wizard .reg-section {
  border-bottom: none;
  padding: 8px 0 8px;
}
.reg-wizard .reg-step-panel[hidden] { display: none !important; }
.reg-progress {
  margin: 8px 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--adm-border);
}
.reg-progress-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(26, 64, 52, 0.1);
  overflow: hidden;
  margin-bottom: 14px;
}
.reg-progress-fill {
  display: block;
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, var(--adm-green-dark), var(--adm-green));
  border-radius: inherit;
  transition: width 0.35s ease;
}
.reg-progress-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(var(--reg-steps, 6), minmax(0, 1fr));
  gap: 4px;
}
.reg-kategori-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius-sm);
  background: var(--adm-lime-soft);
  font-size: 13px;
}
.reg-kategori-chip .chip-jarak {
  font-weight: 800;
  color: var(--adm-green-dark);
}
.reg-kategori-chip .chip-nama {
  font-weight: 600;
  color: var(--adm-text-secondary);
}
.reg-kategori-chip .chip-harga {
  font-weight: 800;
  color: var(--adm-green-dark);
  margin-left: auto;
}
.reg-kategori-chip .chip-warn {
  width: 100%;
  color: #b91c1c;
  font-weight: 600;
  font-size: 12px;
}
.reg-progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: var(--adm-muted);
}
.reg-progress-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  background: #fff;
  border: 1.5px solid var(--adm-border);
  color: var(--adm-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.reg-progress-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  display: none;
}
.reg-progress-item.is-active .reg-progress-dot,
.reg-progress-item.is-done .reg-progress-dot {
  background: var(--adm-green-dark);
  border-color: var(--adm-green-dark);
  color: var(--adm-lime);
}
.reg-progress-item.is-active { color: var(--adm-green-dark); }
.reg-progress-item.is-active .reg-progress-label { display: block; }
.reg-progress-meta {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--adm-text-secondary);
}
.reg-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--adm-border);
}
.reg-nav .btn { flex: 1; min-height: 48px; }
.reg-nav .btn[hidden] { display: none !important; }
.reg-wizard .reg-submit-note {
  margin-top: 12px;
  text-align: center;
}
.reg-wizard .reg-submit-note[hidden] { display: none !important; }

.reg-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--adm-border);
}
.reg-section:first-child { padding-top: 0; }
.reg-section:last-of-type { border-bottom: none; }
.reg-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.reg-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--adm-green-dark);
  color: var(--adm-lime);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.reg-section-head h2 {
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--adm-text);
  font-weight: 800;
}
.reg-section-head h2 span {
  color: var(--adm-muted);
  font-weight: 600;
  font-size: 14px;
}
.reg-section-head p {
  margin: 0;
  font-size: 14px;
  color: var(--adm-muted);
}

.public-body .reg-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.public-body .reg-form input[type="file"] {
  padding: 14px 16px;
  background: #fff;
  border-style: dashed;
}

.public-body .kategori-pick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 8px;
}
.public-body .kategori-pick label {
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius-sm);
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.public-body .kategori-pick label:hover:not(.is-disabled) {
  border-color: rgba(26, 64, 52, 0.35);
  transform: translateY(-2px);
}
.public-body .kategori-pick input { display: none; }
.public-body .kategori-pick .opt-selected {
  border-color: var(--adm-green);
  background: var(--adm-lime-soft);
  box-shadow: inset 0 0 0 1px var(--adm-green);
}
.public-body .kategori-pick .is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.public-body .kategori-pick .jarak {
  font-size: 32px;
  font-weight: 800;
  color: var(--adm-green-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.public-body .kategori-pick .jarak small {
  font-size: 12px;
  margin-left: 2px;
  color: var(--adm-muted);
  font-weight: 700;
}
.public-body .kategori-pick .nama {
  font-size: 13px;
  font-weight: 600;
  display: block;
  color: var(--adm-text-secondary);
  margin-top: 4px;
}
.public-body .kategori-pick .harga {
  font-size: 16px;
  font-weight: 800;
  display: block;
  margin-top: 6px;
  color: var(--adm-green-dark);
}
.public-body .kategori-pick .kuota {
  font-size: 11px;
  font-weight: 600;
  color: var(--adm-muted);
  margin-top: 2px;
}
.public-body .bank-box + .bank-box { margin-top: 12px; }
.public-body .bank-box {
  background: transparent;
  border-top: 1px solid var(--adm-border);
  border-bottom: 1px solid var(--adm-border);
  border-radius: 0;
  padding: 4px 0;
  margin-bottom: 20px;
}
.public-body .bank-box .baris {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--adm-border);
  font-size: 14px;
  flex-wrap: wrap;
}
.public-body .bank-box .baris:last-child { border-bottom: none; }
.public-body .bank-box .label { color: var(--adm-muted); font-weight: 500; }
.public-body .bank-box .val {
  font-weight: 700;
  color: var(--adm-text);
  text-align: right;
  min-width: 0;
  word-break: break-word;
}

.file-hint-kept { color: var(--adm-green); font-weight: 600; }
.file-hint-error { color: #b91c1c; font-weight: 600; }

.reg-submit {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reg-submit .btn-lime {
  min-height: 52px;
  font-size: 15px;
}
.reg-submit-note {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--adm-muted);
}

.public-body .form-group.is-invalid > label:first-child { color: #b91c1c; }
.public-body .form-group.is-invalid input:not([type="checkbox"]):not([type="radio"]),
.public-body .form-group.is-invalid select,
.public-body .form-group.is-invalid textarea {
  border-color: #dc2626;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15);
}
.public-body .form-group.is-invalid .kategori-pick label {
  border-color: #dc2626;
  background: #fef2f2;
}
.public-body .field-error-msg {
  display: block;
  font-size: 12px;
  color: #dc2626;
  margin-top: 6px;
  font-weight: 500;
  line-height: 1.4;
}

.public-body .alert-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}
.public-body .alert-error ul {
  margin: 8px 0 0 18px;
  padding: 0;
}
.public-body .alert-success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.public-body .status-pending {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}
.public-body .status-verified {
  background: var(--adm-lime-soft);
  color: var(--adm-green);
  border: 1px solid rgba(182, 240, 49, 0.45);
}
.public-body .status-rejected {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Success — premium ticket (no nav/footer) */
.success-ticket-body {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(182, 240, 49, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(10, 31, 17, 0.08), transparent 50%),
    #f4f6f4;
}
.success-ticket-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 40px;
}
.success-ticket-stage {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: ticket-in 0.55s ease both;
}
@keyframes ticket-in {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
.event-ticket {
  display: grid;
  grid-template-columns: 220px 18px 1fr;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 60px rgba(10, 31, 17, 0.14),
    0 4px 16px rgba(10, 31, 17, 0.06);
  border: 1px solid rgba(10, 31, 17, 0.08);
}
.event-ticket-stub {
  background: linear-gradient(165deg, #163528 0%, #0a1f11 55%, #07160d 100%);
  color: #fff;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.event-ticket-stub::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(182, 240, 49, 0.18), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(182, 240, 49, 0.1), transparent 35%);
  pointer-events: none;
}
.event-ticket-stub > * { position: relative; z-index: 1; }
.event-ticket-logo {
  display: block;
  max-height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.event-ticket-logo--stub {
  max-height: 36px;
  max-width: 120px;
  filter: brightness(0) invert(1);
}
.event-ticket-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(182, 240, 49, 0.18);
  color: var(--adm-lime);
  font-size: 18px;
}
.event-ticket-stub-meta span,
.event-ticket-stub-code span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.event-ticket-stub-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}
.event-ticket-stub-code strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--adm-lime);
  white-space: nowrap;
}
.event-ticket-perforation {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  border-left: 1px dashed rgba(10, 31, 17, 0.18);
  border-right: 1px dashed rgba(10, 31, 17, 0.18);
  background: #fff;
}
.event-ticket-perforation::before,
.event-ticket-perforation::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f4f6f4;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(10, 31, 17, 0.06);
}
.event-ticket-perforation::before { top: -11px; }
.event-ticket-perforation::after { bottom: -11px; }
.event-ticket-perforation span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(10, 31, 17, 0.12);
}
.event-ticket-body {
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(182, 240, 49, 0.06), transparent 80px),
    #fff;
}
.event-ticket-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.event-ticket-kicker {
  margin: 10px 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--adm-green);
}
.event-ticket-head h1 {
  margin: 0;
  font-size: clamp(22px, 3.5vw, 28px);
  line-height: 1.15;
  color: var(--adm-green-dark);
}
.event-ticket-code-block {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px dashed rgba(26, 64, 52, 0.35);
  background: rgba(182, 240, 49, 0.08);
}
.event-ticket-code-block span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--adm-muted);
  margin-bottom: 4px;
}
.event-ticket-code-block strong {
  display: block;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--adm-green-dark);
  word-break: break-all;
}
.event-ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 0;
}
.event-ticket-grid dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--adm-muted);
  margin-bottom: 4px;
}
.event-ticket-grid dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--adm-text);
}
.event-ticket-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--adm-text-secondary);
  padding-top: 4px;
  border-top: 1px solid var(--adm-border);
}
.success-ticket-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.success-ticket-actions .btn { min-width: 200px; }
.event-ticket--empty {
  display: block;
  padding: 40px 28px;
  text-align: center;
}
.event-ticket--empty h1 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--adm-green-dark);
}
.event-ticket--empty p {
  margin: 0;
  color: var(--adm-text-secondary);
}

.reg-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  cursor: pointer;
  color: var(--adm-text);
  font-weight: 500;
  user-select: none;
  line-height: 1.4;
}
.reg-checkbox-label input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border: 2px solid #9ca3af;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  box-shadow: none;
  display: inline-grid;
  place-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.reg-checkbox-label input[type="checkbox"]::before {
  content: '';
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 0.12s ease;
  background-color: var(--adm-green-dark);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}
.reg-checkbox-label input[type="checkbox"]:checked {
  background: var(--adm-lime);
  border-color: var(--adm-green-dark);
}
.reg-checkbox-label input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.reg-checkbox-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--adm-lime);
  outline-offset: 2px;
  box-shadow: none;
}
.reg-checkbox-label:hover input[type="checkbox"]:not(:checked) {
  border-color: var(--adm-green);
}

/* Responsive */
@media (max-width: 1024px) {
  .public-body { scroll-padding-top: 88px; }
  #about, #timeline, #kategori, #sponsor, #kontak { scroll-margin-top: 88px; }

  .pub-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
  }
  .pub-nav-menu {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 24px;
    gap: 12px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
    border-bottom: 1px solid var(--adm-border);
    box-shadow: var(--adm-shadow-lg);
    flex: none;
  }
  .pub-nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .pub-nav-links {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    max-width: 320px;
  }
  .pub-nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    width: 100%;
  }
  .pub-nav-cta {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    text-align: center;
  }
  .pub-about-grid,
  .pub-stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .public-body .kategori-grid,
  .public-body .kategori-grid[data-count="1"],
  .public-body .kategori-grid:not([data-count="1"]) {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-inline: auto;
  }
  .public-body .kategori-grid[data-count="1"] .kategori-card,
  .public-body .kategori-grid:not([data-count="1"]) .kategori-card {
    display: flex;
    flex-direction: column;
    max-width: none;
  }
  .public-body .kategori-card-media,
  .public-body .kategori-grid[data-count="1"] .kategori-card-media,
  .public-body .kategori-grid:not([data-count="1"]) .kategori-card-media {
    order: -1;
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 220px;
  }
  .public-body .kategori-card-body {
    padding: 22px;
  }
  .pub-footer-grid,
  .pub-info-split {
    grid-template-columns: 1fr;
  }
  .pub-about-visual { min-height: 280px; }
  .public-body .kategori-pick { grid-template-columns: 1fr; }
  .event-ticket { grid-template-columns: 1fr; }
  .event-ticket-stub {
    flex-direction: row;
    align-items: center;
    padding: 18px 20px;
    gap: 16px;
  }
  .event-ticket-stub-brand { flex-shrink: 0; }
  .event-ticket-stub-meta { flex: 1; min-width: 0; }
  .event-ticket-stub-code { text-align: right; }
  .event-ticket-perforation {
    height: 18px;
    flex-direction: row;
    border-left: none;
    border-right: none;
    border-top: 1px dashed rgba(10, 31, 17, 0.18);
    border-bottom: 1px dashed rgba(10, 31, 17, 0.18);
  }
  .event-ticket-perforation::before,
  .event-ticket-perforation::after {
    top: 50%;
    transform: translateY(-50%);
  }
  .event-ticket-perforation::before { left: -11px; }
  .event-ticket-perforation::after { left: auto; right: -11px; }
  .event-ticket-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .public-body .container { padding: 0 16px; }
  .public-body section { padding: 56px 0; }
  .pub-hero { min-height: auto; padding: 72px 0 48px; }
  .pub-hero-content { gap: 24px; }
  .pub-hero-copy h1 { font-size: clamp(30px, 9vw, 40px); }
  .hero-cta { width: 100%; max-width: 360px; }
  .hero-cta .btn { width: 100%; }
  .public-body .countdown { gap: 12px 16px; }
  .public-body .countdown .cd-box { min-width: 56px; }
  .public-body .countdown .cd-num { font-size: 32px; }
  .public-body .countdown-lokasi {
    max-width: 100%;
    padding: 0 8px;
    text-align: center;
  }
  .pub-stats { padding-top: 36px; }
  .pub-stat-num { gap: 8px; font-size: clamp(32px, 10vw, 44px); }
  .ztimeline-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ztimeline-badge { white-space: normal; }
  .reg-section { padding: 28px 0; }
  .register-solo-page { padding: 20px 12px 36px; }
  .register-card-head { padding: 22px 18px 16px; }
  .register-card-body { padding: 4px 18px 22px; }
  .register-card .alert { margin: 16px 18px 0; }
  .reg-progress-label { display: none !important; }
  .reg-nav { flex-direction: column-reverse; }
  .reg-nav .btn { width: 100%; min-height: 48px; }
  .reg-progress-dot { width: 26px; height: 26px; font-size: 11px; }
  .reg-kategori-chip .chip-harga {
    margin-left: 0;
    width: 100%;
  }
  .public-body .bank-box .baris {
    flex-direction: column;
    gap: 4px;
  }
  .public-body .bank-box .val { text-align: left; }
  .success-ticket-actions .btn { width: 100%; min-width: 0; }
  .event-ticket-body { padding: 22px 18px 20px; }
  .event-ticket-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-ticket-stub {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .event-ticket-stub-code {
    text-align: left;
    flex: 1 1 100%;
  }
  .event-ticket-stub-code strong {
    white-space: normal;
    word-break: break-all;
  }
  .public-body .pub-footer-main { padding: 48px 16px 28px; }
  .pub-prox,
  .pub-prox.pub-prox-live,
  [data-reveal].is-revealed {
    --prox-x: 0px !important;
    --prox-y: 0px !important;
  }
}

@media (hover: none) {
  .pub-prox,
  .pub-prox.pub-prox-live {
    transform: none !important;
  }
}
