/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --ink:       #0E1B2E;
  --ink-mid:   #1C2F47;
  --slate:     #3D5166;
  --muted:     #7B8FA6;
  --pale:      #C4CDD8;
  --border:    #E3E8EE;
  --surface:   #F7F8FA;
  --white:     #FFFFFF;
  --gold:      #B5832A;
  --gold-lt:   #D4A84B;
  --gold-pale: #FBF3E3;
  --green:     #16A34A;
  --green-bg:  #F0FDF4;
  --red:       #DC2626;
  --red-bg:    #FEF2F2;
  --display:   'Playfair Display', Georgia, serif;
  --ui:        'Plus Jakarta Sans', system-ui, sans-serif;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --s-sm:  0 2px 8px rgba(14,27,46,.07), 0 1px 2px rgba(14,27,46,.04);
  --s-md:  0 8px 24px rgba(14,27,46,.09), 0 2px 6px rgba(14,27,46,.05);
  --s-lg:  0 20px 48px rgba(14,27,46,.12), 0 4px 12px rgba(14,27,46,.06);
  --s-xl:  0 32px 80px rgba(14,27,46,.18), 0 8px 24px rgba(14,27,46,.08);
  --ease:  cubic-bezier(.22,1,.36,1);
}

/* ── RESET ─────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--ui);background:var(--white);color:var(--ink);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden;}

/* ── LANGUAGE ──────────────────────── */
.t-en{display:none;}
html[data-lang="en"] .t-id{display:none;}
html[data-lang="en"] .t-en{display:revert;}

/* ── SCROLL REVEAL ─────────────────── */
[data-r]{opacity:0;transform:translateY(18px);transition:opacity .65s var(--ease),transform .65s var(--ease);}
[data-r].in{opacity:1;transform:none;}
[data-r][data-d="1"]{transition-delay:.07s;}
[data-r][data-d="2"]{transition-delay:.14s;}
[data-r][data-d="3"]{transition-delay:.21s;}
[data-r][data-d="4"]{transition-delay:.28s;}
[data-r][data-d="5"]{transition-delay:.35s;}

/* ── PAGE TRANSITION ───────────────── */
#app-root>*{animation:pageIn .35s var(--ease) both;}
@keyframes pageIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:none;}}

/* ── LOADING SPINNER ───────────────── */
.spinner-wrap{display:flex;align-items:center;justify-content:center;min-height:60vh;}
.spinner{width:36px;height:36px;border:3px solid var(--border);border-top-color:var(--gold);border-radius:50%;animation:spin .7s linear infinite;}
@keyframes spin{to{transform:rotate(360deg);}}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}

/* ═══════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════ */
.ann-bar{background:var(--ink);color:rgba(255,255,255,.8);font-size:.72rem;font-weight:500;text-align:center;padding:.6rem 1rem;display:flex;align-items:center;justify-content:center;gap:.5rem;flex-wrap:wrap;}
.ann-bar a{color:var(--gold-lt);text-decoration:none;border-bottom:1px solid rgba(212,168,75,.4);transition:border-color .2s;}
.ann-bar a:hover{border-color:var(--gold-lt);}
.ann-dot{width:6px;height:6px;border-radius:50%;background:var(--gold-lt);animation:blink 2s ease-in-out infinite;flex-shrink:0;}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
nav{position:sticky;top:0;z-index:200;background:rgba(255,255,255,.96);backdrop-filter:blur(16px);border-bottom:1px solid var(--border);transition:box-shadow .3s;}
nav.scrolled{box-shadow:var(--s-sm);}
.nav-wrap{max-width:1200px;margin:0 auto;padding:0 2rem;height:66px;display:flex;align-items:center;gap:2rem;}

/* Logo */
.logo{text-decoration:none;display:flex;align-items:center;gap:.65rem;flex-shrink:0;}
.logo-emblem{width:36px;height:36px;background:var(--ink);border-radius:8px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:3px;padding:8px 9px;}
.logo-emblem span{display:block;background:white;border-radius:1px;height:2px;}
.logo-emblem span:nth-child(1){width:100%;}
.logo-emblem span:nth-child(2){width:72%;opacity:.7;}
.logo-emblem span:nth-child(3){width:48%;opacity:.45;}
.logo-name{display:flex;flex-direction:column;line-height:1.15;}
.logo-name strong{font-size:1.05rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--ink);}
.logo-name span{font-family:var(--display);font-size:.68rem;font-style:italic;font-weight:500;color:var(--gold);letter-spacing:.04em;}

/* Nav links */
.nav-links{list-style:none;display:flex;gap:.15rem;align-items:center;flex:1;}
.nav-links a{font-size:.8rem;font-weight:500;color:var(--muted);text-decoration:none;padding:.45rem .7rem;border-radius:var(--r-sm);transition:color .15s,background .15s;white-space:nowrap;}
.nav-links a:hover{color:var(--ink);background:var(--surface);}
.nav-links a.active{color:var(--ink);font-weight:600;background:var(--surface);}

/* Nav right */
.nav-right{display:flex;align-items:center;gap:.75rem;margin-left:auto;}
.nav-search{display:flex;align-items:center;gap:.5rem;background:var(--surface);border:1px solid var(--border);border-radius:var(--r-md);padding:.4rem .75rem;cursor:text;transition:border-color .2s;}
.nav-search:focus-within{border-color:var(--gold);}
.nav-search svg{width:14px;height:14px;stroke:var(--muted);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.nav-search input{border:none;background:transparent;font-family:var(--ui);font-size:.78rem;color:var(--ink);outline:none;width:140px;}
.nav-search input::placeholder{color:var(--pale);}

/* Lang pill */
.lang-pill{display:flex;gap:2px;background:var(--surface);border:1px solid var(--border);border-radius:var(--r-md);padding:3px;}
.lbtn{font-family:var(--ui);font-size:.7rem;font-weight:600;letter-spacing:.05em;color:var(--muted);background:transparent;border:none;padding:.25rem .55rem;border-radius:6px;cursor:pointer;transition:all .15s;}
.lbtn:hover{color:var(--ink);}
.lbtn.on{background:var(--white);color:var(--ink);box-shadow:var(--s-sm);}

/* Nav buttons */
.btn-nav{font-family:var(--ui);font-size:.78rem;font-weight:600;text-decoration:none;color:var(--white);background:var(--ink);padding:.5rem 1.1rem;border-radius:var(--r-md);white-space:nowrap;transition:all .2s;cursor:pointer;border:none;display:inline-flex;align-items:center;gap:.4rem;}
.btn-nav:hover{background:var(--ink-mid);transform:translateY(-1px);}
.btn-nav-ghost{background:transparent;color:var(--slate);border:1.5px solid var(--border);}
.btn-nav-ghost:hover{background:var(--surface);color:var(--ink);transform:none;}

/* Hamburger */
.nav-hamburger{display:none;flex-direction:column;gap:4px;background:none;border:none;cursor:pointer;padding:.4rem;border-radius:var(--r-sm);}
.nav-hamburger span{width:20px;height:2px;background:var(--ink);border-radius:1px;transition:all .25s;display:block;}
.nav-hamburger.open span:nth-child(1){transform:rotate(45deg) translate(4px,4px);}
.nav-hamburger.open span:nth-child(2){opacity:0;}
.nav-hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(4px,-4px);}

