/* =========================================================
   pakpepibikin — SNAPSHOT / QC browser-shell prototype
   ========================================================= */

/* =========================================================
   DESIGN SYSTEM — LOCKED 2026-05-23 (RasaForm visual canonical)
   Reference: RasaForm dark/light split di tabs.jsx line 1050
   Brand: navy #0d2b45 + orange #e07020 + DM Mono + Space Grotesk + Inter
   Apply ke: PaymentBlock (Potret/Karsa/Cipta/Karya), RasaForm, semua
   primary CTA. Jangan ganti palette tanpa update memory & doc.
   ========================================================= */
:root {
  --black: #0d2b45;
  --black-2: #122f4d;
  --white: #f4f6f8;
  --white-pure: #ffffff;
  --surface: #e8edf2;
  --surface-low: #dde4eb;
  --red: #e07020;
  --red-dim: #c05e18;
  --gray: #5e5e5e;
  --gray-mid: #8a8a8a;
  --gray-light: #c8c8c8;
  --blue-sec: #4d56b0;
  --border-ghost: rgba(10, 10, 10, 0.12);
  --border-soft: rgba(13, 43, 69, 0.08);

  /* === Brand aliases (LOCKED — match RasaForm canonical) === */
  --brand-navy: #0d2b45;          /* dark section bg, primary text on light */
  --brand-orange: #e07020;        /* primary CTA, accent, dot indicator */
  --brand-orange-dark: #c95c10;   /* CTA hover state */
  --brand-text-light: #142d44;    /* heading color on light bg */
  --brand-text-on-dark: #f4f6f8;  /* text color on navy bg */
  --brand-card-ghost: rgba(255, 255, 255, 0.06); /* preview card on dark */

  /* === Typography stack (LOCKED) === */
  --font-display: 'Space Grotesk', sans-serif;  /* titles, prices */
  --font-mono: 'DM Mono', monospace;            /* numbers, eyebrows, labels */
  --font-body: Inter, sans-serif;               /* body, lede, fields */

  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-ui: 200ms;
  --dur-page: 380ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--surface);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.grotesk { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.mono { font-family: 'DM Mono', monospace; }

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.05; letter-spacing: -0.03em; font-weight: 700; }

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

/* ========== APP SHELL ========== */
#root { min-height: 100vh; }

.app {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  /* minmax(0,1fr) WAJIB: kolom implisit 'auto' melar ke max-content anak (tab aktif lebar)
     → halaman HP meluber & harus zoom-out (bug 2026-06-11). */
  grid-template-columns: minmax(0, 1fr);
}

/* ========== BROWSER CHROME ========== */
.browser {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
}

.browser-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  background: linear-gradient(180deg, #e9eef3 0%, #dee5ec 100%);
  border-bottom: 1px solid var(--border-ghost);
}

/* ========== BRAND BAND — themed header above tabs ========== */
.brand-band {
  position: relative;
  background: var(--black);
  padding: 22px clamp(20px, 3vw, 36px) 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  isolation: isolate;
}

/* Theme decorations — Bauhaus motif behind content */
.brand-band-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.brand-deco-stripe {
  position: absolute;
  top: -10%; bottom: -10%;
  right: 28%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.18) 35%, rgba(255,255,255,0.18) 65%, transparent 100%);
  transform: skewX(-14deg);
}
.brand-deco-square {
  position: absolute;
  top: 50%;
  right: 22%;
  width: 14px; height: 14px;
  background: var(--red);
  transform: translateY(-50%);
}
.brand-deco-circle {
  position: absolute;
  top: 50%;
  left: 36%;
  width: 70px; height: 70px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  transform: translateY(-50%);
}
.brand-deco-ribbon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 18%, transparent 18%, transparent 22%, rgba(255,255,255,0.18) 22%, rgba(255,255,255,0.18) 24%, transparent 24%);
}

/* Left — mark + wordmark */
.brand-band-id {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.brand-band-mark { display: block; line-height: 0; }
.brand-band-mark svg { display: block; }
.brand-band-logo {
  display: block;
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.brand-band-wordmark-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-wordmark {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--white);
}
.brand-wordmark em {
  font-style: normal;
  color: var(--red);
}
.brand-band-rd {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Right — tagline */
.brand-band-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
  position: relative;
  z-index: 1;
  border-right: 2px solid var(--red);
  padding-right: 14px;
}
.brand-tag-line {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.brand-tag-line-em {
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 720px) {
  .brand-band { padding: 16px 18px 18px; gap: 14px; }
  .brand-band-tag { display: none; }
  .brand-deco-circle, .brand-deco-square, .brand-deco-stripe { display: none; }
  .brand-band-mark svg { width: 32px; height: 32px; }
  .brand-band-logo { height: 34px; }
}

/* ========== TAB STRIP ========== */
.tab-strip {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px clamp(8px, 2vw, 32px) 0;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--black);
  position: relative;
}
.tab-strip::-webkit-scrollbar { display: none; }
/* Bauhaus motif continues from brand-band into tab strip */
.tab-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 50%, rgba(224,112,32,0.06) 0%, transparent 30%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px);
  z-index: 0;
}
.tab-strip > * { position: relative; z-index: 1; }

.dots { display: flex; gap: 6px; align-items: center; }
.dot { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dot-r { background: #ff5f57; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.15); }
.dot-y { background: #febc2e; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.15); }
.dot-g { background: #28c840; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.15); }

.nav-btns { display: flex; gap: 4px; margin-left: 6px; }
.nav-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-mid);
  border-radius: 4px;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav-btn:hover { background: rgba(13,43,69,0.06); color: var(--black); }
.nav-btn[disabled] { opacity: 0.35; cursor: default; }
.nav-btn[disabled]:hover { background: transparent; color: var(--gray-mid); }

.url-bar {
  flex: 1;
  height: 26px;
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  border-radius: 13px;
  display: flex; align-items: center;
  padding: 0 12px;
  gap: 10px;
  min-width: 0;
}
.url-lock {
  width: 12px; height: 12px;
  flex-shrink: 0;
  color: #2a8a4a;
}
.url-host {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.01em;
  overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}
.url-host strong { color: var(--black); font-weight: 600; }
.url-host em { color: var(--red); font-style: normal; font-weight: 600; }
.url-intel {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}
.url-intel-track {
  display: inline-block;
  white-space: nowrap;
  animation: url-intel-scroll 90s linear infinite;
}
.url-intel-run {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.01em;
  padding-right: 64px;
}
@keyframes url-intel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .url-intel-track { animation: none; }
}
.url-action {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 2px 6px;
  border-left: 1px solid var(--border-ghost);
  flex-shrink: 0;
}

.browser-actions { display: flex; gap: 6px; align-items: center; }
.icon-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  color: var(--gray);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.icon-btn:hover { background: rgba(13,43,69,0.06); color: var(--black); }

/* ========== TAB ITEMS ========== */
.tab {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 13px clamp(14px, 2.4vw, 28px) 14px;
  min-width: clamp(90px, 11vw, 140px);
  flex: 0 1 auto;
  max-width: 160px;
  flex-shrink: 1;
  background: var(--gray-light);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
  cursor: pointer;
  border: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 -2px 0 rgba(0,0,0,0.04);
}
.tab:hover { background: var(--white-pure); color: var(--black); }

.tab[aria-selected="true"] {
  background: var(--white-pure);
  color: var(--red);
  padding: 21px clamp(40px, 7vw, 84px) 30px;
  min-width: clamp(280px, 33vw, 460px);
  max-width: 520px;
  font-size: 32px;
  font-weight: 600;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  margin-bottom: -6px;
  z-index: 3;
  box-shadow:
    0 14px 28px rgba(13, 43, 69, 0.28),
    0 6px 12px rgba(13, 43, 69, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.tab[aria-selected="true"]:hover { background: var(--white-pure); }
.tab[aria-selected="true"]:hover { background: var(--white-pure); }

@media (max-width: 640px) {
  .tab-strip { padding: 10px 6px 0; gap: 3px; }
  .tab {
    min-width: 0;
    padding: 14px 4px 16px;
    font-size: 10px;
    letter-spacing: 0.04em;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
  }
  .tab[aria-selected="true"] {
    /* 2026-06-11: tanpa reset ini, min-width clamp(280px,…) base menang spesifisitas
       atas reset .tab{min-width:0} di atas → tab aktif 280px = halaman meluber di HP. */
    min-width: 0;
    max-width: none;
    font-size: 17px;
    padding-top: 14px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 20px;
    margin-bottom: -5px;
    box-shadow:
      0 10px 22px rgba(224, 112, 32, 0.34),
      0 4px 10px rgba(13, 43, 69, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  .browser-bar {
    height: 36px;
    gap: 10px;
    padding: 0 12px;
  }
  .url-action { display: none; }
  .browser-actions { display: none; }
  .nav-btns .nav-btn:nth-child(3) { display: none; }
  .url-host { font-size: 10px; }
  .url-intel-run { font-size: 10px; }
}

.tab-key {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  flex-shrink: 0;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.tab[aria-selected="true"] .tab-key {
  background: rgba(255, 255, 255, 0.95);
  color: var(--red);
}

.tab-name {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}
.tab[aria-selected="true"] .tab-name {
  font-size: 32px;
  color: var(--red);
  font-weight: 600;
}
.tab-status {
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 2px;
  background: var(--surface);
  color: var(--gray-mid);
}
.tab-status.live {
  background: rgba(40, 200, 64, 0.12);
  color: #1a7a35;
}
.tab-status.soon {
  background: rgba(224, 112, 32, 0.12);
  color: var(--red-dim);
}

.tab-add {
  margin-left: 4px;
  width: 28px; height: 28px;
  align-self: center;
  color: var(--gray-mid);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.tab-add:hover { background: rgba(13,43,69,0.06); color: var(--black); }

/* ========== MAIN LAYOUT ========== */
.viewport {
  background: var(--white-pure);
  position: relative;
  z-index: 1;
  box-shadow:
    0 24px 48px -16px rgba(13, 43, 69, 0.18),
    0 8px 16px -8px rgba(13, 43, 69, 0.10);
}

.workspace {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  padding: 32px 36px 140px;
}

@media (max-width: 1100px) {
  .workspace { grid-template-columns: 1fr; padding: 24px 24px 200px; gap: 28px; }
}
@media (max-width: 640px) {
  .workspace { padding: 16px 16px 220px; gap: 20px; }
}

/* ========== PANEL TRANSITION ========== */
.panel {
  min-width: 0;
}
.panel-enter {
  animation: panelIn 280ms var(--ease-std) both;
}
@keyframes panelIn {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .panel-enter { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ========== PANEL HEADER ========== */
.panel-head {
  display: grid;
  /* minmax(0,1fr) WAJIB: track 1fr polos ikut melar ke max-content .panel-meta
     (judul 1 baris 720px) → halaman HP meluber 736px, user harus zoom out (bug 2026-06-11). */
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-ghost);
}
.panel-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 0.85;
  color: var(--surface-low);
  letter-spacing: -0.04em;
}
.panel-meta {
  display: flex; flex-direction: column; gap: 6px;
  width: max-content;
  max-width: 100%;
}
/* Lede must NOT contribute to parent's max-content so the wrapper
   sizes to the title's natural width instead of the paragraph's. */
.panel-meta .panel-lede {
  width: 0;
  min-width: 100%;
}
.panel-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: flex; align-items: center; gap: 12px;
}
.panel-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--red);
}
.panel-title {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.0;
}
.panel-title em { color: var(--red); font-style: normal; }
/* Varian headline kalimat panjang (POTRET) — statement, bukan hero 54px */
.panel-head-statement .panel-title {
  font-size: clamp(23px, 3.1vw, 35px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}
/* Batasi lebar measure supaya teks wrap, tidak menabrak tepi halaman */
.panel-head-statement .panel-meta {
  max-width: min(620px, 100%);
}
.panel-lede {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin-top: 12px;
}
/* RASA headline lebih panjang — batasi measure agar sejajar lebar dengan
   headline KARSA/CIPTA/KARYA (judul wrap rapi 2 baris). 2026-06-09 */
.panel-head-rasa .panel-meta { max-width: min(720px, 100%); }
.panel-head-rasa .panel-title { text-wrap: balance; }

@media (max-width: 700px) {
  .panel-head { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .panel-num { font-size: 64px; }
}

/* ========== STICKY CONVERSION RAIL ========== */
.rail {
  position: sticky;
  top: 130px;
  align-self: start;
  display: flex; flex-direction: column;
  gap: 16px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  padding-right: 2px;
}
@media (max-width: 1100px) {
  .rail { position: static; max-height: none; }
}
.rail::-webkit-scrollbar { width: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--surface-low); border-radius: 3px; }

.rail-card {
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  padding: 24px;
  position: relative;
}
/* DEPRECATED 2026-05-23: shadow-stack offset navy block — kept for back-compat,
   no longer applied. Visual elegansi sekarang dipegang oleh .rasa-form /
   .pkpb-block (rounded + soft shadow) di dalam rail-card.
   Jangan dipakai untuk fase baru. */
.rail-card.shadow-stack::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: -8px; bottom: -8px;
  background: var(--black);
  z-index: -1;
}
.rail-card.dark { background: var(--black); color: var(--white); }
.rail-card.dark .rail-label { color: rgba(255,255,255,0.5); }

.rail-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.rail-label .status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: blink 1.8s var(--ease-std) infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.rail-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.rail-sub {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 18px;
}
.rail-card.dark .rail-sub { color: rgba(255,255,255,0.55); }

.rail-progress {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 18px;
}
.rail-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
}
.rail-bullet {
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--surface-low);
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 700;
}
.rail-row.done .rail-bullet { background: var(--black); color: var(--white); }
.rail-row.active .rail-bullet { background: var(--red); color: var(--white); }
.rail-row.active { color: var(--black); font-weight: 500; }
.rail-card.dark .rail-row { color: rgba(255,255,255,0.55); }
.rail-card.dark .rail-row.active { color: var(--white); font-weight: 500; }
.rail-card.dark .rail-row.done .rail-bullet { background: var(--white); color: var(--black); }

.rail-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: var(--red);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.rail-cta:hover { background: var(--red-dim); transform: translateY(-1px); }
.rail-cta svg { transition: transform var(--dur-ui); }
.rail-cta:hover svg { transform: translateX(4px); }
.rail-cta.ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.rail-cta.ghost:hover { background: var(--black); color: white; }
.rail-card.dark .rail-cta.ghost { color: white; border-color: rgba(255,255,255,0.4); }
.rail-card.dark .rail-cta.ghost:hover { background: white; color: var(--black); }

.rail-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rail-card.dark .rail-foot { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }

.credit-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px;
  background: var(--red);
  color: white;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ========== HERO ROTATING TIP ========== */
.tip-card {
  padding: 20px 22px;
  background: var(--surface);
  border-left: 2px solid var(--red);
}
.tip-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.tip-live-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.6s var(--ease-std) infinite;
  flex-shrink: 0;
}
.tip-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--black);
  letter-spacing: -0.01em;
}
.tip-src {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(13, 43, 69, 0.18);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--gray-mid);
}
.tip-cadence {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  opacity: 0.85;
}

