/* =====================================================
   BELTFORCE LANDING — tokens dari MASTER.md
   ===================================================== */
:root {
  --bg: #0D0D0D;
  --surface: #161619;
  --surface-2: #1D1D22;
  --text: #F4F4F6;
  --muted: #9A9AA4;
  --red: #FF1F24;
  --red-glow: rgba(255, 31, 36, .35);
  --red-wash: rgba(255, 31, 36, .10);
  --gold: #E0B64F;
  --blue-check: #2F80ED;
  --line: rgba(244, 244, 246, .08);
  --line-strong: rgba(244, 244, 246, .16);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 20px;

  --ease: cubic-bezier(.2, 0, 0, 1);
  --dur-fast: 150ms;
  --dur: 250ms;
  --dur-slow: 400ms;

  --font-display: 'Orbitron', 'Inter', sans-serif;
  --font-head: 'Exo 2', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grunge mat texture over the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('../assets/background.jpg') center/cover;
  opacity: .5;
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--red); color: #fff; }

/* ---------- Typography ---------- */
h1, .hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.06;
}
h2 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  max-width: 21ch;
}
h3 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 1.22rem;
  margin-bottom: .4rem;
}
.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.kicker.gold-text { color: var(--gold); }
.section-sub { color: var(--muted); max-width: 56ch; margin-top: 14px; font-size: 1.05rem; }
.section-sub.center { margin-inline: auto; }
.gold-text { color: var(--gold); }
.red-text { color: var(--red); }

/* ---------- Buttons (5 states) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 24px var(--red-glow);
}
.btn-primary::after {           /* sheen sweep */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 600ms var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px var(--red-glow); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 16px var(--red-glow); }
.btn-primary:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.btn-primary:disabled { opacity: .5; pointer-events: none; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }
.btn-ghost:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- Brushed metal surface ---------- */
.metal {
  background:
    linear-gradient(120deg, rgba(255,255,255,.05), transparent 38%),
    linear-gradient(300deg, rgba(255,255,255,.03), transparent 42%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,.45);
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 16px;
  pointer-events: none;
}
.nav-island {
  pointer-events: auto;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  background: rgba(16, 16, 19, .55);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.nav.scrolled .nav-island {
  background: rgba(13, 13, 13, .82);
  border-color: var(--line-strong);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .55);
}
.brand { display: flex; align-items: center; flex: none; }
.brand-img {
  height: 38px;
  width: auto;
  transition: transform var(--dur) var(--ease);
}
.brand:hover .brand-img { transform: translateY(-1px); }

