/* ============================================================
   Build Your Own Personalized Agent — Premium Dark Editorial
   Design language: andreasrtobing.com (Space Grotesk + serif italic
   accent + JetBrains Mono), palette: dark green / neon green / white
   ============================================================ */

:root {
  --bg:         #040b08;
  --bg-2:       #081410;
  --bg-3:       #0b1a14;
  --line:       rgba(234, 255, 245, 0.08);
  --line-strong: rgba(0, 255, 136, 0.35);
  --green:      #00ff88;
  --green-dim:  #00cc6e;
  --cyan:       #00e5ff;
  --text:       #eafff5;
  --muted:      #8fb8a3;
  --muted-dim:  #5f8070;
  --danger:     #ff5c7a;
  --gold:       #ffd60a;

  --font-display: "Space Grotesk", "SF Pro Display", system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  --radius: 14px;
  --max: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { padding-bottom: 40px; -webkit-tap-highlight-color: transparent; }
a, button, label, .faq__q, .tier-opt label, .tutorial-toggle, .tut-tab { touch-action: manipulation; }

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  background:
    radial-gradient(1100px 560px at 82% -12%, rgba(0, 255, 136, 0.055), transparent 62%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(0, 255, 136, 0.25); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #123026; border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--green-dim); }

a { color: var(--green); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--text); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* ---------- Serif italic accent highlight ---------- */
.hl {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow--center { justify-content: center; width: 100%; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.dot--pulse { animation: pulse 2.2s ease-in-out infinite; box-shadow: 0 0 12px rgba(0, 255, 136, 0.7); }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.78); } }

/* ---------- Headings ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.h1 { font-size: clamp(40px, 6.2vw, 68px); }
.h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.lead { color: var(--muted); font-size: 17px; max-width: 620px; line-height: 1.7; }
.lead--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Section ---------- */
.section { padding: 116px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { justify-content: center; width: 100%; }
.mb-head { margin-bottom: 48px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1px;
  padding: 15px 28px;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  position: relative;
  -webkit-tap-highlight-color: rgba(0,255,136,0.15);
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--green);
  color: #02150b;
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.35), 0 8px 28px rgba(0, 255, 136, 0.22);
}
.btn--primary:hover {
  background: #14ff92;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.5), 0 12px 34px rgba(0, 255, 136, 0.3);
  color: #02150b;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; border-radius: 9px; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* arrow hint */
.arw { display: inline-flex; align-items: center; gap: 6px; }
.arw__glyph { transition: transform .2s ease; }
.btn:hover .arw__glyph { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4, 11, 8, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}
.wordmark span { color: var(--green); }
.wordmark:hover { color: var(--text); }
.nav__right { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .18s ease;
  -webkit-tap-highlight-color: rgba(0,255,136,0.15);
}
.nav__link:hover { color: var(--text); }
.nav__link .pdot { display: inline-flex; align-items: center; }
.nav__link .pdot i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); opacity: 0;
  box-shadow: 0 0 8px var(--green);
  transition: opacity .18s ease;
}
.nav__link:hover .pdot i { opacity: 1; animation: pulse 1.6s infinite; }

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--green);
  width: 42px; height: 42px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: rgba(0,255,136,0.15);
}
.hamburger:active { background: rgba(0,255,136,0.1); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 180px 0 120px; position: relative; overflow: hidden; }
.hero__glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.09), transparent 62%);
  pointer-events: none;
}
.hero__gridline {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 25%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 25%, transparent 70%);
  pointer-events: none;
}
.hero__in { position: relative; max-width: 920px; }
.hero__in .eyebrow { margin-bottom: 28px; }
.hero__in h1 {
  font-size: clamp(46px, 6.8vw, 78px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 28px;
}
.hero__in h1 .hl { font-size: 1.08em; letter-spacing: -0.02em; }
.hero__sub { color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 560px; margin-bottom: 36px; }
.hero__sub b { color: var(--text); font-weight: 600; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__anchor {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}
.hero__anchor b { color: var(--green); }

.scrollhint {
  margin-top: 90px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted-dim);
  text-transform: uppercase;
}
.scrollhint .bar {
  width: 52px; height: 1px;
  background: var(--line-strong);
  position: relative; overflow: hidden;
}
.scrollhint .bar::after {
  content: ""; position: absolute; left: 0; top: -1px;
  width: 14px; height: 3px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: scrollbar 2s ease-in-out infinite;
}
@keyframes scrollbar { 0% { transform: translateX(0); } 100% { transform: translateX(52px); } }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video__row { display: flex; gap: 40px; align-items: center; }
.video__side { flex: 0 0 240px; }
.profile { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.profile__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 17px; font-weight: 700; color: #02150b;
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.35);
}
.profile__name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.profile__role { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.video__side .points { list-style: none; }
.video__side .points li {
  font-family: var(--font-mono); font-size: 13px; color: var(--muted);
  padding: 8px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 10px; align-items: baseline;
}
.video__side .points li::before { content: "→"; color: var(--green); flex-shrink: 0; }

.video__stage { flex: 1; }
.video__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
  cursor: pointer;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.video__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s; }