/* ========== RAIL — kanal sosial pakpepibikin ========== */
.rail-channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rail-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--border-ghost);
  color: var(--black);
  text-decoration: none;
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.rail-channel:hover {
  border-color: var(--red);
  background: var(--surface);
  transform: translateX(2px);
}
.rail-channel svg {
  flex-shrink: 0;
  color: var(--gray);
  transition: color var(--dur-fast);
}
.rail-channel:hover svg { color: var(--red); }
.rail-channel-name {
  flex: 1;
  min-width: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rail-channel-meta {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* CTA "Mulai Potret" → flash form Nama Brand supaya jelas mengarah (rail sticky
   bikin form sering sudah terlihat di desktop, jadi butuh sinyal visual). */
@keyframes formFlash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 112, 32, 0); }
  25%      { box-shadow: 0 0 0 4px rgba(224, 112, 32, 0.6); }
  70%      { box-shadow: 0 0 0 4px rgba(224, 112, 32, 0.22); }
}
.form-flash {
  border-radius: 12px;
  animation: formFlash 1.2s var(--ease-std);
}

/* ========== MOBILE BOTTOM CTA ========== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white-pure);
  border-top: 1px solid var(--border-ghost);
  padding: 12px 16px env(safe-area-inset-bottom, 12px);
  gap: 12px;
  align-items: center;
  box-shadow: 0 -8px 24px rgba(13,43,69,0.08);
}
@media (max-width: 1100px) {
  .mobile-cta { display: flex; }
}
.mobile-cta-info { flex: 1; min-width: 0; }
.mobile-cta-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 2px;
}
.mobile-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.mobile-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: var(--red);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  min-height: 48px;
}

/* ========== GENERIC TILE/CARD ========== */
.tile-grid {
  display: grid;
  gap: 1px;
  background: var(--border-ghost);
  border: 1px solid var(--border-ghost);
  margin-top: 24px;
}
.tile-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.tile-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.tile-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) {
  .tile-grid.cols-2, .tile-grid.cols-3, .tile-grid.cols-4 { grid-template-columns: 1fr; }
}

.tile {
  background: var(--white-pure);
  padding: 24px;
  transition: background var(--dur-fast);
  position: relative;
}
.tile:hover { background: var(--surface); }
.tile.dark { background: var(--black); color: var(--white); }
.tile.dark:hover { background: #1a1a1a; }
.tile-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  margin-bottom: 16px;
}
.tile.dark .tile-num { color: rgba(255,255,255,0.25); }
.tile-accent {
  display: block; width: 28px; height: 2px;
  background: var(--red); margin-bottom: 14px;
}
.tile-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.tile-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}
.tile.dark .tile-desc { color: rgba(255,255,255,0.55); }
.tile-tags {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-top: 14px;
}
.tile-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--surface);
  color: var(--gray);
}
.tile.dark .tile-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }

/* ========== SECTION ========== */
.section { margin-top: 48px; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--red); }
.section-title {
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
}
.section-link {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 2px;
}
.section-link:hover { color: var(--red); border-color: var(--red); }

/* ========== QC DIAGNOSTIC ========== */
.qc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.qc-score {
  background: var(--black);
  color: white;
  padding: 32px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 640px) {
  .qc-score { padding: 24px; grid-template-columns: 1fr; gap: 18px; text-align: center; justify-items: center; }
  .qc-score-body { text-align: left; }
}
.qc-score::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
}
.ring {
  width: 128px; height: 128px;
  position: relative;
  flex-shrink: 0;
}
.ring svg { transform: rotate(-90deg); }
.ring-track { stroke: rgba(255,255,255,0.1); }
.ring-fill { stroke: var(--red); transition: stroke-dashoffset 600ms var(--ease-std); }
.ring-num {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ring-num strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ring-num span {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 4px;
}
.qc-score-body h3 {
  font-size: 20px; margin-bottom: 6px;
}
.qc-score-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.qc-checks { display: flex; flex-direction: column; gap: 0; }
.qc-check {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--border-ghost);
  background: var(--white-pure);
  transition: background var(--dur-fast);
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.qc-check + .qc-check { border-top: none; }
.qc-check:hover { background: var(--surface); }
.qc-check-icon {
  width: 32px; height: 32px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
}
.qc-check.ok .qc-check-icon { background: rgba(40, 200, 64, 0.15); color: #1a7a35; }
.qc-check.warn .qc-check-icon { background: rgba(254, 188, 46, 0.18); color: #8a6500; }
.qc-check.gap .qc-check-icon { background: rgba(224, 112, 32, 0.15); color: var(--red-dim); }
.qc-check-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.qc-check-sub {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.45;
}
.qc-check-action {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}

/* QC quadrants */
.quadrant {
  background: var(--black);
  color: white;
  padding: 28px;
  margin-top: 28px;
  position: relative;
}
.quadrant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  aspect-ratio: 1.4 / 1;
  margin-top: 18px;
  position: relative;
}
.quadrant-cell {
  background: var(--black);
  padding: 14px 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: 12px;
  position: relative;
}
.quadrant-cell-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.quadrant-cell-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.quadrant-dot {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(224,112,32,0.25);
  transform: translate(-50%, -50%);
  transition: transform 380ms var(--ease-std);
}

/* ========== RASA ========== */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-ghost);
  border: 1px solid var(--border-ghost);
  margin-top: 24px;
}
@media (max-width: 920px) { .persona-grid { grid-template-columns: 1fr; } }