/* ═══════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════ */
.mobile-menu{position:fixed;inset:0;z-index:400;pointer-events:none;}
.mobile-menu.open{pointer-events:all;}
.mobile-backdrop{position:absolute;inset:0;background:rgba(14,27,46,.5);opacity:0;transition:opacity .35s;backdrop-filter:blur(2px);}
.mobile-menu.open .mobile-backdrop{opacity:1;}
.mobile-drawer{position:absolute;top:0;right:0;bottom:0;width:min(320px,85vw);background:var(--white);box-shadow:var(--s-xl);transform:translateX(100%);transition:transform .35s var(--ease);display:flex;flex-direction:column;overflow-y:auto;}
.mobile-menu.open .mobile-drawer{transform:none;}
.mobile-drawer-head{padding:1.25rem;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--border);flex-shrink:0;}
.mobile-close{background:none;border:none;cursor:pointer;padding:.35rem;border-radius:var(--r-sm);color:var(--muted);transition:color .15s,background .15s;}
.mobile-close:hover{color:var(--ink);background:var(--surface);}
.mobile-close svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;display:block;}
.mobile-nav-links{list-style:none;padding:.5rem;flex:1;}
.mobile-nav-links li a{display:flex;align-items:center;justify-content:space-between;padding:.85rem 1rem;font-size:.88rem;font-weight:500;color:var(--slate);text-decoration:none;border-radius:var(--r-md);transition:all .15s;}
.mobile-nav-links li a::after{content:'›';font-size:1.1rem;color:var(--pale);transition:all .2s;}
.mobile-nav-links li a.active{font-weight:600;color:var(--gold);background:var(--gold-pale);}
.mobile-nav-links li a.active::after{color:var(--gold);}
.mobile-nav-links li a:hover{background:var(--surface);color:var(--ink);}
.mobile-drawer-foot{padding:1.25rem;display:flex;flex-direction:column;gap:.75rem;margin-top:auto;border-top:1px solid var(--border);flex-shrink:0;}
.mobile-lang{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;}
.mobile-lang .lbtn{text-align:center;border:1.5px solid var(--border);border-radius:var(--r-md);padding:.6rem .5rem;font-size:.8rem;background:var(--surface);color:var(--muted);}
.mobile-lang .lbtn.on{background:var(--ink);color:var(--white);border-color:var(--ink);}
.mobile-cta{display:flex;align-items:center;justify-content:center;gap:.5rem;font-family:var(--ui);font-size:.88rem;font-weight:600;color:var(--white);background:var(--ink);padding:.9rem 1rem;border-radius:var(--r-md);text-decoration:none;transition:background .2s;}
.mobile-cta:hover{background:var(--ink-mid);}
.mobile-cta svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.section{padding:clamp(4rem,8vw,7rem) 2rem;}
.wrap{max-width:1200px;margin:0 auto;}
.eyebrow{display:inline-flex;align-items:center;gap:.5rem;font-size:.68rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:.85rem;}
.eyebrow::before{content:'';width:14px;height:1.5px;background:var(--gold);}
.sec-h2{font-family:var(--display);font-size:clamp(1.9rem,3.5vw,2.8rem);font-weight:800;line-height:1.15;letter-spacing:-.02em;color:var(--ink);}
.sec-h2 em{font-style:italic;color:var(--gold);}
.sec-body{font-size:.93rem;font-weight:300;color:var(--slate);line-height:1.85;max-width:500px;}

/* Buttons */
.btn-primary{font-family:var(--ui);font-size:.83rem;font-weight:600;text-decoration:none;color:var(--white);background:var(--ink);padding:.75rem 1.6rem;border-radius:var(--r-md);border:none;cursor:pointer;display:inline-flex;align-items:center;gap:.5rem;transition:all .2s var(--ease);}
.btn-primary:hover{background:var(--ink-mid);transform:translateY(-2px);box-shadow:var(--s-md);}
.btn-primary svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s;}
.btn-primary:hover svg{transform:translateX(3px);}
.btn-ghost{font-size:.83rem;font-weight:500;color:var(--slate);text-decoration:none;display:inline-flex;align-items:center;gap:.35rem;transition:color .2s;}
.btn-ghost:hover{color:var(--ink);}
.btn-gold{font-family:var(--ui);font-size:.85rem;font-weight:700;text-decoration:none;color:var(--ink);background:var(--gold);padding:.85rem 1.75rem;border-radius:var(--r-md);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.5rem;transition:all .2s var(--ease);}
.btn-gold:hover{background:var(--gold-lt);transform:translateY(-2px);box-shadow:0 8px 28px rgba(181,131,42,.3);}
.btn-gold svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.btn-outline-white{font-family:var(--ui);font-size:.82rem;font-weight:600;text-decoration:none;color:rgba(255,255,255,.7);padding:.8rem 1.75rem;border-radius:var(--r-md);border:1px solid rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;gap:.5rem;transition:all .2s;}
.btn-outline-white:hover{color:var(--white);border-color:rgba(255,255,255,.4);background:rgba(255,255,255,.06);}

/* Page header */
.page-header{background:var(--ink);padding:clamp(3rem,6vw,5rem) 2rem clamp(2.5rem,5vw,4rem);position:relative;overflow:hidden;}
.page-header::before{content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.04) 1px,transparent 1px);background-size:24px 24px;pointer-events:none;}
.page-header::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 80% 50%,rgba(181,131,42,.12),transparent 70%);pointer-events:none;}
.page-header-inner{max-width:1200px;margin:0 auto;position:relative;z-index:1;}
.page-header .eyebrow{color:var(--gold-lt);}
.page-header .eyebrow::before{background:var(--gold-lt);}
.page-header h1{font-family:var(--display);font-size:clamp(2.2rem,4.5vw,3.5rem);font-weight:800;line-height:1.1;letter-spacing:-.02em;color:var(--white);margin-top:.5rem;}
.page-header h1 em{font-style:italic;color:var(--gold-lt);}
.page-header p{font-size:.97rem;font-weight:300;color:rgba(255,255,255,.55);line-height:1.8;max-width:560px;margin-top:1rem;}

/* Breadcrumb */
.breadcrumb{max-width:1200px;margin:0 auto;padding:.85rem 2rem;display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:var(--muted);border-bottom:1px solid var(--border);}
.breadcrumb a{color:var(--muted);text-decoration:none;transition:color .15s;cursor:pointer;}
.breadcrumb a:hover{color:var(--ink);}
.breadcrumb span{color:var(--pale);}
.breadcrumb strong{color:var(--ink);font-weight:600;}

/* CTA strip */
.cta-strip{background:linear-gradient(135deg,var(--ink),var(--ink-mid));padding:clamp(3.5rem,7vw,6rem) 2rem;position:relative;overflow:hidden;}
.cta-strip::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 55% 70% at 90% 50%,rgba(181,131,42,.12),transparent 65%);pointer-events:none;}
.cta-strip-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr auto;gap:4rem;align-items:center;position:relative;z-index:1;}
.cta-strip .eyebrow{color:var(--gold-lt);}
.cta-strip .eyebrow::before{background:var(--gold-lt);}
.cta-h2{font-family:var(--display);font-size:clamp(2rem,3.8vw,3rem);font-weight:800;line-height:1.1;letter-spacing:-.02em;color:var(--white);margin-top:.5rem;}
.cta-h2 em{font-style:italic;color:var(--gold-lt);}
.cta-p{font-size:.9rem;font-weight:300;color:rgba(255,255,255,.5);line-height:1.8;max-width:480px;margin-top:.75rem;}
.cta-actions{display:flex;flex-direction:column;gap:.75rem;min-width:220px;}

