/* ============================================================
   ANTI RIBET — Global Stylesheet
   Accent: amber (#FFB300) on warm cream / near-black ink.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fredoka:wght@500;600;700&display=swap");

:root {
  --amber: #ffb300;
  --amber-deep: #f59e0b;
  --amber-soft: #ffe6a8;
  --ink: #161310;
  --ink-soft: #3a352f;
  --cream: #fff8ec;
  --cream-2: #fffdf8;
  --paper: #ffffff;
  --purple: #ff7a2f;
  --pink: #ff5da2;
  --mint: #22c55e;
  --sky: #00b4d8;
  --line: #efe4d0;
  --shadow: 0 18px 50px -20px rgba(120, 80, 0, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(120, 80, 0, 0.3);
  --radius: 26px;
  --radius-sm: 16px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fredoka", var(--font);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.wrap-wide { width: min(1760px, 100%); margin-inline: auto; padding-inline: clamp(18px, 4.5vw, 80px); }
.center { text-align: center; }

/* Full-width distinct band (pembeda dengan katalog produk) */
.section.full-band {
  background:
    radial-gradient(60% 60% at 12% 0%, #fff3d6, transparent 60%),
    radial-gradient(60% 60% at 88% 100%, #ffe9c2, transparent 60%),
    linear-gradient(180deg, #fff1d0, #ffe8bf);
  border-block: 1px solid #f6dca6;
}

/* ---------- Floating decorative blobs ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 0 -2px rgba(0,0,0,0.08), var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-3px) rotate(-1deg); }
.btn-amber {
  background: linear-gradient(135deg, #ffc93c, var(--amber));
  color: var(--ink);
  box-shadow: 0 10px 24px -8px rgba(255,179,0,0.8);
}
.btn-amber:hover { transform: translateY(-3px) scale(1.02); }
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--amber); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.08rem; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--amber-soft);
  color: #8a5a00;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--amber-deep);
}

h1, h2, h3 { font-family: var(--display); line-height: 1.08; letter-spacing: -0.01em; }

/* =================== NAVBAR =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.brand img { width: 42px; height: 42px; border-radius: 12px; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-weight: 600; font-size: 0.95rem; transition: color 0.18s; }
.nav-links a:hover { color: var(--amber-deep); }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.18s;
}
.cart-btn:hover { transform: translateY(-2px); }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 2px solid var(--cream);
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.cart-badge.show { transform: scale(1); }
.nav-toggle { display: none; font-size: 1.5rem; }

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: #ffffff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  margin-bottom: 1.1rem;
  color: var(--ink);
}
.hero h1 .hl {
  color: var(--amber-deep);
  position: relative;
  white-space: nowrap;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.28em;
  background: var(--amber-soft);
  z-index: -1;
  border-radius: 4px;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 1.8rem;
}
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  border: 3px solid var(--cream);
  margin-left: -10px;
}
.avatars span:first-child { margin-left: 0; }

/* Hero video card */
.hero-media { position: relative; }
.hero-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1d1a16, #2a2620);
  transform: rotate(1.2deg);
  border: 7px solid #fff;
}
.hero-video video,
.hero-video .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-fallback {
  background:
    radial-gradient(60% 50% at 30% 20%, rgba(255,201,60,0.55), transparent 60%),
    radial-gradient(50% 50% at 80% 80%, rgba(124,92,255,0.45), transparent 60%),
    linear-gradient(135deg, #211d18, #15120e);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.video-fallback::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(255,179,0,0.18), transparent 30%);
  animation: spin 9s linear infinite;
}
.vf-inner { position: relative; text-align: center; color: #fff; z-index: 2; }
.vf-inner .play {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--amber);
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  color: var(--ink);
  font-size: 1.6rem;
  box-shadow: 0 0 0 0 rgba(255,179,0,0.6);
  animation: pulse 2.2s infinite;
}
.vf-inner p { font-family: var(--display); font-size: 1.15rem; }
.vf-inner small { opacity: 0.7; }

.hero-badge-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 0.55rem 0.85rem;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}
.hero-badge-float .emoji { font-size: 1.3rem; }
.hb-1 { top: -11%; left: -11%; animation: float 4s ease-in-out infinite; }
.hb-2 { bottom: -11%; right: -7%; animation: float 4s ease-in-out infinite 1.5s; }

/* Maskot mengintip dari pojok kanan atas hero (masuk → diam → keluar, loop) */
/* wrapper maskot + hint: keduanya slide masuk/keluar bareng */
.hero-mascot-wrap {
  position: absolute;
  top: -14px;
  right: 6px;
  z-index: 4;
  width: clamp(112px, 13vw, 178px);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transform: translateX(150%);
  animation: mascotInOut 6s cubic-bezier(.4,0,.2,1) infinite;
  will-change: transform;
}
.hero-mascot-wrap:hover, .hero-mascot-wrap:hover .mascot-hint { animation-play-state: paused; }
.hero-mascot {
  width: 100%; height: auto; display: block;
  pointer-events: auto; cursor: pointer; transition: filter 0.2s;
}
.hero-mascot-wrap:hover .hero-mascot { filter: drop-shadow(0 6px 14px rgba(0,0,0,.2)); }
/* gelembung ajakan ngobrol — ikut slide (transform wrap) + fade sesuai timing maskot */
.mascot-hint {
  position: absolute; right: 100%; top: 26px; margin-right: 8px; z-index: 5;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 0.82rem;
  padding: 0.5rem 0.85rem; border-radius: 14px 14px 2px 14px; white-space: nowrap;
  box-shadow: var(--shadow-sm); cursor: pointer; opacity: 0;
  animation: mascotHintFade 6s ease-in-out infinite;
}
@keyframes mascotHintFade {
  0%, 14% { opacity: 0; }
  22%, 58% { opacity: 1; }
  68%, 100% { opacity: 0; }
}
@keyframes mascotInOut {
  0%   { transform: translateX(150%); }   /* sembunyi di luar layar (kanan) */
  9%   { transform: translateX(-2%); }    /* meluncur masuk & mengintip */
  14%  { transform: translateX(4%); }     /* sentuhan pantulan kecil */
  18%  { transform: translateX(0%); }     /* diam mengintip */
  62%  { transform: translateX(0%); }     /* tahan 3-5 detik */
  76%  { transform: translateX(150%); }   /* keluar ke arah kanan */
  100% { transform: translateX(150%); }   /* tetap sembunyi sebelum loop */
}
@media (max-width: 920px) { .hero-mascot-wrap { display: none; } }
/* Catatan: animasi maskot sengaja tetap jalan walau "Reduce Motion" aktif,
   karena ini elemen sambutan utama yang diminta. */

/* marquee strip */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 0.6rem; }
.marquee-track .dot { color: var(--amber); }

/* =================== SECTIONS =================== */
.section { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin: 0.7rem 0 0.8rem; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* What is Anti Ribet — feature cards */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feat-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.feat-card:hover { transform: translateY(-6px) rotate(-0.6deg); }
.feat-ic {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 1.1rem;
}
.feat-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feat-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* who is it for split */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1.4rem;
}
.aud-card {
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.aud-umkm { background: linear-gradient(140deg, #ff9a2e, var(--amber-deep)); }
.aud-creator { background: linear-gradient(140deg, #8b6dff, #5b3fd8); }
.aud-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.aud-card ul { list-style: none; margin-top: 1rem; display: grid; gap: 0.55rem; }
.aud-card li { display: flex; gap: 0.55rem; font-weight: 500; }
.aud-card li::before { content: "✦"; }
.aud-emoji { position: absolute; right: -10px; bottom: -18px; font-size: 7rem; opacity: 0.22; }

/* =================== PRODUCTS =================== */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prod-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(.34,1.4,.64,1), box-shadow 0.22s;
  cursor: pointer;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.prod-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.prod-thumb .big-emoji {
  font-size: 4.2rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
  transition: transform 0.25s;
}
.prod-card:hover .prod-thumb .big-emoji { transform: scale(1.12) rotate(-6deg); }
.prod-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.35), transparent 55%);
}
.prod-badge {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: #fff; color: var(--ink);
  font-size: 0.74rem; font-weight: 800;
  padding: 0.32rem 0.7rem; border-radius: 999px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.prod-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 1.28rem; margin-bottom: 0.35rem; }
.prod-body .desc { color: var(--ink-soft); font-size: 0.93rem; flex: 1; margin-bottom: 1.1rem; }
.prod-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1rem; }
.prod-price .now { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.prod-price .was { font-size: 0.95rem; color: #b3a892; text-decoration: line-through; }
.prod-price .off { font-size: 0.74rem; font-weight: 800; color: var(--mint); background: #e7f9ee; padding: 0.2rem 0.5rem; border-radius: 999px; }
.prod-actions { display: flex; gap: 0.6rem; }
.prod-actions .btn { flex: 1; padding: 0.8rem 1rem; font-size: 0.92rem; }

/* =================== COUNTER =================== */
.counter {
  background: linear-gradient(140deg, #1d1a15, #100e0b);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.counter .glow { position: absolute; width: 380px; height: 380px; background: var(--amber); filter: blur(120px); opacity: 0.3; border-radius: 50%; }
.counter .glow.g1 { top: -120px; left: -60px; }
.counter .glow.g2 { bottom: -160px; right: -40px; background: var(--purple); }
.counter .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.5rem, 11vw, 7rem);
  line-height: 1;
  background: linear-gradient(135deg, #ffd966, var(--amber));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative; z-index: 2;
}
.counter .num .plus { -webkit-text-fill-color: var(--amber); }
.counter h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); position: relative; z-index: 2; margin-top: 0.3rem; }
.counter p { color: rgba(255,255,255,0.7); max-width: 50ch; margin: 0.8rem auto 0; position: relative; z-index: 2; }
.counter-stats { display: flex; justify-content: center; gap: clamp(2rem,5vw,4rem); margin-top: 2.4rem; position: relative; z-index: 2; flex-wrap: wrap; }
.counter-stats .cs { }
.counter-stats .cs b { font-family: var(--display); font-size: 2rem; color: var(--amber); display: block; }
.counter-stats .cs span { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* =================== HOOK / TRANSFORM =================== */
.hook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: stretch; }
.hook-col {
  border-radius: var(--radius);
  padding: 2rem;
}
.hook-before { background: #f4ece0; border: 2px dashed #d9c9ad; }
.hook-after { background: linear-gradient(140deg, #fff3d1, #ffe39a); border: 2px solid var(--amber); }
.hook-col h3 { font-size: 1.35rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
.hook-col ul { list-style: none; display: grid; gap: 0.85rem; }
.hook-col li { display: flex; gap: 0.7rem; font-weight: 500; }
.hook-before li { color: #7c6f5a; }
.hook-before li::before { content: "😩"; }
.hook-after li::before { content: "✅"; }

/* =================== TESTIMONIALS =================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.7rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
}
.testi-stars { color: var(--amber); margin-bottom: 0.7rem; letter-spacing: 2px; }
.testi-card p { font-size: 1rem; color: var(--ink); margin-bottom: 1.3rem; }
.testi-person { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 0.95rem; }
.testi-person b { display: block; font-size: 0.95rem; }
.testi-person span { font-size: 0.82rem; color: var(--ink-soft); }

/* =================== FAQ =================== */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--amber); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
}
.faq-q .ic {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: #8a5a00;
  display: grid; place-items: center;
  font-weight: 800;
  transition: transform 0.25s;
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--amber); color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* =================== CLOSING =================== */
.closing {
  background: linear-gradient(140deg, var(--amber), #ff9d29);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--ink); margin-bottom: 1rem; }
.closing p { color: #5a3d00; font-size: 1.15rem; max-width: 46ch; margin: 0 auto 2rem; font-weight: 500; }
.closing .btn-primary { background: var(--ink); }
.closing-emoji { position: absolute; font-size: 5rem; opacity: 0.25; }

/* =================== FOOTER =================== */
.footer { background: var(--ink); color: rgba(255,255,255,0.78); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer p.fdesc { font-size: 0.92rem; max-width: 32ch; }
.footer h4 { color: #fff; font-family: var(--display); margin-bottom: 1rem; font-size: 1.05rem; }
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer ul a { font-size: 0.92rem; transition: color 0.18s; }
.footer ul a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.7rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* =================== CHECKOUT SIDEBAR =================== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(22,19,16,0.45);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s;
  z-index: 90;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100vw);
  background: var(--cream-2);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.4);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-size: 1.3rem; }
.drawer-close { font-size: 1.6rem; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; transition: background 0.18s; }
.drawer-close:hover { background: var(--line); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.3rem 1.5rem; }
.drawer-foot { padding: 1.3rem 1.5rem; border-top: 1px solid var(--line); background: var(--paper); }

.cart-line { display: flex; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.cart-line .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.6rem; flex: none; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .info b { display: block; font-size: 0.98rem; }
.cart-line .info span { font-size: 0.85rem; color: var(--ink-soft); }
.cart-line .price { font-family: var(--display); font-weight: 700; }
.cart-line .rm { font-size: 0.78rem; color: var(--pink); font-weight: 700; margin-top: 0.3rem; }

.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-soft); }
.cart-empty .e { font-size: 3.5rem; }

.drawer-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.drawer-total span { color: var(--ink-soft); }
.drawer-total b { font-family: var(--display); font-size: 1.7rem; }

/* checkout form */
.field { margin-bottom: 0.9rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.35rem; }
.field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 2px solid var(--line);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--paper);
  transition: border-color 0.18s;
}
.field input:focus { outline: none; border-color: var(--amber); }
.field .err { color: var(--pink); font-size: 0.78rem; margin-top: 0.25rem; display: none; }
.field.invalid input { border-color: var(--pink); }
.field.invalid .err { display: block; }
.secure-note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }

/* success state */
.checkout-success { text-align: center; padding: 1rem 0; }
.checkout-success .check { width: 80px; height: 80px; border-radius: 50%; background: var(--mint); color: #fff; display: grid; place-items: center; font-size: 2.5rem; margin: 0 auto 1.2rem; animation: pop 0.5s cubic-bezier(.34,1.56,.64,1); }
.checkout-success h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.checkout-success p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.dl-list { display: grid; gap: 0.7rem; margin-bottom: 1.4rem; text-align: left; }
.dl-item { display: flex; align-items: center; gap: 0.8rem; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 0.8rem 1rem; }
.dl-item .ic { font-size: 1.5rem; }
.dl-item b { flex: 1; font-size: 0.95rem; }
.dl-item button { background: var(--ink); color: #fff; font-weight: 700; font-size: 0.82rem; padding: 0.5rem 0.9rem; border-radius: 999px; }
.order-ref { background: var(--amber-soft); border-radius: 14px; padding: 0.8rem; font-size: 0.85rem; margin-bottom: 1.2rem; }
.order-ref b { font-family: var(--display); }

/* =================== TOAST =================== */
.toast-wrap { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 200; display: grid; gap: 0.6rem; width: max-content; max-width: 90vw; }
.toast {
  background: var(--ink); color: #fff;
  padding: 0.85rem 1.3rem; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: var(--shadow);
  animation: toastIn 0.3s cubic-bezier(.34,1.56,.64,1);
}
.toast .e { font-size: 1.2rem; }

/* =================== ANIMATIONS =================== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,179,0,0.6); } 70% { box-shadow: 0 0 0 22px rgba(255,179,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,179,0,0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes toastIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s, transform 0.6s; }
.reveal.in { opacity: 1; transform: none; }

/* =================== PRODUCT PAGE =================== */
.pd-hero { padding: 2.5rem 0 1rem; }
.pd-back { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 1.5rem; }
.pd-back:hover { color: var(--amber-deep); }
.pd-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: start; }
.pd-media {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  border: 6px solid #fff;
}
.pd-media .big-emoji { font-size: 6rem; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); z-index: 2; }
.pd-media .play {
  position: absolute; z-index: 3;
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--ink);
  display: grid; place-items: center; font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
  animation: pulse 2.2s infinite;
}
.pd-info .pill { margin-bottom: 1rem; }
.pd-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.7rem; }
.pd-info .tagline { font-size: 1.2rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.pd-buybox {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 90px;
}
.pd-buybox .price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.3rem; }
.pd-buybox .now { font-family: var(--display); font-size: 2.4rem; font-weight: 700; }
.pd-buybox .was { text-decoration: line-through; color: #b3a892; }
.pd-buybox .off { font-size: 0.78rem; font-weight: 800; color: var(--mint); background: #e7f9ee; padding: 0.2rem 0.55rem; border-radius: 999px; }
.pd-buybox .save-note { color: var(--mint); font-weight: 700; font-size: 0.9rem; margin-bottom: 1.2rem; }
.pd-buybox .meta { font-size: 0.86rem; color: var(--ink-soft); margin-top: 1rem; display: grid; gap: 0.5rem; }
.pd-buybox .meta div { display: flex; gap: 0.5rem; align-items: center; }

.pd-section { margin-top: 3rem; }
.pd-section h2 { font-size: 1.8rem; margin-bottom: 1.2rem; }
.pd-long { font-size: 1.12rem; color: var(--ink-soft); max-width: 64ch; }
.func-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.func-item { display: flex; gap: 0.8rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; }
.func-item .ic { width: 38px; height: 38px; border-radius: 12px; background: var(--amber-soft); display: grid; place-items: center; flex: none; font-weight: 800; color: #8a5a00; }
.howto-steps { display: grid; gap: 1rem; counter-reset: step; }
.howto-step { display: flex; gap: 1rem; align-items: flex-start; }
.howto-step .n { counter-increment: step; width: 42px; height: 42px; border-radius: 14px; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 700; display: grid; place-items: center; flex: none; }
.howto-step .n::before { content: counter(step); }
.howto-step p { padding-top: 0.5rem; }

.pd-related { margin-top: 4rem; }

/* =================== ORDERS PAGE =================== */
.orders-hero { padding: 3rem 0 1rem; text-align: center; }
.orders-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.8rem; }
.orders-hero p { color: var(--ink-soft); font-size: 1.1rem; max-width: 50ch; margin: 0 auto; }
.lookup-box {
  max-width: 520px; margin: 2rem auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.lookup-box .field { margin-bottom: 1rem; text-align: left; }
.orders-result { max-width: 760px; margin: 2.5rem auto 0; display: grid; gap: 1.2rem; }
.order-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.order-card .oc-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.order-card .oc-head b { font-family: var(--display); font-size: 1.1rem; }
.order-card .oc-head .st { background: #e7f9ee; color: var(--mint); font-weight: 800; font-size: 0.78rem; padding: 0.3rem 0.8rem; border-radius: 999px; }
.order-card .oc-date { font-size: 0.84rem; color: var(--ink-soft); }
.no-orders { text-align: center; color: var(--ink-soft); padding: 2rem; }
.no-orders .e { font-size: 3rem; }

/* =================== RESPONSIVE =================== */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-video { transform: none; max-width: 560px; margin: 1.5rem auto 0; }
  .feat-grid, .prod-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-buybox { position: static; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--cream-2); padding: 1.2rem 6vw;
    border-bottom: 1px solid var(--line); gap: 1rem;
  }
  .feat-grid, .prod-grid, .testi-grid, .audience, .hook-grid, .func-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .hb-1, .hb-2 { display: none; }
  .hero-cta .btn { flex: 1; }
}

/* =================== CHAT ASSISTANT =================== */
.chat-launcher {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 95;
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; box-shadow: 0 14px 36px -10px rgba(120,80,0,.5);
  display: grid; place-items: center; cursor: pointer;
  border: 3px solid var(--amber);
  transition: transform .2s;
}
.chat-launcher:hover { transform: scale(1.07) rotate(-4deg); }
.chat-launcher img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.chat-launcher .ping {
  position: absolute; top: -2px; right: -2px; width: 18px; height: 18px;
  background: var(--mint); border: 3px solid #fff; border-radius: 50%;
}
.chat-launcher.hide-launcher { display: none; }

.chat-panel {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 96;
  width: min(380px, calc(100vw - 2rem)); height: min(560px, calc(100vh - 2rem));
  background: var(--cream-2); border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(80,50,0,.55);
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(.96); opacity: 0; pointer-events: none;
  transition: transform .28s cubic-bezier(.34,1.4,.64,1), opacity .2s;
}
.chat-panel.open { transform: none; opacity: 1; pointer-events: auto; }
.chat-head {
  background: linear-gradient(135deg, #ffc93c, var(--amber));
  padding: 1rem 1.1rem; display: flex; align-items: center; gap: 0.7rem;
}
.chat-head img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid #fff; }
.chat-head .t { flex: 1; }
.chat-head .t b { font-family: var(--display); font-size: 1.05rem; display: block; line-height: 1.1; }
.chat-head .t span { font-size: 0.78rem; color: #6b4a00; display: flex; align-items: center; gap: 0.3rem; }
.chat-head .t span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #1f9d4d; display: inline-block; }
.chat-close { font-size: 1.4rem; width: 34px; height: 34px; border-radius: 50%; color: var(--ink); display: grid; place-items: center; }
.chat-close:hover { background: rgba(0,0,0,.1); }

.chat-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.msg { max-width: 84%; padding: 0.7rem 0.9rem; border-radius: 16px; font-size: 0.92rem; line-height: 1.45; animation: msgIn .25s ease; }
.msg a { color: var(--amber-deep); font-weight: 700; text-decoration: underline; }
.msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; align-self: flex-start; }
.msg.user { background: var(--ink); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } }
.chat-typing { align-self: flex-start; background: #fff; border: 1px solid var(--line); padding: 0.7rem 0.9rem; border-radius: 16px; border-bottom-left-radius: 5px; display: flex; gap: 4px; }
.chat-typing i { width: 7px; height: 7px; border-radius: 50%; background: #c3b59a; animation: blink2 1.2s infinite; }
.chat-typing i:nth-child(2){ animation-delay: .2s; } .chat-typing i:nth-child(3){ animation-delay: .4s; }
@keyframes blink2 { 0%,100%{opacity:.3} 50%{opacity:1} }

.chat-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 0.4rem; }
.chat-chips button {
  background: var(--amber-soft); color: #8a5a00; font-weight: 700; font-size: 0.8rem;
  padding: 0.45rem 0.8rem; border-radius: 999px; border: 1px solid #f4d98c; transition: background .15s;
}
.chat-chips button:hover { background: var(--amber); color: var(--ink); }
.chat-input { display: flex; gap: 0.5rem; padding: 0.8rem 1rem 1rem; border-top: 1px solid var(--line); background: var(--paper); }
.chat-input input { flex: 1; padding: 0.7rem 1rem; border: 2px solid var(--line); border-radius: 999px; font-size: 0.92rem; }
.chat-input input:focus { outline: none; border-color: var(--amber); }
.chat-input button { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 1.1rem; flex: none; transition: transform .15s; }
.chat-input button:hover { transform: scale(1.08); }

/* =================== PROMO BAR + PRODUCT LOGOS =================== */
.promo-bar {
  background: linear-gradient(90deg, #161310, #2a2620);
  color: #fff; text-align: center; font-weight: 800;
  font-size: 0.9rem; padding: 0.6rem 1rem; letter-spacing: 0.01em;
  position: relative; z-index: 60;
}
.promo-bar b { color: var(--amber); }
.promo-bar .blink { animation: promoBlink 1s steps(1) infinite; }
@keyframes promoBlink { 50% { opacity: 0.35; } }

.prod-logo {
  width: 86px; height: 86px; object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.18));
  transition: transform 0.25s; position: relative; z-index: 1;
}
.prod-card:hover .prod-logo { transform: scale(1.1) rotate(-5deg); }
.pd-logo {
  width: clamp(120px, 22vw, 168px); height: clamp(120px, 22vw, 168px);
  object-fit: contain; filter: drop-shadow(0 14px 24px rgba(0,0,0,0.2)); z-index: 2; position: relative;
}

/* =================== ACCOUNT =================== */
.btn-use { background: var(--ink); color: #fff; font-weight: 700; font-size: 0.82rem; padding: 0.5rem 0.9rem; border-radius: 999px; white-space: nowrap; }
.btn-use:hover { background: var(--amber); color: var(--ink); }
.nav-akun { font-weight: 700; background: var(--amber-soft); color: #8a5a00 !important; padding: 0.4rem 0.9rem; border-radius: 999px; }
.nav-akun:hover { background: var(--amber); color: var(--ink) !important; }

.acct-head { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); margin-bottom: 1.6rem; }
.acct-head .av { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg,#ffc93c,var(--amber)); display: grid; place-items: center; font-size: 1.6rem; flex: none; }
.acct-head .who b { font-family: var(--display); font-size: 1.2rem; display: block; }
.acct-head .who span { color: var(--ink-soft); font-size: 0.9rem; }
.acct-head .acct-actions { margin-left: auto; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.acct-expiry { font-size: 0.8rem; color: #8a5a00; background: var(--amber-soft); padding: 0.35rem 0.8rem; border-radius: 999px; font-weight: 700; }

.owned-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.1rem; }
.owned-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; transition: transform .18s; }
.owned-card:hover { transform: translateY(-5px); }
.owned-card img { width: 60px; height: 60px; }
.owned-card h3 { font-size: 1.1rem; }
.owned-card p { color: var(--ink-soft); font-size: 0.86rem; flex: 1; }
.owned-card .btn { width: 100%; }

.locked-box { max-width: 480px; margin: 2rem auto; text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 1.8rem; box-shadow: var(--shadow-sm); }
.locked-box .lk { font-size: 3rem; }

.otp-inputs { display: flex; gap: 0.5rem; justify-content: center; margin: 1rem 0; }
.otp-inputs input { width: 48px; height: 56px; text-align: center; font-size: 1.5rem; font-weight: 800; border: 2px solid var(--line); border-radius: 14px; background: var(--cream-2); }
.otp-inputs input:focus { outline: none; border-color: var(--amber); }
.otp-demo { background: #e7f9ee; border: 1px solid #b6e6c8; border-radius: 12px; padding: 0.7rem 1rem; font-size: 0.85rem; color: #15803d; margin: 0.8rem 0; }
.otp-demo b { font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.1em; }

/* product logos inside cart/checkout/chat */
.cart-line .ic { padding: 7px; }
.cart-line .ic img { width: 100%; height: 100%; object-fit: contain; }
.dl-item img.ic { width: 40px; height: 40px; object-fit: contain; flex: none; }
.msg .chat-prod-logo { width: 40px; height: 40px; object-fit: contain; float: left; margin: 0 0.6rem 0.2rem 0; }

/* =================== PRODUCT PROMO "VIDEO" =================== */
.pd-media.promo { padding: 0; }
.promo-stage { position: absolute; inset: 0; }
.promo-scene {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 1.6rem; gap: 0.7rem; opacity: 0; transition: opacity 0.55s; pointer-events: none;
}
.promo-scene.on { opacity: 1; pointer-events: auto; }
.promo-scene .big { font-family: var(--display); font-weight: 700; line-height: 1.12; }
.pchip { font-weight: 800; font-size: 0.78rem; padding: 0.35rem 0.8rem; border-radius: 999px; background: rgba(255,255,255,0.22); color: #fff; }
.promo-scene[data-bg=light] .pchip { background: var(--amber-soft); color: #8a5a00; }
.promo-logo { width: 80px; height: 80px; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.3)); }
.promo-fns { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.86rem; color: #fff; font-weight: 600; }
.promo-steps { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; max-width: 320px; }
.pstep { display: flex; align-items: center; gap: 0.6rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.5rem 0.8rem; font-size: 0.82rem; text-align: left; box-shadow: var(--shadow-sm); }
.pstep b { width: 24px; height: 24px; flex: none; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--display); font-size: 0.8rem; }
.promo-price { color: #fff; }
.promo-price s { opacity: 0.7; font-size: 0.95rem; }
.promo-price b { font-family: var(--display); font-size: 1.9rem; }
.promo-price i { font-style: normal; background: #fff; color: var(--mint); font-weight: 800; font-size: 0.78rem; padding: 0.15rem 0.5rem; border-radius: 999px; }
.promo-cta { display: inline-block; background: #fff; color: var(--ink); font-weight: 800; padding: 0.7rem 1.3rem; border-radius: 999px; box-shadow: var(--shadow); cursor: pointer; animation: ctaPulse 1.4s infinite; margin-top: 0.2rem; }
.promo-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; }
.promo-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.45); box-shadow: 0 0 0 1px rgba(0,0,0,0.12); transition: 0.3s; }
.promo-dots i.on { background: var(--amber); width: 18px; border-radius: 999px; }
@keyframes ctaPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.promo-scene.on .big, .promo-scene.on .pchip, .promo-scene.on .promo-fns, .promo-scene.on .promo-price, .promo-scene.on .promo-cta {
  animation-name: pIn; animation-duration: 0.5s; animation-fill-mode: both;
}
.promo-scene.on .promo-logo { animation-name: pPop; animation-duration: 0.55s; animation-fill-mode: both; }
.promo-scene.on .pstep { animation-name: pIn; animation-duration: 0.45s; animation-fill-mode: both; }
.promo-steps .pstep:nth-child(1) { animation-delay: 0.15s; }
.promo-steps .pstep:nth-child(2) { animation-delay: 0.35s; }
.promo-steps .pstep:nth-child(3) { animation-delay: 0.55s; }
@keyframes pIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pPop { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: none; } }

/* =================== PRODUCT PROMO v2 — animated real-UI demo =================== */
.pd-media.promo { padding:0; background:#fff !important; }
.px { position:absolute; inset:0; overflow:hidden; font-family:var(--font); }
.px-app { position:absolute; inset:0; display:flex; flex-direction:column; background:var(--cream-2); }
.px-bar { height:32px; display:flex; align-items:center; gap:6px; padding:0 12px; background:#fff; border-bottom:1px solid var(--line); flex:none; }
.px-bar i { width:9px; height:9px; border-radius:50%; }
.px-bar .d1{background:#ff5f57}.px-bar .d2{background:#febc2e}.px-bar .d3{background:#28c840}
.px-bar .ttl { margin-left:8px; font-weight:800; font-size:11px; color:var(--ink); display:flex; align-items:center; gap:6px; }
.px-bar .ttl img { width:16px; height:16px; }
.px-body { flex:1; padding:12px 14px; position:relative; overflow:hidden; font-size:12.5px; }
.px-col2 { display:grid; grid-template-columns:1fr 1fr; gap:10px; height:100%; }
.pxf { background:#fff; border:1.5px solid var(--line); border-radius:9px; padding:5px 9px; margin-bottom:7px; transition:border-color .2s, box-shadow .2s; }
.pxf small { display:block; font-size:8.5px; font-weight:800; color:var(--ink-soft); margin-bottom:1px; letter-spacing:.02em; }
.pxf .v { font-weight:600; min-height:14px; color:var(--ink); font-size:12px; }
.pxf.focus { border-color:var(--pc); box-shadow:0 0 0 3px rgba(0,0,0,.05); }
.typing::after { content:'|'; color:var(--pc); animation:pxcaret .7s steps(1) infinite; font-weight:400; margin-left:1px; }
@keyframes pxcaret { 50%{opacity:0} }
.pxbtn { display:inline-flex; align-items:center; justify-content:center; gap:5px; background:var(--pc); color:#fff; font-weight:800; font-size:11px; padding:7px 13px; border-radius:999px; box-shadow:0 6px 14px -6px var(--pc); }
.pxbtn.full { width:100%; }
.pxcard { background:#fff; border:1px solid var(--line); border-radius:9px; padding:7px 9px; box-shadow:var(--shadow-sm); font-size:11px; }
.pxchip { display:inline-block; background:var(--amber-soft); color:#8a5a00; font-weight:800; font-size:9.5px; padding:3px 8px; border-radius:999px; }
.px-cursor { position:absolute; left:0; top:0; z-index:30; pointer-events:none; filter:drop-shadow(0 2px 3px rgba(0,0,0,.35)); will-change:transform; }
.px-ripple { position:absolute; width:14px; height:14px; border-radius:50%; background:var(--pc); opacity:.5; z-index:29; pointer-events:none; transform:translate(-50%,-50%); }
.px-cta { position:absolute; left:0; right:0; bottom:0; transform:translateY(110%); background:var(--pc); color:#fff; font-weight:800; text-align:center; padding:10px; font-size:13px; z-index:25; display:flex; align-items:center; justify-content:center; gap:7px; }
.px-cta .old { text-decoration:line-through; opacity:.7; font-weight:600; }
.px-head { font-family:var(--display); font-weight:700; font-size:14px; margin-bottom:8px; display:flex; align-items:center; gap:6px; }
/* invoice mini */
.pxinv { background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden; height:100%; display:flex; flex-direction:column; }
.pxinv .h { padding:8px 10px; color:#fff; font-weight:800; font-size:12px; }
.pxinv .b { padding:8px 10px; flex:1; font-size:10.5px; }
.pxinv .ln { display:flex; justify-content:space-between; padding:2px 0; border-bottom:1px dashed var(--line); }
.pxinv .tot { display:flex; justify-content:space-between; font-family:var(--display); font-weight:700; font-size:14px; margin-top:6px; }
/* caption cards */
.pxcap { background:var(--cream); border:1px solid var(--line); border-radius:8px; padding:6px 8px; margin-bottom:6px; font-size:10.5px; opacity:0; }
.pxcap b { color:var(--ink); }
/* ledger */
.pxbar-track { height:9px; border-radius:999px; background:var(--line); overflow:hidden; margin-top:6px; }
.pxbar-track i { display:block; height:100%; width:0; background:var(--mint); }
/* code */
.pxcode { background:#1b1712; color:#f3ead5; border-radius:9px; padding:8px 10px; font-family:'Courier New',monospace; font-size:9.5px; line-height:1.5; height:100%; overflow:hidden; }
.pxcode .l { white-space:pre; opacity:0; }
.pxcode .k { color:#ffd166; } .pxcode .h { color:#ff9e2e; }
/* labels grid */
.pxlabels { display:grid; grid-template-columns:repeat(3,1fr); gap:5px; }
.pxlabels .lb { background:#fff; border:1px solid var(--line); border-radius:6px; padding:5px; text-align:center; font-size:8px; opacity:0; }
.pxlabels .lb .p { color:var(--pc); font-weight:800; font-size:11px; }
/* ratios */
.pxratios { display:flex; gap:8px; align-items:center; justify-content:center; height:100%; }
.pxratios .fr { background:var(--pc); border-radius:8px; position:relative; overflow:hidden; opacity:0; box-shadow:var(--shadow-sm); display:grid; place-items:center; }
.pxratios .fr .ph { width:55%; height:55%; background:#fff; border-radius:4px; }
.pxratios .fr .bd { position:absolute; top:5px; left:5px; background:#fff; color:var(--pc); font-weight:800; font-size:7px; padding:1px 4px; border-radius:4px; }
.pxratios .fr small { position:absolute; bottom:3px; font-size:7px; color:#fff; font-weight:800; }
/* card mini (kartu digital) */
.pxkartu { height:100%; display:grid; place-items:center; }
.pxkartu .card { width:62%; aspect-ratio:.62; border-radius:14px; padding:11px; color:#fff; position:relative; box-shadow:var(--shadow); display:flex; flex-direction:column; }
.pxkartu .card .nm { font-family:var(--display); font-weight:700; font-size:13px; opacity:0; }
.pxkartu .card .ct { font-size:8.5px; margin-top:2px; opacity:0; }
.pxkartu .card .qr { position:absolute; right:11px; bottom:11px; width:34px; height:34px; background:#fff; border-radius:6px; opacity:0; display:grid; place-items:center; font-size:7px; color:#111; }

/* ---- promo v3: real controls ---- */
.pxctrl { margin-bottom:7px; }
.pxctrl .lab { font-size:8px; font-weight:800; color:var(--ink-soft); letter-spacing:.04em; margin-bottom:3px; text-transform:uppercase; }
.pxrow { display:flex; gap:5px; align-items:center; flex-wrap:wrap; }
.pxsw { width:17px; height:17px; border-radius:50%; border:2px solid #fff; box-shadow:0 0 0 1.5px var(--line); flex:none; }
.pxsw.on { box-shadow:0 0 0 2px var(--ink); transform:scale(1.15); }
.pxopt { font-size:9px; font-weight:800; padding:4px 8px; border-radius:7px; background:#fff; border:1.5px solid var(--line); color:var(--ink-soft); }
.pxopt.on { background:var(--pc); color:#fff; border-color:var(--pc); box-shadow:0 4px 10px -4px var(--pc); }
.pxtpl { width:28px; height:36px; border-radius:6px; border:2px solid var(--line); background:linear-gradient(150deg,#fff,#eee); position:relative; flex:none; }
.pxtpl.on { border-color:var(--ink); transform:scale(1.08); }
.pxtab { font-size:9px; font-weight:800; padding:4px 9px; border-radius:999px; color:var(--ink-soft); background:#fff; border:1px solid var(--line); }
.pxtab.on { background:var(--pc); color:#fff; border-color:var(--pc); }
.pxbars { display:flex; align-items:flex-end; gap:6px; height:48px; margin-top:6px; }
.pxbars i { flex:1; background:var(--pc); border-radius:3px 3px 0 0; height:4px; }
.pxlogo-slot { width:26px; height:26px; border-radius:7px; border:1.5px dashed var(--line); display:grid; place-items:center; font-size:13px; }
.pxlogo-slot.filled { border-style:solid; border-color:var(--pc); background:var(--cream); }
.pxhash { color:var(--pc); font-weight:700; }
.pxpanel { display:none; }
.pxpanel.show { display:block; }

/* ---- promo v3.1: Kartu Digital premium ---- */
.pxk { height:100%; display:grid; place-items:center; perspective:760px; }
.pxk-card { width:94%; max-width:236px; aspect-ratio:1.05; border-radius:16px; padding:13px 14px; color:#fff; position:relative; overflow:hidden; box-shadow:0 22px 44px -16px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.12); display:flex; flex-direction:column; transform-style:preserve-3d; }
.pxk-sheen { position:absolute; top:-60%; left:-40%; width:45%; height:220%; background:linear-gradient(105deg,transparent,rgba(255,255,255,.55),transparent); transform:rotate(9deg); pointer-events:none; z-index:4; }
.pxk-top { display:flex; align-items:center; gap:8px; }
.pxk-mono { width:30px; height:30px; border-radius:9px; background:rgba(255,255,255,.16); display:grid; place-items:center; font-family:var(--display); font-weight:700; font-size:14px; border:1px solid rgba(255,255,255,.28); flex:none; }
.pxk-brand { font-size:7.5px; font-weight:800; letter-spacing:.12em; opacity:0; }
.pxk-name { font-family:var(--display); font-weight:700; font-size:16px; margin-top:9px; opacity:0; line-height:1.1; }
.pxk-role { font-size:8.5px; opacity:0; color:rgba(255,255,255,.85); margin-top:1px; }
.pxk-cts { margin-top:8px; display:flex; flex-direction:column; gap:3px; }
.pxk-ct { font-size:8.5px; opacity:0; display:flex; align-items:center; gap:5px; }
.pxk-qr { position:absolute; right:12px; bottom:12px; width:60px; height:60px; background:#fff; border-radius:9px; padding:3px; opacity:0; box-shadow:0 7px 16px -4px rgba(0,0,0,.45); overflow:hidden; z-index:3; }
.pxk-qr svg { display:block; border-radius:5px; }
.pxk-scan { position:absolute; left:3px; right:3px; height:9px; top:3px; background:linear-gradient(transparent,rgba(34,197,94,.85),transparent); box-shadow:0 0 8px rgba(34,197,94,.7); opacity:0; z-index:4; border-radius:4px; }
.pxk-qrtag { position:absolute; right:12px; bottom:78px; background:#161310; color:#fff; font-size:8px; font-weight:800; padding:3px 8px; border-radius:7px; opacity:0; white-space:nowrap; z-index:5; box-shadow:var(--shadow-sm); }
.pxk-qrtag::after { content:""; position:absolute; right:14px; bottom:-4px; width:8px; height:8px; background:#161310; transform:rotate(45deg); }
.pxk-send { margin-top:auto; align-self:flex-start; background:rgba(255,255,255,.95); color:#161310; font-weight:800; font-size:9.5px; padding:6px 12px; border-radius:999px; opacity:0; box-shadow:0 6px 14px -6px rgba(0,0,0,.4); }
.pxk-fields { display:flex; flex-direction:column; gap:4px; margin-top:5px; }
.pxk-field { display:flex; align-items:center; gap:6px; font-size:9px; font-weight:700; color:var(--ink-soft); opacity:.55; transition:opacity .2s; }
.pxk-field.on { opacity:1; }
.pxk-field .ck { width:14px; height:14px; border-radius:4px; border:1.5px solid var(--line); display:grid; place-items:center; font-size:8px; color:#fff; flex:none; }
.pxk-field.on .ck { background:var(--mint); border-color:var(--mint); }

/* ---- promo v3.2: Sosmed Ratio sesuai fungsi asli ---- */
.pxratios { display:flex; gap:9px; align-items:center; justify-content:center; }
.pxratios .fr { border-radius:8px; position:relative; overflow:hidden; opacity:0; box-shadow:var(--shadow-sm); background:#caa; }
.pxratios .fr .ph { position:absolute; inset:0; background:radial-gradient(circle at 34% 28%, #ffe6b0, transparent 60%), linear-gradient(140deg,#e8923f,#9c4f18); display:grid; place-items:center; font-size:19px; }
.pxratios .fr .pita { position:absolute; left:-3px; top:9px; background:var(--pc); color:#fff; font-size:6.5px; font-weight:800; padding:2px 7px 2px 4px; box-shadow:0 2px 4px rgba(0,0,0,.35); opacity:0; clip-path:polygon(0 0,100% 0,86% 50%,100% 100%,0 100%); }
.pxratios .fr .wm { position:absolute; right:4px; bottom:4px; font-size:5.5px; color:#fff; font-weight:800; opacity:0; text-shadow:0 1px 2px rgba(0,0,0,.7); }
.pxratios .fr .rl { position:absolute; left:4px; bottom:4px; font-size:6px; color:#fff; font-weight:800; background:rgba(0,0,0,.45); padding:0 3px; border-radius:3px; }
.pxbtn.dark { background:var(--ink) !important; box-shadow:none; }

/* =================== LANDING HERO VIDEO (fun SaaS) =================== */
.hv-stage { position:absolute; inset:0; }
.hv { position:absolute; inset:0; container-type:inline-size; overflow:hidden; background:linear-gradient(140deg,#fff7e6,#ffe7bd); }
.hv-blob { position:absolute; border-radius:50%; filter:blur(34px); opacity:.55; pointer-events:none; }
.hv-brand { position:absolute; top:3cqw; left:3.6cqw; display:flex; align-items:center; gap:1.5cqw; font-family:var(--display); font-weight:700; font-size:2.7cqw; color:var(--ink); z-index:6; }
.hv-brand img { width:4.6cqw; height:4.6cqw; border-radius:1.3cqw; }
.hv-scene { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:5cqw 6cqw; opacity:0; gap:2.2cqw; }
.hv-kicker { font-weight:800; letter-spacing:.16em; font-size:2.4cqw; color:var(--amber-deep); text-transform:uppercase; }
.hv-title { font-family:var(--display); font-weight:700; font-size:5.4cqw; color:var(--ink); line-height:1.05; max-width:94%; }
.hv-big { font-family:var(--display); font-weight:700; font-size:6.4cqw; color:var(--ink); max-width:84%; line-height:1.08; }
.hv-cards { display:grid; grid-template-columns:1fr 1fr; gap:2.4cqw; margin-top:.6cqw; width:84cqw; }
.hv-card { background:#fff; border-radius:3cqw; padding:2.4cqw 3.2cqw; display:flex; align-items:center; gap:2cqw; box-shadow:0 3cqw 6cqw -3cqw rgba(120,80,0,.4); font-weight:700; font-size:2.8cqw; color:var(--ink); }
.hv-card b { font-size:4.6cqw; line-height:1; }
.hv-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2.4cqw 1.6cqw; margin-top:.4cqw; width:88cqw; }
.hv-prod { display:flex; flex-direction:column; align-items:center; gap:.9cqw; }
.hv-prod img { width:9cqw; height:9cqw; filter:drop-shadow(0 2cqw 3cqw rgba(0,0,0,.2)); }
.hv-prod span { font-size:1.8cqw; font-weight:800; color:var(--ink-soft); line-height:1; text-align:center; }
.hv-count { font-size:2.9cqw; font-weight:700; color:var(--ink); margin-top:1.6cqw; }
.hv-count b { font-family:var(--display); color:var(--amber-deep); font-size:4.2cqw; }
.hv-price { color:var(--amber-deep); }
.hv-cta { background:var(--ink); color:#fff; font-weight:800; font-size:3.3cqw; padding:2.5cqw 5cqw; border-radius:99cqw; box-shadow:0 3cqw 7cqw -3cqw rgba(0,0,0,.45); }
.hv-chaos { position:relative; width:100%; height:34cqw; }
.hv-chaos span { position:absolute; font-size:7cqw; left:calc(50% - 3.5cqw); top:calc(50% - 3.5cqw); }
.hv-dots { position:absolute; bottom:2.8cqw; left:50%; transform:translateX(-50%); display:flex; gap:1.4cqw; z-index:6; }
.hv-dots i { width:1.7cqw; height:1.7cqw; border-radius:50%; background:rgba(0,0,0,.18); transition:.3s; }
.hv-dots i.on { background:var(--amber-deep); width:4.2cqw; border-radius:99cqw; }

/* =================== HERO VIDEO v2 — premium editorial reel =================== */
.hv { background:
    radial-gradient(110% 80% at 86% 8%, #fff2d4, transparent 52%),
    radial-gradient(90% 80% at 6% 100%, #ffe7ef, transparent 50%),
    linear-gradient(165deg,#fffaf2,#fff4e6) !important; }
.hv-top { position:absolute; top:4cqw; left:4.6cqw; display:flex; align-items:center; gap:1.4cqw; z-index:8; font-family:var(--display); font-weight:700; font-size:2.5cqw; color:var(--ink); opacity:0; }
.hv-top img { width:4.2cqw; height:4.2cqw; border-radius:1.1cqw; }
.hv-track { position:absolute; inset:0; }
.hv-s { position:absolute; inset:0; display:grid; place-items:center; padding:6.5cqw 8.5cqw; will-change:transform; }
.hv-c { width:100%; display:flex; flex-direction:column; }
.hv-c.center { align-items:center; text-align:center; }
.hv-c.left { align-items:flex-start; text-align:left; padding-left:2cqw; }
.hv-kick { font-weight:800; letter-spacing:.24em; font-size:2.05cqw; color:var(--amber-deep); margin-bottom:2.8cqw; }
.hv-s .mask, .hv-s .ln { overflow:hidden; display:block; padding-bottom:.04em; }
.hv-s .mask > span, .hv-s .ln > span { display:inline-block; transform:translateY(115%); }
.hv-h { font-family:var(--display); font-weight:700; font-size:6.5cqw; line-height:1.04; color:var(--ink); letter-spacing:-.02em; }
.hv-h em { font-style:normal; position:relative; }
.uline { position:absolute; left:-.04em; right:-.04em; bottom:.08em; height:.17em; background:var(--amber); border-radius:1cqw; transform:scaleX(0); transform-origin:left; z-index:-1; }
.hv-sub { font-size:2.7cqw; color:var(--ink-soft); margin-top:3.4cqw; max-width:78%; line-height:1.4; }
.hv-list { list-style:none; display:flex; flex-direction:column; gap:3.6cqw; margin-top:.5cqw; width:100%; }
.hv-list li { display:flex; align-items:center; gap:2.6cqw; font-size:3.5cqw; font-weight:600; color:var(--ink); }
.hv-list .ck { width:5.2cqw; height:5.2cqw; flex:none; border-radius:50%; background:var(--amber); color:#fff; display:grid; place-items:center; font-size:2.7cqw; font-weight:800; transform:scale(0); box-shadow:0 1.4cqw 3cqw -1cqw rgba(255,179,0,.7); }
.hv-row { display:grid; grid-template-columns:repeat(4,1fr); gap:3.4cqw 1.5cqw; width:80cqw; margin-top:.5cqw; }
.hv-t { display:flex; flex-direction:column; align-items:center; gap:1.1cqw; opacity:0; }
.hv-t img { width:9.6cqw; height:9.6cqw; filter:drop-shadow(0 1.8cqw 2.8cqw rgba(0,0,0,.17)); }
.hv-t span { font-size:1.82cqw; font-weight:700; color:var(--ink-soft); }
.hv-price { display:flex; align-items:baseline; gap:2.2cqw; margin:.4cqw 0 1.6cqw; }
.hv-price s { font-size:3cqw; color:var(--ink-soft); opacity:.55; }
.hv-price b { font-family:var(--display); font-weight:700; font-size:8.6cqw; color:var(--ink); letter-spacing:-.02em; }
.hv-h2 { font-size:3cqw; font-weight:600; color:var(--ink); }
.hv-btn { margin-top:3.2cqw; background:var(--ink); color:#fff; font-weight:800; font-size:3cqw; padding:2.5cqw 5.2cqw; border-radius:99cqw; box-shadow:0 2.6cqw 5cqw -2cqw rgba(0,0,0,.42); opacity:0; }
.hv-note { font-size:2.25cqw; color:var(--ink-soft); margin-top:2.6cqw; }
.hv-prog { position:absolute; left:0; bottom:0; height:.85cqw; width:100%; background:rgba(120,80,0,.08); z-index:8; }
.hv-prog i { display:block; height:100%; width:0; background:linear-gradient(90deg,var(--amber),var(--amber-deep)); }

/* =================== CHECKOUT SCALEV (modal in-site) =================== */
.ar-co { position: fixed; inset: 0; z-index: 9000; display: none; }
.ar-co.show { display: block; }
.ar-co-backdrop { position: absolute; inset: 0; background: rgba(22,19,16,.55); backdrop-filter: blur(3px); animation: arFade .2s; }
.ar-co-card { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(440px, 94vw); max-height: 92vh; overflow-y: auto; background: var(--cream-2); border-radius: 22px; box-shadow: var(--shadow); animation: arPop .25s cubic-bezier(.34,1.56,.64,1); }
@keyframes arFade { from { opacity: 0; } } @keyframes arPop { from { opacity: 0; transform: translate(-50%,-46%) scale(.96); } }
.ar-co-x { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); font-size: 1rem; z-index: 2; }
.ar-co-body { padding: 1.7rem 1.5rem 1.4rem; }
.ar-co-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .4rem; }
.ar-co-head img { width: 52px; height: 52px; }
.ar-co-head.sm img { width: 40px; height: 40px; }
.ar-co-pname { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.ar-co-price b { font-family: var(--display); font-size: 1.25rem; color: var(--ink); }
.ar-co-price s { color: var(--ink-soft); opacity: .6; font-size: .9rem; margin-left: .2rem; }
.ar-co-price i { font-style: normal; background: var(--mint); color: #fff; font-weight: 800; font-size: .72rem; padding: .1rem .4rem; border-radius: 999px; margin-left: .3rem; }
.ar-co-sub { color: var(--ink-soft); font-size: .88rem; margin: .3rem 0 1rem; }
.ar-co-l { display: block; font-weight: 700; font-size: .82rem; margin: .7rem 0 .3rem; }
.ar-co-hint { font-weight: 500; color: var(--ink-soft); }
.ar-co-i { width: 100%; padding: .8rem .9rem; border: 1.6px solid var(--line); border-radius: 12px; font-size: .95rem; font-family: inherit; background: #fff; }
.ar-co-i:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-soft); }
.ar-co-methods { display: flex; flex-direction: column; gap: .5rem; }
.ar-co-method { display: flex; align-items: center; gap: .7rem; text-align: left; padding: .65rem .8rem; border: 1.6px solid var(--line); border-radius: 12px; background: #fff; transition: .15s; }
.ar-co-method.on { border-color: var(--amber); background: var(--amber-soft); }
.ar-co-method .em { font-size: 1.3rem; }
.ar-co-method .mt { flex: 1; display: flex; flex-direction: column; }
.ar-co-method .mt b { font-size: .92rem; }
.ar-co-method .mt small { color: var(--ink-soft); font-size: .76rem; }
.ar-co-method .reco { font-style: normal; background: var(--amber); color: var(--ink); font-size: .64rem; font-weight: 800; padding: .05rem .35rem; border-radius: 999px; margin-left: .25rem; vertical-align: middle; }
.ar-co-method .chk { color: var(--line); font-size: 1rem; }
.ar-co-method.on .chk { color: var(--amber-deep); }
.ar-co-err { color: #d6336c; font-size: .85rem; font-weight: 600; margin: .5rem 0 0; min-height: 1px; }
.ar-co-pay { margin-top: 1.1rem; }
.ar-co-secure { text-align: center; color: var(--ink-soft); font-size: .78rem; margin-top: .7rem; }
.ar-co-loading, .ar-co-err-box, .ar-paid { text-align: center; padding: 2rem 0 1rem; }
.ar-spin { width: 38px; height: 38px; border: 4px solid var(--amber-soft); border-top-color: var(--amber-deep); border-radius: 50%; margin: 0 auto 1rem; animation: arSpin .8s linear infinite; }
@keyframes arSpin { to { transform: rotate(360deg); } }
.ar-pay-status { display: flex; align-items: center; gap: .5rem; justify-content: center; background: var(--amber-soft); color: #8a5a00; font-weight: 700; font-size: .86rem; padding: .55rem; border-radius: 12px; margin: .8rem 0; }
.ar-pay-status .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber-deep); animation: arPulse 1s infinite; }
.ar-pay-status.paid { background: #e7f9ee; color: #157f3d; }
@keyframes arPulse { 50% { opacity: .3; } }
.ar-pay-qr { background: #fff; border: 1.6px solid var(--line); border-radius: 16px; padding: 14px; display: grid; place-items: center; min-height: 220px; }
.ar-pay-load { color: var(--ink-soft); font-size: .85rem; text-align: center; }
.ar-pay-note { color: var(--ink-soft); font-size: .82rem; text-align: center; margin-top: .7rem; }
.ar-pay-va { background: #fff; border: 1.6px solid var(--line); border-radius: 14px; padding: 1rem; text-align: center; }
.ar-pay-va small { color: var(--ink-soft); font-size: .78rem; }
.ar-pay-vanum { display: flex; align-items: center; justify-content: center; gap: .6rem; font-family: var(--display); font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; margin: .3rem 0; }
.ar-pay-copy { background: var(--ink); color: #fff; font-size: .72rem; font-weight: 700; padding: .3rem .6rem; border-radius: 8px; }
.ar-pay-actions { display: flex; flex-direction: column; align-items: center; gap: .6rem; margin-top: 1rem; }
.ar-pay-fallback { color: var(--ink-soft); font-size: .8rem; text-decoration: underline; }
.ar-paid-ic { font-size: 3rem; }
.ar-paid h3 { font-family: var(--display); margin: .4rem 0; }
.ar-paid p { color: var(--ink-soft); margin-bottom: 1.1rem; }

/* =================== KERANJANG SIDEBAR (Scalev checkout) =================== */
.ar-cart { position: fixed; inset: 0; z-index: 9000; display: none; }
.ar-cart.show { display: block; }
.ar-cart-back { position: absolute; inset: 0; background: rgba(22,19,16,.5); backdrop-filter: blur(3px); animation: arFade .2s; }
.ar-cart-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 94vw); background: var(--cream-2); box-shadow: var(--shadow); display: flex; flex-direction: column; animation: arSlideIn .28s cubic-bezier(.4,0,.2,1); }
@keyframes arSlideIn { from { transform: translateX(100%); } }
.ar-cart-x { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); font-size: 1rem; z-index: 2; }
.ar-cart-body { flex: 1; overflow-y: auto; padding: 1.5rem 1.4rem; display: flex; flex-direction: column; }
.ar-cart-head { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.ar-cart-head h3 { font-family: var(--display); font-size: 1.3rem; }
.ar-cart-n { background: var(--amber); color: var(--ink); font-size: .8rem; font-weight: 800; padding: .1rem .5rem; border-radius: 999px; }
.ar-cart-bk { font-size: 1.3rem; width: 32px; height: 32px; }
.ar-cart-empty { text-align: center; margin: auto 0; color: var(--ink-soft); }
.ar-cart-empty .e { font-size: 3rem; }
.ar-cart-empty p { margin: .6rem 0 1rem; }
.ar-cart-items { display: flex; flex-direction: column; gap: .6rem; }
.ar-cart-item { display: flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .6rem .8rem; }
.ar-cart-item img { width: 42px; height: 42px; }
.ar-cart-item .ic { flex: 1; display: flex; flex-direction: column; }
.ar-cart-item .ic b { font-size: .92rem; }
.ar-cart-item .ic span { color: var(--ink-soft); font-size: .85rem; }
.ar-cart-rm { color: var(--ink-soft); width: 26px; height: 26px; border-radius: 50%; font-size: .8rem; }
.ar-cart-rm:hover { background: #ffe3e3; color: #d6336c; }
.ar-cart-foot { margin-top: auto; padding-top: 1rem; }
.ar-cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .8rem; }
.ar-cart-total b { font-family: var(--display); font-size: 1.5rem; }
.ar-cart-note { text-align: center; color: var(--ink-soft); font-size: .78rem; margin-top: .6rem; }
.ar-cart-mini { color: var(--ink-soft); font-size: .9rem; margin-bottom: .6rem; }
.ar-pay-ovo { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1rem; }
.ar-pay-ovo .ic { font-size: 2.4rem; }
.ar-pay-ovo b { display: block; margin: .4rem 0; }
.ar-pay-ovo p { color: var(--ink-soft); font-size: .88rem; }
.ar-paid-list { display: flex; flex-direction: column; gap: .4rem; margin: .8rem 0 1.1rem; }
.ar-paid-it { display: flex; align-items: center; gap: .6rem; background: var(--cream); border-radius: 10px; padding: .4rem .7rem; font-weight: 600; font-size: .9rem; }
.ar-paid-it img { width: 30px; height: 30px; }

/* ---- Akun Saya (unlock via email) ---- */
.acct-login { max-width: 420px; margin: 2rem auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 2.4rem 1.8rem; box-shadow: var(--shadow-sm); }
.acct-login .lk { font-size: 2.6rem; }
.acct-login h1 { font-family: var(--display); font-size: 1.6rem; margin: .4rem 0; }
.acct-login p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.acct-lock-banner { background: var(--amber-soft); color: #8a5a00; border-radius: 12px; padding: .8rem 1rem; font-weight: 600; font-size: .9rem; margin-bottom: 1.2rem; text-align: left; }
.owned-card.locked img { filter: grayscale(.35); opacity: .85; }

/* =================== STORYTELLING (Apa itu Anti Ribet) =================== */
.story { max-width: 880px; margin: 2.6rem auto 3.8rem; display: flex; flex-direction: column; gap: 1.7rem; }
.story .hl { color: var(--amber-deep); }
.story-row, .story-q, .story-manifesto, .story-honest, .story-steps, .story-close { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
.story.in .story-row, .story.in .story-q, .story.in .story-manifesto, .story.in .story-honest, .story.in .story-steps, .story.in .story-close { opacity: 1; transform: none; }
.story.in .story-row { transition-delay: .05s; } .story.in .story-q { transition-delay: .2s; } .story.in .story-manifesto { transition-delay: .35s; } .story.in .story-honest { transition-delay: .5s; } .story.in .story-steps { transition-delay: .62s; } .story.in .story-close { transition-delay: .78s; }
.story-tag { display: inline-block; font-weight: 800; font-size: .85rem; color: var(--amber-deep); background: var(--amber-soft); padding: .35rem .9rem; border-radius: 999px; margin-bottom: .9rem; }
.story-row p { font-size: clamp(1.05rem, 2.4vw, 1.35rem); line-height: 1.6; color: var(--ink); }
.strike { position: relative; font-weight: 700; white-space: nowrap; }
.strike::after { content: ""; position: absolute; left: -2px; right: -2px; top: 54%; height: 3px; background: #e0395e; border-radius: 3px; transform: scaleX(0); transform-origin: left; transition: transform .55s .55s cubic-bezier(.22,1,.36,1); }
.story.in .strike::after { transform: scaleX(1); }
.story-q { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 3.4vw, 2rem); line-height: 1.25; color: var(--ink); text-align: center; padding: .6rem 0; }
.story-q em { font-style: normal; color: var(--amber-deep); }
.story-manifesto { text-align: center; background: linear-gradient(135deg, #fff6e0, #fffdf8); border: 1px solid var(--amber-soft); border-radius: 24px; padding: 2.1rem 1.6rem; }
.story-manifesto h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: .5rem; }
.story-manifesto > p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.2rem; }
.story-nos { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.story-nos span { background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: .45rem .95rem; font-weight: 700; font-size: .88rem; opacity: 0; transform: scale(.7); }
.story.in .story-nos span { opacity: 1; transform: none; transition: all .45s cubic-bezier(.34,1.56,.64,1); }
.story.in .story-nos span:nth-child(1){transition-delay:.5s} .story.in .story-nos span:nth-child(2){transition-delay:.6s} .story.in .story-nos span:nth-child(3){transition-delay:.7s} .story.in .story-nos span:nth-child(4){transition-delay:.8s}
.story-honest { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--ink); color: #fff; border-radius: 20px; padding: 1.7rem 1.8rem; }
.story-honest .hic { font-size: 2.2rem; flex: none; line-height: 1; }
.story-honest p { font-size: 1rem; line-height: 1.65; }
.story-honest b { color: var(--amber); }
.story-steps { display: flex; align-items: stretch; justify-content: center; gap: .9rem; flex-wrap: wrap; }
.story-step { flex: 1; min-width: 160px; max-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem 1.1rem; text-align: center; box-shadow: var(--shadow-sm); }
.story-step .n { display: grid; place-items: center; width: 40px; height: 40px; margin: 0 auto .6rem; border-radius: 50%; background: var(--amber); color: var(--ink); font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.story-step b { display: block; font-family: var(--display); font-size: 1.25rem; margin-bottom: .25rem; }
.story-step small { color: var(--ink-soft); font-size: .85rem; }
.story-arrow { align-self: center; color: var(--amber-deep); font-size: 1.7rem; font-weight: 800; }
.story-close { text-align: center; font-size: clamp(1.05rem, 2.6vw, 1.4rem); line-height: 1.6; color: var(--ink-soft); }
.story-close b { color: var(--ink); }

/* =================== Product logo: center + bigger =================== */
.prod-thumb { aspect-ratio: 16 / 11; }
.prod-logo { width: clamp(96px, 32%, 132px) !important; height: auto !important; aspect-ratio: 1/1; }

/* =================== Mobile polish =================== */
@media (max-width: 920px) {
  .hero { padding-top: 2rem; }
  .hero-media { order: -1; }                 /* hero video di ATAS copy (di atas pill) */
  .hero-video { margin: 0 auto 1.6rem; max-width: 460px; }
  .story-honest { flex-direction: column; gap: .7rem; text-align: center; align-items: center; }
}
@media (max-width: 640px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; flex: none; }
  .prod-actions { flex-direction: column; }
  .prod-actions .btn { width: 100%; }
  .story-arrow { transform: rotate(90deg); }
  .story-step { max-width: none; width: 100%; }
  .btn-lg { padding: .95rem 1.4rem; font-size: 1rem; }
  .section { padding-block: 2.6rem; }
}

/* fix scroll horizontal mobile: buang drawer keranjang lama (ui.js, sekarang pakai ArCart) + safety */
.drawer, .drawer-backdrop { display: none !important; }
html { overflow-x: clip; }

/* card logo: centering bulletproof (flex, hindari quirk grid place-items di iOS) */
.prod-thumb { display: flex; align-items: center; justify-content: center; }

/* PRODUCT DETAIL — fix overflow mobile + scale promo demo biar muat */
@media (max-width: 920px) {
  .pd-grid { grid-template-columns: minmax(0, 1fr); }     /* kolom boleh menyusut di bawah min-content konten */
  .pd-media, .pd-media.promo { max-width: 100%; }
}
@media (max-width: 500px) {
  /* promo demo didesain ~480px; scale-to-fit pakai trik width% + transform */
  .pd-media.promo .px { width: 138%; height: 138%; transform: scale(.7246); transform-origin: top left; }
}

/* === STORY mobile: alignment konsisten + steps pakai garis sambung tengah === */
@media (max-width: 640px) {
  #kenapa .section-head, #kenapa .section-head p { text-align: center; }
  .story-q, .story-manifesto, .story-manifesto h3, .story-manifesto > p, .story-honest, .story-close { text-align: left; }
  .story-q { font-size: 1.4rem; line-height: 1.3; }
  .story-nos { justify-content: flex-start; }
  .story-honest { flex-direction: row; align-items: flex-start; gap: 1rem; }
  /* langkah: kolom + garis penyambung di tengah antar box (ganti panah) */
  .story-steps { flex-direction: column; align-items: center; gap: 0; }
  .story-step { width: 100%; max-width: none; }
  .story-arrow { width: 3px; height: 30px; background: var(--amber); border-radius: 3px; font-size: 0; line-height: 0; transform: none; margin: 7px auto; align-self: center; }
}