.persona {
  background: var(--white-pure);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.persona-head {
  display: flex; align-items: center; gap: 12px;
}
.persona-avatar {
  width: 44px; height: 44px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  letter-spacing: -0.02em;
}
.persona-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.persona-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}
.persona-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid var(--red);
}
.persona-needs {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}
.persona-needs li {
  list-style: none;
  display: flex; gap: 8px; align-items: flex-start;
}
.persona-needs li::before {
  content: ''; width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.emotion-bars {
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .emotion-bars { grid-template-columns: 100px 1fr 40px; gap: 10px; }
  .emotion-label { font-size: 12px; }
}
.emotion-row {
  display: contents;
}
.emotion-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 13px;
}
.emotion-track {
  height: 8px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.emotion-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--red);
  transition: width 600ms var(--ease-std);
}
.emotion-val {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  text-align: right;
}

/* ========== KARSA — moodboard ========== */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 18px;
}
@media (max-width: 720px) { .mood-grid { grid-template-columns: repeat(2, 1fr); } }
.mood-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 10px;
  color: white;
}
.mood-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,43,69,0.7) 100%);
}
.mood-tile-label {
  position: relative; z-index: 1;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mood-tile.m1 { background: linear-gradient(135deg, #d4a373 0%, #8b5e34 100%); }
.mood-tile.m2 { background: linear-gradient(135deg, #2d3a4b 0%, #0d2b45 100%); }
.mood-tile.m3 { background: linear-gradient(135deg, #e07020 0%, #8b3a0e 100%); }
.mood-tile.m4 { background: linear-gradient(135deg, #ccc5b9 0%, #5e5a52 100%); }
.mood-tile.m5 { background: linear-gradient(135deg, #4d56b0 0%, #1a1f5e 100%); }

.brief-block {
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  padding: 24px;
  margin-top: 24px;
  position: relative;
}
.brief-block.shadow-stack::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: -8px; bottom: -8px;
  background: var(--black);
  z-index: -1;
}
.brief-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-ghost);
  align-items: baseline;
}
.brief-row:last-child { border-bottom: none; }
.brief-row dt {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.brief-row dd {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.45;
}
@media (max-width: 600px) {
  .brief-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ========== CIPTA — visualization gallery ========== */
.cipta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 920px) { .cipta-grid { grid-template-columns: 1fr; } }

.render-stage {
  background: var(--black);
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.render-stage::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(224, 112, 32, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(77, 86, 176, 0.12) 0%, transparent 50%);
}
.render-stage svg { position: relative; z-index: 1; width: 70%; height: auto; }
.render-meta {
  position: absolute; top: 16px; left: 16px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  z-index: 2;
}
.render-meta .pulse {
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
  animation: blink 1.6s var(--ease-std) infinite;
}
.render-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  z-index: 2;
}

.thumb-rail {
  display: grid; gap: 8px;
}
.thumb {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
  text-align: left;
  width: 100%;
}
.thumb:hover { border-color: var(--gray-mid); }
.thumb[aria-pressed="true"] {
  border-color: var(--red);
  border-width: 2px;
  padding: 9px;
  background: rgba(224,112,32,0.03);
}
.thumb-img {
  width: 64px; height: 64px;
  background: var(--surface-low);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
}
.thumb-img svg { width: 36px; height: 36px; }
.thumb-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.thumb-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
}
.thumb-id {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}
.thumb-action {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.thumb[aria-pressed="true"] .thumb-action { color: var(--red); }

/* ========== KARYA — roadmap ========== */
.roadmap {
  margin-top: 24px;
  position: relative;
}
.roadmap-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-ghost);
  align-items: flex-start;
}
@media (max-width: 640px) {
  .roadmap-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .roadmap-when { padding-top: 0; }
}
.roadmap-row:first-child { border-top: 1px solid var(--border-ghost); }
.roadmap-when {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 4px;
}
.roadmap-row .step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.roadmap-row .step-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 10px;
}
.roadmap-tags { display: flex; flex-wrap: wrap; gap: 4px; }

.handoff-card {
  background: var(--surface);
  padding: 24px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-left: 3px solid var(--red);
}
@media (max-width: 600px) { .handoff-card { grid-template-columns: 1fr; } }
.handoff-card h4 {
  font-size: 18px; margin-bottom: 6px;
}
.handoff-card p { font-size: 13px; color: var(--gray); }
.handoff-card .rail-cta { width: auto; }

/* ========== FOOTER ========== */
.foot {
  padding: 32px 36px;
  background: var(--black);
  color: rgba(255,255,255,0.55);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.foot em { color: var(--red); font-style: normal; }
.foot a { color: rgba(255,255,255,0.55); transition: color var(--dur-fast); }
.foot a:hover { color: white; }

/* ========== UTIL ========== */
.spacer-sm { height: 16px; }
.spacer-md { height: 32px; }
.row { display: flex; gap: 12px; align-items: center; }
.wrap { flex-wrap: wrap; }

.rail-card-form {
  padding: 22px 22px 20px;
}
.rail-form {
  padding: 0;
  margin-top: 16px;
  gap: 12px;
}
.rail-form .intake-field { gap: 4px; }
.rail-form .intake-input {
  padding: 10px 11px;
  font-size: 13.5px;
}
.rail-form .intake-label {
  font-size: 9.5px;
  letter-spacing: 0.06em;
}
.rail-form .intake-hint {
  font-size: 9.5px;
  line-height: 1.45;
}
.rail-form .intake-consents {
  gap: 6px;
  padding-top: 10px;
}
.rail-form .intake-check {
  font-size: 11.5px;
  line-height: 1.4;
}
.rail-form .intake-check input { width: 14px; height: 14px; }
.rail-form .intake-submit {
  padding: 12px 16px;
  font-size: 13px;
  margin-top: 2px;
}
.rail-form .intake-foot { font-size: 10px; }

/* --- Dark mode for intake form inside dark rail card --- */
.rail-card.dark .rail-title { color: var(--white-pure); }
.rail-card.dark .intake-label { color: rgba(255, 255, 255, 0.55); }
.rail-card.dark .intake-hint { color: rgba(255, 255, 255, 0.45); }
.rail-card.dark .intake-input {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white-pure);
}
.rail-card.dark .intake-input::placeholder { color: rgba(255, 255, 255, 0.28); }
.rail-card.dark .intake-input:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(224, 112, 32, 0.22);
}
.rail-card.dark .intake-input:-webkit-autofill {
  -webkit-text-fill-color: var(--white-pure);
  -webkit-box-shadow: 0 0 0 1000px #14151a inset;
  caret-color: var(--white-pure);
}
.rail-card.dark .intake-consents {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.rail-card.dark .intake-check {
  color: rgba(255, 255, 255, 0.6);
}
.rail-card.dark .intake-check strong { color: var(--white-pure); }
.rail-card.dark .intake-foot { color: rgba(255, 255, 255, 0.4); }
.rail-card.dark .status-dot { background: var(--red); box-shadow: 0 0 0 3px rgba(224, 112, 32, 0.18); }

/* ========== BUNDLE OFFER ========== */
.bundle-card {
  margin-top: 24px;
  background: var(--black);
  color: white;
  padding: 28px 30px;
  position: relative;
  display: grid;
  gap: 22px;
}
.bundle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
}
.bundle-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: flex-start;
}
.bundle-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.bundle-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 8px;
  line-height: 1.1;
}
.bundle-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  max-width: 52ch;
}
.bundle-savings {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.04em;
  color: var(--red);
  background: rgba(224, 112, 32, 0.12);
  padding: 14px 18px;
  border: 1px solid rgba(224, 112, 32, 0.5);
  align-self: center;
  line-height: 1;
}

.bundle-lines {
  display: grid;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
}
.bundle-line {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}
.bundle-line:last-child { border-bottom: none; }
.bundle-line-num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--gray-mid);
  text-align: center;
}
.bundle-line.active .bundle-line-num { color: var(--red); }
.bundle-line.active .bundle-line-name { color: var(--red); font-weight: 600; }
.bundle-line-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.bundle-line-price {
  font-family: 'DM Mono', monospace;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}
.bundle-line-sub,
.bundle-line-disc {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.bundle-line-disc { color: var(--red); }
.bundle-line-disc .bundle-line-price,
.bundle-line-sub .bundle-line-price {
  font-family: 'DM Mono', monospace;
  color: inherit;
  font-size: 11px;
}

.bundle-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bundle-total {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bundle-total-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.bundle-total-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
}
.bundle-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--red);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--dur-fast), transform var(--dur-fast);
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.bundle-cta:hover { background: var(--red-dim); transform: translateY(-1px); }
.bundle-cta svg { transition: transform var(--dur-ui); }
.bundle-cta:hover svg { transform: translateX(4px); }

@media (max-width: 640px) {
  .bundle-card { padding: 24px 22px; }
  .bundle-head { grid-template-columns: 1fr; gap: 12px; }
  .bundle-savings { font-size: 28px; padding: 10px 14px; justify-self: flex-start; }
  .bundle-title { font-size: 22px; }
  .bundle-foot { grid-template-columns: 1fr; }
  .bundle-cta { width: 100%; justify-content: center; }
}

/* ========== POTRET INTAKE FORM (minimum friction) ========== */
.intake {
  margin-top: 28px;
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
}
.intake::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
}
@media (max-width: 920px) {
  .intake { grid-template-columns: 1fr; }
}

.intake-side {
  background: var(--black);
  color: white;
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 18px;
}
.intake-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex; align-items: center; gap: 8px;
}
.intake-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--red);
}
.intake-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.intake-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}
.intake-trust {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid; gap: 8px;
}
.intake-trust-row {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}
.intake-trust-row strong { color: var(--red); font-weight: 500; }
.intake-trust-dot {
  width: 5px; height: 5px;
  background: var(--red);
  flex-shrink: 0;
}

.intake-form {
  padding: 28px 30px;
  display: grid; gap: 14px;
}
.intake-field {
  display: grid; gap: 6px;
}
.intake-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.intake-label .req {
  color: var(--red);
  font-weight: 700;
}
.intake-hint {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.intake-input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border-ghost);
  background: var(--white-pure);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  border-radius: 0;
}
.intake-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 112, 32, 0.12);
}
.intake-input::placeholder { color: var(--gray-light); }

.intake-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .intake-pair { grid-template-columns: 1fr; }
}

.intake-consents {
  display: grid; gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-ghost);
}
.intake-check {
  display: flex; gap: 10px; align-items: flex-start;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.5;
}
.intake-check input {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
}
.intake-check strong { color: var(--black); font-weight: 600; }