/* Trust strip */
.trust-strip{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--surface);padding:1rem 2rem;}
.trust-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:center;gap:clamp(1.5rem,4vw,3.5rem);flex-wrap:wrap;}
.trust-item{display:flex;align-items:center;gap:.5rem;font-size:.75rem;font-weight:500;color:var(--slate);}
.trust-item svg{width:15px;height:15px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.trust-sep{width:1px;height:18px;background:var(--border);}

/* ═══════════════════════════════════════
   HOME
═══════════════════════════════════════ */
.hero{background:var(--white);padding:clamp(3.5rem,7vw,6rem) 2rem clamp(2rem,4vw,3.5rem);border-bottom:1px solid var(--border);overflow:hidden;position:relative;}
.hero::before{content:'';position:absolute;inset:0;background-image:radial-gradient(var(--border) 1px,transparent 1px);background-size:28px 28px;opacity:.55;pointer-events:none;}
.hero::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 60% 50%,rgba(255,255,255,0) 40%,rgba(255,255,255,1) 80%);pointer-events:none;}
.hero-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,5vw,5rem);align-items:center;position:relative;z-index:1;}
.hero-kicker{display:inline-flex;align-items:center;gap:.5rem;background:var(--gold-pale);border:1px solid rgba(181,131,42,.2);color:var(--gold);font-size:.7rem;font-weight:600;letter-spacing:.09em;text-transform:uppercase;padding:.32rem .85rem;border-radius:99px;margin-bottom:1.5rem;}
.hero-kicker::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--gold);}
.hero-h1{font-family:var(--display);font-size:clamp(2.4rem,6vw,4rem);font-weight:800;line-height:1.1;letter-spacing:-.02em;color:var(--ink);margin-bottom:1.25rem;}
.hero-h1 em{font-style:italic;color:var(--gold);}
.hero-p{font-size:.97rem;font-weight:300;color:var(--slate);line-height:1.85;max-width:440px;margin-bottom:2.25rem;}
.hero-cta-row{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap;}

