main {
  padding-top: 92px;
}

.siapa-kami-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ======================================================
   ABOUT HERO SLIDER (REFINED | SAFE | RESPONSIVE)
====================================================== */
.about-hero-slider {
  position: relative;
  width: 100%;
  height: min(90vh, 820px);
  overflow: hidden;
  background: #000;
  isolation: isolate; /* ✅ aman untuk layering overlay/nav/dots */
}

.about-hero-track {
  display: flex !important;
  flex-direction: row !important;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform: translateZ(0); /* ✅ stabil untuk animasi */
}

/* Slide */
.about-hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

/* ✅ Support <picture> wrapper (agar full height & tidak merusak layout) */
.about-hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Image */
.about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  display: block; /* ✅ hilangkan inline gap */
}

/* Overlay Content */
.about-hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  z-index: 2;
}

/* Optional: readability helper (tidak mengubah struktur) */
/* .about-hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.18) 40%,
    rgba(0, 0, 0, 0.32) 100%
  );
  z-index: -1;
  pointer-events: none;
} */

.about-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero-desc {
  max-width: 720px;
  margin-inline: auto;
  opacity: 0.9;
  line-height: 1.5;
}

/* Navigation */
.about-hero-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  cursor: none;
  display: grid;
  place-items: center;

  z-index: 10;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.about-hero-nav:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: scale(1.05);
}

.about-hero-nav--prev {
  left: 1.5rem;
}

.about-hero-nav--next {
  right: 1.5rem;
}

/* SVG */
.about-hero-arrow-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dots */
.about-hero-dots {
  position: absolute;
  bottom: clamp(24px, 8vw, 24px);
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 10px;
  z-index: 10;
}

.about-hero-dot {
  appearance: none;
  -webkit-appearance: none;

  width: 10px;
  aspect-ratio: 1 / 1;

  padding: 0;
  margin: 0;

  border-radius: 50%;
  border: none;

  background-color: rgba(255, 255, 255, 0.952);

  display: inline-block;
  box-sizing: border-box;

  cursor: pointer;

  transform: translateZ(0); /* anti blur */
}

.about-hero-dot.is-active {
  background: #007cff;
}

/* ======================================================
   MOBILE REFINEMENT (non-destructive)
   - nav buttons hidden (touch)
   - better spacing
====================================================== */
@media (max-width: 768px) {
  .about-hero-content {
    padding: 1.25rem;
  }

  .about-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    margin-bottom: 0.75rem;
  }

  .about-hero-desc {
    font-size: 0.95rem;
    max-width: 560px;
  }

  /* Optional: hide nav arrows on touch for cleaner UI */
  .about-hero-nav {
    display: none;
  }
}

/* ======================================================
   REDUCED MOTION (ACCESSIBILITY SAFE)
====================================================== */
@media (prefers-reduced-motion: reduce) {
  .about-hero-track {
    transition: none;
  }

  .about-hero-nav,
  .about-hero-dot {
    transition: none;
  }
}

/* ======================================================
   SIAPA KAMI SECTION
====================================================== */
.about-highlight-inner {
  max-width: 1280px;
  margin-inline: auto;
  /* padding-inline: 24px; */

  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: stretch;
}

/* IMAGE */
.about-highlight-media {
  border-radius: 24px;
  overflow: hidden;
}

