/* ════════════════════════════════════════════════════════════
   JANUSEE — halaman depan, sistem desain "Janus Noir"
   Dunia diambil dari seni hero: sisi kiri biru dingin (masa lalu),
   sisi kanan emas hangat (masa depan), bertemu di tengah.
   Hijau/merah muda HANYA untuk angka naik/turun — tidak pernah hiasan.
   ════════════════════════════════════════════════════════════ */
:root {
  --bg: #0b0c12;
  --bg-2: #10111a;
  --surface: rgba(18, 19, 29, .62);
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);
  --text: #eeedf6;
  --muted: #b4b3c8;
  --dim: #8b8ca3;
  --blue: #5b8cff;
  --blue-2: #9fb8ff;
  --gold: #e9b86a;
  --gold-2: #f6d9a4;
  --uv: #7b5cff;
  --uv-2: #a58fff;
  --up: #3ddc97;
  --down: #ff5c7a;
  --warn: #ffc15e;
  --split: linear-gradient(90deg, var(--blue), #dfe3f5 50%, var(--gold));
  --display: 'Unbounded', system-ui, sans-serif;
  --body: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --e-out: cubic-bezier(.22, 1, .36, 1);
  --e-out-strong: cubic-bezier(.16, 1, .3, 1);
  --r-sm: 6px; --r: 12px; --r-lg: 18px;
  --wrap: 1240px;
  --gap-s: 72px; --gap-m: 128px; --gap-l: 176px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--text); font-family: var(--body); font-size: 16px; line-height: 1.6;
  background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
/* cahaya lingkungan: biru dari kiri, emas dari kanan, sepanjang halaman */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60vw 70vh at -8% 38%, rgba(91, 140, 255, .10), transparent 70%),
    radial-gradient(60vw 70vh at 108% 62%, rgba(233, 184, 106, .08), transparent 70%);
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; }
.up { color: var(--up); } .down { color: var(--down); }
.fine { color: var(--dim); font-size: 13px; }
:where(a, button, summary, [tabindex]):focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; border-radius: 10px; }
:focus:not(:focus-visible) { outline: none; }

/* ── Tombol ──────────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 42px; padding: 0 20px;
  border-radius: 999px; font: 600 14px/1 var(--body); color: var(--text); cursor: pointer; white-space: nowrap;
  border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); backdrop-filter: blur(10px);
  transition: transform 140ms var(--e-out), border-color 140ms var(--e-out), background 140ms var(--e-out), box-shadow 200ms var(--e-out);
}
.btn:hover { border-color: rgba(255, 255, 255, .32); background: rgba(255, 255, 255, .06); }
.btn.solid {
  border: 0; color: #1a1206;
  background: linear-gradient(180deg, #fbe7bf 0%, #eec27a 48%, #c9913e 100%);
  box-shadow: 0 10px 30px -10px rgba(233, 184, 106, .7), inset 0 1px 0 rgba(255, 255, 255, .6), inset 0 -1px 0 rgba(120, 70, 10, .4);
}
.btn.solid:hover { transform: translateY(-1px); box-shadow: 0 16px 40px -12px rgba(233, 184, 106, .9), inset 0 1px 0 rgba(255, 255, 255, .7), inset 0 -1px 0 rgba(120, 70, 10, .4); }
.btn:active:not([aria-disabled="true"]):not(:disabled) { transform: translateY(1px) scale(.985); transition-duration: 90ms; }
.btn.big { height: 52px; padding: 0 28px; font-size: 15px; }
.btn[aria-disabled="true"], .btn:disabled { opacity: .55; cursor: default; transform: none; }
.btn.solid[aria-disabled="true"] { background: rgba(233, 184, 106, .12); color: var(--gold-2); box-shadow: inset 0 0 0 1px rgba(233, 184, 106, .3); }

/* ── Kaca & label ────────────────────────────────────────── */
.glass {
  position: relative; background: var(--surface); backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font: 600 11.5px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; opacity: .8; }
.eyebrow.blue { color: var(--blue-2); } .eyebrow.gold { color: var(--gold-2); }
.pill { display: inline-block; font: 500 12px/1.4 var(--mono); padding: 1px 8px; border-radius: 6px; }
.pill.noise, .verdict.noise { background: rgba(255, 255, 255, .07); color: var(--muted); }
.pill.notable, .verdict.notable { background: rgba(255, 193, 94, .13); color: var(--warn); }
.pill.outlier, .verdict.outlier { background: rgba(91, 140, 255, .16); color: var(--blue-2); }
.verdict { font: 600 10.5px/1 var(--mono); letter-spacing: .08em; padding: 5px 8px; border-radius: 6px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none; }

/* ── Navigasi ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40; display: flex; align-items: center; gap: 30px;
  height: 72px; padding: 0 max(24px, calc((100vw - 1320px) / 2));
  transition: height 260ms var(--e-out), background 260ms var(--e-out), box-shadow 260ms var(--e-out), backdrop-filter 260ms;
}
.nav.pinned { height: 60px; background: rgba(11, 12, 18, .78); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); }
.nav::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; transform: scaleX(0); transform-origin: 0 50%; background: var(--split); }
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .nav::after { animation: growx linear both; animation-timeline: scroll(root block); }
    @keyframes growx { to { transform: scaleX(1); } }
  }
}
.logo { display: inline-flex; align-items: center; gap: 11px; font: 800 17px/1 var(--display); letter-spacing: .08em; }
.links { display: flex; gap: 26px; font-size: 14px; color: var(--muted); }
.links a { transition: color 140ms; } .links a:hover { color: #fff; }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nm-short { display: none; }
@media (max-width: 720px) { .nm-short { display: inline; } }
/* ikon X & Telegram di navbar: lingkaran kaca kecil, garis emas saat hover */
.nav-soc { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%; color: var(--muted);
  border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); backdrop-filter: blur(10px); transition: color 160ms, border-color 160ms, background 160ms; }
.nav-soc:hover { color: #fff; border-color: rgba(233, 184, 106, .55); background: rgba(233, 184, 106, .08); }
.nav-soc:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ════════════════════════════════════════════════════════════
   HERO — latar kota → wordmark → patung di depan → bayangan → UI
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: clip; isolation: isolate;
  min-height: max(100svh, 880px); display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 40px;
}
.hero-plate { position: absolute; inset: 0; z-index: -3; background: url('/art/plate.webp') 50% 30% / cover no-repeat #0b0c12; }
.hero-plate::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 12, 18, .78) 0%, rgba(11, 12, 18, .15) 22%, transparent 45%),
    radial-gradient(120% 70% at 50% 110%, rgba(11, 12, 18, .96) 30%, transparent 70%);
}
/* wordmark raksasa — di BELAKANG patung */
.hero-word {
  position: absolute; z-index: -2; left: 0; right: 0; top: clamp(78px, 11vh, 118px); text-align: center; pointer-events: none;
  font: 900 clamp(72px, 15.2vw, 280px)/.82 var(--display); letter-spacing: -.035em; white-space: nowrap;
}
.hero-word span {
  display: inline-block;
  background:
    linear-gradient(90deg, rgba(120, 160, 255, .55), transparent 30%, transparent 70%, rgba(240, 190, 110, .5)),
    linear-gradient(180deg, #ffffff 0%, #d9d7ee 38%, #8e8bb6 78%, rgba(94, 90, 140, .35) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 40px rgba(91, 140, 255, .28)) drop-shadow(0 0 90px rgba(233, 184, 106, .16));
}
/* patung — di DEPAN wordmark, ditambatkan ke dasar hero */
.hero-figure {
  position: absolute; z-index: -1; left: 50%; bottom: 0; transform: translateX(-50%);
  height: min(86svh, 900px); aspect-ratio: 1307 / 1194; max-width: 100vw;
}
.hero-figure img {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: 50% 100%;
  filter: drop-shadow(0 0 24px rgba(91, 140, 255, .22)) drop-shadow(0 0 60px rgba(233, 184, 106, .14));
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%); mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}
.fig-aura {
  position: absolute; inset: 4% 6% 22%; border-radius: 50%; z-index: 0;
  background:
    radial-gradient(50% 55% at 28% 42%, rgba(91, 140, 255, .40), transparent 70%),
    radial-gradient(50% 55% at 72% 42%, rgba(233, 184, 106, .34), transparent 70%);
  filter: blur(26px); animation: aura 7s ease-in-out infinite;
}
@keyframes aura { 50% { opacity: .65; } }
.hero-shade { position: absolute; left: 0; right: 0; bottom: 0; height: 46%; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(11, 12, 18, .72) 45%, var(--bg) 92%); }