/* Search box */
.search-box{background:var(--white);border:1.5px solid var(--border);border-radius:var(--r-lg);box-shadow:var(--s-md);overflow:hidden;margin-bottom:1.5rem;transition:box-shadow .3s,border-color .3s;}
.search-box:focus-within{border-color:var(--gold);box-shadow:var(--s-lg),0 0 0 4px rgba(181,131,42,.08);}
.search-top{display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;}
.search-top svg{width:18px;height:18px;stroke:var(--muted);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.search-input{flex:1;border:none;background:transparent;font-family:var(--ui);font-size:.97rem;color:var(--ink);outline:none;}
.search-input::placeholder{color:var(--pale);}
.search-btn{font-family:var(--ui);font-size:.78rem;font-weight:600;border:none;background:var(--ink);color:var(--white);padding:.6rem 1.2rem;border-radius:8px;cursor:pointer;transition:background .2s;white-space:nowrap;}
.search-btn:hover{background:var(--ink-mid);}
.search-bottom{border-top:1px solid var(--border);background:var(--surface);padding:.6rem 1.25rem;display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap;}
.search-hint{font-size:.72rem;color:var(--muted);}
.search-hint strong{color:var(--ink);font-weight:600;}
.search-examples{display:flex;gap:.4rem;flex-wrap:wrap;}
.search-ex{font-size:.68rem;font-weight:500;color:var(--slate);background:var(--border);padding:.2rem .6rem;border-radius:99px;cursor:pointer;transition:all .15s;border:none;font-family:var(--ui);}
.search-ex:hover{background:var(--ink);color:var(--white);}
.search-result{display:none;border-top:1px solid var(--border);padding:1rem 1.25rem;animation:fadeIn .2s ease;}
.search-result.show{display:block;}
@keyframes fadeIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}
.sr-found{display:flex;align-items:flex-start;gap:1rem;}
.sr-badge-ok{flex-shrink:0;width:28px;height:28px;background:var(--green-bg);border-radius:50%;display:grid;place-items:center;}
.sr-badge-ok svg{width:14px;height:14px;stroke:var(--green);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.sr-badge-err{flex-shrink:0;width:28px;height:28px;background:var(--red-bg);border-radius:50%;display:grid;place-items:center;}
.sr-badge-err svg{width:14px;height:14px;stroke:var(--red);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.sr-title{font-size:.85rem;font-weight:700;color:var(--ink);margin-bottom:.2rem;}
.sr-meta{font-size:.77rem;color:var(--muted);line-height:1.5;}
.sr-meta span{color:var(--slate);font-weight:500;}
.sr-num{font-family:monospace;font-size:.8rem;font-weight:700;color:var(--gold);margin-top:.25rem;}
.sr-err-msg{font-size:.83rem;color:var(--red);font-weight:500;}
.sr-err-sub{font-size:.77rem;color:var(--muted);margin-top:.2rem;}

/* Registry panel */
.registry-panel{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);box-shadow:var(--s-xl);overflow:hidden;}
.rp-header{background:var(--ink);padding:1.25rem 1.5rem;display:flex;align-items:center;justify-content:space-between;}
.rp-title{font-size:.75rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.5);}
.rp-live{display:flex;align-items:center;gap:.4rem;font-size:.68rem;font-weight:600;letter-spacing:.06em;color:#86EFAC;}
.rp-live-dot{width:6px;height:6px;border-radius:50%;background:#86EFAC;animation:blink 1.5s ease-in-out infinite;}
.rp-stats{display:grid;grid-template-columns:1fr 1fr 1fr;border-bottom:1px solid var(--border);}
.rp-stat{padding:1.25rem 1.5rem;text-align:center;border-right:1px solid var(--border);}
.rp-stat:last-child{border-right:none;}
.rp-stat-val{font-family:var(--display);font-size:1.8rem;font-weight:700;color:var(--ink);line-height:1;}
.rp-stat-val sup{font-size:.45em;color:var(--gold);}
.rp-stat-lbl{font-size:.65rem;font-weight:500;color:var(--muted);text-transform:uppercase;letter-spacing:.07em;margin-top:.3rem;}
.rp-feed-header{padding:.85rem 1.5rem;font-size:.68rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--muted);background:var(--surface);border-bottom:1px solid var(--border);}
.rp-feed{padding:.5rem 0;}
.rp-entry{display:flex;align-items:center;gap:.85rem;padding:.65rem 1.5rem;border-bottom:1px solid var(--border);transition:background .15s;animation:slideIn .4s var(--ease);}
.rp-entry:last-child{border-bottom:none;}
.rp-entry:hover{background:var(--surface);}
@keyframes slideIn{from{opacity:0;transform:translateX(-8px)}to{opacity:1;transform:none}}
.rp-book-icon{width:32px;height:32px;border-radius:6px;background:var(--gold-pale);display:grid;place-items:center;flex-shrink:0;}
.rp-book-icon svg{width:15px;height:15px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.rp-entry-info{flex:1;min-width:0;}
.rp-entry-title{font-size:.8rem;font-weight:600;color:var(--ink);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.rp-entry-sub{font-size:.7rem;color:var(--muted);margin-top:.1rem;}
.rp-entry-num{font-family:monospace;font-size:.67rem;font-weight:700;color:var(--gold);background:var(--gold-pale);padding:.2rem .5rem;border-radius:4px;flex-shrink:0;}
.rp-footer{padding:1rem 1.5rem;border-top:1px solid var(--border);background:var(--surface);display:flex;align-items:center;justify-content:space-between;}
.rp-footer-link{font-size:.75rem;font-weight:600;color:var(--gold);text-decoration:none;display:flex;align-items:center;gap:.3rem;transition:gap .2s;cursor:pointer;background:none;border:none;font-family:var(--ui);}
.rp-footer-link:hover{gap:.55rem;}
.rp-footer-link svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.rp-uptime{font-size:.68rem;color:var(--muted);}
.rp-uptime strong{color:var(--green);font-weight:600;}

/* ═══════════════════════════════════════
   CARA KERJA
═══════════════════════════════════════ */
.steps-timeline{margin-top:3.5rem;display:flex;flex-direction:column;}
.step-row{display:grid;grid-template-columns:80px 1fr;gap:2rem;align-items:start;padding:2.5rem 0;border-bottom:1px solid var(--border);}
.step-row:last-child{border-bottom:none;}
.step-num-wrap{display:flex;flex-direction:column;align-items:center;gap:.5rem;}
.step-num{width:52px;height:52px;border-radius:50%;background:var(--ink);display:grid;place-items:center;font-family:var(--display);font-size:1.3rem;font-weight:700;font-style:italic;color:var(--gold-lt);flex-shrink:0;}
.step-line{width:2px;flex:1;background:var(--border);min-height:20px;}
.step-row:last-child .step-line{display:none;}
.step-content{padding-top:.35rem;}
.step-tag{font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem;}
.step-title{font-family:var(--display);font-size:1.3rem;font-weight:700;color:var(--ink);margin-bottom:.6rem;}
.step-body{font-size:.88rem;font-weight:300;color:var(--slate);line-height:1.85;margin-bottom:1rem;}
.step-detail{display:flex;flex-wrap:wrap;gap:.5rem;}
.step-chip{font-size:.72rem;font-weight:500;background:var(--surface);border:1px solid var(--border);color:var(--slate);padding:.28rem .75rem;border-radius:99px;}
.req-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;margin-top:3.5rem;}
.req-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:1.5rem;}
.req-icon{width:38px;height:38px;border-radius:8px;background:var(--gold-pale);display:grid;place-items:center;margin-bottom:1rem;}
.req-icon svg{width:17px;height:17px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.req-title{font-size:.9rem;font-weight:700;color:var(--ink);margin-bottom:.5rem;}
.req-list{list-style:none;display:flex;flex-direction:column;gap:.4rem;}
.req-list li{font-size:.82rem;color:var(--slate);display:flex;align-items:flex-start;gap:.5rem;}
.req-list li::before{content:'✓';color:var(--green);font-weight:700;font-size:.75rem;margin-top:.1rem;flex-shrink:0;}

/* ═══════════════════════════════════════
   FORMAT (dark)
═══════════════════════════════════════ */
.page-dark{background:var(--ink) !important;color:var(--white);}
.page-dark .breadcrumb{background:var(--ink-mid);border-bottom-color:rgba(255,255,255,.08);}
.page-dark .breadcrumb a{color:rgba(255,255,255,.4);}
.page-dark .breadcrumb a:hover{color:rgba(255,255,255,.8);}
.page-dark .breadcrumb span{color:rgba(255,255,255,.2);}
.page-dark .breadcrumb strong{color:rgba(255,255,255,.7);}
.fmt-layout{display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,6rem);align-items:center;margin-top:3.5rem;}
.fmt-display{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:var(--r-xl);padding:2.5rem 2rem;position:relative;}
.fmt-display::before{content:'';position:absolute;top:0;left:2rem;right:2rem;height:1px;background:linear-gradient(90deg,transparent,var(--gold-lt),transparent);}
.fmt-tag{font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:1.25rem;}
.fmt-number{font-family:'Courier New',monospace;font-size:clamp(1rem,4vw,1.85rem);font-weight:700;letter-spacing:.1em;line-height:1;margin-bottom:2rem;}
.fs0{color:var(--gold-lt);}.fs1{color:#93C5FD;}.fs2{color:#86EFAC;}.fs3{color:#FCA5A5;}.fs4{color:#C4B5FD;}.fsx{color:rgba(255,255,255,.2);}
.fmt-segs{display:flex;flex-direction:column;gap:.4rem;}
.fmt-seg{display:flex;align-items:center;gap:.75rem;padding:.55rem .8rem;border-radius:8px;background:rgba(255,255,255,.03);border:1px solid transparent;transition:all .2s;}
.fmt-seg:hover{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.08);}
.fmt-pip{width:3px;height:22px;border-radius:2px;flex-shrink:0;}
.fp0{background:var(--gold-lt);}.fp1{background:#93C5FD;}.fp2{background:#86EFAC;}.fp3{background:#FCA5A5;}.fp4{background:#C4B5FD;}
.fmt-code{font-family:monospace;font-size:.75rem;font-weight:700;color:rgba(255,255,255,.65);min-width:52px;}
.fmt-desc{font-size:.75rem;font-weight:300;color:rgba(255,255,255,.35);}
.fmt-facts{display:flex;flex-direction:column;gap:1.25rem;}
.fmt-fact{display:flex;gap:1rem;align-items:flex-start;padding:1.25rem;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);border-radius:var(--r-md);transition:all .2s;}
.fmt-fact:hover{background:rgba(255,255,255,.07);}
.ff-icon{width:34px;height:34px;flex-shrink:0;background:rgba(181,131,42,.15);border-radius:8px;display:grid;place-items:center;}
.ff-icon svg{width:15px;height:15px;stroke:var(--gold-lt);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.ff-title{font-size:.85rem;font-weight:600;color:rgba(255,255,255,.8);margin-bottom:.3rem;}
.ff-body{font-size:.78rem;font-weight:300;color:rgba(255,255,255,.35);line-height:1.75;}
.compare-wrap{margin-top:3.5rem;}
.compare-title{font-family:var(--display);font-size:1.4rem;font-weight:700;color:var(--white);margin-bottom:1.5rem;}
.compare-table{width:100%;border-collapse:collapse;border-radius:var(--r-lg);overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,.3);}
.compare-table th{background:rgba(255,255,255,.08);color:rgba(255,255,255,.5);font-size:.72rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;padding:.85rem 1.25rem;text-align:left;}
.compare-table td{padding:.85rem 1.25rem;font-size:.85rem;border-bottom:1px solid rgba(255,255,255,.06);color:rgba(255,255,255,.65);}
.compare-table tr:last-child td{border-bottom:none;}
.compare-table tr:hover td{background:rgba(255,255,255,.04);}
.td-feat{font-weight:500;color:rgba(255,255,255,.8);}
.td-yes{color:#86EFAC;font-weight:600;}
.td-yes::before{content:'✓  ';}
.td-no{color:#FCA5A5;}
.td-no::before{content:'✗  ';}

/* ═══════════════════════════════════════
   TENTANG
═══════════════════════════════════════ */
.about-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:clamp(3rem,6vw,6rem);align-items:start;margin-top:3.5rem;}
.about-quote{font-family:var(--display);font-size:clamp(1.15rem,2vw,1.5rem);font-style:italic;font-weight:500;color:var(--ink);line-height:1.6;padding-left:1.25rem;border-left:3px solid var(--gold);margin-bottom:1.75rem;}
.about-text{font-size:.91rem;font-weight:300;color:var(--slate);line-height:1.9;}
.pillars{display:flex;flex-direction:column;}
.pl-item{display:grid;grid-template-columns:40px 1fr;gap:1rem;padding:1.5rem 0;border-bottom:1px solid var(--border);align-items:start;}
.pl-item:first-child{border-top:1px solid var(--border);}
.pl-icon{width:36px;height:36px;background:var(--white);border:1px solid var(--border);border-radius:var(--r-sm);display:grid;place-items:center;transition:all .2s;}
.pl-item:hover .pl-icon{background:var(--gold-pale);border-color:rgba(181,131,42,.25);}
.pl-icon svg{width:16px;height:16px;stroke:var(--slate);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:stroke .2s;}
.pl-item:hover .pl-icon svg{stroke:var(--gold);}
.pl-title{font-size:.88rem;font-weight:700;color:var(--ink);margin-bottom:.35rem;}
.pl-body{font-size:.82rem;font-weight:300;color:var(--muted);line-height:1.75;}
.vm-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:3.5rem;}
.vm-card{padding:2rem;border-radius:var(--r-lg);border:1px solid var(--border);}
.vm-card.vision{background:var(--ink);border-color:transparent;}
.vm-card.mission{background:var(--surface);}
.vm-label{font-size:.65rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;margin-bottom:.75rem;}
.vm-card.vision .vm-label{color:var(--gold-lt);}
.vm-card.mission .vm-label{color:var(--gold);}
.vm-text{font-family:var(--display);font-size:1.1rem;font-style:italic;line-height:1.6;}
.vm-card.vision .vm-text{color:rgba(255,255,255,.85);}
.vm-card.mission .vm-text{color:var(--ink);}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:3.5rem;}
.team-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:1.75rem;text-align:center;transition:all .25s;}
.team-card:hover{box-shadow:var(--s-md);transform:translateY(-3px);}
.team-avatar{width:56px;height:56px;border-radius:50%;background:var(--ink);display:grid;place-items:center;margin:0 auto 1rem;font-family:var(--display);font-size:1.3rem;font-weight:700;font-style:italic;color:var(--gold-lt);}
.team-name{font-size:.9rem;font-weight:700;color:var(--ink);margin-bottom:.2rem;}
.team-role{font-size:.75rem;color:var(--muted);}