.about-highlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT CARD */
.about-highlight-content {
  border-radius: 24px;
  padding: 40px;

  background: linear-gradient(135deg, #2fb8ff 0%, #7b61ff 45%, #ff9a62 100%);

  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;

  line-height: 1.7;
}

.about-highlight-content p + p {
  margin-top: 16px;
}

.about-highlight-content p + p {
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .about-highlight-inner {
    gap: 32px;
  }

  .about-highlight-content {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .about-highlight {
    padding-block: 64px;
  }

  .about-highlight-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-highlight-media {
    min-height: 260px;
  }

  .about-highlight-content {
    padding: 24px;
  }
}

/* ======================================================
   PLAYGROUND HIGHLIGHT CREATIVITY FOR FUN
====================================================== */

.playground-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.playground-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.playground-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.playground-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.playground-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.playground-card__content {
  padding: 1.25rem 1.25rem 1.75rem;
}

.playground-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.playground-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* 
   RESPONSIVE
 */

@media (max-width: 1024px) {
  .playground-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .playground-grid {
    grid-template-columns: 1fr;
  }

  .playground-card__content {
    padding: 1rem 1rem 1.5rem;
  }
}

/* ======================================================
   ABOUT LOCATION 
====================================================== */
.about-location__track {
  touch-action: pan-y;
}

.about-location__shell {
  position: relative;
  /* max-width: calc((300px * 3) + (20px * 2)); */
  margin: 0 auto;
}

/* 
   VIEWPORT (CLIP AREA KHUSUS CARD)
 */

.about-location__viewport {
  overflow: hidden;
  padding: 56px 0 48px 0;
  margin-bottom: -18px;
}

/* 
   TRACK (INFINITE LOOP)
 */

.about-location__track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 
   CARD BASE
 */

.about-location__card {
  position: relative;
  flex: 0 0 300px;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;

  background: #ffffff;

  transform-origin: center center;
  transform: scale(0.9);
  opacity: 0.85;

  transition:
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 420ms ease,
    box-shadow 520ms ease;

  z-index: 1;
}

/* image */
.about-location__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 
   CARD INFO OVERLAY
 */

.about-location__info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 12px;

  padding: 0.5rem 0.75rem;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.5rem;
  align-items: center;
}

.about-location__pin {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: #555;
}

.about-location__name {
  font-size: 0.9rem;
  font-weight: 700;
}

.about-location__badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: #007cff;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

/* 
   ACTIVE CARD STATES
 */

.about-location__card.is-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.about-location__card.is-prev,
.about-location__card.is-next {
  transform: scale(0.9);
  opacity: 0.9;
}

/* 
   NAV BUTTONS (DI LUAR VIEWPORT, ANTI-CLIP)
 */

.about-location__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);

  display: grid;
  place-items: center;
  cursor: none;

  z-index: 10;
  transition: background 0.3s ease;
}

.about-location__nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* mirror position */
.about-location__nav--prev {
  left: -22px; /* setengah lebar tombol */
}

.about-location__nav--next {
  right: -22px;
}

/* 
   ARROW ICON
 */

.about-location__arrow-icon {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s ease;
}

.about-location__nav--prev:hover .about-location__arrow-icon {
  transform: translateX(-2px) scale(1.15);
}

.about-location__nav--next:hover .about-location__arrow-icon {
  transform: translateX(2px) scale(1.15);
}

/* 
   RESPONSIVE
 */

@media (max-width: 640px) {
  .about-location__nav {
    display: none;
  }

  .about-location__card {
    flex: 0 0 260px;
    height: 180px;
  }

  .about-location__shell {
    max-width: calc((260px * 3) + (20px * 2));
  }
}

.about-location__track {
  /* cursor: grab; */
  user-select: none;
  touch-action: pan-y;
}

.about-location__track:active {
  /* cursor: grabbing; */
}

.statsabout-section {
  margin-bottom: 0px;
}

/* ======================================================
   PLAYGROUND KAMI
====================================================== */

.fc-section {
  /* padding: 80px 0; */
}

.fc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 
   GRID
 */
.fc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* 
   CARD BASE
 */
.fc-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

/* 
   MEDIA (IMAGE AREA)
 */
.fc-card-media {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 16px; /* ⬅️ MASK DI SINI */
  overflow: hidden; /* ⬅️ MASK AKTIF */
}

/* IMAGE (TETAP TAJAM) */
.fc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 
   BLUR + DARK (30% BAWAH SAJA)
 */
.fc-card-media::after {
  content: "";
  position: absolute;
  border-radius: 16px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;

  z-index: 1;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0) 100%
  );

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  opacity: 0;
  transition: opacity 0.35s ease;
}

/* 
   LOGO (PER CARD, VIA IMG)
 */
.fc-card-logo {
  position: relative; /* ⬅️ BUKAN absolute */
  align-self: flex-start;

  width: 100px;
  height: auto;

  /* margin-top: 8px; */
  margin-bottom: 8px;

  opacity: 0;
  transform: translateY(6px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;

  pointer-events: none;
}

.fc-card:hover .fc-card-logo,
.fc-card:focus-within .fc-card-logo {
  opacity: 1;
  transform: translateY(0);
}

/* 
   CONTENT OVERLAY (TEXT)
*/
.fc-card-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  border-radius: 16px;

  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;

  color: #ffffff;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.3) 65%,
    rgba(0, 0, 0, 0) 100%
  );

  transform: translateY(20%);
  transition: transform 0.4s ease;
}

/* 
   TEXT
 */