.video__thumb:hover img { opacity: 1; }
.video__thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.55));
}
.video__frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid var(--line); }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.playbtn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--green);
  border: 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #02150b;
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.6), 0 0 44px rgba(0, 255, 136, 0.45);
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 2;
}
.playbtn:hover { transform: translate(-50%, -50%) scale(1.07); box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.8), 0 0 60px rgba(0, 255, 136, 0.6); }
.video__label {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--text);
  background: rgba(4, 11, 8, 0.72);
  border: 1px solid var(--line-strong);
  padding: 7px 13px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.video__cap {
  font-family: var(--font-mono); font-size: 12px; color: var(--muted-dim);
  margin-top: 14px;
}
.video__cap::before { content: "// "; color: var(--green-dim); }

/* ============================================================
   STATS (live proof)
   ============================================================ */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 28px; border-left: 1px solid var(--line); text-align: left; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 58px);
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 34px rgba(0, 255, 136, 0.25);
}
.stat__lbl { color: var(--muted); font-size: 14.5px; margin-top: 14px; }
.proof__disclaimer {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-dim);
  margin-top: 30px;
}

/* ============================================================
   TERMINAL / RECEIPT
   ============================================================ */
.terminal {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.terminal__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
}
.terminal__bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.terminal__bar i:nth-child(1) { background: #ff5f57; }
.terminal__bar i:nth-child(2) { background: #febc2e; }
.terminal__bar i:nth-child(3) { background: #27c93f; }
.terminal__title { margin-left: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.terminal__body { padding: 26px 28px 22px; font-family: var(--font-mono); font-size: 13.5px; line-height: 2.05; color: var(--muted); }
.terminal__body > div { display: block; }
.terminal__cmd { color: var(--text); }
.terminal__cmd::before { content: "$ "; color: var(--green); }

/* module receipt lines */
.mod-line { color: var(--text); }
.mod-line .lv { font-weight: 600; margin-right: 6px; }
.mod-line .lv + br { display: none; }
.lv-beginner { color: var(--green); }
.lv-level-up { color: var(--cyan); }
.lv-pro { color: var(--gold); }
.mod-rule { border-top: 1px dashed rgba(0, 255, 136, 0.28); margin: 18px 0 8px; }
.mod-foot { color: var(--muted-dim); font-size: 12.5px; }
.mod-foot b { color: var(--text); font-weight: 600; }

/* ============================================================
   BENEFITS (editorial rows)
   ============================================================ */
.benefit {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: baseline;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
}
.benefit:first-of-type { border-top: 1px solid var(--line); }
.benefit__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  display: flex; align-items: center; gap: 12px;
}
.benefit__word .arw { color: var(--green); font-size: 20px; }
.benefit__desc { color: var(--muted); font-size: 16px; max-width: 520px; }

/* ============================================================
   TESTIMONIALS (chat style)
   ============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.tcard { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); }
.tbubble {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.tbubble:last-child { margin-bottom: 0; }
.tcard__by {
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-dim);
}
.tnote {
  margin-top: 30px;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted-dim);
}

/* ============================================================
   FOUNDER STORY (Kenapa gw bikin ini)
   ============================================================ */
.grad {
  background: linear-gradient(90deg, #00ff88, #00e5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.founder__title { margin-bottom: 52px; }
.founder__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: center;
}
.founder__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
  background: var(--bg-3);
}
.founder__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder__text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 22px;
}
.founder__text p:last-child { margin-bottom: 0; }
.founder__text p strong { color: var(--text); }

/* ============================================================
   6 USE CASE HERMES AGENT
   ============================================================ */
.usecase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.ucard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  position: relative;
  transition: border-color .18s ease, background .18s ease;
}
.ucard:hover { border-color: var(--line-strong); background: var(--bg-3); }
.ucard__name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
}
.ucard__name::before { content: "→ "; color: var(--green-dim); }
.ucard__who {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-transform: uppercase;
}
.ucard__prob { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.usecase__more {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}
.usecase__more::before { content: "→ "; color: var(--green-dim); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 940px;
  margin: 0 auto;
  align-items: stretch;
}
.pcard {
  padding: 44px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .2s ease;
}
.pcard:hover { border-color: rgba(0, 255, 136, 0.4); }
.pcard--best {
  border-color: var(--line-strong);
  background:
    radial-gradient(120% 50% at 50% 0%, rgba(0, 255, 136, 0.08), transparent 60%),
    var(--bg-2);
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.25), 0 30px 80px rgba(0, 0, 0, 0.45);
}
.pcard__badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em;
  color: #02150b;
  background: var(--green);
  padding: 5px 14px; border-radius: 999px;
  box-shadow: 0 0 22px rgba(0, 255, 136, 0.45);
  white-space: nowrap;
}
.pcard__tier { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.pcard__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 22px; }
.pcard__price { font-family: var(--font-mono); font-weight: 700; font-size: 40px; line-height: 1; }
.pcard__price small { font-size: 15px; color: var(--muted); font-weight: 400; }
.pcard__anchor { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.pcard__list { list-style: none; margin: 28px 0 32px; flex: 1; }
.pcard__list li {
  padding: 8px 0;
  font-size: 15px; color: var(--text);
  display: flex; align-items: center; gap: 11px;
}
.pcard__list svg { color: var(--green); flex-shrink: 0; }

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.timer-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, #0a1a10 0%, #0d2218 50%, #0a1a10 100%);
  border-top: 1px solid rgba(0,255,136,.2);
  padding: 8px 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px; color: var(--green);
  backdrop-filter: blur(10px);
  animation: timerSlideUp .4s ease;
}
@keyframes timerSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.timer-sticky__label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.timer-sticky__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: timerPulse 1.5s ease infinite; flex-shrink: 0;
}
@keyframes timerPulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.timer__countdown { font-weight: 700; font-size: 15px; letter-spacing: .06em; }