.intake-label-note {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  font-family: 'DM Mono', monospace;
}
/* POTRET intake form inside dark section (rasa-dark) — light text overrides for readability on navy */
.rasa-dark .intake-form { padding: 24px 22px; }  /* samakan lebar konten form dgn teks pitch (rasa-light padding 24px 22px) */
.rasa-dark .intake-label,
.rasa-dark .intake-label-note,
.rasa-dark .intake-hint { color: rgba(255, 255, 255, 0.58); }
.rasa-dark .intake-check { color: rgba(255, 255, 255, 0.72); }
.rasa-dark .intake-check strong { color: #fff; }
.rasa-dark .intake-consents { border-top-color: rgba(255, 255, 255, 0.14); }
.rasa-dark .intake-foot { color: rgba(255, 255, 255, 0.45); border-color: rgba(255, 255, 255, 0.1); }
/* Input fields: translucent putih di atas navy (match RASA .rasa-kode-input) */
.rasa-dark .intake-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #f4f6f8;
}
.rasa-dark .intake-input::placeholder { color: rgba(244, 246, 248, 0.3); }
.rasa-dark .intake-input:focus {
  border-color: #e07020;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
/* PaymentBlock (karsa/cipta/karya) inside dark form box — readable on navy, match POTRET dark form */
.rasa-dark .pay-block { padding: 24px 22px; margin-top: 0; }
.rasa-dark .pay-amount-label,
.rasa-dark .pay-line-num,
.rasa-dark .pay-method-sub,
.rasa-dark .pay-secure { color: rgba(255, 255, 255, 0.55); }
.rasa-dark .pay-amount,
.rasa-dark .pay-line-name,
.rasa-dark .pay-line-price,
.rasa-dark .pay-method-name { color: #f4f6f8; }
.rasa-dark .pay-amount-row { border-bottom-color: rgba(255, 255, 255, 0.14); }
.rasa-dark .pay-method { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.18); }
.rasa-dark .pay-method:hover { border-color: rgba(255, 255, 255, 0.4); }
.rasa-dark .pay-method[aria-checked="true"] { border-color: #e07020; background: rgba(224, 112, 32, 0.14); }
.rasa-dark .pay-method-dot { border-color: rgba(255, 255, 255, 0.35); }
.intake-warning {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.55;
  background: rgba(224, 112, 32, 0.06);
  border-left: 2px solid var(--red);
  padding: 8px 10px;
  margin-top: 4px;
}
.intake-warning strong { color: var(--black); font-weight: 600; }

.intake-submit {
  /* Primary CTA — LOCKED brand orange (match RasaForm + pay-cta + purchase-cta) */
  width: 100%;
  margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px;
  background: var(--brand-orange);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  border-radius: 10px;
  transition: background var(--dur-fast), transform var(--dur-fast);
  border: 0;
  cursor: pointer;
}
.intake-submit:hover:not(:disabled) { background: var(--brand-orange-dark); transform: translateY(-1px); }
.intake-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.intake-submit svg { transition: transform var(--dur-ui); }
.intake-submit:hover:not(:disabled) svg { transform: translateX(4px); }

.intake-foot {
  margin-top: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--gray-mid);
  text-align: center;
}

/* ========== PURCHASE BLOCK (carousel + price unified) ========== */
.purchase-block {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  position: relative;
}
.purchase-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  z-index: 5;
}
@media (max-width: 920px) {
  .purchase-block { grid-template-columns: 1fr; }
}
.purchase-block .deliv-carousel {
  margin: 0;
  border: none;
  border-right: 1px solid var(--border-ghost);
}
.purchase-block .deliv-carousel::after { display: none; }
@media (max-width: 920px) {
  .purchase-block .deliv-carousel {
    border-right: none;
    border-bottom: 1px solid var(--border-ghost);
  }
}
.purchase-side {
  padding: 28px 28px 24px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.purchase-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.purchase-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--black);
}
.purchase-sub {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}
.purchase-badges {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 4px;
}
.purchase-price {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-top: 4px;
}
.purchase-price strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--red);
}
.purchase-price s {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--gray-mid);
}
.purchase-note {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 6px;
}
.purchase-cta {
  /* Primary CTA — LOCKED brand orange (match RasaForm + pay-cta) */
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 18px;
  background: var(--brand-orange);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.purchase-cta:hover { background: var(--brand-orange-dark); transform: translateY(-1px); }
.purchase-cta svg { transition: transform var(--dur-ui); }
.purchase-cta:hover svg { transform: translateX(4px); }
.purchase-cta.wa { background: #25d366; }
.purchase-cta.wa:hover { background: #1ebd5a; }

.purchase-block.purchase-block-solo {
  grid-template-columns: 1fr;
}
.purchase-block.purchase-block-solo .purchase-side {
  padding: 28px 30px;
}

/* ========== DELIVERABLE CAROUSEL ========== */
.deliv-carousel {
  margin-top: 28px;
  margin-bottom: 4px;
  background: var(--surface);
  border: 1px solid var(--border-ghost);
  position: relative;
}
.deliv-carousel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.deliv-viewport {
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.deliv-track {
  display: flex;
  transition: transform 380ms var(--ease-std);
  will-change: transform;
}
.deliv-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 16 / 9;
}
.deliv-slide image-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.deliv-meta {
  position: absolute;
  top: 16px; left: 18px; right: 18px;
  display: flex; justify-content: space-between; gap: 12px;
  z-index: 4; pointer-events: none;
}
.deliv-counter {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white-pure);
  padding: 4px 8px;
  pointer-events: auto;
  box-shadow: 0 1px 2px rgba(13,43,69,0.12);
}
.deliv-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: var(--red);
  padding: 4px 8px;
  pointer-events: auto;
  font-weight: 600;
}

.deliv-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  background: var(--black);
  border-top: 1px solid var(--border-ghost);
}
.deliv-current {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.deliv-dots {
  display: flex; gap: 6px;
  align-items: center;
  justify-self: center;
}
.deliv-dot {
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--dur-fast), width var(--dur-fast);
}
.deliv-dot.active {
  background: var(--red);
  width: 22px;
}
.deliv-btns {
  display: flex; gap: 4px;
  justify-self: end;
}
.deliv-btn {
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.deliv-btn:hover { background: var(--red); }
.deliv-btn svg { display: block; }

@media (max-width: 640px) {
  .deliv-controls {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 12px 14px;
    gap: 10px;
  }
  .deliv-current { grid-column: 1 / -1; font-size: 13px; }
  .deliv-dots { justify-self: start; }
  .deliv-slide { aspect-ratio: 4 / 3; }
}
.deliv-current {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.deliv-dots {
  display: flex; gap: 6px;
  align-items: center;
  justify-self: center;
}
.deliv-dot {
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--dur-fast), width var(--dur-fast);
}
.deliv-dot.active {
  background: var(--red);
  width: 22px;
}
.deliv-btns {
  display: flex; gap: 4px;
  justify-self: end;
}
.deliv-btn {
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.deliv-btn:hover { background: var(--red); }
.deliv-btn svg { display: block; }

@media (max-width: 640px) {
  .deliv-controls {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 12px 14px;
    gap: 10px;
  }
  .deliv-current { grid-column: 1 / -1; font-size: 13px; }
  .deliv-dots { justify-self: start; }
  .deliv-slide { aspect-ratio: 4 / 3; }
}

/* ========== PRICE BOX ========== */
.price-box {
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  padding: 22px 24px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  position: relative;
}
.price-box.dark {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
}
.price-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
}
@media (max-width: 600px) {
  .price-box { grid-template-columns: 1fr; gap: 16px; }
}

.price-badges {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.price-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  white-space: nowrap;
}
.price-badge.ai { background: linear-gradient(90deg, #06b6d4, #7c3aed); color: white; }
.price-badge.launch { background: var(--red); color: white; }
.price-badge.wa { background: #5ea778; color: white; }
.price-badge.bonus { background: var(--red); color: white; }

.price-amount {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-bottom: 4px;
}
.price-amount strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.price-amount strong.accent { color: var(--red); }
.price-amount s {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 400;
}
.price-box.dark .price-amount s { color: rgba(255,255,255,0.45); }
.price-note {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.02em;
  margin-top: 4px;
  line-height: 1.55;
}
.price-box.dark .price-note { color: rgba(255,255,255,0.5); }

.price-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--red);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
}
.price-cta:hover { background: var(--red-dim); transform: translateY(-1px); }
.price-cta svg { transition: transform var(--dur-ui); }
.price-cta:hover svg { transform: translateX(4px); }

/* ========== BONUS BLOCK ========== */
.bonus-block {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px dashed rgba(224,112,32,0.5);
  background: rgba(224,112,32,0.05);
}
.bonus-block.dark { background: rgba(224,112,32,0.08); border-color: rgba(224,112,32,0.45); }
.bonus-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.bonus-head .grotesk {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em;
}
.bonus-list {
  display: grid; gap: 12px;
}
.bonus-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 10px 0;
  align-items: flex-start;
}
.bonus-item + .bonus-item { border-top: 1px dashed rgba(224,112,32,0.25); }
.bonus-item-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 600;
  padding-top: 2px;
  min-width: 28px;
}
.bonus-item-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
  color: var(--black);
}
.bonus-item-desc {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.55;
}

/* ========== TESTIMONIAL ========== */
.testi-block {
  background: var(--black);
  color: var(--white);
  padding: 28px 28px;
  margin-top: 28px;
  position: relative;
}
.testi-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--red);
}
.testi-block .testi-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.testi-block .testi-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}
.testi-block .testi-paket {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.testi-block .testi-role {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ========== DELIVERABLES LIST ========== */
.deliverables {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--border-ghost);
}
.deliverable {
  display: contents;
}
.deliverable-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 600;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-ghost);
}
.deliverable-body {
  padding: 18px 0 18px 12px;
  border-bottom: 1px solid var(--border-ghost);
}
.deliverable-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.deliverable-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

/* ========== ARCHETYPE GRID ========== */
.arche-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 20px;
}
@media (max-width: 920px) { .arche-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .arche-grid { grid-template-columns: repeat(2, 1fr); } }
.arche-tile {
  aspect-ratio: 1;
  position: relative;
  padding: 14px 12px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.arche-tile:hover { border-color: var(--gray-mid); }
.arche-tile[aria-pressed="true"] {
  border-color: var(--red);
  border-width: 2px;
  padding: 13px 11px;
  background: rgba(224, 112, 32, 0.04);
}
.arche-num {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
}
.arche-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.arche-trait {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--gray);
}

/* ========== ARCHETYPE SELECTOR v2 — stage + 2×3 tiles ========== */
.arche-stage-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  margin-top: 20px;
  align-items: stretch;
}
@media (max-width: 920px) { .arche-stage-grid { grid-template-columns: 1fr; } }

