/* ======================================================
   CSS RESET
   (Vendor reset â€” do not modify)
====================================================== */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

/* ======================================================
   ROOT & BASE
====================================================== */
:root {
  --font-base: "Poppins", Arial, Helvetica, sans-serif;
  --text-primary: #303135;
  --focus-ring: #4a90e2;
  color-scheme: light;
}

/* ======================================================
   GLOBAL BOX MODEL
====================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: var(--font-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100%;
  margin: 0;
}

body {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fcfcfc 25%,
    #f7f7f7 55%,
    #ffffff 100%
  );
}

/* ======================================================
   MOTION PREFERENCE
====================================================== */
@media (prefers-reduced-motion: no-preference) {
  html.is-loaded {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ======================================================
   TYPOGRAPHY 3.25
====================================================== */
a {
  text-decoration: none;
  color: inherit;
}

h2 {
  font-size: 2.5rem; /*46px*/
  font-weight: 600;
  letter-spacing: -0.01938rem;
  line-height: normal;
}

/* ======================================================
   TEXT UTILITIES
====================================================== */

/* .section-heading-full { ... }
.header-heading { ... }
.title-eyebrow { ... }
.section-title { ... }  
.body-heading { ... }
.text-heading { ... }
.gradient-text { ... } */

.section-heading-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1410px;
  margin: 0 auto;
  gap: 12px;
}

.gradient-text {
  background: var(--gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.title-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #969696;
}

.body-heading {
  padding: 0 64px;
  width: 70%;
  text-align: center;
  line-height: 1.75rem;
  font-size: 1.125rem;
}

/* sebelumnya: .benefit-heading */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  margin-bottom: 24px;
}

.benefit-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
/* ======================================================
   ANCHOR OFFSET (FIXED HEADER)
====================================================== */
header [id] {
  scroll-margin-top: 130px;
}

/* ======================================================
   ACCESSIBILITY
====================================================== */
button:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

input,
textarea {
  cursor: text;
}

/* ======================================================
   INTERACTIVE BASE
   (NO CURSOR OVERRIDE HERE)
====================================================== */
/* a,
button,
li {
  padding: 8px 12px;
  font-family: inherit;
} */

/* ======================================================
   CUSTOM CURSOR â€” BASE ONLY
   (State handled via body class)
====================================================== */
body.has-custom-cursor {
  cursor: none;
}

.cursor,
.cursor-follower {
  pointer-events: none;
}

.cursor,
.cursor-follower {
  opacity: 0;
}

/* ======================================================
   CURSOR HOVER HIT-AREA EXTENSION
====================================================== */
[data-cursor="hover"] {
  position: relative;
}

[data-cursor="hover"]::before {
  content: "";
  position: absolute;
  inset: -100px;
  background: rgba(255, 0, 0, 0.5);
  pointer-events: auto;
}

/* ======================================================
   FULL PAGE LOADER (SSS TIER)
====================================================== */
/* ===============================
   PAGE LOADER
=============================== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;
  visibility: visible;
  pointer-events: all;

  transition:
    opacity 0.6s ease,
    visibility 0s linear 0.6s;
}

/* ===============================
   HIDDEN STATE
=============================== */
#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* TRACK */
.loader-track {
  width: 280px;
  height: 12px;

  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* BAR */
.loader-bar {
  height: 100%;
  width: 40%;

  border-radius: inherit;
  background: linear-gradient(90deg, #31b0ff, #e082ff, #ff9271, #31b0ff);
  background-size: 300% 100%;

  animation: loader-move 1.2s linear infinite;
}

@keyframes loader-move {
  0% {
    transform: translateX(-100%);
    background-position: 0% 50%;
  }
  100% {
    transform: translateX(250%);
    background-position: 300% 50%;
  }
}

/* ======================================================
   LOADER TEXT
====================================================== */
.loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: -96px;
}

.loader-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #666;
}

/* DOTS */
.loader-text .dots {
  display: inline-block;
  width: 1.2em; /* jaga layout tidak geser */
  text-align: left;
}

.loading-animation-fruit {
  display: block;
  width: 300px;
  min-height: 180px;
  height: auto;
  margin-bottom: -32px;
  margin-top: 16px;
}
.loading-animation-fruit:not(:defined) {
  border-radius: 20px;
  background: linear-gradient(120deg, #f7f7f7 12%, #ececec 28%, #f7f7f7 44%);
  background-size: 220% 100%;
  animation: lottie-fallback-shimmer 1.1s linear infinite;
}
@keyframes lottie-fallback-shimmer {
  0% {
    background-position: 180% 0;
  }
  100% {
    background-position: -40% 0;
  }
}

button {
  font-family: poppins;
}

.list {
  list-style: circle;
}

.career-bullets li {
  list-style: circle;
}