.timer-inline {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; margin: 28px auto 0; max-width: 420px;
  border: 1px solid rgba(0,255,136,.15); border-radius: 12px;
  background: rgba(0,255,136,.04);
  font-family: var(--font-mono); font-size: 13px; color: var(--text);
}
.timer-inline__icon { font-size: 18px; flex-shrink: 0; }
.timer-inline__label { color: var(--muted); font-size: 12px; }
.timer-inline .timer__countdown { color: var(--green); font-weight: 700; font-size: 16px; }

/* ============================================================
   SALES NOTIFICATION POPUP
   ============================================================ */
.sales-notif {
  position: fixed; bottom: 24px; left: 24px; z-index: 998;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 12px;
  background: rgba(10, 26, 16, 0.95);
  border: 1px solid rgba(0,255,136,.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  font-family: var(--font-mono); font-size: 13px;
  transform: translateX(-120%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  max-width: 320px;
  pointer-events: none;
}
.sales-notif.show { transform: translateX(0); pointer-events: auto; }
.notif__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,255,136,.12); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.notif__body { display: flex; flex-direction: column; gap: 2px; }
.notif__name { color: var(--text); font-weight: 600; }
.notif__city { color: var(--muted); font-size: 12px; }
.notif__time { color: rgba(0,255,136,.5); font-size: 11px; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  max-width: 680px;
}
.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 320px;
}
.banner-upload { width: 100%; }
.banner-preview {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--card);
}
.banner-preview img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 180px;
  object-fit: cover;
}
.banner-preview .btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.banner-pick {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-of-type { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  text-align: left;
  padding: 24px 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: color .18s ease;
}
.faq__q:hover { color: var(--green); }
.faq__q::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--green);
  flex-shrink: 0;
  transition: transform .22s ease;
}
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { display: none; }
.faq__item.open .faq__a { display: block; }
.faq__a > div { padding: 0 4px 24px; color: var(--muted); font-size: 15px; max-width: 680px; }