/* Stage card */
.arche-stage {
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
  position: relative;
  animation: archeFade 380ms var(--ease-std);
}
@keyframes archeFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.arche-stage-meta {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.32);
  padding: 6px 10px;
  z-index: 2;
}

.arche-stage-mark {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.arche-stage-mark svg { width: 100%; height: 100%; display: block; }

.arche-stage-name {
  padding: 16px 20px 14px;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border-ghost);
}
.arche-stage-name-text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--black);
}
.arche-stage-name-trait {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.arche-stage-cue {
  padding: 14px 20px;
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--border-ghost);
}
.arche-cue-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 14px;
}
.arche-cue-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.arche-cue-swatches {
  display: flex; gap: 6px;
}
.arche-swatch {
  width: 28px; height: 28px;
  display: block;
  border: 1px solid var(--border-ghost);
}
.arche-cue-mats {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.arche-mat {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--black);
  padding: 4px 8px;
  border: 1px solid var(--border-ghost);
  background: var(--surface);
}

.arche-stage-slot {
  padding: 14px 20px 20px;
}
.arche-stage-slot image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 120px;
}

/* Tiles grid — 2 cols × 3 rows, image-only */
.arche-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 8px;
  align-content: start;
}
@media (max-width: 920px) {
  .arche-tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .arche-tiles { grid-template-columns: repeat(2, 1fr); }
}
.arche-tile-v2 {
  aspect-ratio: 1;
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  padding: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 150ms var(--ease-std), border-color 150ms var(--ease-std);
}
.arche-tile-v2 svg {
  width: 100%; height: 100%;
  display: block;
  transition: transform 380ms var(--ease-std);
}
.arche-tile-v2:hover svg { transform: scale(1.04); }
.arche-tile-v2:hover { border-color: var(--gray-mid); }
.arche-tile-v2[aria-checked="true"] {
  border-color: var(--red);
  border-width: 2px;
}
.arche-tile-v2[aria-checked="true"]::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--white-pure);
}
.arche-tile-v2[aria-checked="true"]::before {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 10px; height: 10px;
  background: var(--red);
  z-index: 2;
}
.arche-tile-v2:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ========== GEO MAP ========== */
.geo-card {
  background: var(--black);
  color: white;
  padding: 28px;
  margin-top: 18px;
  position: relative;
}
.geo-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.geo-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 720px) { .geo-list { grid-template-columns: repeat(2, 1fr); } }
.geo-cell {
  background: var(--black);
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.geo-flag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--red);
}
.geo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.geo-trait {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}
.geo-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  position: relative;
  margin-top: 4px;
}
.geo-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--red);
}

/* ========== KARYA SPECS ========== */
.karya-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-ghost);
  border: 1px solid var(--border-ghost);
  margin-top: 18px;
}
@media (max-width: 720px) { .karya-specs { grid-template-columns: repeat(2, 1fr); } }
.spec-cell {
  background: var(--white-pure);
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.spec-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.spec-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--black);
}
.spec-unit {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.format-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 8px;
}
.format-pill {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--surface);
  color: var(--black);
  font-weight: 600;
}


/* ========== PAYMENT BLOCK — rail variant ========== */
.pay-block {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pay-amount-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-ghost);
}
.pay-amount-label {
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.pay-amount {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

.pay-line-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 10px;
  font-size: 12.5px;
  color: var(--gray);
}
.pay-line-num {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}
.pay-line-name {
  color: var(--black);
}
.pay-line-price {
  font-size: 11px;
  color: var(--black);
  font-weight: 500;
}

.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}
.pay-method {
  display: grid;
  grid-template-columns: 14px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--dur-ui, 150ms) var(--ease-std),
              background var(--dur-ui, 150ms) var(--ease-std);
}
.pay-method:hover { border-color: var(--gray-mid); }
.pay-method[aria-checked="true"] {
  border-color: var(--red);
  background: rgba(224, 112, 32, 0.04);
}
.pay-method-dot {
  grid-row: 1 / span 2;
  width: 12px; height: 12px;
  border: 1.5px solid var(--gray-light);
  border-radius: 50%;
  position: relative;
  transition: border-color 150ms var(--ease-std);
}
.pay-method[aria-checked="true"] .pay-method-dot {
  border-color: var(--red);
}
.pay-method[aria-checked="true"] .pay-method-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--red);
  border-radius: 50%;
}
.pay-method-name {
  grid-column: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}
.pay-method-sub {
  grid-column: 2;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--gray-mid);
  line-height: 1.4;
}

.pay-cta {
  /* Primary CTA — LOCKED to brand orange (match RasaForm .rasa-submit) */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  background: var(--brand-orange);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  margin-top: 4px;
  transition: background var(--dur-ui, 150ms) var(--ease-std),
              transform var(--dur-ui, 150ms) var(--ease-std);
}
.pay-cta:hover { background: var(--brand-orange-dark); transform: translateY(-1px); }
.pay-cta:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.pay-cta svg { transition: transform var(--dur-ui, 150ms); }
.pay-cta:hover svg { transform: translateX(4px); }

.pay-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.pay-secure svg { width: 10px; height: 10px; }


/* ========== TOP 10 PENJUALAN — light mode ========== */
.qc-topsales {
  background: var(--white-pure);
  color: var(--black);
  padding: 28px 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  border: 1px solid var(--border-ghost);
}
.qc-topsales::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 22%, transparent 22%);
}

.topsales-head { display: flex; flex-direction: column; gap: 6px; }
.topsales-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.topsales-eyebrow .pulse {
  width: 6px; height: 6px; background: var(--red);
  display: inline-block;
  animation: topsalesPulse 1.8s ease-in-out infinite;
}
@keyframes topsalesPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.topsales-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
}
.topsales-head-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 28px;
}
@media (max-width: 720px) {
  .topsales-head-row { grid-template-columns: 1fr; gap: 6px; align-items: start; }
}
.topsales-sub {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--gray);
  max-width: 48ch;
  margin: 0;
  padding-bottom: 4px;
}

.topsales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-ghost);
  margin-top: 4px;
  border: 1px solid var(--border-ghost);
}
@media (max-width: 600px) {
  .topsales-grid { grid-template-columns: 1fr; }
}
.topsales-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: var(--white-pure);
  transition: background 200ms var(--ease-std);
}
.topsales-row:hover { background: var(--surface); }
.topsales-rank {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  padding-top: 0;
}
.topsales-row:nth-child(1) .topsales-rank,
.topsales-row:nth-child(2) .topsales-rank,
.topsales-row:nth-child(3) .topsales-rank {
  color: var(--red);
  font-weight: 500;
}
.topsales-body { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.topsales-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.15;
}
.topsales-meta {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--gray-mid);
  line-height: 1.2;
}
.topsales-meta em { font-style: normal; color: var(--gray-light); margin: 0 4px; }
.topsales-bar {
  width: 100%;
  height: 2px;
  background: var(--border-ghost);
  margin-top: 3px;
  overflow: hidden;
}
.topsales-bar-fill {
  display: block;
  height: 100%;
  background: var(--red);
  animation: topsalesBar 700ms var(--ease-std);
  transform-origin: left;
}
@keyframes topsalesBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.topsales-val {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
  align-self: center;
  white-space: nowrap;
}

.topsales-foot {
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-top: 1px solid var(--border-ghost);
  padding-top: 14px;
  margin-top: 4px;
}


/* ========== PORTOFOLIO — full-width showcase ========== */
.workspace-solo {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1320px;
}

/* Stats row */
.porto-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-ghost);
  border: 1px solid var(--border-ghost);
  margin-top: 28px;
}
@media (max-width: 720px) { .porto-stats { grid-template-columns: repeat(2, 1fr); } }
.porto-stat {
  background: var(--white-pure);
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.porto-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--red);
}
.porto-stat-num {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--black);
}
.porto-stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* Timeline */
.porto-timeline {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.porto-tl-item {
  display: grid;
  grid-template-columns: 28px 160px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border-ghost);
  position: relative;
}
.porto-tl-item:last-child { border-bottom: 1px solid var(--border-ghost); }
@media (max-width: 720px) {
  .porto-tl-item {
    grid-template-columns: 28px 1fr;
    gap: 16px;
  }
  .porto-tl-meta { grid-column: 2; flex-direction: row; align-items: center; justify-content: space-between; }
  .porto-tl-body { grid-column: 2; }
}
.porto-tl-marker {
  position: relative;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.porto-tl-dot {
  width: 10px; height: 10px;
  background: var(--red);
  z-index: 1;
}
.porto-tl-line {
  position: absolute;
  top: 16px; bottom: -28px;
  left: 50%;
  width: 1px;
  background: var(--border-ghost);
  transform: translateX(-0.5px);
}
.porto-tl-item:last-child .porto-tl-line { display: none; }
.porto-tl-meta {
  display: flex; flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}
.porto-tl-range {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--black);
}
.porto-tl-num {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
}
.porto-tl-body { min-width: 0; }
.porto-tl-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}
.porto-tl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.porto-tl-list li {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}
.porto-tl-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--gray-mid);
}

/* Featured projects grid */
.porto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 1000px) { .porto-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .porto-grid { grid-template-columns: 1fr; } }

.porto-card {
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  display: flex;
  flex-direction: column;
  transition: border-color 200ms var(--ease-std);
}
.porto-card:hover { border-color: var(--gray-mid); }

.porto-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--surface-low);
  position: relative;
  overflow: hidden;
}
.porto-card-img image-slot {
  display: block;
  width: 100%;
  height: 100%;
}

.porto-card-body {
  padding: 18px 20px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
}
.porto-card-num {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding-top: 2px;
  grid-row: 1;
}
.porto-card-meta {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.porto-card-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
}
.porto-card-cat {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.porto-card-result {
  grid-column: 2;
  grid-row: 2;
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray);
  margin-top: 10px;
}

/* Bottom handoff */
.porto-handoff { margin-top: 40px; }
.porto-handoff .rail-cta {
  width: auto;
  display: inline-flex;
  text-decoration: none;
}


/* ========== PORTOFOLIO — testimoni grid ========== */
.porto-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 800px) { .porto-testi-grid { grid-template-columns: 1fr; } }
.porto-testi-grid .testi-block {
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  padding: 24px 26px 22px;
  position: relative;
}
.porto-testi-grid .testi-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--red);
}

/* ============================================================
   LOGO POSITIONING OVERRIDE — 2026-05-21
   PNG natural 4979x954, force kecil + top-left
   ============================================================ */