/* ═══════════════════════════════════════
   TESTIMONI
═══════════════════════════════════════ */
.stats-banner{background:var(--ink);border-radius:var(--r-xl);padding:3rem 2.5rem;margin-bottom:3.5rem;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center;}
.sb-val{font-family:var(--display);font-size:2.2rem;font-weight:700;color:var(--white);line-height:1;}
.sb-val sup{font-size:.45em;color:var(--gold-lt);}
.sb-label{font-size:.68rem;font-weight:500;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.08em;margin-top:.35rem;}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;}
.testi{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:1.75rem;transition:all .25s;}
.testi:hover{box-shadow:var(--s-md);transform:translateY(-2px);}
.testi-stars{display:flex;gap:2px;margin-bottom:1rem;}
.testi-stars svg{width:13px;height:13px;fill:var(--gold);stroke:none;}
.testi-text{font-family:var(--display);font-size:.95rem;font-style:italic;font-weight:500;color:var(--ink);line-height:1.65;margin-bottom:1.25rem;}
.testi-author{display:flex;align-items:center;gap:.65rem;}
.testi-avatar{width:34px;height:34px;border-radius:50%;background:var(--ink);display:grid;place-items:center;flex-shrink:0;font-family:var(--display);font-size:.85rem;font-weight:700;color:var(--gold-lt);font-style:italic;}
.testi-name{font-size:.82rem;font-weight:600;color:var(--ink);}
.testi-role{font-size:.72rem;color:var(--muted);}

/* ═══════════════════════════════════════
   AUTH PAGES (Daftar & Login)
═══════════════════════════════════════ */
.auth-wrap{min-height:calc(100vh - 130px);display:flex;align-items:stretch;}
.auth-left{flex:1;background:var(--ink);padding:clamp(3rem,7vw,6rem) clamp(2rem,5vw,4rem);display:flex;flex-direction:column;justify-content:center;position:relative;overflow:hidden;}
.auth-left::before{content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.03) 1px,transparent 1px);background-size:22px 22px;pointer-events:none;}
.auth-left::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 20% 80%,rgba(181,131,42,.1),transparent 65%);pointer-events:none;}
.auth-left-inner{position:relative;z-index:1;max-width:380px;}
.auth-tagline{font-family:var(--display);font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:800;line-height:1.15;letter-spacing:-.02em;color:var(--white);margin-bottom:1.25rem;}
.auth-tagline em{font-style:italic;color:var(--gold-lt);}
.auth-desc{font-size:.9rem;font-weight:300;color:rgba(255,255,255,.45);line-height:1.85;margin-bottom:2.5rem;}
.auth-perks{display:flex;flex-direction:column;gap:.85rem;}
.auth-perk{display:flex;align-items:center;gap:.75rem;font-size:.83rem;color:rgba(255,255,255,.6);}
.auth-perk-dot{width:7px;height:7px;border-radius:50%;background:var(--gold-lt);flex-shrink:0;}
.auth-right{flex:1;background:var(--surface);padding:clamp(3rem,7vw,5rem) clamp(2rem,5vw,4rem);display:flex;flex-direction:column;justify-content:center;}
.auth-box{max-width:420px;width:100%;margin:0 auto;}
.auth-title{font-family:var(--display);font-size:1.65rem;font-weight:800;color:var(--ink);margin-bottom:.4rem;}
.auth-sub{font-size:.82rem;color:var(--muted);margin-bottom:2rem;}
.auth-sub a{color:var(--gold);text-decoration:none;font-weight:600;cursor:pointer;}
.auth-sub a:hover{text-decoration:underline;}

/* Form elements */
.form-group{display:flex;flex-direction:column;gap:.45rem;margin-bottom:1.1rem;}
.form-label{font-size:.75rem;font-weight:600;color:var(--ink);letter-spacing:.02em;}
.form-label .req{color:var(--red);}
.form-input,.form-select{font-family:var(--ui);font-size:.88rem;color:var(--ink);background:var(--white);border:1.5px solid var(--border);border-radius:var(--r-sm);padding:.65rem .9rem;outline:none;transition:border-color .2s,box-shadow .2s;width:100%;}
.form-input:focus,.form-select:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(181,131,42,.1);}
.form-input::placeholder{color:var(--pale);}
.form-select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237B8FA6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .9rem center;padding-right:2.5rem;cursor:pointer;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.form-divider{border:none;border-top:1px solid var(--border);margin:1.25rem 0;}
.form-submit{width:100%;font-family:var(--ui);font-size:.9rem;font-weight:700;color:var(--white);background:var(--ink);border:none;padding:.9rem;border-radius:var(--r-md);cursor:pointer;transition:all .2s;display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:.5rem;}
.form-submit:hover{background:var(--ink-mid);transform:translateY(-1px);box-shadow:var(--s-md);}
.form-submit svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.form-note{font-size:.72rem;color:var(--muted);text-align:center;margin-top:.75rem;}
.form-note a{color:var(--gold);text-decoration:none;}
.check-row{display:flex;align-items:flex-start;gap:.65rem;margin-bottom:1rem;}
.check-row input[type=checkbox]{margin-top:.2rem;accent-color:var(--gold);cursor:pointer;flex-shrink:0;width:15px;height:15px;}
.check-row label{font-size:.78rem;color:var(--slate);line-height:1.55;cursor:pointer;}
.check-row label a{color:var(--gold);text-decoration:none;}
.pw-strength{display:flex;gap:4px;margin-top:.4rem;}
.pw-bar{flex:1;height:3px;border-radius:2px;background:var(--border);transition:background .3s;}
.pw-bar.weak{background:var(--red);}
.pw-bar.ok{background:var(--gold);}
.pw-bar.strong{background:var(--green);}
.pw-hint{font-size:.68rem;color:var(--muted);margin-top:.3rem;}
.auth-divider{display:flex;align-items:center;gap:.75rem;margin:1.5rem 0;}
.auth-divider::before,.auth-divider::after{content:'';flex:1;height:1px;background:var(--border);}
.auth-divider span{font-size:.72rem;color:var(--muted);font-weight:500;white-space:nowrap;}
.social-btns{display:grid;grid-template-columns:1fr 1fr;gap:.65rem;margin-bottom:1rem;}
.social-btn{font-family:var(--ui);font-size:.8rem;font-weight:600;color:var(--slate);background:var(--white);border:1.5px solid var(--border);padding:.7rem;border-radius:var(--r-md);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.5rem;transition:all .2s;}
.social-btn:hover{border-color:var(--pale);background:var(--surface);}
.label-row{display:flex;align-items:center;justify-content:space-between;}
.forgot-link{font-size:.75rem;color:var(--gold);text-decoration:none;font-weight:500;}
.forgot-link:hover{text-decoration:underline;}