/* ============================================================
   VOUCHER TIERS
   ============================================================ */
.voucher-tiers { margin-top: 36px; border: 1px solid var(--line); border-radius: 12px; padding: 24px; background: var(--card); }
.voucher-tiers--sm { margin-bottom: 20px; }
.voucher-tiers__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 16px; text-align: center; }
.voucher-tiers__table { display: flex; flex-direction: column; gap: 0; }
.vtier { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
.vtier:last-child { border-bottom: none; }
.vtier--head { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.vtier__code { font-family: var(--font-mono); font-weight: 600; color: var(--green); }
.vtier__slots { color: var(--muted); text-align: center; }
.vtier__orig { color: var(--muted); text-align: right; }
.vtier__disc { font-family: var(--font-mono); font-weight: 700; color: var(--text); text-align: right; }
.vtier--hot .vtier__code { color: #ff6b35; }
.vtier--hot .vtier__disc { color: #ff6b35; }
.vtier--hot { background: rgba(255, 107, 53, 0.06); }
.vtier--full .vtier__code { color: var(--muted); }
.vtier--life .vtier__code { color: var(--gold); }
.vtier--life .vtier__disc { color: var(--gold); }
.vtier--life { background: rgba(255, 200, 50, 0.05); }
.voucher-tiers__note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ============================================================
   CLOSING
   ============================================================ */
.closing { text-align: center; padding: 140px 0; position: relative; overflow: hidden; }
.closing__glow {
  position: absolute; bottom: -160px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 380px;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.09), transparent 62%);
  pointer-events: none;
}
.closing h2 { font-size: clamp(30px, 4.8vw, 52px); margin-bottom: 34px; }
.closing .btn { max-width: 360px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 44px 0 56px; }
.footer__in {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
.footer__copy { font-family: var(--font-mono); font-size: 12px; color: var(--muted-dim); }
.footer__links { display: flex; gap: 22px; }
.footer__links a { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }
.footer__links a:hover { color: var(--green); }

/* ============================================================
   FORMS (checkout / login / auth pages)
   ============================================================ */
.page { padding-top: 68px; min-height: 100vh; display: flex; flex-direction: column; }
.auth-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 24px; gap: 0; }
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 42px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.form-card--wide { max-width: 680px; }
.form-title { font-size: 26px; margin-bottom: 8px; }
.form-sub { color: var(--muted); font-size: 15px; margin-bottom: 30px; }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 9px; font-weight: 600;
}
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="password"], .field input[type="number"] {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input::placeholder { color: rgba(143, 184, 163, 0.3); }
.field input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1); }
.field .hint { font-size: 12px; color: var(--muted-dim); margin-top: 7px; font-family: var(--font-mono); }
.field .err-msg { font-size: 12px; color: var(--danger); margin-top: 7px; font-family: var(--font-mono); display: none; }
.field.invalid .err-msg { display: block; }
.field.invalid input { border-color: var(--danger); }

/* tier selector */
.tier-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.tier-opt { position: relative; }
.tier-opt input { position: absolute; opacity: 0; }
.tier-opt label {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  cursor: pointer;
  text-align: center;
  background: var(--bg);
  transition: all .18s ease;
}
.tier-opt label:hover { border-color: rgba(0, 255, 136, 0.4); }
.tier-opt input:checked + label {
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.4), 0 0 26px rgba(0, 255, 136, 0.14);
}
.tier-price { font-family: var(--font-mono); font-weight: 700; font-size: 17px; }
.tier-period { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.tier-badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: .12em;
  color: #02150b; background: var(--green);
  border-radius: 999px; padding: 3px 9px; margin-top: 7px;
}