.fc-card-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.fc-card-desc {
  font-size: 14px;
  line-height: 1.6;

  text-align: justify;
  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* 
   BUTTON (SUDAH ADA STYLE GLOBAL)
*/

.fc-card-content .btn {
  display: none;
}

/* 
   HOVER & FOCUS STATE
*/
.fc-card:hover .fc-card-media::after,
.fc-card:focus-within .fc-card-media::after {
  opacity: 1;
}

.fc-card:hover .fc-card-logo,
.fc-card:focus-within .fc-card-logo {
  opacity: 1;
  transform: scale(1);
}

.fc-card:hover .fc-card-content,
.fc-card:focus-within .fc-card-content {
  transform: translateY(0);
}

.fc-card:hover .fc-card-desc,
.fc-card:focus-within .fc-card-desc {
  opacity: 1;
  transform: translateY(0);
}

/* 
   RESPONSIVE
 */
@media (max-width: 1024px) {
  .fc-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fc-card-grid {
    grid-template-columns: 1fr;
  }

  .fc-card-content {
    transform: translateY(0);
  }

  .fc-card-desc {
    opacity: 1;
    transform: none;
  }

  .fc-card-logo {
    opacity: 1;
    transform: scale(1);
  }

  .fc-card-media::after {
    opacity: 1;
  }
}

/* 
   NO-HOVER DEVICES (TOUCH)
 */
@media (hover: none) {
  .fc-card-content {
    transform: translateY(0);
  }

  .fc-card-desc {
    opacity: 1;
    transform: none;
  }

  .fc-card-logo {
    opacity: 1;
    transform: scale(1);
  }

  .fc-card-media::after {
    opacity: 1;
  }
}

/* 
   FALLBACK JIKA BACKDROP-FILTER TIDAK SUPPORT
 */
@supports not ((backdrop-filter: blur(1px))) {
  .fc-card-media::after {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0.6);
  }
}

/* ======================================================
   ABOUT CTA
====================================================== */

.about-cta {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* WRAPPER */
.about-cta-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/*  GRID  */

.about-cta-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  justify-content: center;
}

/*  VIDEO  */

.about-cta-media {
  position: relative;
  height: 520px;

  border-radius: 28px;
  overflow: hidden;
  background: #000;
  z-index: 4;

  display: grid;
  place-items: center;
}

.about-cta-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY BUTTON */
.about-cta-video-toggle {
  z-index: 2;

  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;

  cursor: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.about-cta-video-toggle:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.75);
}

/*  CONTENT CARD  */

.about-cta-card {
  margin-left: -14px;
  padding: 32px 224px 32px 54px;
  height: 400px;
  background: linear-gradient(135deg, #eef5ff, #f7f0ff);
  /* border-radius: 40px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px; */
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-cta-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.about-cta-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.5;
}

.about-cta-actions {
  display: flex;
  gap: 16px;
}

/*  MASKOT  */

.about-cta-mascot {
  position: absolute;
  right: -90px;
  bottom: 52px;
  transform: scaleX(-1);
  width: 400px;
  max-width: none;
  pointer-events: none;
  z-index: 3;
}

/* RESPONSIVE  */

@media (max-width: 900px) {
  .about-cta-wrapper {
    padding: 32px 16px;
  }

  .about-cta-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-media {
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 24px;
  }

  .about-cta-card {
    margin-left: 0;
    padding: 40px 32px;
  }

  .about-cta-mascot {
    display: none;
  }
}

.about-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/wave-bg.png") center / cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.about-cta-card {
  position: relative;
  overflow: visible;
  /* border-radius: 28px; */

  /* padding: 64px 64px 64px 280px; */
  /* min-height: 360px; */

  background:
    /* url("/img/wave-bg.png"), */ linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.88) 17.62%,
    rgba(237, 195, 251, 0.85) 57.51%,
    rgba(185, 219, 255, 0.85) 78.59%
  );

  background-position: center, center, center;

  background-size: cover, cover, cover;

  background-repeat: no-repeat, no-repeat, no-repeat;
}

.about-cta-card > * {
  position: relative;
  z-index: 2; /* ⬅️ PALING ATAS */
}

/* 
   TICKET PERFORATION
 */

.about-cta-card.is-ticket {
  /* TUNABLE VARIABLES */
  --cut-width: 22px; /* kedalaman potongan */
  --cut-height: 12px; /* tinggi pill */
  --cut-gap: 16px; /* jarak antar pill */
  --cut-radius: 46px; /* roundness pill */

  -webkit-mask:
    linear-gradient(#000 0 0) right,
    repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent var(--cut-gap),
        #000 var(--cut-gap),
        #000 calc(var(--cut-gap) + var(--cut-height))
      )
      left / var(--cut-width) 100% no-repeat;

  -webkit-mask-composite: destination-out, source-over;

  mask:
    linear-gradient(#000 0 0) right,
    repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent var(--cut-gap),
        #000 var(--cut-gap),
        #000 calc(var(--cut-gap) + var(--cut-height))
      )
      left / var(--cut-width) 100% no-repeat;

  mask-composite: exclude;
}
