

.wzn {

  --wzn-brand: var(--wz-brand);
  --wzn-brand-deep: var(--wz-pill-text, var(--wz-btn-bg-hover));
  --wzn-blush: var(--wz-pill-bg, var(--wz-tint));

  --wzn-hover: rgba(218, 51, 107, 0.15);

  --wzn-p: 0;

  --wzn-pad: 12px;    --wzn-pad-d: 6px;
  --wzn-h: 66px;      --wzn-h-d: 18px;
  --wzn-logo: 156px;  --wzn-logo-d: 30px;
  --wzn-lpad: 10px;   --wzn-lpad-d: 4px;
  --wzn-cta-h: 44px;  --wzn-cta-h-d: 8px;
  --wzn-cta-py: 11px; --wzn-cta-py-d: 3px;
  --wzn-cta-px: 22px; --wzn-cta-px-d: 4px;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: calc(var(--wzn-pad) - var(--wzn-pad-d) * var(--wzn-p)) 16px;
  font-family: var(--wz-ui-font);

  background: transparent;
  pointer-events: none;
}

html {
  overflow-x: clip;
}

.wzn-in {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;

  isolation: isolate;
  max-width: 1200px;
  height: calc(var(--wzn-h) - var(--wzn-h-d) * var(--wzn-p));
  margin: 0 auto;
  padding: 0 12px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.62),
    rgba(253, 238, 244, 0.62)
  );
  box-shadow: 0 10px 30px rgba(218, 51, 107, 0.12);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  pointer-events: auto;
}

.wzn-in::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.93),
    rgba(253, 238, 244, 0.93)
  );
  border: 1px solid rgba(218, 51, 107, 0.14);
  box-shadow: 0 12px 34px rgba(218, 51, 107, 0.2);
  opacity: var(--wzn-p);
  pointer-events: none;
}

.wzn-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.wzn-logo img {
  display: block;
  width: calc(var(--wzn-logo) - var(--wzn-logo-d) * var(--wzn-p));
  height: auto;
}

.wzn-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.wzn-item { position: relative; }

.wzn-link {
  position: relative;

  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: calc(var(--wzn-lpad) - var(--wzn-lpad-d) * var(--wzn-p)) 15px;

  color: var(--wz-ink);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.wzn-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: var(--wzn-hover);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.2s ease, transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.wzn-link:hover,
.wzn-item:focus-within > .wzn-link,
.wzn-item.is-open > .wzn-link { color: var(--wzn-brand-deep); }

.wzn-link:hover::before,
.wzn-item:focus-within > .wzn-link::before,
.wzn-item.is-open > .wzn-link::before {
  opacity: 1;
  transform: scale(1);
}

.wzn-link.is-active { color: var(--wzn-brand-deep); }

.wzn-link-chev {
  width: 13px;
  height: 13px;
  transition: transform 0.25s ease;
}

.wzn-item:hover .wzn-link-chev,
.wzn-item.is-open .wzn-link-chev { transform: rotate(180deg); }

.wzn .wzn-link,
.wzn .wzn-link:hover,
.wzn .wzn-link:focus,
.wzn .wzn-link:active {
  border: 0;
  background: none;
  box-shadow: none;
}

.wzn-sub,
.wzn-lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 5;
  width: 236px;
  padding: 6px;
  border: 1px solid rgba(218, 51, 107, 0.12);
  border-radius: 16px;
  background: rgba(255, 252, 253, 0.98);
  box-shadow: 0 16px 40px rgba(218, 51, 107, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.2s ease;
}

.wzn-sub::before,
.wzn-lang__menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.wzn-item:hover .wzn-sub,
.wzn-item:focus-within .wzn-sub,
.wzn-item.is-open .wzn-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wzn-sub a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--wz-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease;
}

.wzn-sub a small {
  display: block;
  margin-top: 2px;
  color: #6b6b70;
  font-size: 12.5px;
  font-weight: 600;
  transition: color 0.16s ease;
}

.wzn-sub a:hover,
.wzn-sub a:focus-visible {
  background: var(--wzn-blush);
  color: var(--wzn-brand-deep);
}

.wzn-sub a:hover small,
.wzn-sub a:focus-visible small { color: var(--wzn-brand-deep); }