.hero-ui {
  position: relative; z-index: 1; width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px);
  display: grid; grid-template-columns: minmax(0, 560px) 1fr; align-items: end; gap: 22px 28px;
}
.hero-copy { grid-column: 1; }
.hero-cards { grid-column: 2; align-self: end; display: grid; grid-template-columns: repeat(2, minmax(0, 330px)); justify-content: end; gap: 14px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font: 600 11.5px/1 var(--mono); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.kicker b { color: var(--dim); font-weight: 400; }
.kicker i { width: 26px; height: 2px; border-radius: 2px; }
.k-blue { background: linear-gradient(90deg, transparent, var(--blue)); }
.k-gold { background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1 { margin-top: 18px; font: 700 clamp(28px, 2.75vw, 42px)/1.06 var(--display); letter-spacing: -.02em; text-shadow: 0 4px 40px rgba(0, 0, 0, .6); }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--blue-2), #f1f1fa 50%, var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 .ln { display: block; overflow: hidden; padding-bottom: .08em; }
.hero h1 .ln i { display: block; font-style: normal; transition: transform 900ms var(--e-out-strong); }
.hero h1 .ln:nth-child(2) i { transition-delay: 90ms; }
.sub { margin: 14px 0 0; color: #c7c6d8; font-size: 16px; max-width: 470px; text-shadow: 0 2px 20px rgba(0, 0, 0, .8); }
.ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* kartu data di hero: kaca, lurus, garis rambut berwarna sisi masing-masing */
.float { padding: 16px 18px; font: 12.5px/1.5 var(--mono); }
.float::before { content: ''; position: absolute; left: 18px; right: 18px; top: 0; height: 1px; }
.back-card::before { background: linear-gradient(90deg, var(--blue), transparent); }
.ahead-card::before { background: linear-gradient(90deg, var(--gold), transparent); }
.float .lbl { display: flex; align-items: center; gap: 8px; font: 600 10.5px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 10px; }
.float .lbl i { width: 6px; height: 6px; border-radius: 50%; }
.back-card .lbl { color: var(--blue-2); } .back-card .lbl i { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.ahead-card .lbl { color: var(--gold-2); } .ahead-card .lbl i { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.float .t { font: 600 15px/1.3 var(--body); color: var(--text); }
.float .p { color: var(--muted); font: 13px/1.4 var(--body); margin: 3px 0 10px; }
.float .row { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-top: 1px dashed var(--line-2); }
.float .row:first-of-type { border-top: 0; }
.float .k { color: var(--dim); }
.float .verdict { margin-top: 10px; display: inline-block; }
.sk { color: var(--dim); }
.back-card { cursor: pointer; transition: transform 200ms var(--e-out), border-color 200ms; }
.back-card:hover { transform: translateY(-2px); border-color: rgba(91, 140, 255, .35); }

.warming { display: none; position: relative; z-index: 1; margin: 18px auto 0; max-width: 520px; padding: 12px 16px; border-radius: var(--r);
  border: 1px dashed var(--line-2); color: var(--muted); font-size: 14px; text-align: center; background: rgba(11, 12, 18, .6); }
body.is-warming .warming { display: block; }
body.is-warming .stats b { opacity: .35; }

/* kartu CA pekat */
.ca-card {
  position: relative; z-index: 1; margin: 30px auto 0; width: min(900px, calc(100% - 40px));
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
  padding: 16px 18px 16px 24px; border-radius: var(--r-lg); backdrop-filter: blur(14px);
  border: 1px solid transparent;
  background-image: linear-gradient(rgba(8, 9, 14, .92), rgba(8, 9, 14, .92)), var(--split);
  background-origin: border-box; background-clip: padding-box, border-box;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .9), 0 0 60px -20px rgba(91, 140, 255, .25), 0 0 60px -20px rgba(233, 184, 106, .2);
}
.ca-left { display: flex; flex-direction: column; }
.ca-tick { font: 800 22px/1.1 var(--display); letter-spacing: .02em; }
.ca-chain { font-size: 12.5px; color: var(--muted); }
.ca-mid { min-width: 0; border-left: 1px solid var(--line); padding-left: 22px; }
.ca-lbl { display: block; font: 600 10.5px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--dim); }
.ca-mid code { display: block; margin-top: 6px; font: 500 14.5px/1.3 var(--mono); color: var(--gold-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ca-right { display: flex; gap: 8px; }

/* ════════════════════════════════════════════════════════════
   Bagian-bagian
   ════════════════════════════════════════════════════════════ */
section { position: relative; max-width: var(--wrap); margin: 0 auto; padding: var(--gap-m) clamp(20px, 3vw, 40px) 0; }
section h2 { font: 700 clamp(30px, 3.6vw, 52px)/1.02 var(--display); letter-spacing: -.025em; }
.sec-mark { display: flex; align-items: center; gap: 16px; margin-bottom: 34px; font: 600 12px/1 var(--mono); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.sec-mark .idx { font: 800 13px/1 var(--display); letter-spacing: .06em; color: var(--text); }
.sec-mark .rule { width: 72px; height: 1px; background: var(--split); }
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }

/* angka hidup */
.stats {
  max-width: 1320px; padding-top: 0; margin-top: 10px; display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats::before, .stats::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: var(--split); opacity: .5; }
.stats::before { top: -1px; } .stats::after { bottom: -1px; }
.stats > div { padding: 30px 26px; border-left: 1px solid var(--line); }
.stats > div:first-child { border-left: 0; }
.stats b { display: block; font: 800 clamp(34px, 3.6vw, 54px)/1 var(--display); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff, #b9b7d4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats span { display: block; margin-top: 10px; color: var(--dim); font-size: 13.5px; }

/* pita vonis */
.ticker { max-width: none; padding: 0; margin-top: 26px; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker .track { display: flex; width: max-content; animation: slide 90s linear infinite; }
.ticker:hover .track { animation-play-state: paused; }
.ticker .tk { display: inline-flex; align-items: center; gap: 10px; padding: 16px 26px; border-left: 1px solid var(--line);
  font: 12.5px/1 var(--mono); color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.ticker .tk b { color: var(--text); font-weight: 500; }
.ticker .tk .x { color: var(--gold-2); }
@keyframes slide { to { transform: translateX(-50%); } }

/* 01 · dua wajah */
.faces-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.face-panel {
  position: relative; overflow: hidden; border-radius: 24px; padding: 0 34px 34px;
  background: linear-gradient(180deg, rgba(20, 22, 34, .9), rgba(12, 13, 20, .95));
  border: 1px solid var(--line);
}
.face-panel::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; }
.face-panel.past::before { background: linear-gradient(160deg, rgba(91, 140, 255, .7), transparent 40%); }
.face-panel.future::before { background: linear-gradient(200deg, rgba(233, 184, 106, .7), transparent 40%); }
.face-panel.past { box-shadow: inset 0 0 120px -40px rgba(91, 140, 255, .25); }
.face-panel.future { box-shadow: inset 0 0 120px -40px rgba(233, 184, 106, .22); }
.face-art { display: block; width: 86%; height: 320px; object-fit: cover; margin: 0 auto -36px;
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 96%); mask-image: linear-gradient(180deg, #000 40%, transparent 96%); }
.face-panel.past .face-art { object-position: 38% 62%; }
.face-panel.future .face-art { object-position: 62% 62%; }
.face-body { position: relative; }
.face-body h2 { margin-top: 14px; font-size: clamp(28px, 2.6vw, 40px); }
.face-body p { color: var(--muted); margin: 14px 0 0; }
.face-body p b { color: var(--text); font-weight: 600; }

.mini-rc {
  margin-top: 26px; padding: 18px 20px; border-radius: var(--r); background: rgba(7, 8, 13, .7); border: 1px solid var(--line);
  font: 12.5px/1.5 var(--mono); position: relative; font-variant-numeric: tabular-nums;
}
.mini-rc::before { content: ''; position: absolute; left: 18px; right: 18px; top: -1px; height: 1px; background: linear-gradient(90deg, var(--blue), transparent); }
.mini-rc .hd { display: flex; justify-content: space-between; color: var(--dim); font-size: 10.5px; letter-spacing: .14em; }
.mini-rc h4 { font: 600 16px/1.3 var(--body); margin: 10px 0 2px; }
.mini-rc .pl { color: var(--muted); font: 13px/1.4 var(--body); }
.mini-rc table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.mini-rc th { color: var(--dim); font-weight: 400; font-size: 10.5px; text-align: right; padding: 8px 0 6px; border-top: 1px dashed var(--line-2); }
.mini-rc th:first-child, .mini-rc td:first-child { text-align: left; }
.mini-rc td { text-align: right; padding: 4px 0; }
.mini-rc td .s { color: var(--dim); font-size: 11px; }
.mini-rc .ft { border-top: 1px dashed var(--line-2); margin-top: 10px; padding-top: 10px; display: flex; justify-content: space-between; }

.score-demo { margin-top: 26px; padding: 20px; border-radius: var(--r); background: rgba(7, 8, 13, .7); border: 1px solid var(--line); position: relative; }
.score-demo::before { content: ''; position: absolute; left: 18px; right: 18px; top: -1px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.score-demo .big { font: 800 40px/1 var(--display); background: linear-gradient(180deg, #fff, var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.score-demo .cap { color: var(--muted); font-size: 13px; margin-top: 6px; }
.score-demo .vs { display: grid; grid-template-columns: auto 1fr auto; gap: 9px 12px; align-items: center; margin-top: 16px; font: 12.5px/1 var(--mono); }
.score-demo .bar { height: 6px; border-radius: 6px; background: rgba(255, 255, 255, .07); overflow: hidden; }
.score-demo .bar b { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--gold)); }
.score-demo .bar.base b { background: var(--dim); }
.score-demo .note { color: var(--dim); font-size: 12.5px; margin: 14px 0 0; }

/* 02 · video */
.vidcap { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font: 600 11.5px/1 var(--mono); letter-spacing: .14em; color: var(--muted); }
.vidcap .rec { display: inline-flex; align-items: center; gap: 9px; }
.vidcap .rec i { width: 7px; height: 7px; border-radius: 50%; background: var(--up); animation: recdot 2s ease-in-out infinite; }
@keyframes recdot { 50% { opacity: .25; } }
.vidcap a { color: var(--blue-2); }
.vidframe {
  position: relative; aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden;
  border: 1px solid transparent; background-image: linear-gradient(#07080c, #07080c), var(--split);
  background-origin: border-box; background-clip: padding-box, border-box;
  box-shadow: 0 80px 160px -60px rgba(91, 140, 255, .35), 0 60px 140px -60px rgba(233, 184, 106, .25);
}
.vidframe video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vidtime { position: absolute; left: 16px; bottom: 14px; z-index: 2; font: 11px/1 var(--mono); color: var(--text); background: rgba(8, 8, 12, .6); padding: 6px 9px; border-radius: 6px; }
.vidplay { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; height: 58px; padding: 0 30px; border: 0; border-radius: 999px; cursor: pointer;
  font: 600 15px/1 var(--body); color: #1a1206; background: linear-gradient(180deg, #fbe7bf, #eec27a 48%, #c9913e); box-shadow: 0 20px 50px -12px rgba(233, 184, 106, .8); }
.vidplay[hidden] { display: none; }
.chapters { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 16px; }
.chapters button { text-align: left; background: none; border: 0; padding: 10px 0 0; color: var(--dim); cursor: pointer; font-family: inherit; }
.chapters button .n { font: 600 10.5px/1 var(--mono); letter-spacing: .14em; }
.chapters button b { display: block; font-weight: 500; font-size: 13.5px; color: var(--muted); margin-top: 5px; }
.chapters button i { display: block; height: 2px; margin-top: 12px; background: rgba(255, 255, 255, .08); border-radius: 2px; position: relative; overflow: hidden; }
.chapters button i::after { content: ''; position: absolute; inset: 0; background: var(--split); transform: scaleX(var(--p, 0)); transform-origin: 0 50%; }
.chapters button.on { color: var(--blue-2); } .chapters button.on b { color: #fff; }
.demo .fine { margin-top: 16px; }

/* 03 · apa yang menggerakkan bitcoin */
.moves-panel { padding: clamp(24px, 3vw, 42px); }
.moves-head p { color: var(--muted); margin: 14px 0 0; max-width: 640px; }
.bars { margin-top: 34px; display: grid; gap: 16px; }
.bar-row { display: grid; grid-template-columns: 240px 1fr 80px; align-items: center; gap: 18px; }
.bar-row .nm { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.bar-row .nm small { color: var(--dim); font: 11px/1 var(--mono); }
.bar-row .tr { position: relative; height: 36px; border-radius: 10px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); overflow: hidden; }
.bar-row .tr b { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 9px; background: linear-gradient(90deg, rgba(91, 140, 255, .6), #b9c4ff 55%, var(--gold)); transition: width 1.1s var(--e-out-strong); }
.bar-row .tr i { position: absolute; top: 0; bottom: 0; width: 2px; background: #fff; opacity: .7; }
.bar-row .tr i::after { content: 'normal'; position: absolute; top: 50%; left: 6px; transform: translateY(-50%); font: 9.5px/1 var(--mono); letter-spacing: .06em; color: #fff; font-style: normal; background: rgba(8, 9, 14, .75); padding: 2px 5px; border-radius: 4px; }
.bar-row .vl { font: 700 19px/1 var(--mono); text-align: right; font-variant-numeric: tabular-nums; }
.moves .fine { margin-top: 20px; }

/* 04 · struk terbaru */
.rc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.rc-card {
  position: relative; display: flex; flex-direction: column; padding: 20px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, #161722, #0f1017); border: 1px solid var(--line);
  font: 12.5px/1.5 var(--mono); font-variant-numeric: tabular-nums;
  transition: transform 260ms var(--e-out), border-color 260ms, box-shadow 260ms;
}
.rc-card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--split); opacity: .8; z-index: 2; }
.rc-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9); }
.rc-shot { position: relative; margin: -20px -20px 14px; }
.rc-shot img { display: block; width: 100%; height: 138px; object-fit: cover; background: #111219; }
.rc-shot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22, 23, 34, .35), transparent 30%, transparent 45%, #161722 97%), radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(12, 13, 20, .55)); }
.rc-shot figcaption { position: absolute; right: 8px; bottom: 8px; z-index: 1; font: 9.5px/1 var(--mono); color: var(--muted); background: rgba(8, 8, 12, .65); padding: 4px 7px; border-radius: 5px; }
.rc-card .hd { display: flex; justify-content: space-between; color: var(--dim); font-size: 10.5px; letter-spacing: .12em; }
.rc-card h3 { font: 600 16px/1.3 var(--body); margin: 10px 0 1px; }
.rc-card .pl { color: var(--muted); font: 13px/1.4 var(--body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rc-card .cells { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 14px; border-top: 1px dashed var(--line-2); padding-top: 12px; }
.rc-card .cells span { color: var(--dim); font-size: 10.5px; }
.rc-card .cells b { font-weight: 500; font-size: 13px; }
.rc-card .ft { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line-2); color: var(--dim); }

/* 03 · Janus menatap dinding pasar di belakang panel */
.moves-scene { position: absolute; z-index: -1; top: calc(var(--gap-m) - 80px); bottom: -120px; left: 50%; width: 100vw; transform: translateX(-50%); overflow: hidden; opacity: .8;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 70%, transparent); mask-image: linear-gradient(180deg, transparent, #000 22%, #000 70%, transparent); }
.moves-scene img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; display: block; }
.moves-panel { background: rgba(11, 12, 18, .66); }

/* penutup · Janus di aula di bawah sorot cahaya */
.finale { max-width: none; padding: var(--gap-m) 0 0; min-height: min(56.25vw, 900px); display: flex; align-items: flex-end; justify-content: flex-start; }
.finale-scene { position: absolute; inset: var(--gap-m) 0 0; z-index: -1; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent); mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent); }
.finale-scene img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; display: block; }
.finale-scene::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 12, 18, .85), rgba(11, 12, 18, .35) 34%, transparent 52%); }
.finale-copy { position: relative; text-align: left; max-width: 520px; padding: 0 20px clamp(48px, 7vw, 110px); margin-left: max(clamp(20px, 3vw, 40px), calc((100% - var(--wrap)) / 2 + clamp(20px, 3vw, 40px))); }
.finale-copy h2 { margin-top: 18px; font-size: clamp(32px, 3.8vw, 56px); line-height: .98; text-shadow: 0 6px 50px rgba(0, 0, 0, .8); }
.finale-copy .ctas { justify-content: flex-start; margin-top: 30px; }

/* kaki halaman */
.foot { position: relative; margin-top: var(--gap-l); padding: 34px clamp(20px, 3vw, 40px) 40px; border-top: 1px solid var(--line); }
.foot::before { content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 1px; background: var(--split); opacity: .6; }
.foot-word { text-align: center; font: 900 clamp(56px, 14.6vw, 260px)/.8 var(--display); letter-spacing: -.035em; margin: 40px 0 34px; color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .1);
  background: linear-gradient(90deg, rgba(91, 140, 255, .18), rgba(255, 255, 255, .05) 50%, rgba(233, 184, 106, .16)); -webkit-background-clip: text; background-clip: text; }
.foot-row { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; color: var(--dim); font-size: 13.5px; }
.foot-row p { margin: 0; flex: 1; min-width: 240px; }
.foot-row nav { display: flex; gap: 22px; }
.foot-row nav a:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════
   Gerak: masuk saat dibuka & saat digulir
   ════════════════════════════════════════════════════════════ */
.reveal, .reveal-group > * { opacity: 0; transform: translateY(24px); transition: opacity 720ms var(--e-out-strong), transform 720ms var(--e-out-strong); }
.reveal.in, .reveal-group > .in { opacity: 1; transform: none; }
.reveal-group > *:nth-child(2) { transition-delay: .08s; } .reveal-group > *:nth-child(3) { transition-delay: .16s; }
.reveal-group > *:nth-child(4) { transition-delay: .24s; } .reveal-group > *:nth-child(5) { transition-delay: .32s; }
.reveal-group > *:nth-child(6) { transition-delay: .4s; }

.hero-plate, .hero-word, .hero-figure, .hero-copy, .hero-cards, .ca-card { transition: opacity 800ms var(--e-out-strong), transform 900ms var(--e-out-strong); }
.boot .nav { opacity: 0; transform: translateY(-12px); }
.boot .hero-plate { opacity: 0; transform: scale(1.04); }
.boot .hero-word { opacity: 0; transform: translateY(26px); }
.boot .hero-figure { opacity: 0; transform: translateX(-50%) translateY(40px); }
.boot .hero-copy, .boot .hero-cards { opacity: 0; transform: translateY(18px); }
.boot .ca-card { opacity: 0; transform: translateY(18px); }
.boot .hero h1 .ln i { transform: translateY(105%); }
.hero-word { transition-delay: 120ms; } .hero-figure { transition-delay: 260ms; }
.hero-copy { transition-delay: 420ms; } .hero-cards { transition-delay: 520ms; } .ca-card { transition-delay: 620ms; }

/* ════════════════════════════════════════════════════════════
   Layar sedang & kecil
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .links { display: none; }
  .hero-ui { grid-template-columns: 1fr; }
  .hero-cards { grid-column: 1; grid-template-columns: 1fr 1fr; justify-content: stretch; }
  .rc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  :root { --gap-s: 48px; --gap-m: 88px; --gap-l: 120px; }
  body { font-size: 15px; }
  .nav { gap: 12px; height: 62px; padding: 0 16px; }
  .nav-cta .solid { display: none; }
  .nav-cta { gap: 8px; }
  .nav-soc { width: 36px; height: 36px; }
  .nav-cta .ghost { padding: 0 14px; font-size: 13px; }
  .nm-full { display: none; }
  .hero { min-height: auto; padding: 78px 0 28px; justify-content: flex-start; }
  .hero-word { position: relative; top: auto; font-size: 16.2vw; z-index: 0; }
  .hero-figure { position: relative; left: auto; transform: none; height: auto; width: 112vw; margin: -12vw -6vw 0; max-width: none; z-index: 1; }
  .boot .hero-figure { transform: translateY(30px); }
  .hero-shade { height: 30%; }
  .hero-ui { grid-template-columns: 1fr; margin-top: -30vw; gap: 18px; padding-top: 24vw;
    background: linear-gradient(180deg, transparent, rgba(11, 12, 18, .82) 26%, var(--bg) 70%); }
  .hero h1 { font-size: 30px; }
  .hero h1 .ln { display: inline; }
  .hero h1 .ln i { display: inline; }
  .hero-cards { grid-template-columns: 1fr; }
  .ahead-card { display: none; }
  .ca-card { grid-template-columns: 1fr auto; gap: 12px 14px; padding: 18px; }
  .ca-left { grid-column: 1 / -1; }
  .ca-mid { border-left: 0; padding-left: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); margin: 10px 16px 0; }
  .stats > div:nth-child(3) { border-left: 0; }
  .stats > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  section { padding-left: 16px; padding-right: 16px; }
  .faces-grid { grid-template-columns: 1fr; }
  .face-panel { padding: 0 22px 24px; }
  .face-art { height: 220px; }
  .chapters { grid-template-columns: repeat(2, 1fr); gap: 8px 14px; }
  .chapters button:last-child { grid-column: 1 / -1; }
  .bar-row { grid-template-columns: 1fr 64px; gap: 8px 12px; }
  .bar-row .tr { grid-column: 1 / -1; grid-row: 2; }
  .rc-grid { grid-template-columns: 1fr; }
  .sec-mark { gap: 10px; font-size: 10.5px; letter-spacing: .16em; }
  .sec-mark .rule { flex: 0 0 28px; width: 28px; }
  .finale { display: block; min-height: 0; padding-top: var(--gap-s); }
  .finale-scene { position: relative; inset: auto; height: 92vw; margin-bottom: -14vw; }
  .finale-scene::after { background: linear-gradient(180deg, transparent 60%, var(--bg)); }
  .finale-copy { margin-left: 0; padding: 0 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .fig-aura, .ticker .track, .vidcap .rec i { animation: none; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; transition: none; }
  .boot .nav, .boot .hero-plate, .boot .hero-word, .boot .hero-copy, .boot .hero-cards, .boot .ca-card { opacity: 1; transform: none; }
  .boot .hero-figure { opacity: 1; transform: translateX(-50%); }
  .boot .hero h1 .ln i { transform: none; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════════════════
   HERO DIRAPIKAN — hanya judul, satu kalimat, dua tombol, dan kartu CA ringkas.
   Sisanya biar seni yang bicara.
   ════════════════════════════════════════════════════════════ */
.hero { min-height: max(100svh, 820px); padding-bottom: 56px; }
.hero-shade { height: 38%; background: linear-gradient(180deg, transparent, rgba(11, 12, 18, .78) 55%, var(--bg) 96%); }
.hero-ui { grid-template-columns: minmax(0, 600px) 1fr; align-items: end; gap: 40px; }
.hero h1 { margin-top: 0; font-size: clamp(30px, 2.9vw, 44px); line-height: 1.05; }
.sub { font-size: 16px; max-width: 420px; color: #c9c8d9; }
.ctas { margin-top: 24px; }

/* kartu CA ringkas: satu blok tipis di kanan-bawah, sejajar tombol */
.hero .ca-card {
  grid-column: 2; justify-self: end; align-self: end; margin: 0; width: min(430px, 100%);
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "top top" "mid right";
  gap: 12px 16px; padding: 16px 18px;
}
.ca-top { grid-area: top; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.hero .ca-tick { font-size: 18px; }
.hero .ca-chain { font-size: 12px; }
.hero .ca-mid { grid-area: mid; border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 10px; }
.hero .ca-mid code { font-size: 13px; }
.hero .ca-right { grid-area: right; align-self: end; }
.hero .ca-right .btn { height: 36px; padding: 0 14px; font-size: 13px; }

@media (max-width: 1100px) {
  .hero-ui { grid-template-columns: 1fr; gap: 26px; }
  .hero .ca-card { grid-column: 1; justify-self: stretch; width: 100%; }
}
@media (max-width: 720px) {
  .hero h1 { font-size: 30px; }
  .sub { max-width: none; }
}

/* Film: tombol jeda kecil di pojok, muncul saat film berjalan */
.vidsound { position: absolute; right: 16px; bottom: 14px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  background: rgba(8, 8, 12, .55); color: #fff; font: 600 11px/1 var(--mono); cursor: pointer; backdrop-filter: blur(8px); }
.vidsound[hidden] { display: none; }
.demo .sec-head h2 { max-width: 980px; font-size: clamp(28px, 3.1vw, 46px); }
.demo .fine { max-width: 760px; }

/* === media satelit (agen) === */
/* Kartu "Latest receipts": bingkai satelit asli (NASA GIBS) / foto gedung Fed, full-bleed di atas kartu.
   .rc-frame berukuran 16:10 seperti bingkai aslinya, jadi penanda lokasi (%) tetap tepat walau terpotong. */
.rc-shot.rc-media-x { height: 172px; overflow: hidden; background: #07080d; border-radius: inherit; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.rc-media-x .rc-frame { position: absolute; left: 0; right: 0; top: 50%; aspect-ratio: 16 / 10; transform: translateY(-50%); will-change: transform; }
.rc-media-x .rc-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: transparent; }
/* digelapkan & sedikit dingin supaya menyatu dengan halaman */
/* bingkai satelit diwarnai di kanvas (landing.js → gradeFrame); sebelum siap, disamarkan dulu */
.rc-map img { filter: saturate(.5) contrast(1.05) brightness(.55); }
.rc-sat img { transition: opacity .4s ease; }
.rc-sat:not(.graded) img { opacity: .35; filter: grayscale(1) brightness(.7); }
.rc-photo img { object-position: 50% 42%; filter: saturate(.72) contrast(1.06) brightness(.74); }
.rc-media-x::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 11, 18, .5), transparent 34%, transparent 48%, #161722 98%),
    radial-gradient(120% 95% at 50% 42%, transparent 52%, rgba(8, 9, 15, .62)),
    linear-gradient(90deg, rgba(91, 140, 255, .16), transparent 42%, transparent 62%, rgba(233, 184, 106, .13));
}
.rc-sat.mono::after {
  background:
    linear-gradient(180deg, rgba(10, 11, 18, .45), transparent 34%, transparent 48%, #161722 98%),
    radial-gradient(120% 95% at 50% 42%, transparent 52%, rgba(8, 9, 15, .62));
}
.rc-media-x figcaption { z-index: 2; right: 10px; bottom: 10px; font-size: 9px; letter-spacing: .04em; background: rgba(8, 8, 12, .5); }
.rc-chip { position: absolute; left: 12px; top: 10px; z-index: 2; font: 600 9px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-2); background: rgba(8, 8, 12, .6); padding: 4px 7px; border-radius: 5px; }
.rc-pin { position: absolute; width: 22px; height: 22px; margin: -11px 0 0 -11px; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(246, 217, 164, .8); box-shadow: 0 0 0 1px rgba(0, 0, 0, .3), 0 0 14px rgba(233, 184, 106, .4); }
.rc-pin::after { content: ''; position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; margin: -2px 0 0 -2px; border-radius: 50%; background: var(--gold-2); }
/* Ken Burns pelan; saat kursor di atas kartu, beberapa bingkai diputar bergantian */
@media (prefers-reduced-motion: no-preference) {
  .rc-media-x .rc-frame { animation: rcKen 22s ease-in-out infinite alternate; }
  .rc-card:nth-child(2n) .rc-media-x .rc-frame { animation-delay: -9s; animation-direction: alternate-reverse; }
  .rc-sat.playing .rc-frame { animation-play-state: paused; }
}
@keyframes rcKen {
  from { transform: translateY(-50%) scale(1.04); }
  to { transform: translate(-2.5%, -52%) scale(1.13); }
}
.rc-sat.playing .rc-chip::before { content: '● '; color: var(--gold); }
@media (max-width: 640px) {
  .rc-shot.rc-media-x { height: 188px; }
}

/* ════════════════════════════════════════════════════════════
   BAGIAN 05 · 06 · 07 — desain ulang (menggantikan aturan lama)
   05 = kepala cetak + struk yang "tercetak" dari cahaya adegan (teks kiri, seni kanan)
   06 = "coin reveal": satu-satunya bagian yang simetris di tengah
   07 = FAQ editorial dua kolom: potret yang melebur ke latar + daftar bernomor
   ════════════════════════════════════════════════════════════ */
/* tinta dua warna untuk baris kedua judul (biru → putih → emas) */
.print .split-ink, .faq .split-ink {
  background: linear-gradient(90deg, var(--blue-2), #eef0fb 48%, var(--gold-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── 05 · cara struk dicetak ─────────────────────────────── */
.print { max-width: none; padding: var(--gap-m) 0 0; }
/* bingkai seni dibuat selebar rasio gambar supaya KEDUA wajah + gulungan struk tetap terlihat;
   tidak keluar dari bagiannya (dulu bocor ke bagian 06 di bawah nav) */
.print-scene { position: absolute; z-index: -1; right: 0; top: calc(var(--gap-m) + 90px); width: 62%; aspect-ratio: 1.42; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%), linear-gradient(180deg, transparent 0, #000 14%, #000 60%, transparent 98%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0, #000 12%), linear-gradient(180deg, transparent 0, #000 14%, #000 60%, transparent 98%); mask-composite: intersect; }
.print-scene img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 50%; display: block; }
.print-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); }
.print-copy { max-width: 470px; }
.print-copy .sec-mark { margin-bottom: 30px; }
.print-copy h2 { font-size: clamp(38px, 4.4vw, 64px); line-height: .96; letter-spacing: -.035em; }
.print-copy p { color: var(--muted); margin: 22px 0 0; max-width: 380px; font-size: 16px; }

.ticket-wrap { position: relative; width: min(420px, calc(100% - 28px)); margin: 52px 0 0 14px; }
/* tumpahan cahaya di sekitar kertas: biru dari arah gulungan (kanan), emas dari celah cetak (atas) */
.ticket-wrap::before { content: ''; position: absolute; z-index: -1; inset: -40px -120px -20px -60px; pointer-events: none;
  background:
    radial-gradient(22% 34% at 78% 42%, rgba(91, 140, 255, .2), transparent),
    radial-gradient(40% 16% at 50% 20%, rgba(233, 184, 106, .13), transparent); }
/* kepala cetak: batang logam tipis, celah biru→emas tempat kertas keluar */
.print-head { position: relative; z-index: 3; height: 30px; margin: 0 -14px; padding: 0 16px; border-radius: 9px 9px 5px 5px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font: 600 8.5px/1 var(--mono); letter-spacing: .3em; color: #6f7088;
  background: linear-gradient(180deg, #1d1f2c, #0c0d14 70%, #07080c);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), inset 0 -1px 0 rgba(0, 0, 0, .7), 0 22px 34px -14px rgba(0, 0, 0, .95), 0 0 0 1px rgba(255, 255, 255, .04); }
.print-head::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 2px; border-radius: 2px; background: var(--split);
  box-shadow: 0 0 18px 1px rgba(233, 184, 106, .5), 0 0 26px rgba(91, 140, 255, .35); }
.ph-led { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px 2px rgba(233, 184, 106, .6); }
/* kerucut cahaya dari celah jatuh ke kertas — di pembungkus, jadi .ticket sendiri tetap bersih untuk ditangkap */
.ticket-wrap::after { content: ''; position: absolute; z-index: 2; left: 0; right: 0; top: 30px; height: 170px; pointer-events: none; mix-blend-mode: screen;
  background: radial-gradient(55% 100% at 32% 0, rgba(91, 140, 255, .14), transparent 70%), radial-gradient(55% 100% at 68% 0, rgba(233, 184, 106, .15), transparent 70%); }

.ticket {
  --paper: #0a0b12;
  position: relative; padding: 30px 28px 34px; font: 500 12px/1.5 var(--mono); color: var(--muted);
  /* kertas termal: butir halus + garis cetak tipis + rona biru di sisi gulungan + hangat di atas */
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23g)' opacity='.08'/%3E%3C/svg%3E"),
    linear-gradient(270deg, rgba(159, 184, 255, .32) 1px, transparent 1px) top / 100% calc(100% - 12px) no-repeat,
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .014) 0 1px, transparent 1px 3px),
    radial-gradient(90% 55% at 100% 42%, rgba(91, 140, 255, .16), transparent 70%),
    radial-gradient(80% 22% at 50% 0, rgba(233, 184, 106, .15), transparent 80%),
    linear-gradient(90deg, rgba(0, 0, 0, .3), transparent 14%),
    linear-gradient(180deg, transparent 70%, rgba(91, 140, 255, .06)),
    var(--paper);
  box-shadow: inset 0 1px 0 rgba(246, 217, 164, .3);
  /* tepi bawah bergerigi seperti struk sobek */
  -webkit-mask: linear-gradient(#000, #000) top / 100% calc(100% - 9px) no-repeat, radial-gradient(7px 9px at 50% 0, #000 98%, transparent) bottom / 14px 9px repeat-x;
  mask: linear-gradient(#000, #000) top / 100% calc(100% - 9px) no-repeat, radial-gradient(7px 9px at 50% 0, #000 98%, transparent) bottom / 14px 9px repeat-x;
}
.tk-head { display: flex; justify-content: space-between; letter-spacing: .24em; font-size: 10px; color: var(--dim); padding-bottom: 16px; border-bottom: 1px dashed var(--line-2); }
.tk-head span:first-child { color: var(--text); font-weight: 700; }
.tk-line { display: grid; grid-template-columns: 38px 1fr; gap: 4px; padding: 17px 0; border-bottom: 1px dashed var(--line-2); }
.tk-line i { font: 800 17px/1.2 var(--display); font-style: normal; color: var(--blue-2); text-shadow: 0 0 14px rgba(91, 140, 255, .55); }
.tk-line:nth-child(n+4) i { color: var(--gold-2); text-shadow: 0 0 14px rgba(233, 184, 106, .5); }
.tk-line > div { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; column-gap: 10px; }
.tk-line b { font: 600 15px/1.3 var(--body); color: var(--text); letter-spacing: -.005em; }
.tk-line .dots { border-bottom: 1px dotted rgba(255, 255, 255, .2); transform: translateY(-4px); min-width: 12px; }
.tk-line em { font-style: normal; font-size: 9.5px; letter-spacing: .16em; color: var(--gold-2); white-space: nowrap; text-shadow: 0 0 10px rgba(233, 184, 106, .35); }
.tk-line:nth-child(-n+3) em { color: var(--blue-2); text-shadow: 0 0 10px rgba(91, 140, 255, .4); }
.tk-line p { grid-column: 1 / -1; margin: 6px 0 0; font: 13px/1.55 var(--body); color: var(--muted); }
.tk-total { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 20px 0 18px; border-bottom: 2px solid rgba(255, 255, 255, .12); }
.tk-total > span:first-child { font: 800 17px/1 var(--display); letter-spacing: .14em; color: var(--text); }
.tk-total .v { display: flex; gap: 6px; }
.tk-total .v b { font: 700 9.5px/1 var(--mono); letter-spacing: .14em; padding: 7px 8px; border-radius: 5px; color: var(--dim); box-shadow: inset 0 0 0 1px var(--line-2); animation: verdict 6s infinite; }
.tk-total .v .o { animation-delay: 2s; } .tk-total .v .x { animation-delay: 4s; }
@keyframes verdict {
  0%, 30% { color: var(--gold-2); background: rgba(233, 184, 106, .14); box-shadow: inset 0 0 0 1px rgba(233, 184, 106, .45); }
  34%, 100% { color: var(--dim); background: transparent; box-shadow: inset 0 0 0 1px var(--line-2); }
}
/* kode batang dicetak dengan tinta biru→emas yang sama dengan gulungan di tangan Janus */
.tk-bar { height: 36px; margin-top: 20px; opacity: .8; background: var(--split);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 4px, #000 4px 5px, transparent 5px 9px, #000 9px 12px, transparent 12px 14px);
  mask: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 4px, #000 4px 5px, transparent 5px 9px, #000 9px 12px, transparent 12px 14px); }
.tk-foot { margin-top: 12px; text-align: center; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); }
/* animasi cetak: kertas turun dari celah, baris muncul berurutan (pemicu di pembungkus, bukan elemen ber-clip) */
.ticket-wrap.reveal { transform: none; }
.ticket-wrap .ticket { clip-path: inset(0 0 100% 0); transform: translateY(-40px); transition: clip-path 1.6s cubic-bezier(.3, .7, .2, 1) .15s, transform 1.6s cubic-bezier(.3, .7, .2, 1) .15s; }
.ticket-wrap.in .ticket { clip-path: inset(0 0 0 0); transform: none; }
.ticket-wrap .tk-line, .ticket-wrap .tk-total { opacity: 0; transition: opacity .5s ease; }
.ticket-wrap.in .tk-line, .ticket-wrap.in .tk-total { opacity: 1; }
.ticket-wrap.in .tk-line:nth-child(2) { transition-delay: .45s; } .ticket-wrap.in .tk-line:nth-child(3) { transition-delay: .75s; }
.ticket-wrap.in .tk-line:nth-child(4) { transition-delay: 1.05s; } .ticket-wrap.in .tk-line:nth-child(5) { transition-delay: 1.35s; }
.ticket-wrap.in .tk-total { transition-delay: 1.65s; }

/* ── 06 · $JANUS — koin diungkap di tengah panggung ─────────── */
.token { max-width: none; padding: var(--gap-m) 0 0; overflow-x: clip; }
.tok-stage { position: relative; max-width: 980px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); display: flex; flex-direction: column; align-items: center; text-align: center; }
/* cahaya lembut di belakang koin — gradien diam, pudar sebelum tepi (tanpa garis kotak) */
.tok-stage::before { content: ''; position: absolute; z-index: -3; left: 50%; top: -40px; width: min(760px, 120vw); height: 760px; transform: translateX(-50%); pointer-events: none;
  background: radial-gradient(closest-side, rgba(246, 217, 164, .06), rgba(91, 140, 255, .03) 55%, transparent); }
.tok-stage > .sec-mark { justify-content: center; margin-bottom: 0; }
.tok-copy h2 { margin-top: clamp(30px, 3.6vw, 46px); font: 900 clamp(60px, 9.4vw, 136px)/.86 var(--display); letter-spacing: -.045em;
  background: linear-gradient(180deg, #ffffff 8%, #f3e2bf 46%, var(--gold) 72%, #a8752e); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .6)); }
.tok-copy p { max-width: 520px; margin: 26px auto 0; color: var(--muted); font-size: 16.5px; }
.tok-copy p b { color: var(--text); font-weight: 600; }
.tok-ctas { justify-content: center; margin-top: 34px; }
/* sebelum launch: tombol Buy disembunyikan (bukan pil abu-abu mati); "Follow on X" jadi tombol utama */
.tok-ctas #tokBuy[aria-disabled="true"] { display: none; }

.tok-coin { --c: clamp(230px, 25vw, 340px); position: relative; width: var(--c); height: var(--c); z-index: 0;
  /* jarak cukup supaya cincin terluar tidak menabrak label "06" */
  margin: calc(var(--c) * .34 + 34px) 0 0; }
/* cahaya belah: biru di kiri, emas di kanan */
.tok-coin::before { content: ''; position: absolute; inset: -70%; z-index: -2; pointer-events: none;
  background: radial-gradient(34% 34% at 36% 50%, rgba(91, 140, 255, .22), transparent 70%), radial-gradient(34% 34% at 64% 50%, rgba(233, 184, 106, .2), transparent 70%); }
/* semua cincin di satu wadah yang memudar di atas & bawah → tidak ada garis yang memotong teks */
.tc-halo { position: absolute; inset: -40%; z-index: -1; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 2%, #000 24%, #000 72%, transparent 92%); mask-image: linear-gradient(180deg, transparent 2%, #000 24%, #000 72%, transparent 92%); }
.tc-ring { position: absolute; border-radius: 50%; }
.tc-ring.r1 { inset: 22.2%; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09); }
/* bezel jam: 60 garis kecil */
.tc-ring.r2 { inset: 12.5%;
  background: repeating-conic-gradient(from -.25deg, rgba(246, 217, 164, .38) 0 .5deg, transparent .5deg 6deg);
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 9px), #000 calc(100% - 9px));
  mask: radial-gradient(closest-side, transparent calc(100% - 9px), #000 calc(100% - 9px)); opacity: .55; }
.tc-ring.r3 { inset: 0; border: 1px solid transparent;
  background: conic-gradient(from 200deg, rgba(91, 140, 255, .4), rgba(255, 255, 255, .04) 25%, rgba(233, 184, 106, .4) 50%, rgba(255, 255, 255, .04) 75%, rgba(91, 140, 255, .4)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box exclude, linear-gradient(#000 0 0) border-box;
  mask: linear-gradient(#000 0 0) padding-box exclude, linear-gradient(#000 0 0) border-box; }
/* titik emas mengorbit pelan (hanya transform — murah) */
.tc-orbit { position: absolute; inset: 0; }
.tc-orbit::after { content: ''; position: absolute; left: 50%; top: -3px; width: 6px; height: 6px; margin-left: -3px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 12px 3px rgba(233, 184, 106, .55); }
.tc-face { position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, .95), 0 0 0 1px rgba(246, 217, 164, .22), 0 0 70px rgba(233, 184, 106, .14); }
.tc-face img { width: 100%; height: 100%; display: block; transform: scale(1.012); }
/* kilap yang menyapu permukaan koin */
.tc-face::after { content: ''; position: absolute; inset: 0; pointer-events: none; mix-blend-mode: overlay;
  background: linear-gradient(112deg, transparent 32%, rgba(255, 255, 255, .55) 48%, transparent 62%); transform: translateX(-110%); }
.tc-floor { position: absolute; left: -10%; right: -10%; bottom: -24%; height: 20%; z-index: -1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(233, 184, 106, .2), rgba(91, 140, 255, .06) 60%, transparent); }
/* masuk: koin membesar pelan dari gelap */
.tok-coin.reveal { transform: scale(.9); transition: opacity 1.1s var(--e-out-strong), transform 1.4s var(--e-out-strong); }
.tok-coin.reveal.in { transform: none; }

/* keterangan: tiga "cap" kecil dipisah belah-ketupat emas — bukan tabel */
.tok-spec { position: relative; margin-top: clamp(40px, 5vw, 54px); display: flex; flex-direction: column; align-items: center; }
.tok-spec::before { content: ''; width: 72px; height: 1px; background: var(--split); margin-bottom: 30px; }
.tok-facts { display: flex; justify-content: center; margin: 0; }
.tok-facts > div { position: relative; padding: 0 clamp(22px, 3.4vw, 44px); }
.tok-facts > div + div::before { content: ''; position: absolute; left: 0; top: 50%; width: 5px; height: 5px; transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: inset 0 0 0 1px rgba(233, 184, 106, .6); }
.tok-facts dt { font: 600 9.5px/1 var(--mono); letter-spacing: .3em; text-transform: uppercase; color: var(--dim); }
.tok-facts dd { margin: 11px 0 0; font: 500 15px/1.2 var(--display); letter-spacing: -.01em; color: var(--text); white-space: nowrap; }
/* kapsul alamat kontrak: sebelum launch = status yang sengaja (titik berdenyut), sesudah = alamat utuh + Copy */
.tok-ca { display: inline-flex; align-items: center; gap: 14px; margin-top: 34px; max-width: 100%; padding: 11px 22px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(91, 140, 255, .07), rgba(14, 15, 23, .6) 30%, rgba(14, 15, 23, .6) 70%, rgba(233, 184, 106, .07));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .05); }
.tca-label { display: inline-flex; align-items: center; gap: 9px; font: 600 9.5px/1 var(--mono); letter-spacing: .26em; text-transform: uppercase; color: var(--gold-2); white-space: nowrap; }
.tca-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px 2px rgba(233, 184, 106, .5); }
.tok-ca code { font: 400 14px/1.4 var(--body); color: var(--muted); min-width: 0; overflow-wrap: anywhere; text-align: left; }
.tca-copy { flex: none; height: 32px; padding: 0 16px; border-radius: 999px; cursor: pointer; font: 600 12px/1 var(--body); color: #1a1206;
  background: linear-gradient(180deg, #fbe7bf, #eec27a 48%, #c9913e); border: 0; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6); transition: transform 140ms var(--e-out); }
.tca-copy:hover { transform: translateY(-1px); }
.tca-copy[hidden] { display: none; }
/* CA live: alamat utuh, mono, terang */
.tok-ca.live { padding: 8px 8px 8px 22px; }
.tok-ca.live code { font: 500 14px/1.4 var(--mono); color: var(--text); }
.tok-ca.live .tca-dot { background: var(--up); box-shadow: 0 0 10px 2px rgba(61, 220, 151, .45); }

/* ── 07 · FAQ editorial ──────────────────────────────────── */
.faq { max-width: var(--wrap); display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: clamp(48px, 7vw, 112px); align-items: start; interpolate-size: allow-keywords; }
.faq-side .sec-mark { margin-bottom: 28px; }
.faq-side h2 { font-size: clamp(30px, 3vw, 44px); line-height: 1.02; letter-spacing: -.03em; }
/* potret melebur ke latar: tanpa kotak/bingkai, tepi dipudarkan elips */
.faq-portrait { position: relative; margin: 14px -30px 0; aspect-ratio: 4 / 5; }
.faq-portrait picture { display: block; height: 100%;
  -webkit-mask-image: radial-gradient(closest-side, #000 70%, transparent); mask-image: radial-gradient(closest-side, #000 70%, transparent); }
.faq-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; }
.faq-ask { display: inline-flex; align-items: center; gap: 10px; margin-top: 4px; font: 600 11.5px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); }
.faq-ask span { transition: transform 200ms var(--e-out); }
.faq-ask:hover span { transform: translateX(4px); }
.faq-ask.in-list { display: none; }

.faq-list { margin-top: 6px; }
.faq details { position: relative; border-top: 1px solid var(--line); transition: background 300ms ease; }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
/* garis belah biru→emas menyapu dari kiri saat disorot / dibuka */
.faq details::before { content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 1px; background: var(--split); transform: scaleX(0); transform-origin: left; transition: transform 600ms var(--e-out); }
.faq details:hover::before, .faq details[open]::before { transform: scaleX(1); }
.faq details[open] { background: linear-gradient(90deg, rgba(91, 140, 255, .045), transparent 40%, transparent 70%, rgba(233, 184, 106, .03)); }
.faq summary { cursor: pointer; list-style: none; display: grid; grid-template-columns: 76px 1fr 24px; align-items: center; gap: 0 12px; padding: 28px 8px 28px 0; }
.faq summary::-webkit-details-marker { display: none; }
/* nomor besar bergaris luar; terisi tinta biru→emas saat dibuka */
.fq-n { font: 800 30px/1 var(--display); letter-spacing: -.02em; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .34);
  background: linear-gradient(90deg, var(--blue-2), var(--gold-2)); -webkit-background-clip: text; background-clip: text; background-size: 0% 100%; background-repeat: no-repeat;
  transition: background-size 500ms var(--e-out), -webkit-text-stroke-color 300ms; }
.faq summary:hover .fq-n { -webkit-text-stroke-color: rgba(255, 255, 255, .4); }
.faq details[open] .fq-n { background-size: 100% 100%; -webkit-text-stroke-color: transparent; }
.fq-q { font: 500 clamp(18px, 1.5vw, 21px)/1.3 var(--body); letter-spacing: -.012em; color: #cfcede; transition: color 200ms, transform 300ms var(--e-out); }
.faq summary:hover .fq-q { color: #fff; transform: translateX(4px); }
.faq details[open] .fq-q { color: #fff; }
/* tanda buka/tutup: dua garis rambut tanpa lingkaran; garis tegak memutar rata jadi minus */
.fq-pm { position: relative; width: 24px; height: 24px; }
.fq-pm::before, .fq-pm::after { content: ''; position: absolute; left: 50%; top: 50%; width: 16px; height: 1px; margin: -.5px 0 0 -8px; background: var(--muted); transition: transform 400ms var(--e-out), background 200ms; }
.fq-pm::after { transform: rotate(90deg); }
.faq summary:hover .fq-pm::before, .faq summary:hover .fq-pm::after { background: #fff; }
.faq details[open] .fq-pm::before, .faq details[open] .fq-pm::after { background: var(--gold-2); }
.faq details[open] .fq-pm::after { transform: rotate(180deg); }
.fq-a { padding: 0 44px 32px 88px; }
.fq-a p { margin: 0; max-width: 60ch; color: var(--muted); font-size: 15.5px; line-height: 1.75; }
/* buka-tutup halus (Chrome baru); peramban lama tetap jalan, hanya tanpa geser tinggi */
.faq details::details-content { height: 0; overflow: clip; transition: height 420ms var(--e-out), content-visibility 420ms allow-discrete; }
.faq details[open]::details-content { height: auto; }
.faq details[open] .fq-a p { animation: fqIn 520ms var(--e-out) both; }
@keyframes fqIn { from { opacity: 0; transform: translateY(-6px); } }

/* ── gerak 05–07 ── */
@media (prefers-reduced-motion: no-preference) {
  .ph-led, .tca-dot { animation: led 2.4s ease-in-out infinite; }
  .tc-orbit { animation: orbit 48s linear infinite; }
  .tok-coin.in .tc-face::after { animation: sheen 1.6s .6s var(--e-out) both, sheen 1.8s 9s var(--e-out) infinite; }
}
@keyframes led { 50% { opacity: .35; } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes sheen { from { transform: translateX(-110%); } 60%, to { transform: translateX(110%); } }

/* ── layar sedang ── */
@media (max-width: 1100px) {
  .print-scene { width: 60%; }
  .faq { grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 48px; }
  .fq-a { padding-left: 88px; padding-right: 8px; }
}
@media (max-width: 900px) and (min-width: 721px) {
  .print-scene { width: 56%; top: calc(var(--gap-m) + 160px); }
}
/* ── layar kecil ── */
@media (max-width: 720px) {
  /* seni di atas, pudar lembut di atas & bawah; label "05" turun di bawah seni, tidak menimpa */
  .print-scene { position: relative; top: 0; right: auto; width: 100%; aspect-ratio: auto; height: 74vw; margin: 0 0 8px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 30%, #000 64%, transparent 100%); mask-image: linear-gradient(180deg, transparent 0, #000 30%, #000 64%, transparent 100%); }
  .print-scene img { object-position: 72% 30%; }
  .print-inner { padding: 0 16px; }
  .print-copy h2 { font-size: 40px; }
  .ticket-wrap { width: calc(100% - 24px); margin: 40px 12px 0; }
  .ticket-wrap::before { inset: -30px -12px -20px -12px; }
  .ticket { padding: 26px 18px 30px; }
  .tk-foot { letter-spacing: .1em; font-size: 8.5px; }
  .tk-line { grid-template-columns: 32px 1fr; }
  .tk-line > div { grid-template-columns: 1fr; }
  .tk-line .dots { display: none; }
  .tk-line em { margin-top: 4px; }
  .tk-total .v b { padding: 6px 6px; letter-spacing: .1em; }

  .tok-coin { --c: 60vw; }
  /* "$JANUS" tetap punya ruang ≥16px di kiri-kanan */
  .tok-copy h2 { font-size: 16vw; margin-top: 36px; }
  .tok-copy p { font-size: 15.5px; }
  .tok-spec::before { margin-bottom: 24px; }
  .tok-facts > div { padding: 0 14px; }
  .tok-facts dt { font-size: 8.5px; letter-spacing: .22em; }
  .tok-facts dd { font-size: 12.5px; }
  .tok-ca { border-radius: 16px; flex-wrap: wrap; justify-content: center; padding: 14px 18px; row-gap: 8px; }
  .tok-ca code { text-align: center; font-size: 13.5px; }
  .tok-ca.live { padding: 14px 16px; }
  .tok-ca.live code { font-size: 12.5px; }

  .faq { grid-template-columns: 1fr; gap: 20px; }
  .faq-portrait { aspect-ratio: 1 / 1; margin: 0 -16px; }
  .faq-portrait picture { -webkit-mask-image: radial-gradient(closest-side, #000 66%, transparent); mask-image: radial-gradient(closest-side, #000 66%, transparent); }
  .faq-portrait img { object-position: 50% 12%; }
  .faq summary { grid-template-columns: 50px 1fr 22px; gap: 0 10px; padding: 22px 0; }
  .fq-n { font-size: 22px; }
  .fq-q { font-size: 17px; }
  .faq summary:hover .fq-q { transform: none; }
  .fq-a { padding: 0 0 24px 60px; }
  .fq-a p { font-size: 15px; }
  .faq-side .faq-ask { display: none; }
  .faq-ask.in-list { display: inline-flex; margin-top: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .tk-total .v b { animation: none; }
  .ticket-wrap .ticket { clip-path: none; transform: none; transition: none; }
  .ticket-wrap .tk-line, .ticket-wrap .tk-total { opacity: 1; transition: none; }
  .tok-coin.reveal { transform: none; }
  .faq details::details-content { transition: none; }
  .faq details[open] .fq-a p { animation: none; }
}

/* HP sempit (≤380px): logo & ikon sosial sedikit dirapatkan supaya navbar muat */
@media (max-width: 380px) {
  .nav .logo span { font-size: 14px; letter-spacing: .05em; }
  .nav-soc { width: 34px; height: 34px; }
  .nav-cta { gap: 6px; }
}