.brand-band {
  padding: 14px clamp(16px, 3vw, 28px) !important;
  min-height: 56px;
  align-items: center !important;
}
.brand-band-id {
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
  max-width: 60% !important;
}
.brand-band-logo {
  height: 32px !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 36px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  display: block !important;
}
.brand-band-tag {
  flex-shrink: 1 !important;
  text-align: right;
}
.brand-band-tag .brand-tag-line {
  font-size: 10px !important;
  line-height: 1.4 !important;
}
@media (max-width: 640px) {
  .brand-band {
    padding: 10px 14px !important;
    gap: 12px !important;
  }
  .brand-band-logo {
    height: 26px !important;
    max-height: 30px !important;
    max-width: 140px !important;
  }
  .brand-band-tag {
    display: none !important;
  }
  .brand-band-id {
    max-width: 100% !important;
  }
}
/* Footer logo — kecil juga */
footer img[alt="pakpepibikin"],
.foot img[alt="pakpepibikin"] {
  height: 22px !important;
  width: auto !important;
  max-width: 120px !important;
  object-fit: contain !important;
}
/* ============================================================
   HEADER COVER (Notion-style) — 2026-05-21
   Background image spans brand-band + tab-strip
   ============================================================ */
.header-cover {
  position: relative;
  background:
    linear-gradient(to bottom, rgba(13, 43, 69, 0.45) 0%, rgba(13, 43, 69, 0.75) 60%, rgba(13, 43, 69, 0.92) 100%),
    url('assets/header-cover.png') center center / cover no-repeat;
  isolation: isolate;
}
.header-cover .brand-band {
  background: transparent !important;
}
.header-cover .brand-band-deco {
  opacity: 0.35 !important;
  mix-blend-mode: screen;
}
.header-cover .tab-strip {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.header-cover .tab {
  background: rgba(13, 43, 69, 0.4) !important;
  backdrop-filter: blur(2px);
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.header-cover .tab[aria-selected="true"] {
  background: rgba(224, 112, 32, 0.85) !important;
  color: var(--white, #f4f6f8) !important;
}
.header-cover .tab:hover:not([aria-selected="true"]) {
  background: rgba(13, 43, 69, 0.65) !important;
}
.header-cover .brand-band-rd,
.header-cover .brand-tag-line {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
@media (max-width: 640px) {
  .header-cover {
    background:
      linear-gradient(to bottom, rgba(13, 43, 69, 0.55) 0%, rgba(13, 43, 69, 0.92) 100%),
      url('assets/header-cover.png') center center / cover no-repeat;
  }
}
/* ============================================================
   FINAL OVERRIDES — 2026-05-21
   Tab text visibility + Logo 1.5x + Orange line + Hide R&D
   ============================================================ */

/* 1. HIDE R&D · sejak 2000 */
.brand-band-rd,
.brand-band-wordmark-stack {
  display: none !important;
}

/* 2. LOGO 1.5x BIGGER */
.brand-band-logo {
  height: 48px !important;
  width: auto !important;
  max-height: 56px !important;
  max-width: 270px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  display: block !important;
}
@media (max-width: 640px) {
  .brand-band-logo {
    height: 40px !important;
    max-height: 44px !important;
    max-width: 210px !important;
  }
}

/* 3. ORANGE ACCENT LINE — bottom dari brand-band, di atas tabs */
.header-cover .brand-band {
  border-bottom: 3px solid #e07020 !important;
  box-shadow: 0 2px 8px rgba(224, 112, 32, 0.3);
}

/* 4. TAB TEXT VISIBILITY FIX */
/* Non-selected tabs: text WHITE on dark overlay */
.header-cover .tab {
  background: rgba(13, 43, 69, 0.55) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(4px);
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.header-cover .tab .tab-name {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.header-cover .tab:hover:not([aria-selected="true"]) {
  background: rgba(13, 43, 69, 0.78) !important;
  color: #fff !important;
}
.header-cover .tab:hover:not([aria-selected="true"]) .tab-name {
  color: #fff !important;
}

/* Active tab: REVERT to original white background + red text */
.header-cover .tab[aria-selected="true"] {
  background: var(--white-pure, #fff) !important;
  color: var(--red, #e07020) !important;
}
.header-cover .tab[aria-selected="true"] .tab-name {
  color: var(--red, #e07020) !important;
  text-shadow: none !important;
}
.header-cover .tab[aria-selected="true"]:hover {
  background: var(--white-pure, #fff) !important;
}
/* ============================================================
   RASA FORM — dark KODE section + light manual section
   ============================================================ */
.rasa-form {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 43, 69, 0.12);
}
.rasa-dark {
  background: #0d2b45;
  color: #f4f6f8;
  padding: 24px 22px;
}
.rasa-light {
  background: #fff;
  color: #142d44;
  padding: 24px 22px;
}
.rasa-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  text-transform: uppercase;
}
.rasa-dot {
  width: 6px;
  height: 6px;
  background: #e07020;
  border-radius: 50%;
  display: inline-block;
}
.rasa-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 4px;
  line-height: 1.2;
  color: #fff;
}
.rasa-lede {
  font-family: Inter, sans-serif;
  font-size: 13px;
  opacity: 0.8;
  margin: 0 0 16px;
  line-height: 1.5;
}
.rasa-kode-input {
  width: 100%;
  padding: 14px 16px;
  font-family: "DM Mono", monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #f4f6f8;
  text-transform: uppercase;
  box-sizing: border-box;
}
.rasa-kode-input::placeholder { color: rgba(244, 246, 248, 0.3); }
.rasa-kode-input:focus {
  outline: none;
  border-color: #e07020;
  background: rgba(255, 255, 255, 0.12);
}
.rasa-status {
  font-family: Inter, sans-serif;
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.7;
}
.rasa-status-err { color: #ff8a65; opacity: 1; }
.rasa-kode-preview {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rasa-preview-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-family: Inter, sans-serif;
}
.rasa-preview-row > span { opacity: 0.6; }
.rasa-preview-row > strong { font-weight: 500; text-align: right; }
.rasa-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rasa-price-old {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 13px;
  font-family: "DM Mono", monospace;
  margin-right: 10px;
}
.rasa-price-new {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.rasa-discount-tag {
  background: #e07020;
  color: #fff;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.rasa-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e07020;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
  box-sizing: border-box;
}
.rasa-submit:hover:not(:disabled) { background: #c95c10; }
.rasa-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.rasa-photo-btns {
  display: flex;
  gap: 10px;
}
.rasa-photo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 13px 14px;
  background: #fff;
  color: #3a4654;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid #d4d9de;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.rasa-photo-btn:hover {
  border-color: #9aa3ad;
  color: #1f2733;
  background: #f4f5f6;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(20, 45, 68, 0.08);
}
.rasa-photo-btn.primary {
  background: #475160;
  color: #fff;
  border-color: #475160;
  box-shadow: 0 4px 14px rgba(40, 50, 64, 0.22);
}
.rasa-photo-btn.primary:hover {
  background: #353d49;
  border-color: #353d49;
  color: #fff;
  box-shadow: 0 8px 20px rgba(40, 50, 64, 0.28);
}
.rasa-submit-dark {
  background: #fff;
  color: #0d2b45;
}
.rasa-submit-dark:hover:not(:disabled) { background: #f4f6f8; }
.rasa-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: #0a223a;
  color: rgba(244, 246, 248, 0.5);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rasa-divider::before, .rasa-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.rasa-divider span { padding: 0 14px; }
.rasa-light-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #142d44;
}
.rasa-light-lede {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: rgba(20, 45, 68, 0.7);
  margin: 0 0 16px;
  line-height: 1.5;
}
.rasa-tax-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.rasa-tax-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 12px;
  background: #f4f6f8;
  border: 1px solid rgba(13, 43, 69, 0.1);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  font-family: inherit;
  color: #142d44;
}
.rasa-tax-chip:hover {
  background: #e07020;
  color: #fff;
  border-color: #e07020;
}
.rasa-tax-chip:hover .rasa-tax-chip-sub { color: rgba(255, 255, 255, 0.7); }
.rasa-tax-chip > span:first-child {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
}
.rasa-tax-chip-sub {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  opacity: 0.6;
}
.rasa-tax-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: #f4f6f8;
  border-radius: 8px;
}
.rasa-tax-selected > span {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #142d44;
}
.rasa-tax-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(20, 45, 68, 0.5);
  font-size: 16px;
  padding: 4px 8px;
  font-family: inherit;
}
.rasa-tax-clear:hover { color: #e07020; }

/* Kategori produk — textarea bebas + bubble tip (replace chips approach) */
.rasa-cat-textarea {
  resize: vertical;
  min-height: 72px;
  font-family: Inter, sans-serif;
  line-height: 1.45;
  padding: 12px 14px;
}
.rasa-cat-bubble {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 8px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #fff7ed 0%, #fff1de 100%);
  border: 1px solid rgba(224, 112, 32, 0.2);
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #5c3a1f;
}
.rasa-cat-bubble-icon {
  font-size: 16px;
  line-height: 1.2;
  flex-shrink: 0;
}
.rasa-cat-bubble-body strong {
  color: #c95c10;
  font-weight: 600;
}

/* ============================================================
   PKPB BLOCK — LOCKED TEMPLATE 2026-05-23
   ------------------------------------------------------------
   Visual standard yang di-lock untuk semua fase RKCK form/CTA card.
   Dipakai oleh: RASA (via .rasa-form alias), KARSA, CIPTA, KARYA.
   Source of truth: RasaForm dark+light split design.

   USAGE SKELETON:
     <div class="pkpb-block">
       <section class="pkpb-block-dark">    <!-- intro / context / KODE / promo -->
         <div class="pkpb-eyebrow"><span class="pkpb-dot"></span>FASE · STEP</div>
         <h3 class="pkpb-title">Judul fase</h3>
         <p class="pkpb-lede">Sub-copy 1-2 kalimat...</p>
         <!-- content khusus fase: KODE input / preview / promo / cta-secondary -->
       </section>
       <div class="pkpb-divider"><span>atau</span></div>
       <section class="pkpb-block-light">   <!-- form input / cta primary -->
         <h4 class="pkpb-light-title">Sub-judul</h4>
         <p class="pkpb-light-lede">Sub-copy...</p>
         <!-- form fields, then -->
         <button class="pkpb-cta">Lanjut Bayar Rp X.XXX</button>
       </section>
     </div>

   ATURAN:
   - Rounded 16px + soft drop shadow rgba(13,43,69,0.12) — JANGAN pakai
     offset block bayangan biru (shadow-stack deprecated).
   - Dark section navy #0d2b45, light section putih.
   - Primary CTA orange #e07020, hover #c95c10.
   - Secondary CTA (di dark section): bg putih, text navy.
   - Eyebrow: DM Mono uppercase 10px, opacity 0.7, dot orange.
   - Title: Space Grotesk 700 22px.
   - Lede: Inter 13px, opacity 0.8 di dark / 0.7 di light.
   ============================================================ */
.pkpb-block {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 43, 69, 0.12);
}
.pkpb-block-dark {
  background: #0d2b45;
  color: #f4f6f8;
  padding: 24px 22px;
}
.pkpb-block-light {
  background: #fff;
  color: #142d44;
  padding: 24px 22px;
}
.pkpb-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  text-transform: uppercase;
}
.pkpb-dot {
  width: 6px;
  height: 6px;
  background: #e07020;
  border-radius: 50%;
  display: inline-block;
}
.pkpb-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 4px;
  line-height: 1.2;
  color: #fff;
}
.pkpb-lede {
  font-family: Inter, sans-serif;
  font-size: 13px;
  opacity: 0.8;
  margin: 0 0 16px;
  line-height: 1.5;
}
.pkpb-light-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #142d44;
}
.pkpb-light-lede {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: rgba(20, 45, 68, 0.7);
  margin: 0 0 16px;
  line-height: 1.5;
}
.pkpb-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: #0a223a;
  color: rgba(244, 246, 248, 0.5);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pkpb-divider::before, .pkpb-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.pkpb-divider span { padding: 0 14px; }
.pkpb-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e07020;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
  box-sizing: border-box;
}
.pkpb-cta:hover:not(:disabled) { background: #c95c10; }
.pkpb-cta:disabled { opacity: 0.5; cursor: not-allowed; }
.pkpb-cta-secondary {
  background: #fff;
  color: #0d2b45;
}
.pkpb-cta-secondary:hover:not(:disabled) { background: #f4f6f8; }
/* End PKPB BLOCK template */

/* ============================================================
   RASA INVOICE PANEL
   ============================================================ */
.rasa-invoice-link {
  display: flex;
  text-decoration: none;
  margin-top: 16px;
}
.rasa-invoice-oid {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  opacity: 0.65;
  letter-spacing: 0.04em;
  word-break: break-all;
}
.rasa-invoice-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 4px 0 0;
}
.rasa-invoice-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: rgba(20, 45, 68, 0.85);
  line-height: 1.45;
}
.rasa-invoice-stepnum {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #e07020;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  margin-top: 1px;
}
.rasa-invoice-reset {
  display: block;
  margin-top: 18px;
  padding: 0;
  background: none;
  border: none;
  color: rgba(20, 45, 68, 0.38);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.02em;
}
.rasa-invoice-reset:hover { color: #e07020; }

/* ============================================================
   RASA PROMO CODE FIELD
   ============================================================ */
.rasa-promo-field { margin-top: 4px; }
.rasa-promo-opt {
  font-weight: 400;
  opacity: 0.5;
  font-size: 11px;
}
.rasa-promo-input {
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.06em;
}
.rasa-promo-err {
  color: #e05050;
  opacity: 1;
}
.rasa-promo-ok {
  color: #2d7a2d;
  opacity: 1;
  font-size: 12px;
}

/* =========================================================
   POTRET sample report gallery (.psample-*)
   Galeri 10 halaman laporan asli + caption — bukti premium.
   ========================================================= */
.psample {
  margin-top: 30px;
  padding: 30px clamp(18px, 3vw, 40px) 34px;
  background: var(--black);
  color: var(--brand-text-on-dark);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.psample::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.psample-head { max-width: 760px; margin-bottom: 26px; }
.psample-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.psample-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(224, 112, 32, 0.18);
}
.psample-title {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.2; font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 14px;
}
.psample-lede {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.6;
  color: rgba(244, 246, 248, 0.74);
}

/* Stage: big page + side arrows */
.psample-stage {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
}
.psample-nav {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(244, 246, 248, 0.22);
  background: rgba(244, 246, 248, 0.05);
  color: var(--white);
  font-size: 22px; line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--dur-ui) var(--ease-std);
}
.psample-nav:hover { background: var(--red); border-color: var(--red); color: #fff; transform: scale(1.06); }
.psample-figure {
  margin: 0;
  position: relative;
  width: 100%; max-width: 420px;
  cursor: zoom-in;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
}
.psample-img {
  display: block; width: 100%; height: auto;
  background: var(--white-pure);
  animation: psampleFade 360ms var(--ease-std);
}
@keyframes psampleFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.psample-zoomhint {
  position: absolute; right: 10px; bottom: 10px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em;
  color: #fff;
  background: rgba(13, 43, 69, 0.78);
  padding: 5px 9px; border-radius: 4px;
  opacity: 0; transition: opacity var(--dur-ui) var(--ease-std);
  pointer-events: none;
}
.psample-figure:hover .psample-zoomhint { opacity: 1; }

/* Caption block */
.psample-caption {
  max-width: 620px; margin: 22px auto 0;
  text-align: center;
}
.psample-cap-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 9px; flex-wrap: wrap;
}
.psample-cap-num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--red); letter-spacing: 0.06em;
}
.psample-cap-label {
  font-size: 17px; font-weight: 600;
  color: var(--white-pure); letter-spacing: -0.01em;
}
.psample-cap-text {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.62;
  color: rgba(244, 246, 248, 0.78);
}