.nav-links {
  position: relative;
  display: flex;
  gap: 2px;
}
.nav-links a {
  position: relative;
  z-index: 1;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color var(--dur-fast) var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-pill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: rgba(244, 244, 246, .07);
  border: 1px solid var(--line);
  opacity: 0;
  transition: transform var(--dur) var(--ease), width var(--dur) var(--ease),
              opacity var(--dur-fast) var(--ease);
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-nav { padding: 10px 20px; font-size: .88rem; }

/* Lang toggle */
.lang-toggle {
  position: relative;
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  position: relative;
  z-index: 1;
  background: none;
  border: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 999px;
  transition: color var(--dur) var(--ease);
}
.lang-btn.active { color: #fff; }
.lang-btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.lang-thumb {
  position: absolute;
  top: 3px; bottom: 3px; left: 3px;
  width: calc(50% - 3px);
  background: var(--red);
  border-radius: 999px;
  transition: transform var(--dur) var(--ease);
}
.lang-toggle.en .lang-thumb { transform: translateX(100%); }

/* Hamburger */
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease), visibility 0s linear var(--dur-slow);
}
.mobile-menu.open { opacity: 1; visibility: visible; transition-delay: 0s; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(1) { transition-delay: 60ms; }
.mobile-menu.open a:nth-child(2) { transition-delay: 120ms; }
.mobile-menu.open a:nth-child(3) { transition-delay: 180ms; }
.mobile-menu.open a:nth-child(4) { transition-delay: 240ms; }
.mobile-menu.open a:nth-child(5) { transition-delay: 300ms; }
.mobile-menu.open a:nth-child(6) { transition-delay: 360ms; }
.mobile-menu .btn { font-size: 1rem; font-style: normal; font-family: var(--font-body); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px;
  overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(255,31,36,.14) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-title { font-size: clamp(2.35rem, 5.1vw, 4.35rem); margin-bottom: 22px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .accent span { color: var(--red); text-shadow: 0 0 34px var(--red-glow); }
.hero-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-sub { color: var(--muted); max-width: 54ch; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 8px 16px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.store-badge:hover { border-color: var(--red); transform: translateY(-2px); }
.store-badge svg { width: 22px; height: 22px; }
.store-badge small { display: block; font-size: .64rem; color: var(--muted); line-height: 1.2; }
.store-badge strong { font-size: .9rem; line-height: 1.2; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: flex-end; padding-right: 20px; }
.phone-tilt { position: relative; perspective: 1200px; }
.phone {
  width: min(300px, 74vw);
  aspect-ratio: 644 / 1400;
  background: linear-gradient(160deg, #3a3a40, #1a1a1e 30%, #26262c 70%, #101013);
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.6),
    0 0 60px rgba(255,31,36,.08),
    inset 0 0 0 1px rgba(255,255,255,.1);
  transform-style: preserve-3d;
  transition: transform var(--dur-slow) var(--ease);
}
.phone-screen {
  background: var(--bg);
  border-radius: 35px;
  height: 100%;
  overflow: hidden;
}
.app-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone-main { position: relative; z-index: 1; }
.phone-back {
  position: absolute;
  top: 7%;
  right: 62%;
  width: min(252px, 60vw);
  transform: rotate(-9deg);
  filter: brightness(.55) saturate(.85);
  box-shadow: 0 30px 60px rgba(0,0,0,.55);
  z-index: 0;
}
@media (max-width: 480px) {
  .phone-back { right: 55%; width: 54vw; top: 9%; }
}
/* Floating chips */
.float-chip {
  position: absolute;
  z-index: 2;
  background: rgba(22,22,25,.92);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: .74rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  animation: floaty 5.2s ease-in-out infinite;
}
.chip-exp {
  top: 12%; right: -10%;
  color: var(--gold);
  border-color: rgba(224,182,79,.4);
  animation-delay: .6s;
}
.chip-belt {
  bottom: 26%; left: -16%;
  display: flex; align-items: center; gap: 8px;
  font-size: .7rem;
  line-height: 1.25;
}
.chip-belt small { color: var(--muted); font-weight: 500; }
.chip-checkin {
  bottom: 6%; right: -8%;
  display: flex; align-items: center; gap: 8px;
  color: var(--text);
  font-size: .68rem;
  animation-delay: 1.4s;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.check { width: 13px; height: 13px; vertical-align: -2px; }
.belt-swatch {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 4px;
  vertical-align: -2px;
}
.belt-swatch.purple { background: #7A3FF2; }
.belt-swatch.black { background: #0a0a0a; border: 1px solid var(--line-strong); }
.qr-mini {
  width: 20px; height: 20px;
  border-radius: 4px;
  background:
    conic-gradient(#111 25%, transparent 0 50%, #111 0 75%, transparent 0) 1px 1px / 5px 5px,
    #f4f4f6;
  flex: none;
}

/* Stats strip */
.hero-stats {
  position: relative;
  max-width: var(--container);
  margin: 64px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  letter-spacing: .03em;
}
.stat span:last-child { color: var(--muted); font-size: .85rem; }

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(22,22,25,.5);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.marquee-track span:hover { color: var(--red); }
.marquee-track i { color: var(--red); font-size: .6rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: clamp(76px, 9vw, 128px) 0; position: relative; }
.section-alt { background: rgba(22,22,25,.42); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card p { color: var(--muted); font-size: .95rem; }

/* =====================================================
   BENTO FITUR
   ===================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  overflow: hidden;
}
.tile:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.tile p { color: var(--muted); font-size: .92rem; }
.tile-wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 26px; }
.tile-wide .tile-copy { flex: 1; }
.tile-full { grid-column: 1 / -1; }
.tile-full .multi-demo { margin-bottom: 6px; }
.nw { white-space: nowrap; }

/* mini schedule UI */
.mini-ui {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
  min-width: 250px;
}
.mini-cal { display: flex; gap: 8px; margin-bottom: 12px; }
.mc-day {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
}
.mc-day.on { background: #fff; color: #000; }
.mini-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.mini-chip {
  font-size: .72rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.mini-chip.red-wash { background: var(--red-wash); border-color: rgba(255,31,36,.3); }
.cap { flex: 1; height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.cap i { display: block; height: 100%; width: var(--w); background: var(--red); border-radius: 999px; }
.mini-row em { font-size: .7rem; color: var(--muted); font-style: normal; }
.mini-row em.wl { color: var(--gold); font-weight: 700; }

/* QR demo */
.qr-demo { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.qr-box {
  position: relative;
  width: 96px; height: 96px;
  background: #fff;
  border-radius: var(--r-sm);
  padding: 8px;
  overflow: hidden;
  flex: none;
}
.qr-svg { width: 100%; height: 100%; }
.scanline {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
  animation: scan 2.3s var(--ease) infinite;
}
@keyframes scan {
  0%, 100% { transform: translateY(4px); }
  50% { transform: translateY(89px); }
}
.qr-pop {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: .04em;
  animation: qrpop 2.3s var(--ease) infinite;
}
@keyframes qrpop {
  0%, 45% { opacity: 0; transform: translateY(8px); }
  55%, 85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-6px); }
}

/* Passport flip */
.passport {
  position: relative;
  height: 150px;
  margin-bottom: 14px;
  perspective: 900px;
}
.passport-face {
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  backface-visibility: hidden;
  transition: transform 700ms var(--ease);
  background:
    linear-gradient(120deg, rgba(255,255,255,.06), transparent 40%),
    var(--surface-2);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.passport-front { transform: rotateY(0deg); }
.passport-back {
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
}
.passport.flipped .passport-front { transform: rotateY(-180deg); }
.passport.flipped .passport-back { transform: rotateY(0deg); }
.pp-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--muted);
}
.pp-head img { width: 18px; height: 18px; border-radius: 4px; }
.pp-body { display: flex; gap: 12px; align-items: center; }
.pp-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(140deg, #444, #222);
  border: 2px solid var(--red);
  flex: none;
}
.pp-body strong { display: block; font-size: .95rem; }
.pp-body small { color: var(--muted); display: block; margin-bottom: 4px; }
.pp-belt { font-size: .78rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.pp-qr {
  width: 64px; height: 64px;
  border-radius: 8px;
  background:
    conic-gradient(#0d0d0d 25%, transparent 0 50%, #0d0d0d 0 75%, transparent 0) 0 0 / 16px 16px,
    #e8e8ec;
}

/* Map demo */
.map-demo {
  position: relative;
  height: 130px;
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.05), transparent 45%),
    linear-gradient(0deg, transparent 48%, rgba(244,244,246,.04) 49%, rgba(244,244,246,.04) 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(244,244,246,.04) 49%, rgba(244,244,246,.04) 51%, transparent 52%),
    var(--bg);
  background-size: auto, 100% 33%, 33% 100%, auto;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  overflow: hidden;
}
.map-ping {
  position: absolute;
  left: 44%; top: 44%;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
}
.map-ping::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--red);
  border-radius: 50%;
  animation: ping 2s var(--ease) infinite;
}
@keyframes ping {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(3.2); opacity: 0; }
}
.map-dot { position: absolute; width: 8px; height: 8px; background: var(--muted); border-radius: 50%; }
.map-me {
  position: absolute;
  right: 10px; bottom: 10px;
  background: var(--red-wash);
  color: var(--red);
  border: 1px solid rgba(255,31,36,.35);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Chat demo */
.chat-demo { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.bubble {
  max-width: 85%;
  font-size: .78rem;
  padding: 8px 12px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  width: fit-content;
}
.bubble.right {
  align-self: flex-end;
  background: var(--red-wash);
  border-color: rgba(255,31,36,.3);
  border-bottom-right-radius: 4px;
}
.bubble.left { border-bottom-left-radius: 4px; }
.bubble.small { font-size: .72rem; }

/* Multi discipline */
.multi-demo { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.disc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .8rem;
  font-weight: 600;
}
.disc-chip.gold-text { border-color: rgba(224,182,79,.4); }

/* =====================================================
   GAMIFIKASI
   ===================================================== */
.game-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  margin-top: 44px;
  align-items: center;
}
.gauge-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 30px;
}
.gauge { width: min(260px, 60vw); transform: rotate(-90deg); }
.gauge-bg, .gauge-fg { fill: none; stroke-width: 14; stroke-linecap: round; }
.gauge-bg { stroke: var(--surface-2); }
.gauge-fg {
  stroke-dasharray: 603;
  stroke-dashoffset: 603;
  transition: stroke-dashoffset 1400ms var(--ease);
  filter: drop-shadow(0 0 8px rgba(224,182,79,.5));
}
.in .gauge-fg, .gauge-wrap.in .gauge-fg { stroke-dashoffset: 60; }
.gauge-label {
  position: absolute;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gauge-label strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: .02em;
}
.gauge-label > span { color: var(--muted); font-size: .85rem; max-width: 18ch; }

.exp-table { display: flex; flex-direction: column; gap: 10px; }
.exp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 22px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 500ms var(--ease) var(--d, 0ms), transform 500ms var(--ease) var(--d, 0ms),
              border-color var(--dur) var(--ease);
}
.exp-table.in .exp-row { opacity: 1; transform: none; }
.exp-row:hover { border-color: rgba(224,182,79,.4); }
.exp-row strong { font-family: var(--font-display); font-weight: 700; letter-spacing: .03em; }

/* Belt ladder */
.belt-ladder {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.belt {
  position: relative;
  height: 40px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.belt-fill {
  position: absolute;
  inset: 0;
  background: var(--belt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease) var(--d, 0ms);
  opacity: .92;
}
.belt-ladder.in .belt-fill { transform: scaleX(1); }
.belt em {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-left: 18px;
  color: #0d0d0d;
  mix-blend-mode: normal;
}
.belt.black em { color: var(--text); }
.belt.black .belt-fill { border: 0; }
.belt.black { border-color: var(--line-strong); }
.belt-red-bar {
  position: absolute;
  right: 8%;
  top: 0; bottom: 0;
  width: 12%;
  background: var(--red);
  z-index: 1;
  transform: scaleX(0);
  transition: transform 500ms var(--ease) 1300ms;
}
.belt-ladder.in .belt-red-bar { transform: scaleX(1); }

.achievements {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ach {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 600;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ach:hover { transform: translateY(-2px); border-color: var(--gold); }

/* =====================================================
   MEMBERSHIP
   ===================================================== */
.mem-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  margin-top: 44px;
  align-items: center;
}
.mem-visual { padding: 36px; display: grid; place-items: center; }
.mem-card {
  width: 100%;
  max-width: 340px;
  background:
    linear-gradient(130deg, rgba(224,182,79,.14), transparent 45%),
    linear-gradient(120deg, rgba(255,255,255,.05), transparent 38%),
    var(--surface-2);
  border: 1px solid rgba(224,182,79,.35);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.mem-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .66rem;
  letter-spacing: .28em;
  color: var(--gold);
}
.mem-head img { width: 24px; height: 24px; border-radius: 6px; }
.mem-plan { font-family: var(--font-head); font-style: italic; font-weight: 800; font-size: 1.5rem; }
.token-meter {
  height: 10px;
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
}
.token-meter i {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), #f2d488);
  border-radius: 999px;
  transform-origin: left;
  transition: transform 380ms var(--ease);
}
.mem-foot { display: flex; justify-content: space-between; align-items: center; }
.token-pill {
  background: rgba(224,182,79,.14);
  border: 1px solid rgba(224,182,79,.4);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 14px;
}
.mem-foot small { color: var(--muted); }
.mem-points { display: flex; flex-direction: column; gap: 22px; }
.point { display: flex; gap: 20px; }
.point-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  border: 1px solid rgba(224,182,79,.35);
  border-radius: 12px;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  flex: none;
}
.point p { color: var(--muted); font-size: .95rem; }

/* =====================================================
   COACH
   ===================================================== */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.check-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--red-wash);
  border: 1px solid rgba(255,31,36,.4);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 8px;
  width: 9px; height: 5px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
.approve-panel { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.ap-title {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  margin-bottom: 4px;
}
.ap-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms var(--ease) var(--d, 0ms), transform 500ms var(--ease) var(--d, 0ms);
}
.in .ap-row { opacity: 1; transform: none; }
.ap-row.warn { border-color: rgba(255,31,36,.35); background: linear-gradient(90deg, var(--red-wash), var(--bg) 60%); }
.ap-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(140deg, #555, #2b2b31);
  flex: none;
}
.ap-avatar.b { background: linear-gradient(140deg, #6a4f2f, #2b2b31); }
.ap-avatar.c { background: linear-gradient(140deg, #37505f, #2b2b31); }
.ap-row strong { font-size: .9rem; display: block; }
.ap-row small { color: var(--muted); font-size: .74rem; }
.ap-row div { flex: 1; }
.ap-btn {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  font-weight: 700;
  color: var(--muted);
}
.ap-btn.ok { color: #4ade80; border-color: rgba(74,222,128,.4); }

/* =====================================================
   CMS
   ===================================================== */
.cms-frame { margin-top: 44px; overflow: hidden; }
.cms-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}
.cms-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-2); }
.cms-bar span:first-child { background: rgba(255,31,36,.55); }
.cms-bar em {
  margin: 0 auto;
  font-style: normal;
  font-size: .78rem;
  color: var(--muted);
  background: var(--bg);
  border-radius: 8px;
  padding: 4px 22px;
}
.cms-body { padding: 26px; display: flex; flex-direction: column; gap: 22px; }
.cms-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cms-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.cms-stat small { color: var(--muted); font-size: .74rem; display: block; margin-bottom: 4px; }
.cms-stat strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .02em;
}
.cms-panels { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }
.cms-chart, .cms-belts {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
}
.cms-chart small, .cms-belts small { color: var(--muted); font-size: .74rem; }
.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  margin-top: 14px;
}
.bars i {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--red), rgba(255,31,36,.35));
  border-radius: 6px 6px 2px 2px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 700ms var(--ease);
}
.in .bars i { transform: scaleY(1); }
.bars i:nth-child(2) { transition-delay: 60ms; }
.bars i:nth-child(3) { transition-delay: 120ms; }
.bars i:nth-child(4) { transition-delay: 180ms; }
.bars i:nth-child(5) { transition-delay: 240ms; }
.bars i:nth-child(6) { transition-delay: 300ms; }
.bars i:nth-child(7) { transition-delay: 360ms; }
.bars i:nth-child(8) { transition-delay: 420ms; }
.dist { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.dist span { width: 52px; font-size: .74rem; color: var(--muted); }
.db {
  height: 8px;
  border-radius: 999px;
  background: var(--c);
  width: var(--w);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms var(--ease);
}
.in .db { transform: scaleX(1); }

.cms-feats {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cms-feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .85rem;
  color: var(--muted);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cms-feat:hover { color: var(--text); border-color: var(--line-strong); }
.cms-cta { margin-top: 28px; }

/* =====================================================
   TEKNOLOGI
   ===================================================== */
.tech-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.tech-chip {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 12px 20px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.tech-chip:hover { border-color: var(--red); transform: translateY(-2px); }
.tech-note { color: var(--muted); margin-top: 24px; max-width: 52ch; font-size: .95rem; }

/* =====================================================
   CTA FINAL
   ===================================================== */
.cta-final { text-align: center; overflow: hidden; }
.cta-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 80vw;
  max-width: 1000px; max-height: 1000px;
  background: radial-gradient(circle, rgba(255,31,36,.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-final .container { position: relative; }
.cta-logo { width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 20px; }
.cta-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  letter-spacing: .06em;
  max-width: none;
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.cta-mail { margin-top: 22px; color: var(--muted); font-size: .9rem; letter-spacing: .04em; }
.cta-tagline { margin-top: 40px; color: var(--gold); font-family: var(--font-head); font-weight: 600; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { border-top: 1px solid var(--line); background: rgba(13,13,13,.85); padding: 56px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-logo { width: 150px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .88rem; max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong {
  font-family: var(--font-head);
  font-style: italic;
  font-size: .95rem;
  margin-bottom: 4px;
}
.footer-col a, .footer-plat {
  color: var(--muted);
  font-size: .88rem;
  transition: color var(--dur-fast) var(--ease);
  width: fit-content;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: .82rem;
}

/* =====================================================
   REVEAL SYSTEM
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease) var(--d, 0ms), transform 600ms var(--ease) var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* Language swap fade */
[data-i18n] { transition: opacity 180ms var(--ease); }
body.lang-switching [data-i18n] { opacity: 0; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { justify-content: center; padding-right: 0; }
  .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas, .store-badges { justify-content: center; }
  .chip-belt { left: -6%; }
  .chip-exp { right: -4%; }
  .chip-checkin { right: -2%; }
  .game-grid, .mem-grid, .split { grid-template-columns: 1fr; }
  .split-visual { order: -1; }
  .bento { grid-template-columns: 1fr 1fr; }
  .tile-wide { grid-column: span 2; flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .btn-nav { display: none; }
  .hero { padding-top: 116px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .grid-3 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .tile-wide { grid-column: span 1; }
  .cms-stats { grid-template-columns: 1fr 1fr; }
  .cms-panels { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .nav { padding: 10px 10px; }
  .nav-island { padding: 7px 10px 7px 14px; gap: 10px; }
  .brand-img { height: 26px; }
  .lang-btn { padding: 5px 10px; font-size: .72rem; }
  .nav-right { gap: 6px; }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .exp-row, .ap-row { opacity: 1; transform: none; }
  .gauge-fg { stroke-dashoffset: 60; }
  .belt-fill, .belt-red-bar, .bars i, .db { transform: none; }
}

/* Scroll progress "belt" */
.scroll-belt {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6b4a);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 101;
  pointer-events: none;
  box-shadow: 0 0 12px var(--red-glow);
}