.wzn-act {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.wzn-masuk {
  position: relative;
  isolation: isolate;
  padding: calc(var(--wzn-lpad) - var(--wzn-lpad-d) * var(--wzn-p)) 15px;
  color: var(--wz-ink);
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.wzn-masuk::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: var(--wzn-hover);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.2s ease, transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.wzn-masuk:hover { color: var(--wzn-brand-deep); }

.wzn-masuk:hover::before {
  opacity: 1;
  transform: scale(1);
}

.wzn-cta.wzn-cta {
  min-height: calc(var(--wzn-cta-h) - var(--wzn-cta-h-d) * var(--wzn-p));
  padding: calc(var(--wzn-cta-py) - var(--wzn-cta-py-d) * var(--wzn-p))
    calc(var(--wzn-cta-px) - var(--wzn-cta-px-d) * var(--wzn-p));
  font-size: 15px;
  white-space: nowrap;
}

.wzn-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(218, 51, 107, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--wzn-brand-deep);
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.wzn-burger__i {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.wzn-burger__i i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.16s ease;
}

.wzn-burger__i i:nth-child(1) { top: 0; }
.wzn-burger__i i:nth-child(2) { top: 5.9px; }
.wzn-burger__i i:nth-child(3) { top: 11.8px; }

.wzn-burger[aria-expanded="true"] {
  border-color: transparent;
  background: var(--wz-btn-bg, #da336b);
  color: #fff;
}

.wzn-burger[aria-expanded="true"] .wzn-burger__i i:nth-child(1) {
  transform: translateY(5.9px) rotate(45deg);
}

.wzn-burger[aria-expanded="true"] .wzn-burger__i i:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.wzn-burger[aria-expanded="true"] .wzn-burger__i i:nth-child(3) {
  transform: translateY(-5.9px) rotate(-45deg);
}

.wzn-sheet {
  display: none;
  max-width: 1200px;
  margin: 10px auto 0;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transform-origin: 50% 0;

  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.wzn-sheet.is-tampil {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.wzn-sheet-in > * {
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 0.2s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.wzn-sheet.is-tampil .wzn-sheet-in > * {
  opacity: 1;
  transform: none;
}

.wzn-sheet.is-tampil .wzn-sheet-in > :nth-child(1) { transition-delay: 0.04s; }
.wzn-sheet.is-tampil .wzn-sheet-in > :nth-child(2) { transition-delay: 0.06s; }
.wzn-sheet.is-tampil .wzn-sheet-in > :nth-child(3) { transition-delay: 0.08s; }
.wzn-sheet.is-tampil .wzn-sheet-in > :nth-child(4) { transition-delay: 0.1s; }
.wzn-sheet.is-tampil .wzn-sheet-in > :nth-child(5) { transition-delay: 0.12s; }
.wzn-sheet.is-tampil .wzn-sheet-in > :nth-child(6) { transition-delay: 0.14s; }
.wzn-sheet.is-tampil .wzn-sheet-in > :nth-child(7) { transition-delay: 0.16s; }
.wzn-sheet.is-tampil .wzn-sheet-in > :nth-child(8) { transition-delay: 0.18s; }
.wzn-sheet.is-tampil .wzn-sheet-in > :nth-child(n + 9) { transition-delay: 0.2s; }

.wzn-sheet[hidden] { display: none; }

.wzn-sheet-in {
  padding: 10px;
  border: 1px solid rgba(218, 51, 107, 0.14);
  border-radius: 24px;
  background: rgba(255, 252, 253, 0.98);
  box-shadow: 0 16px 38px rgba(218, 51, 107, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wzn-sheet a,
.wzn-sheet-tog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--wz-ink);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.wzn-sheet a:active,
.wzn-sheet-tog:active { background: rgba(218, 51, 107, 0.08); }

.wzn-sheet a.is-active,
.wzn-sheet-tog.is-active {
  background: var(--wzn-blush);
  color: var(--wzn-brand-deep);
}

.wzn-sheet a:focus-visible,
.wzn-sheet-tog:focus-visible {
  outline: 2px solid var(--wz-brand, #da336b);
  outline-offset: -2px;
}

.wzn-sheet-tog {
  width: 100%;
  margin: 0;
  border: 0;
  background: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.wzn-sheet .wzn-sheet-tog:hover,
.wzn-sheet .wzn-sheet-tog:focus {
  background-color: transparent;
  color: var(--wz-ink);
}

.wzn-sheet .wzn-sheet-tog:active { background-color: rgba(218, 51, 107, 0.08); }

.wzn-sheet .wzn-sheet-tog.is-active,
.wzn-sheet .wzn-sheet-tog.is-active:hover,
.wzn-sheet .wzn-sheet-tog.is-active:focus {
  background-color: var(--wzn-blush);
  color: var(--wzn-brand-deep);
}

.wzn-sheet a,
.wzn-sheet-tog { -webkit-tap-highlight-color: transparent; }

.wzn-sheet-chev {
  flex: none;
  width: 17px;
  height: 17px;
  opacity: .45;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.16s ease;
}

.wzn-sheet-akor.is-open .wzn-sheet-chev { transform: rotate(180deg); opacity: .7; }

.wzn-sheet-subs {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.28s;
}

.wzn-sheet-akor.is-open .wzn-sheet-subs {
  grid-template-rows: 1fr;
  visibility: visible;
  transition-delay: 0s, 0s;
}

.wzn-sheet-subs__in {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.18s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.wzn-sheet-akor.is-open .wzn-sheet-subs__in {
  opacity: 1;
  transform: none;
}

.wzn-sheet-subs__in > .wzn-sheet-sub:first-child { margin-top: 2px; }

.wzn-sheet .wzn-sheet-sub {
  margin-left: 14px;
  padding-left: 16px;
  font-weight: 600;
}

.wzn-sheet .wzn-sheet-sub::after {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 2px;
  border-radius: 2px;
  background: rgba(218, 51, 107, 0.22);
}

.wzn-sheet .wzn-sheet-sub.is-active::after { background: var(--wzn-brand-deep); }

.wzn-sheet .wzn-sheet-luar { font-weight: 600; }

a:not(.wzn-sheet-luar) + .wzn-sheet-luar {
  margin-top: 13px;
}

a:not(.wzn-sheet-luar) + .wzn-sheet-luar::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 14px;
  left: 14px;
  height: 1px;
  background: rgba(218, 51, 107, 0.13);
}

.wzn-sheet-luar svg {
  width: 14px;
  height: 14px;
  opacity: 0.4;
}

.wzn-tirai {
  position: fixed;
  inset: 0;
  pointer-events: auto;
  background: rgba(28, 12, 20, .38);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.wzn-tirai.is-tampil { opacity: 1; }

.wzn-tirai[hidden] { display: none; }

@media (min-width: 981px) {
  .wzn-tirai { display: none; }
}

.wzn-terkunci { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .wzn-tirai { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.wzn a:focus-visible,
.wzn button:focus-visible {
  outline: 2px solid var(--wzn-brand);
  outline-offset: 2px;
  border-radius: 999px;
}

@media (max-width: 1150px) {
  .wzn {
    --wzn-logo: 146px;
    --wzn-logo-d: 24px;
  }

  .wzn-in { gap: 10px; padding: 0 10px 0 18px; }

  .wzn-link,
  .wzn-masuk {
    padding-inline: 10px;
    font-size: 14.5px;
  }
}

@media (max-width: 980px) {

  .wzn {

    --wzn-pad: 18px;    --wzn-pad-d: 0px;
    --wzn-h: 60px;      --wzn-h-d: 8px;
    --wzn-logo: 136px;  --wzn-logo-d: 0px;
    --wzn-cta-h: 40px;  --wzn-cta-h-d: 6px;
    --wzn-cta-py: 10px; --wzn-cta-py-d: 2px;
    --wzn-cta-px: 18px; --wzn-cta-px-d: 3px;
  }

  .wzn {
    padding-top: calc(
      var(--wzn-pad) - var(--wzn-pad-d) * var(--wzn-p) +
      env(safe-area-inset-top, 0px)
    );
  }

  .wzn-in { gap: 10px; padding: 0 8px 0 16px; }

  .wzn-nav,
  .wzn-masuk,

  .wzn-act .wzn-lang { display: none; }

  .wzn-act { margin-left: auto; }

  .wzn-burger { display: inline-flex; }

  .wzn-cta.wzn-cta { font-size: 14.5px; }

  .wzn-sheet { display: block; }
  .wzn-sheet[hidden] { display: none; }
}

@media (max-width: 380px) {
  .wzn {
    --wzn-pad: 16px;    --wzn-pad-d: 0px;
    --wzn-logo: 114px;  --wzn-logo-d: 0px;
    --wzn-cta-px: 14px; --wzn-cta-px-d: 2px;
  }

  .wzn-in { padding: 0 6px 0 12px; gap: 8px; }
  .wzn-cta.wzn-cta { font-size: 14px; }
}

body .wz-rv { padding-top: 114px; }

@media (max-width: 980px) {
  body .wz-rv { padding-top: 108px; }
}

@media (max-width: 640px) {
  body .wz-rv { padding-top: 94px; }
}

body .wz-lg,
body .wz-ts,
body .wz-af,
body .wz-404 { padding-top: 118px; }

.wzn-lang {
  position: relative;
  display: inline-flex;
  flex: none;
}

.wzn-lang__tog {
  display: inline-flex;
  align-items: center;

  gap: calc(6px - 1px * var(--wzn-p));
  min-height: calc(36px - 3px * var(--wzn-p));
  padding: 0 calc(11px - 2px * var(--wzn-p));
  border: 1px solid var(--wz-line-warm);
  border-radius: 999px;
  background: transparent;
  font-family: var(--wz-ui-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--wz-ink);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.wzn-lang__globe {
  width: calc(17px - 1px * var(--wzn-p));
  height: calc(17px - 1px * var(--wzn-p));
  flex: none;

  opacity: .72;
}

.wzn-lang__chev {
  width: 12px;
  height: 12px;
  flex: none;
  opacity: .55;
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.18s ease;
}

.wzn-lang__tog.wzn-lang__tog:hover,
.wzn-lang:not(.wzn-lang--js):focus-within .wzn-lang__tog,
.wzn-lang.is-open .wzn-lang__tog {
  background: var(--wzn-hover);
  border-color: transparent;
  color: var(--wzn-brand-deep);
}

.wzn-lang:hover .wzn-lang__chev,
.wzn-lang:not(.wzn-lang--js):focus-within .wzn-lang__chev,
.wzn-lang.is-open .wzn-lang__chev {
  transform: rotate(180deg);
  opacity: 1;
}

.wzn-lang__tog:focus-visible {
  outline: 2px solid var(--wz-brand);
  outline-offset: 2px;
}

.wzn-lang__menu {
  left: auto;
  right: 0;
  width: 178px;
}

.wzn-lang:hover .wzn-lang__menu,
.wzn-lang:not(.wzn-lang--js):focus-within .wzn-lang__menu,
.wzn-lang.is-open .wzn-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wzn-lang__opt {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font-family: var(--wz-ui-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  color: var(--wz-ink);
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.wzn-lang__opt.wzn-lang__opt:hover,
.wzn-lang__opt:focus-visible {
  background: var(--wzn-blush);
  color: var(--wzn-brand-deep);
}

.wzn-lang__opt[aria-pressed="true"],
.wzn-lang__opt.wzn-lang__opt[aria-pressed="true"]:hover {
  background: transparent;
  color: var(--wzn-brand-deep);

  cursor: default;
}

.wzn-lang__cek {
  width: 15px;
  height: 15px;
  flex: none;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.16s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.wzn-lang__opt[aria-pressed="true"] .wzn-lang__cek {
  opacity: 1;
  transform: scale(1);
}

.wzn-lang__opt:focus-visible {
  outline: 2px solid var(--wz-brand);
  outline-offset: -2px;
}

.wzn-sheet-lang {
  padding-top: 10px;
}

.wzn-sheet-lang__l {
  margin: 0 0 6px;
  padding: 0 12px;
  font-family: var(--wz-ui-font);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wz-ink-soft);
}

.wzn-lang-baris {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wzn-lang__opt--baris {
  min-height: 44px;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .wzn,
  .wzn-in,
  .wzn-link,
  .wzn-link::after,
  .wzn-masuk,
  .wzn-masuk::after,
  .wzn-sub,
  .wzn-lang__menu,
  .wzn-lang__tog,
  .wzn-lang__chev,
  .wzn-lang__opt,
  .wzn-lang__cek,
  .wzn-logo img,
  .wzn-link-chev,
  .wzn-sheet,
  .wzn-sheet-in > *,
  .wzn-sheet-chev,
  .wzn-sheet-subs,
  .wzn-sheet-subs__in,
  .wzn-tirai,
  .wzn-burger,
  .wzn-burger__i i {
    transition-duration: 0.01ms !important;
  }

  .wzn-sheet.is-tampil .wzn-sheet-in > * { transition-delay: 0s !important; }

  .wzn-sheet-subs { transition-delay: 0s !important; }
}