/* discord tutorial */
.tutorial { border: 1px solid var(--line); border-radius: 12px; background: var(--bg); overflow: hidden; margin-bottom: 22px; }
.tutorial-toggle {
  width: 100%; background: none; border: 0;
  color: var(--cyan); font-family: var(--font-mono); font-size: 13px;
  padding: 16px 18px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.tutorial-toggle:hover { color: var(--text); }
.tutorial-toggle::after { content: "+"; font-size: 18px; transition: transform .2s ease; }
.tutorial.open .tutorial-toggle::after { transform: rotate(45deg); }
.tutorial-body { display: none; }
.tutorial.open .tutorial-body { display: block; }
.tutorial-inner { padding: 0 18px 20px; }
.tut-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.tut-tab {
  background: none; border: 1px solid var(--line); color: var(--muted);
  font-family: var(--font-mono); font-size: 12px; padding: 8px 15px; border-radius: 8px; cursor: pointer;
}
.tut-tab.active { color: var(--green); border-color: var(--green); }
.tut-pane { display: none; font-size: 14px; color: var(--muted); }
.tut-pane.active { display: block; }
.tut-pane ol { padding-left: 20px; }
.tut-pane li { margin-bottom: 9px; }
.tut-pane b { color: var(--text); font-family: var(--font-mono); }

/* trust grid */
.trust-grid {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  justify-content: center;
}
.trust-icon { font-size: 14px; }

/* voucher */
.voucher-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.voucher-row input {
  flex: 1;
  min-width: 0;
}
.voucher-result {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.voucher-result--ok {
  border: 1px solid rgba(0,255,136,.35);
  color: var(--green);
  background: rgba(0,255,136,.05);
}
.voucher-result--err {
  border: 1px solid rgba(255,92,122,.4);
  color: var(--danger);
  background: rgba(255,92,122,.05);
}

/* notice */
.notice {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px 17px;
  font-size: 13px;
  font-family: var(--font-mono);
  margin-bottom: 22px;
  display: flex; gap: 10px; align-items: flex-start;
}
.notice--info { border-color: rgba(0, 229, 255, 0.4); color: var(--cyan); background: rgba(0, 229, 255, 0.04); }
.notice--warn { border-color: rgba(255, 92, 122, 0.5); color: var(--danger); background: rgba(255, 92, 122, 0.05); }
.notice--ok { border-color: rgba(0, 255, 136, 0.4); color: var(--green); background: rgba(0, 255, 136, 0.05); }
.form-error { display: none; }
.form-error.show { display: flex; }

/* ============================================================
   LEAD FORM (komunitas gratis)
   ============================================================ */
.lead-done { text-align: center; padding: 8px 0 4px; }
.lead-done h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 400; margin: 0 0 14px; letter-spacing: -0.01em; }
.lead-done p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 26px; }
.lead { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin-top: 10px; }

/* ============================================================
   KOMUNITAS GRATIS (lead capture terpisah)
   ============================================================ */
.comm__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.comm__info .h2 { margin: 12px 0 14px; }
.comm__info .lead { margin-bottom: 22px; }
.comm__card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 38px;
}
@media (max-width: 840px) {
  .comm__grid { grid-template-columns: 1fr; gap: 32px; }
  .comm__card { padding: 26px 20px; }
}

/* ============================================================
   MEMBER / LMS
   ============================================================ */
.member-head {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.04), transparent);
  padding: 44px 0 34px;
}
.member-title { font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 6px; }
.member-welcome { color: var(--muted); font-size: 14.5px; }
.member-welcome b { color: var(--green); font-family: var(--font-mono); }

.player-frame { position: relative; aspect-ratio: 16/9; max-width: 940px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.player-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ----- LMS member area ----- */
.lms { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.lms-side {
  position: sticky; top: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.lms-progress { margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.lms-progress__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.lms-progress__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dim); }
.lms-progress__pct { font-family: var(--font-display); color: var(--green); font-size: 18px; }
.lms-progress__bar { height: 8px; background: var(--bg-3); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.lms-progress__fill { height: 100%; width: 0; background: var(--green); border-radius: 999px; transition: width .3s ease; }
.lms-progress__hint { margin-top: 8px; font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-dim); }

.lms-side__list { display: flex; flex-direction: column; gap: 4px; }
.lms-side-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 10px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.lms-side-item:hover { background: rgba(0, 255, 136, 0.04); }
.lms-side-item.active { background: rgba(0, 255, 136, 0.08); border-color: rgba(0, 255, 136, 0.25); }
.lms-side-item__status { flex-shrink: 0; width: 18px; text-align: center; color: var(--muted-dim); font-size: 13px; line-height: 1.6; }
.lms-side-item__status.st-completed, .lms-side-item__status.st-in-progress { color: var(--green); }
.lms-side-item__no { flex-shrink: 0; font-family: var(--font-mono); font-size: 11px; color: var(--muted-dim); padding-top: 2px; }
.lms-side-item__title { font-size: 13.5px; font-weight: 600; line-height: 1.4; }
.lms-side-item__meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted-dim); margin-top: 3px; }