/* Success state */
.form-success{display:none;text-align:center;padding:2.5rem 1rem;}
.form-success.show{display:block;}
.success-icon{width:60px;height:60px;border-radius:50%;background:var(--green-bg);display:grid;place-items:center;margin:0 auto 1.25rem;}
.success-icon svg{width:26px;height:26px;stroke:var(--green);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.success-title{font-family:var(--display);font-size:1.5rem;font-weight:700;color:var(--ink);margin-bottom:.5rem;}
.success-sub{font-size:.88rem;color:var(--muted);line-height:1.7;}

/* Login card (standalone center) */
/* ── LOGIN DEMO BOX ─────────────────────── */
.demo-box{background:var(--gold-pale);border:1px solid rgba(181,131,42,.25);border-radius:var(--r-md);padding:.9rem;margin-bottom:1.25rem;}
.demo-box-label{display:flex;align-items:center;gap:.45rem;font-size:.68rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--gold);margin-bottom:.75rem;}
.demo-box-label svg{width:13px;height:13px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.demo-accounts{display:flex;flex-direction:column;gap:.45rem;}
.demo-btn{width:100%;background:var(--white);border:1px solid rgba(181,131,42,.2);border-radius:var(--r-sm);padding:.6rem .85rem;display:flex;align-items:center;gap:.75rem;cursor:pointer;transition:all .15s;text-align:left;font-family:var(--ui);}
.demo-btn:hover{background:var(--gold-pale);border-color:var(--gold);transform:translateX(2px);}
.demo-btn-avatar{width:28px;height:28px;border-radius:50%;background:var(--ink);display:grid;place-items:center;font-family:var(--display);font-size:.8rem;font-weight:700;font-style:italic;color:var(--gold-lt);flex-shrink:0;}
.demo-btn-name{font-size:.78rem;font-weight:600;color:var(--ink);}
.demo-btn-email{font-size:.68rem;color:var(--muted);}
.demo-btn-pw{margin-left:auto;font-family:monospace;font-size:.7rem;background:var(--surface);border:1px solid var(--border);padding:.15rem .5rem;border-radius:4px;color:var(--slate);white-space:nowrap;flex-shrink:0;}

.login-wrap{min-height:calc(100vh - 130px);display:grid;place-items:center;background:var(--surface);padding:3rem 1.5rem;}
.login-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);box-shadow:var(--s-lg);padding:2.75rem 2.5rem;width:100%;max-width:420px;}
.login-logo{display:flex;align-items:center;gap:.6rem;margin-bottom:2rem;}
.login-logo .logo-emblem{width:32px;height:32px;border-radius:7px;}
.login-logo .logo-name strong{font-size:.95rem;}
.login-logo .logo-name span{font-size:.62rem;}
.login-title{font-family:var(--display);font-size:1.6rem;font-weight:800;color:var(--ink);margin-bottom:.35rem;}
.login-sub{font-size:.82rem;color:var(--muted);margin-bottom:2rem;}
.login-sub a{color:var(--gold);text-decoration:none;font-weight:600;cursor:pointer;}
.login-sub a:hover{text-decoration:underline;}
.login-footer{text-align:center;margin-top:1.5rem;font-size:.78rem;color:var(--muted);}
.login-footer a{color:var(--gold);text-decoration:none;font-weight:600;cursor:pointer;}