/* Thumbnail strip */
.psample-thumbs {
  display: flex; gap: 8px;
  margin-top: 26px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(244,246,248,0.25) transparent;
  justify-content: flex-start;
}
.psample-thumbs::-webkit-scrollbar { height: 6px; }
.psample-thumbs::-webkit-scrollbar-thumb { background: rgba(244,246,248,0.2); border-radius: 3px; }
.psample-thumb {
  flex: 0 0 auto;
  position: relative;
  width: 56px; height: 79px;
  padding: 0; border: 1px solid rgba(244, 246, 248, 0.14);
  border-radius: 3px; overflow: hidden;
  background: var(--white-pure);
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--dur-ui) var(--ease-std);
}
.psample-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.psample-thumb:hover { opacity: 0.85; }
.psample-thumb.active { opacity: 1; border-color: var(--red); box-shadow: 0 0 0 2px var(--red); }
.psample-thumb-num {
  position: absolute; top: 3px; left: 3px;
  font-family: var(--font-mono); font-size: 8px;
  color: #fff; background: rgba(13, 43, 69, 0.7);
  padding: 1px 4px; border-radius: 2px;
}

/* Value bar */
.psample-value {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px; margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(244, 246, 248, 0.12);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(244, 246, 248, 0.7);
}
.psample-value em { color: var(--red); font-style: normal; }
.psample-value-item { white-space: nowrap; }

/* Lightbox */
.psample-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8, 22, 36, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  animation: psampleFade 220ms var(--ease-std);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.psample-lightbox img {
  max-width: min(560px, 92vw); max-height: 92vh;
  width: auto; height: auto;
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.psample-lb-close {
  position: absolute; top: 18px; right: 22px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: none; border-radius: 50%;
  background: rgba(244, 246, 248, 0.12);
  color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer;
  transition: background var(--dur-ui) var(--ease-std);
}
.psample-lb-close:hover { background: var(--red); }

@media (max-width: 640px) {
  .psample { padding: 24px 16px 28px; }
  .psample-nav { width: 36px; height: 36px; font-size: 18px; }
  .psample-figure { max-width: 100%; }
  .psample-value { font-size: 10px; gap: 7px; }
}

/* POTRET price CTA — tepat di bawah galeri (49K + anchor) */
.potret-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 18px;
  padding: 24px clamp(20px, 3vw, 34px);
  background: var(--white-pure);
  border: 1px solid var(--border-ghost);
  border-top: 3px solid var(--red);
  border-radius: 6px;
  box-shadow: 0 10px 34px rgba(13, 43, 69, 0.08);
}
.potret-cta-main { flex: 1 1 280px; }
.potret-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 9px;
}
.potret-cta-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 4px rgba(224, 112, 32, 0.16);
}
.potret-cta-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.potret-cta-was {
  font-family: var(--font-mono); font-size: 17px;
  color: var(--gray-mid); text-decoration: line-through;
}
.potret-cta-now {
  font-size: clamp(30px, 4.5vw, 40px);
  color: var(--black); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1;
}
.potret-cta-note {
  font-family: var(--font-body);
  font-size: 13px; line-height: 1.55;
  color: var(--gray); margin-top: 9px; max-width: 470px;
}
.potret-cta-note strong { color: var(--black); font-weight: 600; }
/* Value tags dipindah dari value-bar carousel → ke CTA harga */
.potret-cta-value {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin-top: 11px; max-width: 470px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray);
}
.potret-cta-value em { color: var(--red); font-style: normal; }
.potret-cta-value-item { white-space: nowrap; }
.potret-cta-btn {
  flex: none;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 26px;
  background: var(--red); color: #fff;
  border: none; border-radius: 5px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em; cursor: pointer;
  box-shadow: 0 8px 20px rgba(224, 112, 32, 0.28);
  transition: background var(--dur-ui) var(--ease-std), transform var(--dur-ui) var(--ease-std);
}
.potret-cta-btn:hover { background: var(--red-dim); transform: translateY(-1px); }
.potret-cta-btn svg { width: 16px; height: 16px; }