.lms-main { min-width: 0; }
.lms-player { margin-bottom: 24px; }
.lms-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.lms-head__badge { flex-shrink: 0; }
.lms-head__title { font-family: var(--font-display); font-weight: 600; font-size: 21px; flex: 1; min-width: 200px; }
.lms-head__meta { flex-basis: 100%; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-dim); margin: 0; }
.lms-nav { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.lms-nav .btn:first-child { margin-right: auto; }

.player-text {
  max-width: 940px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 34px;
  max-height: 68vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.player-text__inner { font-size: 15.5px; line-height: 1.85; color: var(--text); }
.player-text__inner p { margin: 0 0 18px; }
.player-text__inner p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .lms { grid-template-columns: 1fr; gap: 18px; }
  .lms-main { order: 1; }
  .lms-side {
    order: 2;
    position: static;
    max-height: none;
    padding: 16px;
  }
  .lms-side__list {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .lms-side__list::-webkit-scrollbar { display: none; }
  .lms-side-item {
    flex-shrink: 0;
    min-width: 0;
    width: 210px;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    background: var(--bg-3);
  }
  .lms-side-item__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lms-side-item__meta { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .lms-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .lms-nav #prevBtn { grid-row: 1; grid-column: 1; }
  .lms-nav #nextBtn { grid-row: 1; grid-column: 2; }
  .lms-nav #completeBtn { grid-row: 2; grid-column: 1 / -1; }
  .lms-nav .btn { flex: none; width: 100%; margin: 0; }
}

/* success */
.success-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 64px 24px; text-align: center; }
.success-card { max-width: 580px; }
.success-emoji { font-size: 58px; margin-bottom: 20px; filter: drop-shadow(0 0 26px rgba(0, 255, 136, 0.35)); }
.steps { text-align: left; margin: 30px 0 34px; }
.steps h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.steps ol { padding-left: 20px; color: var(--muted); font-size: 14.5px; }
.steps li { margin-bottom: 9px; }
.steps li::marker { color: var(--green); }

/* ============================================================
   ADMIN CMS
   ============================================================ */
.admin-wrap { padding-top: 56px; padding-bottom: 96px; max-width: 760px; }
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 14.5px;
  padding: 13px 16px;
  outline: none;
  resize: vertical;
  min-height: 62px;
  line-height: 1.6;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea::placeholder { color: rgba(143, 184, 163, 0.3); }
.field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1); }

.admin-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 22px;
}
.admin-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.admin-block__head label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin: 0;
}
.admin-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.admin-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 18px; }

.admin-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.admin-row:first-of-type { padding-top: 4px; }
.admin-row:last-child { border-bottom: 0; }
.admin-row__main { flex: 1; }
.admin-row .row-remove { flex-shrink: 0; margin-top: 28px; }

.admin-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.admin-tools .hint { margin: 0; }
.admin-wrap #saveMsg, .admin-wrap #saveErr { max-width: 760px; }

@media (max-width: 720px) {
  .admin-grid2, .admin-grid3 { grid-template-columns: 1fr; }
  .admin-block { padding: 20px 16px; }
  .admin-row { flex-direction: column; gap: 0; }
  .admin-row .row-remove { margin-top: 0; }
}

/* ----- admin tabs ----- */
.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.admin-tab {
  background: none;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.admin-tab:hover { color: var(--text); }
.admin-tab.is-active {
  color: var(--green);
  border-color: var(--green);
  background: rgba(0, 255, 136, 0.05);
}
.admin-tab .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--green);
  color: #040b08;
  font-size: 11px;
  font-weight: 700;
}