/* ═══════════════════════════════════════
   HALAMAN DAFTAR — layout baru
═══════════════════════════════════════ */
.daftar-bg{background:var(--surface);min-height:calc(100vh - 130px);display:flex;align-items:flex-start;justify-content:center;padding:3rem 1.5rem 4rem;}
.daftar-wrap{width:100%;max-width:900px;display:grid;grid-template-columns:1fr 1.15fr;gap:2.5rem;align-items:start;}
.daftar-left{position:sticky;top:90px;background:var(--ink);border-radius:var(--r-xl);padding:2.5rem 2rem;overflow:hidden;position:relative;}
.daftar-left::before{content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.03) 1px,transparent 1px);background-size:20px 20px;pointer-events:none;}
.daftar-left::after{content:'';position:absolute;bottom:0;left:0;right:0;height:50%;background:radial-gradient(ellipse 80% 60% at 50% 100%,rgba(181,131,42,.15),transparent 70%);pointer-events:none;}
.daftar-brand{display:flex;align-items:center;gap:.6rem;position:relative;z-index:1;margin-bottom:.25rem;}
.daftar-tagline{font-family:var(--display);font-size:clamp(1.35rem,2.5vw,1.8rem);font-weight:800;line-height:1.2;letter-spacing:-.02em;color:var(--white);margin-bottom:1rem;position:relative;z-index:1;}
.daftar-tagline em{font-style:italic;color:var(--gold-lt);}
.daftar-desc{font-size:.82rem;font-weight:300;color:rgba(255,255,255,.4);line-height:1.8;margin-bottom:2rem;position:relative;z-index:1;}
.daftar-perks{display:flex;flex-direction:column;gap:.85rem;position:relative;z-index:1;}
.daftar-perk{display:flex;align-items:center;gap:.75rem;font-size:.8rem;color:rgba(255,255,255,.6);}
.daftar-perk-icon{width:22px;height:22px;border-radius:50%;background:rgba(212,168,75,.2);border:1px solid rgba(212,168,75,.3);display:grid;place-items:center;flex-shrink:0;}
.daftar-perk-icon svg{width:11px;height:11px;stroke:var(--gold-lt);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.daftar-right{display:flex;flex-direction:column;}
.daftar-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);padding:2.25rem 2rem;box-shadow:var(--s-md);}
.daftar-card-title{font-family:var(--display);font-size:1.4rem;font-weight:800;color:var(--ink);margin-bottom:.35rem;}
.daftar-card-sub{font-size:.82rem;color:var(--muted);margin-bottom:1.75rem;}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer{background:var(--ink);border-top:1px solid rgba(255,255,255,.06);}
.footer-top{max-width:1200px;margin:0 auto;padding:3.5rem 2rem 2.5rem;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;}
.ft-logo{text-decoration:none;display:flex;align-items:center;gap:.65rem;margin-bottom:1rem;}
.ft-emblem{width:32px;height:32px;background:rgba(255,255,255,.08);border-radius:7px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:3px;padding:7px 8px;}
.ft-emblem span{display:block;background:rgba(255,255,255,.6);border-radius:1px;height:2px;}
.ft-emblem span:nth-child(1){width:100%;}
.ft-emblem span:nth-child(2){width:72%;opacity:.6;}
.ft-emblem span:nth-child(3){width:45%;opacity:.4;}
.ft-logo-name strong{font-size:.95rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--white);}
.ft-logo-name span{font-family:var(--display);font-size:.65rem;font-style:italic;color:var(--gold-lt);}
.ft-desc{font-size:.8rem;font-weight:300;color:rgba(255,255,255,.35);line-height:1.8;max-width:240px;margin-bottom:1.25rem;}
.ft-badge{display:inline-flex;align-items:center;gap:.4rem;font-size:.65rem;font-weight:600;letter-spacing:.07em;color:rgba(255,255,255,.35);border:1px solid rgba(255,255,255,.1);padding:.28rem .7rem;border-radius:99px;}
.ft-badge svg{width:11px;height:11px;stroke:var(--green);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.ft-col-title{font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:1rem;}
.ft-col ul{list-style:none;display:flex;flex-direction:column;gap:.55rem;}
.ft-col a{font-size:.8rem;color:rgba(255,255,255,.4);text-decoration:none;transition:color .2s;}
.ft-col a:hover{color:rgba(255,255,255,.8);}
.footer-bottom{max-width:1200px;margin:0 auto;padding:1.25rem 2rem;border-top:1px solid rgba(255,255,255,.06);display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;}
.fb-copy{font-size:.72rem;color:rgba(255,255,255,.2);}
.fb-links{display:flex;gap:1.5rem;}
.fb-links a{font-size:.72rem;color:rgba(255,255,255,.2);text-decoration:none;transition:color .2s;}
.fb-links a:hover{color:rgba(255,255,255,.5);}

/* ═══════════════════════════════════════
   HALAMAN DETAIL BUKU
═══════════════════════════════════════ */
/* breadcrumb sudah ada di utilities */

/* hero strip */
.det-hero{background:var(--ink);padding:2.5rem 2rem 3rem;position:relative;overflow:hidden;}
.det-hero::before{content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.04) 1px,transparent 1px);background-size:24px 24px;pointer-events:none;}
.det-hero::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 55% 80% at 85% 50%,rgba(181,131,42,.14),transparent 65%);pointer-events:none;}
.det-hero-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr auto;gap:3rem;align-items:center;position:relative;z-index:1;}
.det-cat-badge{display:inline-flex;font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-lt);background:rgba(212,168,75,.12);border:1px solid rgba(212,168,75,.25);padding:.3rem .8rem;border-radius:99px;margin-bottom:1rem;}
.det-title{font-family:var(--display);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;line-height:1.15;letter-spacing:-.02em;color:var(--white);margin-bottom:.5rem;}
.det-subtitle{font-size:.9rem;font-weight:300;color:rgba(255,255,255,.4);margin-bottom:1.25rem;}
.det-meta-row{display:flex;flex-wrap:wrap;gap:1.25rem;margin-bottom:1.5rem;}
.det-meta-item{display:flex;align-items:center;gap:.45rem;font-size:.8rem;color:rgba(255,255,255,.55);}
.det-meta-item svg{width:14px;height:14px;stroke:var(--gold-lt);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.det-status-badge{display:inline-flex;align-items:center;gap:.5rem;font-size:.72rem;font-weight:600;letter-spacing:.05em;padding:.35rem .9rem;border-radius:99px;}
.det-status-aktif{background:rgba(22,163,74,.15);border:1px solid rgba(22,163,74,.3);color:#86EFAC;}
.det-status-dot{width:6px;height:6px;border-radius:50%;background:#86EFAC;animation:blink 2s ease-in-out infinite;}

/* QSBN card di hero kanan */
.det-qsbn-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--r-xl);padding:1.75rem 1.5rem;min-width:280px;position:relative;}
.det-qsbn-card::before{content:'';position:absolute;top:0;left:1.5rem;right:1.5rem;height:1px;background:linear-gradient(90deg,transparent,var(--gold-lt),transparent);}
.det-qsbn-label{font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:.85rem;}
.det-qsbn-num{font-family:'Courier New',monospace;font-size:1.1rem;font-weight:700;letter-spacing:.07em;line-height:1;margin-bottom:1.5rem;}
/* barcode & QR */
.det-barcode-wrap{background:#fff;border-radius:8px;padding:.5rem .5rem .25rem;margin-bottom:.75rem;display:flex;justify-content:center;min-height:90px;align-items:center;}
.det-barcode-svg{max-width:100%;height:auto;}
.det-qr-wrap{display:flex;flex-direction:column;align-items:center;gap:.35rem;margin-bottom:.85rem;}
.det-qr-canvas{border-radius:6px;background:#fff;padding:4px;}
.det-qr-label{font-size:.6rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.3);}
.det-barcode-url{font-size:.6rem;color:rgba(255,255,255,.25);text-align:center;margin-bottom:.85rem;word-break:break-all;letter-spacing:.02em;}
.det-qsbn-actions{display:flex;align-items:center;gap:.75rem;}
.det-copy-btn{font-family:var(--ui);font-size:.75rem;font-weight:600;color:rgba(255,255,255,.7);background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);padding:.5rem 1rem;border-radius:var(--r-md);cursor:pointer;display:flex;align-items:center;gap:.4rem;transition:all .2s;}
.det-copy-btn:hover{background:rgba(255,255,255,.14);color:var(--white);}
.det-copy-btn svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.det-verify-badge{display:flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:600;color:#86EFAC;}
.det-verify-badge svg{width:13px;height:13px;stroke:#86EFAC;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

/* body layout */
.det-body{background:var(--surface);padding:2.5rem 2rem;}
.det-body-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 320px;gap:2.5rem;align-items:start;}

/* sections */
.det-main{display:flex;flex-direction:column;gap:1.5rem;}
.det-section{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:1.75rem;}
.det-section-title{display:flex;align-items:center;gap:.6rem;font-size:.78rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:1.25rem;padding-bottom:.85rem;border-bottom:1px solid var(--border);}
.det-section-title svg{width:15px;height:15px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.det-desc{font-size:.9rem;font-weight:300;color:var(--slate);line-height:1.9;}

/* table data */
.det-table{display:flex;flex-direction:column;}
.det-row{display:grid;grid-template-columns:160px 1fr;gap:1rem;padding:.65rem 0;border-bottom:1px solid var(--border);}
.det-row:last-child{border-bottom:none;}
.det-key{font-size:.78rem;font-weight:600;color:var(--muted);}
.det-val{font-size:.85rem;color:var(--ink);}
.det-val-sub{color:var(--muted);font-size:.8rem;}
.det-val-link{color:var(--gold);cursor:pointer;}
.det-val-link:hover{text-decoration:underline;}
.det-mono{font-family:monospace;font-size:.82rem;letter-spacing:.04em;}

/* author card */
.det-author-card{display:flex;gap:1rem;align-items:flex-start;}
.det-author-avatar{width:48px;height:48px;border-radius:50%;background:var(--ink);display:grid;place-items:center;font-family:var(--display);font-size:1.2rem;font-weight:700;font-style:italic;color:var(--gold-lt);flex-shrink:0;}
.det-author-name{font-size:.9rem;font-weight:700;color:var(--ink);margin-bottom:.35rem;}
.det-author-bio{font-size:.82rem;font-weight:300;color:var(--slate);line-height:1.75;}

/* sidebar cards */
.det-sidebar{display:flex;flex-direction:column;gap:1.25rem;position:sticky;top:90px;}
.det-side-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:1.35rem;}
.det-side-card-title{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-bottom:1rem;padding-bottom:.65rem;border-bottom:1px solid var(--border);}
.det-side-row{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.5rem 0;border-bottom:1px solid var(--border);}
.det-side-row:last-of-type{border-bottom:none;}
.det-side-key{font-size:.75rem;color:var(--muted);}
.det-side-val{font-size:.78rem;font-weight:600;color:var(--ink);text-align:right;}
.det-mono-sm{font-family:monospace;font-size:.72rem;color:var(--gold);}
.det-pill{font-size:.65rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;padding:.2rem .6rem;border-radius:99px;}
.det-pill-green{background:var(--green-bg);color:var(--green);}
.det-copy-btn-full{width:100%;justify-content:center;margin-top:.25rem;padding:.65rem;}
.det-pub-badge{width:44px;height:44px;border-radius:var(--r-md);background:var(--ink);display:grid;place-items:center;font-family:var(--display);font-size:1.2rem;font-weight:700;color:var(--gold-lt);font-style:italic;margin-bottom:.75rem;}
.det-pub-name{font-size:.88rem;font-weight:700;color:var(--ink);margin-bottom:.3rem;}
.det-pub-city{display:flex;align-items:center;gap:.35rem;font-size:.78rem;color:var(--muted);margin-bottom:.5rem;}
.det-pub-city svg{width:12px;height:12px;stroke:var(--muted);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.det-pub-web{display:flex;align-items:center;gap:.35rem;font-size:.75rem;color:var(--gold);text-decoration:none;}
.det-pub-web:hover{text-decoration:underline;}
.det-pub-web svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.det-tags{display:flex;flex-wrap:wrap;gap:.4rem;}
.det-tag{font-size:.7rem;font-weight:500;background:var(--surface);border:1px solid var(--border);color:var(--slate);padding:.25rem .65rem;border-radius:99px;}
.det-side-card-cta{background:var(--gold-pale);border-color:rgba(181,131,42,.2);text-align:center;}
.det-side-card-cta p{font-size:.8rem;color:var(--slate);margin-bottom:.85rem;}
.det-back-btn{width:100%;font-family:var(--ui);font-size:.8rem;font-weight:600;color:var(--ink);background:var(--white);border:1.5px solid var(--border);padding:.6rem;border-radius:var(--r-md);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.4rem;transition:all .2s;margin-bottom:.5rem;}
.det-back-btn:hover{border-color:var(--gold);color:var(--gold);}
.det-back-btn svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.det-daftar-btn{width:100%;font-family:var(--ui);font-size:.8rem;font-weight:700;color:var(--ink);background:var(--gold);border:none;padding:.7rem;border-radius:var(--r-md);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.4rem;transition:all .2s;}
.det-daftar-btn:hover{background:var(--gold-lt);transform:translateY(-1px);}
.det-daftar-btn svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}

/* ── NOT FOUND ────────────────────────── */
.nf-wrap{max-width:560px;margin:0 auto;padding:5rem 2rem;text-align:center;}
.nf-icon{width:72px;height:72px;border-radius:50%;background:var(--red-bg);display:grid;place-items:center;margin:0 auto 1.5rem;}
.nf-icon svg{width:30px;height:30px;stroke:var(--red);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
.nf-title{font-family:var(--display);font-size:1.8rem;font-weight:800;color:var(--ink);margin-bottom:.65rem;}
.nf-sub{font-size:.92rem;color:var(--muted);margin-bottom:2.5rem;line-height:1.7;}
.nf-tips{display:flex;flex-direction:column;gap:.75rem;margin-bottom:2.5rem;text-align:left;}
.nf-tip{display:flex;align-items:flex-start;gap:.85rem;background:var(--surface);border:1px solid var(--border);border-radius:var(--r-md);padding:1rem;}
.nf-tip-num{width:22px;height:22px;border-radius:50%;background:var(--ink);color:var(--white);font-size:.65rem;font-weight:700;display:grid;place-items:center;flex-shrink:0;margin-top:.05rem;}
.nf-tip{font-size:.83rem;color:var(--slate);line-height:1.65;}
.nf-tip code{font-family:monospace;background:var(--border);padding:.1rem .35rem;border-radius:4px;font-size:.8rem;}
.nf-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1100px){
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem;}
  .cta-strip-inner{grid-template-columns:1fr;gap:2.5rem;}
  .cta-actions{min-width:unset;max-width:360px;}
  .stats-banner{grid-template-columns:repeat(2,1fr);gap:1.5rem;}
  .testi-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:860px){
  .nav-links,.nav-search,.btn-nav{display:none;}
  .nav-hamburger{display:flex;}
  .nav-right{gap:.5rem;}
  .footer-top{grid-template-columns:1fr 1fr;}
  .hero-inner{grid-template-columns:1fr;}
  .hero-inner>div:last-child{display:none;}
  .auth-left{display:none;}
  .auth-right{padding:2.5rem 1.5rem;}
  .about-grid{grid-template-columns:1fr;gap:2.5rem;}
  .vm-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .req-grid{grid-template-columns:1fr;}
  .fmt-layout{grid-template-columns:1fr;gap:2.5rem;}
  .step-row{grid-template-columns:50px 1fr;gap:1rem;}
  .daftar-wrap{grid-template-columns:1fr;}
  .daftar-left{position:static;}
  /* detail */
  .det-hero-inner{grid-template-columns:1fr;}
  .det-qsbn-card{min-width:unset;}
  .det-body-inner{grid-template-columns:1fr;}
  .det-sidebar{position:static;}
}
@media(max-width:640px){
  .ann-bar{font-size:.68rem;padding:.55rem .85rem;}
  .lang-pill{display:none;}
  .section{padding:3rem 1.25rem;}
  .sec-h2{font-size:clamp(1.6rem,7vw,2.2rem);}
  .page-header{padding:2.5rem 1.25rem;}
  .breadcrumb{padding:.75rem 1.25rem;}
  .trust-strip{padding:.85rem 1.25rem;}
  .trust-inner{display:grid;grid-template-columns:1fr 1fr;gap:.65rem 1rem;justify-items:start;}
  .trust-sep{display:none;}
  .cta-strip{padding:3rem 1.25rem;}
  .footer-top{grid-template-columns:1fr;padding:2.5rem 1.25rem 2rem;gap:2rem;}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:.75rem;padding:1rem 1.25rem;}
  .hero{padding:2.5rem 1.25rem 2rem;}
  .hero-h1{font-size:clamp(2.2rem,9vw,3rem);}
  .hero-p{font-size:.9rem;max-width:100%;}
  .form-row{grid-template-columns:1fr;}
  .stats-banner{grid-template-columns:1fr 1fr;padding:2rem 1.5rem;}
  .testi-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
  .fmt-number{font-size:clamp(1rem,5vw,1.3rem);}
  .fmt-display{padding:1.75rem 1.25rem;}
  .login-card{padding:2rem 1.5rem;}
}