/* === KARYA — redesign Fase 2: dark pitch + light Cetak 3D section === */
.karya-flow { display: flex; flex-direction: column; margin-top: 18px; }
.karya-pitch-block {
  padding: 24px clamp(20px, 3vw, 30px) 20px;
  background: var(--brand-navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid rgba(224,112,32,0.75);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 4px 18px rgba(13,43,69,0.14);
}
.karya-pitch-service {
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: #CBA76A; margin-bottom: 10px;
}
.karya-pitch-value {
  font-family: var(--font-body); font-size: 13px; line-height: 1.65;
  color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 18px;
}
.karya-pay-btn { margin-top: 4px; }
.karya-trust-line {
  font-family: var(--font-mono);
  font-size: 11px; color: rgba(255,255,255,0.35);
  margin-top: 14px; letter-spacing: 0.04em; text-align: center;
}
.karya-print3d {
  padding: 28px clamp(20px, 3vw, 30px);
  background: #FCFAF7;
  border: 1px solid rgba(13,43,69,0.08);
  border-top: none;
  border-radius: 0 0 6px 6px;
}
.karya-print3d-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black); opacity: 0.40; margin-bottom: 14px;
}
.karya-print3d-badge::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: currentColor; opacity: 0.70;
}
.karya-print3d-price {
  font-size: clamp(22px, 3vw, 28px); font-weight: 500;
  color: var(--black); letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 4px;
}
.karya-print3d-unit { font-size: 13px; font-weight: 300; color: rgba(13,43,69,0.42); }
.karya-print3d-desc {
  font-family: var(--font-body); font-size: 13px; line-height: 1.75;
  color: rgba(13,43,69,0.55); font-weight: 300; margin-top: 8px; max-width: 490px;
}
.karya-print3d-desc strong { color: var(--black); font-weight: 600; }
@media (max-width: 560px) {
  .potret-cta { flex-direction: column; align-items: stretch; }
  .potret-cta-btn { justify-content: center; width: 100%; }
  .karya-pay-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   RASA dark form v2 — 2026-06-07 (refined, selaras layar sukses)
   ============================================================ */
.rail-card-form { padding: 0; background: transparent; box-shadow: none; border: none; }
/* LIGHT MODE 2026-06-09 — form RASA disamakan light dengan KARSA/CIPTA/KARYA.
   Putih + shadow lembut tanpa outline (versi gelap lama di _backups). */
.rasa-light-form { border-radius: 18px; overflow: hidden; box-shadow: 0 14px 40px rgba(13,43,69,0.14); }
.rasa-light-form .rf-card { background:#fff; color:#142d44; padding:32px 28px 26px; font-family:'Inter',sans-serif; }

.rasa-light-form .rf-eyebrow { display:flex; align-items:center; gap:9px; font-family:'DM Mono',monospace; font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:#7a8a9b; }
.rasa-light-form .rf-dot { width:7px; height:7px; border-radius:50%; background:#E8772E; }
.rasa-light-form .rf-title { font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:26px; line-height:1.15; margin:13px 0 9px; color:#142d44; }
.rasa-light-form .rf-lede { font-family:'Inter',sans-serif; font-size:14px; line-height:1.55; color:#566678; margin-bottom:22px; }

.rasa-light-form .rf-totalpanel { background:#f4f7f9; border-radius:14px; padding:18px 20px; display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:28px; }
.rasa-light-form .rf-tp-lbl { font-family:'Inter',sans-serif; font-size:14.5px; color:#566678; }
.rasa-light-form .rf-tp-lbl small { display:block; font-family:'DM Mono',monospace; font-size:10.5px; color:#8a99a8; margin-top:4px; letter-spacing:0.04em; }
.rasa-light-form .rf-tp-val { text-align:right; }
.rasa-light-form .rf-tp-was { font-family:'DM Mono',monospace; font-size:13px; color:#8a99a8; text-decoration:line-through; }
.rasa-light-form .rf-tp-now { font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:29px; line-height:1.05; color:#E8772E; }

.rasa-light-form .rf-sechead { display:flex; justify-content:space-between; align-items:baseline; margin:0 2px 10px; }
.rasa-light-form .rf-num { font-family:'DM Mono',monospace; font-size:13px; letter-spacing:0.1em; color:#7a8a9b; text-transform:uppercase; }
.rasa-light-form .rf-tag { font-family:'DM Mono',monospace; font-size:12px; color:#7a8a9b; letter-spacing:0.04em; }
.rasa-light-form .rf-tag b { color:#E8772E; font-weight:500; }

.rasa-light-form .rf-group { border:1px solid rgba(13,43,69,0.12); border-radius:14px; padding:18px; display:flex; flex-direction:column; gap:13px; margin-bottom:24px; }
.rasa-light-form .rf-group.hl { border-color:#E8772E; background:rgba(232,119,46,0.06); }
.rasa-light-form .rf-q { font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:17px; color:#142d44; line-height:1.3; }

.rasa-light-form .rf-input { width:100%; background:#fff; border:1px solid rgba(13,43,69,0.16); border-radius:10px; padding:15px 16px; font-family:'Inter',sans-serif; font-size:15.5px; color:#142d44; outline:none; display:block; }
.rasa-light-form .rf-input::placeholder { color:#9aa6b2; }
.rasa-light-form .rf-input:focus { border-color:#E8772E; background:rgba(232,119,46,0.05); }
.rasa-light-form textarea.rf-input { resize:vertical; min-height:64px; line-height:1.5; }

/* 2026-06-11 (tiket Mavis/laporan Pak Pepi): form selalu di kolom sempit (rail desktop ±314px,
   HP ±362px) → grid 2-kolom bikin kotak upload kurus memanjang (85-143px lebar × 207px tinggi).
   Default kini 1 kolom: upload full-width proporsional 4:3, input di bawahnya. */
.rasa-light-form .rf-row2 { display:grid; grid-template-columns:1fr; gap:13px; }
.rasa-light-form .rf-stack { display:flex; flex-direction:column; gap:13px; }
.rasa-light-form .rf-upload { background:#f7f9fb; border:1px dashed rgba(13,43,69,0.24); border-radius:10px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; color:#142d44; padding:14px; text-align:center; cursor:pointer; aspect-ratio:4 / 3; width:100%; }
.rasa-light-form .rf-upload .u-ic { opacity:0.7; margin-bottom:2px; }
.rasa-light-form .rf-upload .u-main { font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:15px; }
.rasa-light-form .rf-upload .u-sub { font-family:'DM Mono',monospace; font-size:10.5px; color:#E8772E; letter-spacing:0.06em; text-transform:uppercase; }
.rasa-light-form .rf-upload-has { border-style:solid; padding:8px; gap:6px; aspect-ratio:auto; }
.rasa-light-form .rf-thumb { width:100%; max-height:240px; object-fit:cover; border-radius:7px; }
.rasa-light-form .rf-thumb-x { background:none; border:none; color:#142d44; font-family:'DM Mono',monospace; font-size:11px; text-decoration:underline; cursor:pointer; padding:0; }

.rasa-light-form .rf-warn { font-family:'Inter',sans-serif; font-size:12.5px; color:#b5610f; background:rgba(232,119,46,0.10); border-radius:10px; padding:11px 13px; margin-bottom:16px; line-height:1.45; }
.rasa-light-form .rf-warn strong { color:#142d44; }

.rasa-light-form .rf-cta { width:100%; background:#E8772E; border:none; border-radius:14px; padding:21px; margin-top:6px; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:21px; color:#fff; display:flex; align-items:center; justify-content:center; gap:11px; cursor:pointer; }
.rasa-light-form .rf-cta:hover:not(:disabled) { background:#d56a23; }
.rasa-light-form .rf-cta:disabled { opacity:0.5; cursor:not-allowed; }
.rasa-light-form .rf-secure { display:flex; align-items:center; justify-content:center; gap:8px; margin-top:18px; font-family:'DM Mono',monospace; font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:#8a99a8; text-align:center; }

/* SPLIT 2-TONE 2026-06-09 — kartu ATAS (Paket RASA → No WhatsApp / "01 Wajib Isi")
   tetap DARK biru; dari "Kenali Diri" ke bawah pakai light di atas. */
.rasa-split-form .rf-card.rf-dark { background:#0D2B45; color:#fff; padding:32px 28px 24px; }
.rasa-split-form .rf-dark .rf-group:last-child { margin-bottom:0; }
.rasa-split-form .rf-dark .rf-eyebrow { color:#9fb1c4; }
.rasa-split-form .rf-dark .rf-title { color:#fff; }
.rasa-split-form .rf-dark .rf-lede { color:rgba(255,255,255,0.78); }
.rasa-split-form .rf-dark .rf-totalpanel { background:rgba(255,255,255,0.06); }
.rasa-split-form .rf-dark .rf-tp-lbl { color:rgba(255,255,255,0.6); }
.rasa-split-form .rf-dark .rf-tp-lbl small { color:#6f8499; }
.rasa-split-form .rf-dark .rf-tp-was { color:#6f8499; }
.rasa-split-form .rf-dark .rf-num { color:#9fb1c4; }
.rasa-split-form .rf-dark .rf-group { border-color:rgba(255,255,255,0.10); }
.rasa-split-form .rf-dark .rf-input { background:rgba(255,255,255,0.09); border-color:rgba(255,255,255,0.14); color:#fff; }
.rasa-split-form .rf-dark .rf-input::placeholder { color:rgba(255,255,255,0.5); }
.rasa-split-form .rf-dark .rf-input:focus { border-color:#E8772E; background:rgba(255,255,255,0.13); }
.rasa-split-form .rf-dark .rf-tag { color:#9fb1c4; }
.rasa-split-form .rf-dark .rf-q { color:#fff; }
/* Header total SEDERHANA (gaya CIPTA) — gantikan totalpanel harga-ganda. */
.rasa-split-form .rf-dark .rf-amount-row { display:flex; justify-content:space-between; align-items:center; padding-bottom:18px; margin-bottom:22px; border-bottom:1px solid rgba(255,255,255,0.14); }
.rasa-split-form .rf-dark .rf-amount-lbl { font-family:'DM Mono',monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.55); }
.rasa-split-form .rf-dark .rf-amount { font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:25px; color:#fff; }

/* === Flipbook (StPageFlip) per-fase — pengganti carousel sample (2026-06-25) === */
.kflip { margin: 8px 0 4px; }
.kflip-hint { font-size: 12px; color: #7E94A8; text-align: center; margin: 0 0 14px; }
.kflip-stage { display: flex; justify-content: center; width: 100%; }
.kflip-book { width: min(100%, 760px); }
.kflip-book img { width: 100%; height: 100%; display: block; object-fit: contain; background: #fff; }
.kflip-book .stf__item { box-shadow: 0 2px 18px rgba(13,43,69,0.16); background: #fff; }
.kflip-dock { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
.kflip-nav { appearance: none; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; border: 1px solid #E3DDD2; background: #fff; color: #0D2B45; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: .15s; }
.kflip-nav:hover { background: #0D2B45; color: #fff; }
.kflip-no { font-size: 12.5px; color: #6B7785; min-width: 150px; text-align: center; }
.kflip-fallback { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; }
.kflip-fallback img { height: 320px; border-radius: 8px; flex: none; box-shadow: 0 2px 10px rgba(0,0,0,.1); }
@media (max-width: 560px) { .kflip-book { width: 100%; } .kflip-no { min-width: 90px; font-size: 11px; } .kflip-fallback img { height: 220px; } }