/* ----- leads table ----- */
.lead-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.lead-filters--src { margin-bottom: 10px; }
.lead-filters__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-right: 4px;
}
.lead-filters__spacer { flex: 1; }
.lead-src {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 6px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}
.lead-src.is-course { color: var(--green); background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.3); }
.lead-src.is-komunitas { color: var(--cyan); background: rgba(0, 229, 255, 0.08); border: 1px solid rgba(0, 229, 255, 0.3); }
.lead-filter {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all .15s ease;
}
.lead-filter:hover { color: var(--text); border-color: var(--muted); }
.lead-filter.is-active { color: var(--green); border-color: var(--green); background: rgba(0, 255, 136, 0.06); }
.lead-filter .cnt { opacity: 0.65; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lead-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 820px;
}
.lead-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 600;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.lead-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.lead-table tr:hover td { background: rgba(0, 255, 136, 0.02); }
.lead-name { font-weight: 600; color: var(--text); }
.lead-meta { font-size: 12px; color: var(--muted-dim); font-family: var(--font-mono); }
.lead-walink { color: var(--green); text-decoration: none; }
.lead-walink:hover { text-decoration: underline; }
.lead-mono { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.lead-status, .lead-tpl {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 7px 10px;
  outline: none;
  max-width: 140px;
}
.lead-status.st-bayar { border-color: rgba(0, 255, 136, 0.5); color: var(--green); }
.lead-status.st-follow_up { border-color: rgba(255, 200, 87, 0.5); color: #ffc857; }
.lead-status.st-belum { border-color: rgba(0, 229, 255, 0.4); color: var(--cyan); }
.lead-note {
  width: 100%;
  min-width: 140px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 7px 10px;
  outline: none;
}
.lead-fu { display: flex; gap: 6px; align-items: center; }
.lead-fu .lead-tpl { max-width: 118px; }
.lead-fu .lead-wa { white-space: nowrap; }
.lead-del { white-space: nowrap; }

@media (max-width: 720px) {
  .admin-tabs { gap: 6px; }
  .admin-tab { padding: 10px 14px; font-size: 12px; }
  .lead-filters__spacer { display: none; }
  .lead-filters { gap: 6px; }
  .lead-filter { padding: 6px 11px; font-size: 11px; }
}

/* ============================================================
   REVEAL (hanya jika JS jalan)
   ============================================================ */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal.d1 { transition-delay: .08s; }
html.js .reveal.d2 { transition-delay: .16s; }
html.js .reveal.d3 { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .wrap { padding: 0 20px; }
  .nav__in { height: 62px; padding: 0 18px; }
  .nav__right { gap: 12px; }
  .nav__links {
    display: none;
    position: absolute; top: 62px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(4, 11, 8, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 16px 22px 24px; gap: 4px;
    z-index: 105;
  }
  .nav__links.open { display: flex; }
  .nav__links .nav__link { padding: 14px 8px; font-size: 15px; border-bottom: 1px solid var(--line); min-height: 48px; display: flex; align-items: center; }
  .hamburger { display: inline-flex; position: relative; z-index: 110; }
  .nav__cta-desktop { display: none; }

  .hero { padding: 128px 0 72px; }
  .hero__in h1 {
    font-size: clamp(33px, 9.5vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1.07;
    margin-bottom: 22px;
  }
  .hero__in h1 .hl { font-size: 1em; }
  .hero__sub { font-size: 16px; margin-bottom: 28px; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
  .hero__anchor { margin-top: 20px; font-size: 12.5px; }
  .scrollhint { margin-top: 56px; }

  .video__row { flex-direction: column; align-items: stretch; gap: 26px; }
  .video__side { flex: none; }
  .video__side .points { display: none; }
  .video__label { left: 12px; bottom: 12px; font-size: 10px; padding: 6px 10px; }
  .playbtn { width: 62px; height: 62px; }
  .video__cap { font-size: 11px; }

  .stats__grid { grid-template-columns: 1fr; gap: 0; }
  .stat { border-left: 0; border-bottom: 1px solid var(--line); padding: 24px 4px; }
  .stat:first-child { padding-left: 4px; }
  .stat:last-child { border-bottom: 0; }
  .stat__num { font-size: 40px; }
  .proof__disclaimer { font-size: 10.5px; line-height: 1.7; }

  .terminal__bar { padding: 11px 14px; }
  .terminal__title { font-size: 11px; }
  .terminal__body { padding: 18px 16px; font-size: 12px; line-height: 1.95; }
  .mod-line .lv { margin-right: 5px; }
  .mod-foot { font-size: 11.5px; line-height: 1.8; }

  .benefit { grid-template-columns: 1fr; gap: 10px; padding: 20px 4px; }
  .benefit__word { font-size: 19px; }
  .benefit__desc { font-size: 15px; line-height: 1.65; }

  .tgrid { grid-template-columns: 1fr; gap: 16px; }
  .tcard { padding: 20px 18px; }
  .tbubble { font-size: 13.5px; }

  .founder__title { margin-bottom: 36px; }
  .founder__grid { grid-template-columns: 1fr; gap: 30px; }
  .founder__photo { max-width: 300px; margin: 0 auto; }
  .founder__text p { font-size: 16px; line-height: 1.7; }

  .usecase { grid-template-columns: 1fr; }
  .usecase__more { font-size: 12px; line-height: 1.7; }

  .pricing__grid { grid-template-columns: 1fr; gap: 28px; }
  .pcard { padding: 34px 22px; }
  .pcard__price { font-size: 34px; }
  .pcard__badge { font-size: 9.5px; padding: 4px 10px; }
  .pcard__anchor { font-size: 11.5px; line-height: 1.6; }

  .faq__q { font-size: 15px; padding: 20px 4px; gap: 14px; }
  .faq__a > div { font-size: 14px; padding-bottom: 20px; }

  .closing { padding: 96px 0; }
  .closing h2 { font-size: 30px; line-height: 1.15; }

  .tier-options { grid-template-columns: 1fr; }
  .trust-grid { flex-direction: column; gap: 8px; }
  .voucher-row { flex-direction: column; gap: 8px; }
  .footer__in { flex-direction: column; text-align: center; gap: 14px; }
  .form-card { padding: 28px 18px; max-width: 100%; box-sizing: border-box; }
  .form-title { font-size: 22px; }
  .form-sub { font-size: 14px; margin-bottom: 24px; }
  .auth-wrap { padding: 32px 16px; align-items: stretch; justify-content: flex-start; }
  .page { padding-top: 62px; }
  .vtier { grid-template-columns: 1fr 1fr; gap: 4px; padding: 10px 12px; }
  .vtier--head { display: none; }
  .vtier__code { font-size: 13px; }
  .vtier__disc { font-size: 13px; }
  .vtier__orig { grid-column: 1; text-align: left; font-size: 12px; }
  .vtier__disc { grid-column: 2; text-align: right; }
  .vtier__slots { display: none; }
  .voucher-tiers { padding: 16px; margin-top: 24px; }
  .voucher-tiers__title { font-size: 15px; margin-bottom: 12px; }
  .promo-banner { margin-top: 24px; }
  .tier-opt label { padding: 14px 12px; }
  .tier-price { font-size: 15px; }
  .tier-period { font-size: 11.5px; }
  .tutorial-toggle { font-size: 12px; padding: 14px 14px; }
  .tutorial-inner { padding: 0 14px 16px; }
  .btn--block { width: 100%; box-sizing: border-box; }
  .timer-sticky { font-size: 11px; padding: 6px 12px; gap: 6px; }
  .timer-sticky__label { display: none; }
  .timer-sticky .timer__countdown { font-size: 13px; }
  .timer-inline { padding: 12px 16px; margin: 20px 0 0; font-size: 12px; }
  .timer-inline .timer__countdown { font-size: 14px; }
  .sales-notif { left: 12px; right: 12px; bottom: 16px; max-width: 100%; }
}

@media (min-width: 721px) and (max-width: 1000px) {
  .tgrid { grid-template-columns: 1fr; }
  .founder__grid { grid-template-columns: 320px 1fr; gap: 40px; }
  .usecase { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SECTION-BASED LANDING (page.html builder renderer)
   ============================================================ */
.sec-text {
  color: var(--muted); font-size: 16.5px; line-height: 1.7;
  max-width: 680px; margin: 0 auto;
}
.sec-text h1, .sec-text h2, .sec-text h3, .sec-text b, .sec-text strong { color: var(--text); }
.sec-text a { color: var(--green); }

.sec-media {
  max-width: 760px; margin: 0 auto;
}
.sec-media img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.sec-media--video .video__frame {
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.sec-media__cap {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  text-align: center; margin-top: 12px; letter-spacing: .04em;
}

.sec-cta__sub { color: var(--muted); max-width: 480px; margin: 0 auto 28px; font-size: 16px; }

.sec-divider { display: flex; align-items: center; padding: 0 24px; }
.sec-divider hr { flex: 1; border: 0; border-top: 1px solid var(--line); }

.sec-embed .wrap { max-width: 860px; }
.sec-embed iframe, .sec-embed img, .sec-embed video {
  max-width: 100%; border-radius: var(--radius);
}
