/* ══════════════════════════════════════════════════════════════
   BulkMetrik — Landing v2 (standalone)
   Basis: demo AI-Native SaaS UI (test.php)
   Font: Inter (utama) + JetBrains Mono (data/terminal)
   ══════════════════════════════════════════════════════════════ */

:root {
    --bg-color:     #050505;
    --bg-soft:      #0a0a0a;
    --grid-color:   rgba(255,255,255,.04);
    --text-main:    #ededed;
    --text-muted:   #888888;
    --text-dim:     #555555;
    --accent-glow:  rgba(255,255,255,.15);
    --border-color: rgba(255,255,255,.08);
    --border-hover: rgba(255,255,255,.20);
    --gold:         #d4af37;
    --gold-dim:     rgba(212,175,55,.12);
    --green:        #27c93f;
    --blue:         #5b9cf8;
    --red:          #f87171;
    --ease:         cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* ── BACKGROUND GRID + RADIAL MASK ── */
.bg-grid {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; background-size: 40px 40px;
    background-image:
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
    -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
            mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
}

/* ── NAVBAR ── */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(5,5,5,.72);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
            backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--border-color);
}
.nav-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 20px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
}
.brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 1.05rem; color: #fff;
    text-decoration: none; letter-spacing: -.3px;
}
.brand-logo {
    width: 30px; height: 30px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-soft); border: 1px solid var(--border-color);
}
.brand-logo img { width: 19px; height: 19px; object-fit: contain; }
.brand .accent { color: var(--text-muted); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
    color: var(--text-muted); text-decoration: none; font-size: .875rem;
    padding: 8px 14px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.04); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.icon-btn {
    width: 38px; height: 38px; border-radius: 9px; cursor: pointer;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    color: var(--text-muted); display: flex; align-items: center; justify-content: center;
    font-size: .95rem; transition: color .2s, border-color .2s;
}
.icon-btn:hover { color: #fff; border-color: var(--border-hover); }
.nav-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 16px; border-radius: 9px; font-size: .84rem; font-weight: 600;
    text-decoration: none; border: 1px solid var(--border-color);
    color: var(--text-main); background: var(--bg-soft);
    transition: border-color .2s, color .2s;
}
.nav-btn:hover { border-color: var(--border-hover); color: #fff; }
.nav-btn.solid { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.nav-btn.ghost {
    background: none; border-color: transparent; color: var(--text-muted);
    padding: 9px 12px; font-weight: 500;
}
.nav-btn.ghost:hover { color: #fff; background: rgba(255,255,255,.04); border-color: transparent; }
.nav-btn.ghost i { font-size: .82rem; }
.nav-btn.solid:hover { filter: brightness(1.07); color: #0a0a0a; }
.nav-mobile-only { display: none; }
.burger {
    display: none; width: 38px; height: 38px; border-radius: 9px; cursor: pointer;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    color: var(--text-main); align-items: center; justify-content: center;
}

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 100px 20px; }

/* ── HEADER (center, ala demo) ── */
.header { text-align: center; margin-bottom: 80px; }
.micro-label {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px; border: 1px solid var(--border-color); border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 22px; color: var(--text-muted);
    background: rgba(255,255,255,.02);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.micro-label .live {
    width: 6px; height: 6px; border-radius: 50%; background: var(--green);
    animation: pulse 2.4s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(39,201,63,.45); }
    70%  { box-shadow: 0 0 0 7px rgba(39,201,63,0); }
    100% { box-shadow: 0 0 0 0 rgba(39,201,63,0); }
}
.title {
    font-size: clamp(2.1rem, 5.2vw, 3.5rem);
    font-weight: 600; letter-spacing: -1.5px; line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff, #888);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ── FORM ── */
.check-form { max-width: 520px; margin: 32px auto 0; }
.field {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 11px; padding: 5px 5px 5px 16px;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field:focus-within { border-color: var(--border-hover); box-shadow: 0 0 0 4px rgba(255,255,255,.04); }
.field > i { color: var(--text-dim); font-size: .95rem; }
.field input {
    flex: 1; background: none; border: none; outline: none; color: var(--text-main);
    font-family: 'Inter', sans-serif; font-size: .95rem; padding: 12px 0;
}
.field input::placeholder { color: var(--text-dim); }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--gold); color: #0a0a0a; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem;
    padding: 11px 20px; border-radius: 9px; white-space: nowrap; text-decoration: none;
    transition: filter .2s, box-shadow .2s var(--ease), transform .15s;
}
.btn:hover { filter: brightness(1.07); box-shadow: 0 10px 28px -10px rgba(212,175,55,.55); }
.btn:active { transform: translateY(1px); }

/* ── PROOF ── */
.proof {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-top: 26px;
}
.avs { display: flex; }
.av {
    width: 30px; height: 30px; border-radius: 50%; overflow: hidden;
    border: 2px solid var(--bg-color); margin-left: -9px;
    display: flex; align-items: center; justify-content: center;
    background: #1a1a1a; color: var(--text-muted); font-size: .75rem; font-weight: 600;
}
.av:first-child { margin-left: 0; }
.av img { width: 100%; height: 100%; object-fit: cover; }
.proof-txt { font-size: .84rem; color: var(--text-muted); text-align: left; line-height: 1.45; }
.proof-txt strong { color: var(--text-main); }
.proof-txt small { display: block; font-family: 'JetBrains Mono', monospace;
    font-size: .72rem; color: var(--text-dim); }

/* ── SPOTLIGHT CARDS ── */
/* ── DIDUKUNG OLEH (logo strip B&W) ── */
.supported {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    margin-top: 44px;
}
.supported-label {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    letter-spacing: 2.2px; text-transform: uppercase; color: var(--text-dim);
}
.supported-logos {
    display: flex; align-items: center; justify-content: center;
    gap: 26px; flex-wrap: wrap;
}
.sup-logo {
    height: 22px; width: auto; max-width: 120px; object-fit: contain;
    /* siluet putih: apapun warna asli logonya */
    filter: grayscale(1) brightness(0) invert(1);
    opacity: .42;
    transition: opacity .3s ease;
}
.sup-logo:hover { opacity: .85; }
/* Logo berbentuk ikon persegi (bukan wordmark bertransparan).
   Filter putih penuh tidak dipakai di sini karena akan meratakan
   seluruh lingkaran menjadi blok putih dan menghilangkan tulisannya.
   Cukup grayscale agar bentuk & teks di dalamnya tetap terbaca. */
.sup-logo.sq {
    height: 28px;
    filter: grayscale(1);
    opacity: .5;
}
.sup-logo.sq:hover { opacity: .9; }
.sup-sep {
    width: 1px; height: 18px; background: var(--border-color); display: block;
}

.cards-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; margin-bottom: 80px;
}
.spotlight-card {
    position: relative; background: var(--bg-soft);
    border: 1px solid var(--border-color); border-radius: 12px;
    padding: 30px; overflow: hidden;
    transition: transform .3s ease, border-color .3s ease;
}
.spotlight-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.spotlight-card::before {
    content: ""; position: absolute;
    top: var(--y, -100%); left: var(--x, -100%);
    transform: translate(-50%, -50%);
    width: 300px; height: 300px; pointer-events: none; z-index: 1;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s ease;
}
.spotlight-card:hover::before { opacity: 1; }
.card-content { position: relative; z-index: 2; }
.card-ic {
    width: 38px; height: 38px; border-radius: 10px; margin-bottom: 16px;
    background: rgba(255,255,255,.05); border: 1px solid var(--border-color);
    color: var(--gold); display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
}
.card-title { font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; }
.card-desc { color: var(--text-muted); font-size: .9rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.card-tags span {
    font-family: 'JetBrains Mono', monospace; font-size: .68rem;
    color: var(--text-muted); background: rgba(255,255,255,.04);
    border: 1px solid var(--border-color); border-radius: 6px; padding: 3px 8px;
}

/* ── SECTION FACTORY-STYLE (radar / list / cycle) ── */
.fx-head { margin-bottom: 32px; }
.fx-h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.25rem); font-weight: 600;
    letter-spacing: -1px; color: #fff; margin-bottom: 10px;
}
.fx-sub { color: var(--text-muted); font-size: .95rem; max-width: 560px; }
.fx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fx-card {
    position: relative; background: var(--bg-soft);
    border: 1px solid var(--border-color); border-radius: 12px;
    padding: 26px 24px; overflow: hidden; min-height: 480px;
    display: flex; flex-direction: column;
    transition: border-color .3s ease;
}
.fx-card:hover { border-color: var(--border-hover); }
.fx-card::before {
    content: ""; position: absolute;
    top: var(--y, -100%); left: var(--x, -100%);
    transform: translate(-50%, -50%);
    width: 320px; height: 320px; pointer-events: none; z-index: 0;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s ease;
}
.fx-card:hover::before { opacity: 1; }
.fx-card > * { position: relative; z-index: 1; }
.fx-num {
    font-family: 'JetBrains Mono', monospace; font-size: .78rem;
    color: var(--gold); margin-bottom: 8px; letter-spacing: 1px;
}
.fx-title { font-size: 1.12rem; font-weight: 600; color: #fff; margin-bottom: 22px; }
.fx-viz { flex: 1; display: flex; align-items: center; justify-content: center; }
.fx-viz svg { width: 100%; max-width: 280px; height: auto; overflow: visible; }
.fx-cap {
    font-family: 'JetBrains Mono', monospace; font-size: .68rem;
    color: var(--text-dim); margin-top: 18px; line-height: 1.6;
}
.fx-legend {
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
    margin-top: 16px; font-family: 'JetBrains Mono', monospace; font-size: .64rem;
    color: var(--text-muted); letter-spacing: .5px;
}
.fx-legend span { display: inline-flex; align-items: center; gap: 6px; }
.fx-legend i { width: 14px; height: 2px; display: block; border-radius: 2px; }

/* list bergaya checklist */
.fx-list { display: flex; flex-direction: column; }
.fx-row {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
    padding: 16px 0; border-bottom: 1px solid var(--border-color);
}
.fx-row:last-child { border-bottom: none; }
.fx-row-name { font-size: .95rem; font-weight: 500; color: var(--text-main); }
.fx-row-desc {
    font-family: 'JetBrains Mono', monospace; font-size: .7rem;
    color: var(--text-dim); margin-top: 4px;
}
.fx-check { color: var(--gold); font-size: .9rem; flex-shrink: 0; margin-top: 2px; }

/* ── TESTIMONI ── */
.tm-head { margin: 88px 0 32px; }
.tm-head .micro-label { margin-bottom: 16px; }
/* jalur marquee: kartu bergerak mendatar tanpa putus */
.tm-marquee {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);   /* lebar penuh, keluar dari container */
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.tm-track {
    display: flex;
    width: max-content;
    padding: 4px 0;
    animation: tmScroll 46s linear infinite;
    will-change: transform;
}
.tm-marquee:hover .tm-track { animation-play-state: paused; }
@keyframes tmScroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }   /* separuh = 1 set penuh */
}
/* jarak dibuat lewat margin (bukan gap) agar setiap kartu memakan
   lebar yang persis sama — sehingga titik sambung loop tepat di -50% */
.tm-track >
.tm-card {
    position: relative; background: var(--bg-soft);
    border: 1px solid var(--border-color); border-radius: 12px;
    padding: 26px 24px; margin: 0; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .3s ease, border-color .3s ease;
}
.tm-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.tm-track > .tm-card {
    flex: 0 0 340px;      /* lebar tetap — WAJIB, kalau tidak kartu akan melar */
    margin-right: 20px;   /* jarak lewat margin agar sambungan loop tepat */
    min-height: 268px;
}
.tm-card::before {
    content: ""; position: absolute;
    top: var(--y, -100%); left: var(--x, -100%);
    transform: translate(-50%, -50%);
    width: 300px; height: 300px; pointer-events: none; z-index: 0;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s ease;
}
.tm-card:hover::before { opacity: 1; }
.tm-card > * { position: relative; z-index: 1; }
.tm-stars { color: var(--gold); font-size: .8rem; letter-spacing: 2px; margin-bottom: 16px; }
.tm-quote {
    margin: 0 0 22px; color: var(--text-main); font-size: .95rem;
    line-height: 1.7; flex: 1;
}
.tm-quote::before { content: "\201C"; color: var(--text-dim); margin-right: 2px; }
.tm-quote::after  { content: "\201D"; color: var(--text-dim); margin-left: 2px; }
.tm-by {
    display: flex; align-items: center; gap: 12px;
    padding-top: 18px; border-top: 1px solid var(--border-color);
}
.tm-av {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.05); border: 1px solid var(--border-color);
    color: var(--gold); font-size: .9rem; font-weight: 600;
}
.tm-meta { display: flex; flex-direction: column; min-width: 0; }
.tm-name { font-size: .9rem; font-weight: 500; color: var(--text-main); }
.tm-role {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    color: var(--text-dim); letter-spacing: .4px; margin-top: 2px;
}

/* ── TIM ── */
.team-head { margin: 88px 0 32px; }
.team-head .micro-label { margin-bottom: 16px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card {
    position: relative; background: var(--bg-soft);
    border: 1px solid var(--border-color); border-radius: 12px;
    padding: 26px 24px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .3s ease, border-color .3s ease;
}
.team-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.team-card::before {
    content: ""; position: absolute;
    top: var(--y, -100%); left: var(--x, -100%);
    transform: translate(-50%, -50%);
    width: 300px; height: 300px; pointer-events: none; z-index: 0;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s ease;
}
.team-card:hover::before { opacity: 1; }
.team-card > * { position: relative; z-index: 1; }
.team-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.team-av {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.05); border: 1px solid var(--border-color);
    color: var(--gold); font-size: 1.05rem; font-weight: 600;
}
.team-av img { width: 100%; height: 100%; object-fit: cover; }
.team-id { display: flex; flex-direction: column; min-width: 0; }
.team-name { font-size: 1rem; font-weight: 600; color: #fff; }
.team-role {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--gold); margin-top: 4px;
}
.team-bio {
    color: var(--text-muted); font-size: .88rem; line-height: 1.7;
    flex: 1; margin-bottom: 18px;
}
.team-social {
    display: flex; gap: 8px;
    padding-top: 16px; border-top: 1px solid var(--border-color);
}
.team-social a {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-color); color: var(--text-dim);
    font-size: .82rem; text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
}
.team-social a:hover {
    color: var(--gold); border-color: var(--gold);
    background: rgba(212,175,55,.06);
}

/* tag keahlian */
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.team-tags span {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    color: var(--text-muted); background: rgba(255,255,255,.04);
    border: 1px solid var(--border-color); border-radius: 6px; padding: 3px 8px;
}

/* varian: 2 anggota (kartu lebih lapang) */
.team-grid.team-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
.team-grid.team-2 .team-card { padding: 28px 26px; }
.team-grid.team-2 .team-av { width: 58px; height: 58px; border-radius: 14px; font-size: 1.25rem; }
.team-grid.team-2 .team-name { font-size: 1.1rem; }

/* varian solo: satu kartu melebar */
.team-grid.solo { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
.team-grid.solo .team-card { padding: 28px; }

/* ── CTA ── */
.cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap; margin-top: 80px;
    background: linear-gradient(135deg, #0c0c0c, var(--bg-color));
    border: 1px solid var(--border-color); border-radius: 16px; padding: 36px 40px;
}
.cta h3 { font-size: 1.4rem; font-weight: 600; color: #fff; margin-bottom: 6px; letter-spacing: -.4px; }
.cta p { color: var(--text-muted); font-size: .92rem; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border-color); background: var(--bg-soft); }
.footer-inner {
    max-width: 1100px; margin: 0 auto; padding: 48px 20px 32px;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 28px;
}
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
.footer-brand p { color: var(--text-muted); font-size: .86rem; max-width: 300px; margin-top: 14px; }
.footer-legal-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem !important;
    letter-spacing: .6px;
    color: var(--text-dim) !important;
    margin-top: 10px !important;
}
.footer-col h4 {
    font-family: 'JetBrains Mono', monospace; font-size: .68rem; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px;
}
.footer-col a {
    display: block; color: var(--text-muted); text-decoration: none;
    font-size: .88rem; padding: 5px 0; transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1100px; margin: 0 auto; padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; color: var(--text-dim); font-size: .8rem;
}
.socials { display: flex; gap: 14px; }
.socials a { color: var(--text-dim); font-size: .95rem; transition: color .2s; }
.socials a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .8s ease-out, transform .8s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE — desktop / tablet / mobile
   ══════════════════════════════════════════ */

/* ── DESKTOP BESAR (≥1280px) ── */
@media (min-width: 1280px) {
    .container { padding: 110px 20px; }
    .title { font-size: 3.6rem; }
    .fx-grid { gap: 26px; }
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
    .container { padding: 80px 24px; }
    .nav-inner, .footer-inner, .footer-bottom { padding-left: 24px; padding-right: 24px; }
    .header { margin-bottom: 64px; }
    .title { font-size: clamp(2rem, 4.6vw, 2.9rem); letter-spacing: -1.2px; }
    .subtitle { font-size: .95rem; }

    /* kartu jadi 2 kolom */
    .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 64px; }
    .cards-grid > .spotlight-card:last-child { grid-column: 1 / -1; }

    /* radar / list / cycle jadi 1 kolom penuh */
    .fx-grid { grid-template-columns: 1fr; gap: 20px; }
    .fx-card { min-height: auto; padding: 24px 22px; }
    .fx-viz svg { max-width: 300px; }

    /* navbar dirampingkan di tablet */
    .nav-link { padding: 8px 10px; font-size: .84rem; }
    .nav-links { gap: 0; }
    .nav-btn { padding: 8px 13px; font-size: .8rem; }
    .nav-btn.ghost .nav-btn-txt { display: none; }
    .nav-btn.ghost { padding: 8px 10px; }

    .tm-head { margin-top: 68px; }
    .tm-track { animation-duration: 40s; }
    .tm-track > .tm-card { flex-basis: 320px; margin-right: 18px; }

    .team-head { margin-top: 68px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .team-grid > .team-card:last-child { grid-column: 1 / -1; }
    .team-grid.team-2 { max-width: 100%; }
    .team-grid.team-2 > .team-card:last-child { grid-column: auto; }

    .cta { padding: 32px 28px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ── MOBILE (≤760px) ── */
@media (max-width: 760px) {
    .container { padding: 52px 18px; }
    .nav-inner { padding: 0 18px; height: 60px; }
    .header { margin-bottom: 48px; }

    /* nav mobile */
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: 60px; left: 0; right: 0;
        background: var(--bg-soft); border-bottom: 1px solid var(--border-color);
        padding: 12px 18px; gap: 2px;
    }
    .nav-links.open .nav-link { padding: 11px 12px; }
    .nav-links.open .nav-mobile-only { display: block; }
    .burger { display: flex; }
    .nav-right .nav-btn.solid { display: none; }
    .nav-btn.ghost { padding: 8px 10px; }
    .nav-btn.ghost .nav-btn-txt { display: none; }
    .brand { font-size: .98rem; }

    /* tipografi */
    .title { font-size: clamp(1.75rem, 8vw, 2.2rem); letter-spacing: -1px; }
    .subtitle { font-size: .9rem; padding: 0 4px; }
    .micro-label { font-size: .64rem; letter-spacing: 1.6px; padding: 5px 12px; }

    /* form: input & tombol nge-stack */
    .check-form { margin-top: 26px; }
    .field {
        flex-direction: column; align-items: stretch; gap: 0;
        padding: 6px; border-radius: 12px;
    }
    .field > i { display: none; }
    .field input { padding: 12px 12px; font-size: .95rem; text-align: center; }
    .field .btn { width: 100%; padding: 13px; }

    /* proof */
    .proof { flex-direction: column; gap: 10px; text-align: center; }
    .proof-txt { text-align: center; }

    /* logo strip */
    .supported { margin-top: 34px; gap: 12px; }
    .supported-logos { gap: 18px; }
    .sup-logo { height: 18px; max-width: 96px; }

    /* kartu 1 kolom */
    .cards-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 52px; }
    .cards-grid > .spotlight-card:last-child { grid-column: auto; }
    .spotlight-card { padding: 24px 20px; }
    .card-title { font-size: 1.12rem; }

    /* section radar/list/cycle */
    .fx-h2 { font-size: 1.5rem; letter-spacing: -.6px; }
    .fx-sub { font-size: .88rem; }
    .fx-grid { grid-template-columns: 1fr; gap: 16px; }
    .fx-card { min-height: auto; padding: 22px 20px; }
    .fx-viz svg { max-width: 250px; }
    .fx-legend { gap: 10px; font-size: .6rem; }
    .fx-row { padding: 14px 0; }
    .fx-row-name { font-size: .9rem; }

     /* testimoni */
    .tm-head { margin: 56px 0 24px; }
    .tm-marquee {
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
                mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    }
    .tm-track { animation-duration: 34s; }
    .tm-track > .tm-card { flex-basis: 280px; margin-right: 14px; min-height: 246px; }
    .tm-card { padding: 22px 20px; }
    .tm-quote { font-size: .9rem; margin-bottom: 18px; }

    /* tim */
    .team-head { margin: 56px 0 24px; }
    .team-grid { grid-template-columns: 1fr; gap: 14px; }
    .team-grid > .team-card:last-child { grid-column: auto; }
    .team-grid.team-2 { grid-template-columns: 1fr; }
    .team-card { padding: 22px 20px; }
    .team-av { width: 42px; height: 42px; }
    .team-grid.team-2 .team-av { width: 48px; height: 48px; font-size: 1.05rem; }

    /* cta */
    .cta { flex-direction: column;align-items: flex-start; padding: 26px 22px; margin-top: 56px; }
    .cta h3 { font-size: 1.25rem; }
    .cta .btn { width: 100%; }

    /* footer */
    .footer-inner { grid-template-columns: 1fr; gap: 26px; padding: 40px 18px 28px; }
    .footer-brand { grid-column: auto; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px; }
}

/* ── MOBILE KECIL (≤400px) ── */
@media (max-width: 400px) {
    .container { padding: 44px 14px; }
    .title { font-size: 1.6rem; }
    .nav-btn { padding: 7px 11px; font-size: .74rem; }
    .supported-logos { gap: 14px; }
    .sup-logo { height: 16px; }
    .fx-viz svg { max-width: 215px; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}
/* ══════════════════════════════════════════════════════════════
   ARTIKEL / HALAMAN KONTEN  (tentang, privasi, syarat, panduan)
   ══════════════════════════════════════════════════════════════ */
.article {
    max-width: 780px; margin: 0 auto 56px;
    font-family: 'Inter', sans-serif; line-height: 1.78;
}

/* paragraf pembuka */
.article .lead {
    font-size: 1.08rem; color: var(--text-main); line-height: 1.7;
    padding-bottom: 26px; margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.article h2 {
    color: #fff; font-size: 1.32rem; font-weight: 600;
    letter-spacing: -.01em; margin: 2.6rem 0 .9rem;
    display: flex; align-items: center; gap: 11px;
}
.article h2::before {
    content: ''; display: inline-block; flex-shrink: 0;
    width: 4px; height: 1.05em; background: var(--gold); border-radius: 2px;
}
.article h2:first-of-type { margin-top: 0; }
.article h3 {
    color: #fff; font-size: 1.02rem; font-weight: 600;
    margin: 1.9rem 0 .6rem;
}
.article p { font-size: .975rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.article strong { color: #fff; font-weight: 600; }
.article em { color: var(--text-main); font-style: italic; }
.article a {
    color: var(--gold); text-decoration: none; font-weight: 500;
    border-bottom: 1px dashed rgba(212,175,55,.4); transition: color .2s, border-color .2s;
}
.article a:hover { color: #f0d071; border-bottom-color: var(--gold); }

/* daftar bercentang */
.article ul { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.article ul li {
    position: relative; padding-left: 26px; margin-bottom: .7rem;
    font-size: .95rem; color: var(--text-muted);
}
.article ul li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 0; top: .18em;
    color: var(--gold); font-size: .72rem;
}
.article ul li strong { color: #fff; }

/* kotak sorotan */
.article .callout {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-left: 3px solid var(--gold); border-radius: 10px;
    padding: 18px 20px; margin: 1.6rem 0 1.8rem;
}
.article .callout i { color: var(--gold); font-size: .95rem; margin-top: .25em; flex-shrink: 0; }
.article .callout p { margin: 0; font-size: .93rem; color: var(--text-main); }

/* strip statistik */
.stat-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--border-color); border: 1px solid var(--border-color);
    border-radius: 12px; overflow: hidden; margin: 0 auto 52px; max-width: 780px;
}
.stat-cell { background: var(--bg-soft); padding: 22px 18px; text-align: center; }
.stat-num {
    font-size: 1.75rem; font-weight: 700; color: #fff;
    letter-spacing: -1px; line-height: 1.1;
}
.stat-num .u { color: var(--gold); }
.stat-lbl {
    font-family: 'JetBrains Mono', monospace; font-size: .64rem;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--text-dim); margin-top: 7px;
}

/* tabel perbandingan */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 1.5rem 0 1.9rem; }
.cmp-box {
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 11px; padding: 20px;
}
.cmp-box.good { border-color: rgba(212,175,55,.32); }
.cmp-head {
    font-family: 'JetBrains Mono', monospace; font-size: .64rem;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 12px;
}
.cmp-box.good .cmp-head { color: var(--gold); }
.cmp-box ul { margin: 0; }
.cmp-box ul li { font-size: .89rem; margin-bottom: .55rem; padding-left: 22px; }
.cmp-box ul li::before { content: '\f00d'; color: var(--text-dim); }
.cmp-box.good ul li::before { content: '\f00c'; color: var(--gold); }

/* FAQ */
.faq { margin: 1.4rem 0 0; }
.faq details {
    border: 1px solid var(--border-color); border-radius: 10px;
    background: var(--bg-soft); margin-bottom: 10px; overflow: hidden;
}
.faq summary {
    cursor: pointer; list-style: none; padding: 15px 18px;
    font-size: .95rem; font-weight: 500; color: var(--text-main);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: .68rem; color: var(--text-dim); transition: transform .25s ease;
    flex-shrink: 0;
}
.faq details[open] summary { color: #fff; }
.faq details[open] summary::after { transform: rotate(180deg); color: var(--gold); }
.faq summary:hover { color: #fff; }
.faq .faq-body { padding: 0 18px 16px; }
.faq .faq-body p { margin: 0; font-size: .92rem; }

@media (max-width: 760px) {
    .article { margin-bottom: 44px; }
    .article .lead { font-size: 1rem; }
    .article h2 { font-size: 1.18rem; margin-top: 2.1rem; }
    .stat-strip { grid-template-columns: 1fr; margin-bottom: 40px; }
    .stat-num { font-size: 1.5rem; }
    .cmp { grid-template-columns: 1fr; gap: 12px; }
}
/* ══════════════════════════════════════════════════════════════
   FORM & HALAMAN KONTAK  (bisa dipakai ulang di halaman lain)
   ══════════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px;
    max-width: 940px; margin: 0 auto 56px; align-items: start;
}

/* panel info kiri */
.info-panel {
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 14px; padding: 26px 24px;
}
.info-item { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--border-color); }
.info-item:first-child { padding-top: 0; }
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-ic {
    width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(212,175,55,.10); border: 1px solid rgba(212,175,55,.18);
    color: var(--gold); font-size: .85rem;
}
.info-body { min-width: 0; }
.info-title { font-size: .92rem; font-weight: 600; color: #fff; margin-bottom: 3px; }
.info-sub { font-size: .84rem; color: var(--text-muted); line-height: 1.6; word-break: break-word; }
.info-sub a { color: var(--gold); text-decoration: none; }
.info-sub a:hover { text-decoration: underline; }

/* kartu form */
.form-card {
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 14px; padding: 30px 28px;
    box-shadow: 0 20px 45px -22px rgba(0,0,0,.7);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-size: .86rem; font-weight: 500;
    color: var(--text-main); margin-bottom: 7px;
}
.form-group label .req { color: var(--gold); }
.form-control {
    width: 100%; box-sizing: border-box; padding: 12px 15px;
    background: rgba(0,0,0,.32); border: 1px solid var(--border-color);
    border-radius: 9px; color: #fff; outline: none;
    font-family: 'Inter', sans-serif; font-size: .94rem;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-control::placeholder { color: var(--text-dim); }
.form-control:focus {
    border-color: var(--gold); background: rgba(0,0,0,.5);
    box-shadow: 0 0 0 3px rgba(212,175,55,.14);
}
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { appearance: none; cursor: pointer; }
.form-hint {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    color: var(--text-dim); margin-top: 6px;
}
.btn-submit {
    width: 100%; padding: 14px 20px; border: none; border-radius: 9px;
    background: var(--gold); color: #0a0a0a; cursor: pointer;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .96rem;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: filter .2s, transform .15s, box-shadow .2s;
}
.btn-submit:hover { filter: brightness(1.07); box-shadow: 0 8px 22px -8px rgba(212,175,55,.5); }
.btn-submit:active { transform: translateY(1px); }
.btn-submit:disabled { opacity: .55; cursor: not-allowed; filter: none; box-shadow: none; }

/* honeypot anti-spam */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* notifikasi */
.alert {
    display: flex; gap: 12px; align-items: flex-start;
    border-radius: 10px; padding: 14px 16px; margin-bottom: 20px;
    font-size: .91rem; line-height: 1.6;
}
.alert i { margin-top: .18em; flex-shrink: 0; }
.alert-ok {
    background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.28); color: #b6f0c8;
}
.alert-ok i { color: var(--green); }
.alert-err {
    background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.28); color: #f4c2c2;
}
.alert-err i { color: var(--red); }
.alert ul { margin: 6px 0 0; padding-left: 18px; }
.alert ul li { margin-bottom: 3px; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 18px; }
    .info-panel { order: 2; }
}
@media (max-width: 560px) {
    .form-card { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}
/* ══════════════════════════════════════════════════════════════
   HALAMAN HARGA — kartu paket & popup QRIS
   ══════════════════════════════════════════════════════════════ */
.price-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
    gap: 20px; max-width: 1060px; margin: 0 auto;
}
.price-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 14px; padding: 28px 24px; overflow: hidden;
    transition: transform .3s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.price-card::before {
    content: ""; position: absolute;
    top: var(--y, -100%); left: var(--x, -100%);
    transform: translate(-50%, -50%);
    width: 320px; height: 320px; pointer-events: none; z-index: 0;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s ease;
}
.price-card:hover::before { opacity: 1; }
.price-card > * { position: relative; z-index: 1; }

/* paket populer */
.price-card.popular {
    border-color: rgba(212,175,55,.42);
    box-shadow: 0 0 46px -18px rgba(212,175,55,.28);
}
.price-badge {
    position: absolute; top: 0; right: 22px; z-index: 2;
    background: var(--gold); color: #0a0a0a;
    font-family: 'JetBrains Mono', monospace; font-size: .6rem;
    font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    padding: 4px 11px; border-radius: 0 0 7px 7px;
}
.price-name {
    font-family: 'JetBrains Mono', monospace; font-size: .68rem;
    letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 14px;
}
.price-card.popular .price-name { color: var(--gold); }
.price-amt {
    font-size: 2rem; font-weight: 700; color: #fff;
    letter-spacing: -1.2px; line-height: 1.1;
}
.price-amt .cur { font-size: 1.05rem; font-weight: 500; color: var(--text-muted); margin-right: 3px; }
.price-per {
    font-family: 'JetBrains Mono', monospace; font-size: .7rem;
    color: var(--text-dim); margin-top: 7px;
    padding-bottom: 18px; border-bottom: 1px solid var(--border-color);
}
.price-bulk {
    display: flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,.03); border: 1px solid var(--border-color);
    border-radius: 9px; padding: 10px 13px; margin: 18px 0 16px;
    font-size: .84rem; color: var(--text-muted);
}
.price-bulk i { color: var(--gold); font-size: .85rem; }
.price-bulk strong { color: #fff; }
.price-feat { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.price-feat li {
    position: relative; padding-left: 25px; margin-bottom: .62rem;
    font-size: .875rem; color: var(--text-muted);
}
.price-feat li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 0; top: .16em; color: var(--gold); font-size: .68rem;
}
.price-feat li strong { color: #fff; }
.price-cta {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    width: 100%; box-sizing: border-box; padding: 13px 18px;
    border-radius: 9px; border: 1px solid var(--border-color);
    background: rgba(255,255,255,.04); color: var(--text-main);
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .92rem;
    cursor: pointer; text-decoration: none;
    transition: border-color .2s, color .2s, background .2s, filter .2s, box-shadow .2s;
}
.price-cta:hover { border-color: var(--border-hover); color: #fff; background: rgba(255,255,255,.07); }
.price-card.popular .price-cta {
    background: var(--gold); color: #0a0a0a; border-color: var(--gold);
}
.price-card.popular .price-cta:hover {
    filter: brightness(1.07); box-shadow: 0 8px 22px -8px rgba(212,175,55,.5); color: #0a0a0a;
}
.price-note {
    text-align: center; color: var(--text-dim); font-size: .85rem; margin-top: 28px;
}

/* ── POPUP QRIS ── */
.tkq-overlay {
    position: fixed; inset: 0; z-index: 1100; display: none;
    align-items: center; justify-content: center; padding: 20px;
    background: rgba(0,0,0,.72);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.tkq-overlay.show { display: flex; }
.tkq-box {
    background: var(--bg-soft); border: 1px solid var(--border-hover);
    border-radius: 16px; max-width: 390px; width: 100%;
    max-height: 92vh; overflow-y: auto;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,.85);
}
.tkq-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 18px; border-bottom: 1px solid var(--border-color);
}
.tkq-head h3 {
    font-size: .96rem; font-weight: 600; color: #fff;
    display: flex; align-items: center; gap: 9px;
}
.tkq-head h3 i { color: var(--gold); }
.tkq-close {
    width: 30px; height: 30px; border-radius: 8px; cursor: pointer; line-height: 1;
    background: rgba(255,255,255,.04); border: 1px solid var(--border-color);
    color: var(--text-muted); font-size: 17px; transition: all .18s;
}
.tkq-close:hover { background: rgba(248,113,113,.14); border-color: var(--red); color: var(--red); }
.tkq-body { padding: 22px 18px; text-align: center; }
.tkq-loading { padding: 34px 0; color: var(--text-muted); font-size: .88rem; }
.tkq-qr {
    background: #fff; padding: 13px; border-radius: 12px;
    display: inline-block; margin-bottom: 16px; line-height: 0;
}
.tkq-qr img { width: 208px; height: 208px; min-height: 208px; display: block; object-fit: contain; }
.tkq-amt { font-size: .88rem; color: var(--text-muted); margin-bottom: 8px; }
.tkq-amt strong {
    display: block; margin-top: 3px; font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem; font-weight: 700; color: #fff; letter-spacing: -.5px;
}
.tkq-note { font-size: .78rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 15px; }
.tkq-status {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 500; color: var(--gold);
    background: rgba(212,175,55,.09); border: 1px solid rgba(212,175,55,.28);
    border-radius: 50px; padding: 6px 15px;
}
.tkq-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    animation: tkqPulse 1.1s ease-in-out infinite;
}
@keyframes tkqPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.7); } }
.tkq-meta {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    margin-top: 15px; font-family: 'JetBrains Mono', monospace;
    font-size: .68rem; color: var(--text-dim);
}
.tkq-done { padding: 22px 0; }
.tkq-done-ic {
    width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(74,222,128,.13); border: 1px solid rgba(74,222,128,.4);
    color: var(--green); font-size: 26px;
}
.tkq-done h3 { font-size: 1.15rem; font-weight: 600; color: #fff; margin-bottom: 7px; }
.tkq-done p { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }
.ds-spinner {
    width: 34px; height: 34px; margin: 0 auto 12px; border-radius: 50%;
    border: 3px solid var(--border-color); border-top-color: var(--gold);
    animation: tkqSpin .7s linear infinite;
}
@keyframes tkqSpin { to { transform: rotate(360deg); } }

@media (max-width: 560px) {
    .price-grid { grid-template-columns: 1fr; gap: 16px; }
    .price-card { padding: 24px 20px; }
    .price-amt { font-size: 1.75rem; }
    .tkq-qr img { width: 180px; height: 180px; min-height: 180px; }
}
/* ══════════════════════════════════════════════════════════════
   BLOG — daftar artikel
   ══════════════════════════════════════════════════════════════ */
.blog-tools { max-width: 780px; margin: 0 auto 34px; }

/* pencarian */
.blog-search { display: flex; gap: 10px; margin-bottom: 20px; }
.blog-search .field-wrap {
    flex: 1; display: flex; align-items: center; gap: 10px;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 10px; padding: 0 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.blog-search .field-wrap:focus-within {
    border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.13);
}
.blog-search .field-wrap i { color: var(--text-dim); font-size: .85rem; }
.blog-search input {
    flex: 1; background: none; border: none; outline: none; color: #fff;
    font-family: 'Inter', sans-serif; font-size: .93rem; padding: 12px 0;
}
.blog-search input::placeholder { color: var(--text-dim); }
.blog-search button {
    padding: 0 20px; border: none; border-radius: 10px; cursor: pointer;
    background: var(--gold); color: #0a0a0a;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem;
    transition: filter .2s;
}
.blog-search button:hover { filter: brightness(1.07); }

/* pil kategori */
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.cat-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: 50px; text-decoration: none;
    border: 1px solid var(--border-color); background: var(--bg-soft);
    color: var(--text-muted); font-size: .84rem; font-weight: 500;
    transition: color .2s, border-color .2s, background .2s;
}
.cat-pill:hover { color: #fff; border-color: var(--border-hover); }
.cat-pill.active { background: var(--gold); border-color: var(--gold); color: #0a0a0a; font-weight: 600; }
.cat-pill .n {
    font-family: 'JetBrains Mono', monospace; font-size: .68rem;
    color: var(--text-dim);
}
.cat-pill.active .n { color: rgba(10,10,10,.6); }

/* info hasil */
.blog-result {
    text-align: center; font-family: 'JetBrains Mono', monospace;
    font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 26px;
}
.blog-result a { color: var(--gold); text-decoration: none; }
.blog-result a:hover { text-decoration: underline; }

/* grid artikel */
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}
.blog-card {
    position: relative; overflow: hidden;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 13px;
    transition: transform .3s ease, border-color .3s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.blog-card > a { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.blog-thumb {
    position: relative; aspect-ratio: 16 / 9; overflow: hidden;
    background: rgba(255,255,255,.03); border-bottom: 1px solid var(--border-color);
}
.blog-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s var(--ease);
}
.blog-card:hover .blog-thumb img { transform: scale(1.045); }
.blog-thumb-empty {
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); font-size: 1.6rem;
}
.blog-cat-badge {
    position: absolute; top: 11px; left: 11px; z-index: 2;
    background: rgba(10,10,10,.82); border: 1px solid rgba(212,175,55,.34);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    color: var(--gold); font-family: 'JetBrains Mono', monospace;
    font-size: .6rem; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 9px; border-radius: 6px;
}
.blog-body { padding: 18px 19px 16px; display: flex; flex-direction: column; flex: 1; }
.blog-title {
    font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.45;
    margin-bottom: 9px; transition: color .2s;
}
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt {
    font-size: .855rem; color: var(--text-muted); line-height: 1.65;
    flex: 1; margin-bottom: 15px;
}
.blog-meta {
    display: flex; align-items: center; gap: 15px;
    padding-top: 13px; border-top: 1px solid var(--border-color);
    font-family: 'JetBrains Mono', monospace; font-size: .67rem; color: var(--text-dim);
}
.blog-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* kosong */
.blog-empty {
    text-align: center; padding: 60px 24px;
    background: var(--bg-soft); border: 1px solid var(--border-color); border-radius: 13px;
}
.blog-empty i { font-size: 2.2rem; color: var(--text-dim); margin-bottom: 16px; }
.blog-empty p { color: var(--text-muted); font-size: .95rem; margin-bottom: 18px; }

/* paginasi */
.pager {
    display: flex; justify-content: center; align-items: center;
    gap: 7px; margin-top: 44px; flex-wrap: wrap;
}
.pager a, .pager span {
    min-width: 38px; height: 38px; padding: 0 12px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 9px; border: 1px solid var(--border-color);
    background: var(--bg-soft); color: var(--text-muted);
    font-size: .87rem; font-weight: 500; text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
}
.pager a:hover { color: #fff; border-color: var(--border-hover); }
.pager .on { background: var(--gold); border-color: var(--gold); color: #0a0a0a; font-weight: 600; }
.pager .gap { border: none; background: none; color: var(--text-dim); min-width: 20px; padding: 0; }
.pager .nav-arrow i { font-size: .72rem; }

@media (max-width: 600px) {
    .blog-search { flex-direction: column; }
    .blog-search button { padding: 12px; }
    .blog-grid { grid-template-columns: 1fr; gap: 16px; }
    .pager a, .pager span { min-width: 34px; height: 34px; font-size: .82rem; padding: 0 9px; }
}
/* ══════════════════════════════════════════════════════════════
   BLOG — halaman artikel
   ══════════════════════════════════════════════════════════════ */
.read-bar {
    position: fixed; top: 0; left: 0; height: 2px; width: 0;
    background: var(--gold); z-index: 60; transition: width .1s linear;
}
.post-wrap { max-width: 760px; margin: 0 auto; }

/* remah roti */
.crumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 7px;
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    letter-spacing: 1.1px; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 22px;
}
.crumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.crumb a:hover { color: var(--gold); }
.crumb .sep { color: var(--text-dim); }

/* kepala artikel */
.post-head { margin-bottom: 30px; }
.post-cat {
    display: inline-block; text-decoration: none;
    background: rgba(212,175,55,.10); border: 1px solid rgba(212,175,55,.28);
    color: var(--gold); font-family: 'JetBrains Mono', monospace;
    font-size: .62rem; letter-spacing: 1.2px; text-transform: uppercase;
    padding: 5px 11px; border-radius: 6px; margin-bottom: 16px;
    transition: background .2s;
}
.post-cat:hover { background: rgba(212,175,55,.18); }
.post-title {
    font-size: clamp(1.65rem, 3.8vw, 2.4rem); font-weight: 700; color: #fff;
    line-height: 1.22; letter-spacing: -1px; margin-bottom: 18px;
}
.post-meta {
    display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
    padding-top: 16px; border-top: 1px solid var(--border-color);
    font-family: 'JetBrains Mono', monospace; font-size: .69rem; color: var(--text-dim);
}
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta .who { color: var(--text-muted); }

/* gambar utama */
.post-cover {
    margin: 0 0 34px; border-radius: 13px; overflow: hidden;
    border: 1px solid var(--border-color); background: var(--bg-soft);
}
.post-cover img { width: 100%; display: block; }

/* isi artikel (HTML dari database) */
.post-content { font-size: 1rem; line-height: 1.82; color: var(--text-muted); }
.post-content > *:first-child { margin-top: 0; }
.post-content h2 {
    color: #fff; font-size: 1.32rem; font-weight: 600; letter-spacing: -.01em;
    margin: 2.5rem 0 .9rem; display: flex; align-items: center; gap: 11px;
}
.post-content h2::before {
    content: ''; flex-shrink: 0; display: inline-block;
    width: 4px; height: 1.05em; background: var(--gold); border-radius: 2px;
}
.post-content h3 { color: #fff; font-size: 1.08rem; font-weight: 600; margin: 1.9rem 0 .6rem; }
.post-content h4 { color: #fff; font-size: .98rem; font-weight: 600; margin: 1.6rem 0 .5rem; }
.post-content p { margin-bottom: 1.3rem; }
.post-content strong, .post-content b { color: #fff; font-weight: 600; }
.post-content em { color: var(--text-main); }
.post-content a {
    color: var(--gold); text-decoration: none; font-weight: 500;
    border-bottom: 1px dashed rgba(212,175,55,.4);
}
.post-content a:hover { color: #f0d071; border-bottom-color: var(--gold); }
.post-content ul, .post-content ol { margin: 0 0 1.4rem; padding-left: 22px; }
.post-content ul li, .post-content ol li { margin-bottom: .6rem; }
.post-content ul li::marker { color: var(--gold); }
.post-content ol li::marker { color: var(--gold); font-family: 'JetBrains Mono', monospace; font-size: .85em; }
.post-content img {
    max-width: 100%; height: auto; display: block; margin: 1.8rem 0;
    border-radius: 11px; border: 1px solid var(--border-color);
}
.post-content blockquote {
    margin: 1.7rem 0; padding: 16px 20px;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-left: 3px solid var(--gold); border-radius: 10px;
    color: var(--text-main); font-style: normal;
}
.post-content blockquote p:last-child { margin-bottom: 0; }
.post-content code {
    font-family: 'JetBrains Mono', monospace; font-size: .84em;
    background: rgba(255,255,255,.06); border: 1px solid var(--border-color);
    border-radius: 5px; padding: 2px 6px; color: #f0d071;
}
.post-content pre {
    background: #0a0a0a; border: 1px solid var(--border-color); border-radius: 11px;
    padding: 16px 18px; overflow-x: auto; margin: 1.6rem 0;
}
.post-content pre code { background: none; border: none; padding: 0; color: var(--text-main); font-size: .82rem; }
.post-content table {
    width: 100%; border-collapse: collapse; margin: 1.6rem 0; font-size: .9rem;
}
.post-content th, .post-content td {
    border: 1px solid var(--border-color); padding: 10px 13px; text-align: left;
}
.post-content th { background: var(--bg-soft); color: #fff; font-weight: 600; }
.post-content hr { border: none; border-top: 1px solid var(--border-color); margin: 2.2rem 0; }

/* ── Baca juga: sisipan di tengah artikel (tanpa gambar, gaya tag) ── */
.inline-related {
    margin: 2.2rem 0;
    padding: 18px 22px;
    background: rgba(255,255,255,.018);
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0 8px 8px 0;
}
.ir-label {
    display: flex; align-items: center; gap: 9px;
    font-family: 'JetBrains Mono', monospace; font-size: .64rem;
    letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 13px;
}
.ir-label i { color: var(--gold); font-size: .72rem; }
.ir-tags { display: flex; flex-direction: column; }
.ir-tags a {
    position: relative;
    display: block;
    padding: 8px 0 8px 20px;
    font-size: .9rem; line-height: 1.55; font-weight: 500;
    color: var(--text-muted); text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: color .2s, padding-left .2s;
}
.ir-tags a:last-child { border-bottom: none; padding-bottom: 0; }
.ir-tags a::before {
    content: '\f105';                       /* chevron-right */
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 4px; top: 8px;
    font-size: .72rem; color: var(--text-dim);
    transition: color .2s, transform .2s;
}
.ir-tags a:hover { color: var(--gold); padding-left: 24px; }
.ir-tags a:hover::before { color: var(--gold); transform: translateX(2px); }

@media (max-width: 600px) {
    .inline-related { padding: 16px 18px; margin: 1.8rem 0; }
    .ir-tags a { font-size: .86rem; padding-left: 18px; }
}

/* tag */
.post-tags {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
    margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--border-color);
}
.post-tags .lbl {
    font-family: 'JetBrains Mono', monospace; font-size: .64rem;
    letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-dim);
}
.post-tags .tag {
    font-family: 'JetBrains Mono', monospace; font-size: .7rem;
    background: rgba(255,255,255,.04); border: 1px solid var(--border-color);
    border-radius: 6px; padding: 4px 10px; color: var(--text-muted);
}

/* bagikan */
.post-share {
    margin-top: 26px; padding: 22px;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 13px; text-align: center;
}
.post-share h3 {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 14px;
}
.share-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.share-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 15px; border-radius: 9px; cursor: pointer; text-decoration: none;
    background: rgba(255,255,255,.04); border: 1px solid var(--border-color);
    color: var(--text-muted); font-family: 'Inter', sans-serif;
    font-size: .84rem; font-weight: 500;
    transition: color .2s, border-color .2s, background .2s;
}
.share-btn:hover { color: #fff; border-color: var(--border-hover); background: rgba(255,255,255,.08); }
.share-btn.done { color: var(--green); border-color: rgba(74,222,128,.4); }

/* daftar artikel terbaru */
.recent-list { display: flex; flex-direction: column; }
.recent-item {
    display: flex; align-items: baseline; gap: 13px;
    padding: 14px 0; border-bottom: 1px solid var(--border-color);
    text-decoration: none; transition: opacity .2s;
}
.recent-item:last-child { border-bottom: none; }
.recent-item:hover .recent-title { color: var(--gold); }
.recent-no {
    font-family: 'JetBrains Mono', monospace; font-size: .7rem;
    color: var(--text-dim); flex-shrink: 0;
}
.recent-title { font-size: .93rem; color: var(--text-main); font-weight: 500; transition: color .2s; }
.recent-date {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    color: var(--text-dim); margin-left: auto; flex-shrink: 0; padding-left: 12px;
}

/* pemisah bagian bawah */
.post-more { max-width: 1100px; margin: 70px auto 0; padding-top: 46px; border-top: 1px solid var(--border-color); }
.post-more h2 {
    font-size: 1.25rem; font-weight: 600; color: #fff;
    margin-bottom: 22px; display: flex; align-items: center; gap: 10px;
}
.post-more h2 i { color: var(--gold); font-size: .9rem; }

@media (max-width: 600px) {
    .post-title { letter-spacing: -.6px; }
    .post-content { font-size: .95rem; }
    .share-btn { flex: 1; justify-content: center; }
    .recent-date { display: none; }
    .post-more { margin-top: 52px; padding-top: 36px; }
}
/* ══════════════════════════════════════════════════════════════
   CEK DA/PA GRATIS — form, popup progres, tabel hasil
   ══════════════════════════════════════════════════════════════ */
.ck-wrap { max-width: 1060px; margin: 0 auto; }

/* ── kartu form ── */
.ck-card {
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 14px; padding: 24px; margin-bottom: 22px;
}
.ck-label {
    display: flex; align-items: center; gap: 9px;
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    font-weight: 500; text-transform: uppercase; letter-spacing: 1.6px;
    color: var(--text-dim); padding-bottom: 11px; margin-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}
.ck-label i { color: var(--gold); font-size: .74rem; }
.ck-count-badge {
    margin-left: auto; font-family: 'JetBrains Mono', monospace;
    font-size: .64rem; color: var(--text-muted);
    background: rgba(255,255,255,.04); border: 1px solid var(--border-color);
    border-radius: 50px; padding: 3px 11px;
}
.ck-textarea {
    width: 100%; box-sizing: border-box; min-height: 128px;
    background: rgba(0,0,0,.32); border: 1px solid var(--border-color);
    border-radius: 10px; padding: 13px 15px; color: #fff; outline: none;
    font-family: 'JetBrains Mono', monospace; font-size: .84rem; line-height: 1.7;
    resize: vertical; transition: border-color .2s, box-shadow .2s, background .2s;
}
.ck-textarea:focus {
    border-color: var(--gold); background: rgba(0,0,0,.5);
    box-shadow: 0 0 0 3px rgba(212,175,55,.14);
}
.ck-textarea::placeholder { color: var(--text-dim); }
.ck-textarea:disabled { opacity: .5; cursor: not-allowed; }
.ck-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap; margin-top: 13px;
}
.ck-hint { font-family: 'JetBrains Mono', monospace; font-size: .66rem; color: var(--text-dim); }
.ck-hint i { color: var(--gold); }
.ck-btn {
    width: 100%; margin-top: 16px; padding: 14px 20px;
    border: none; border-radius: 10px; cursor: pointer;
    background: var(--gold); color: #0a0a0a;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .96rem;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: filter .2s, box-shadow .2s, transform .15s;
}
.ck-btn:hover:not(:disabled) { filter: brightness(1.07); box-shadow: 0 8px 22px -8px rgba(212,175,55,.5); }
.ck-btn:active:not(:disabled) { transform: translateY(1px); }
.ck-btn:disabled { opacity: .5; cursor: not-allowed; }
.ck-btn .fa-spinner { display: none; }
.ck-btn.loading .fa-bolt { display: none; }
.ck-btn.loading .fa-spinner { display: inline-block; }
.ck-quota-warn {
    margin-top: 13px; font-size: .85rem; color: var(--text-muted);
    display: flex; align-items: flex-start; gap: 9px;
}
.ck-quota-warn i { color: var(--red); margin-top: .2em; }
.ck-quota-warn a { color: var(--gold); text-decoration: none; font-weight: 600; }
.ck-quota-warn a:hover { text-decoration: underline; }

/* ── toast ── */
.ck-toast {
    position: fixed; top: 78px; left: 50%; transform: translate(-50%, -18px);
    z-index: 1200; display: flex; align-items: center; gap: 10px;
    padding: 12px 18px; border-radius: 10px; max-width: 90vw;
    background: var(--bg-soft); border: 1px solid var(--border-hover);
    color: var(--text-main); font-size: .89rem;
    box-shadow: 0 18px 40px -14px rgba(0,0,0,.8);
    opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.ck-toast.show { opacity: 1; transform: translate(-50%, 0); }
.ck-toast-warn i { color: var(--gold); }
.ck-toast-error i { color: var(--red); }
.ck-toast-error { border-color: rgba(248,113,113,.4); }

/* ── popup progres ── */
.ckp-overlay {
    position: fixed; inset: 0; z-index: 1100; display: none;
    align-items: center; justify-content: center; padding: 20px;
    background: rgba(0,0,0,.74);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.ckp-overlay.show { display: flex; }
.ckp-box {
    background: var(--bg-soft); border: 1px solid var(--border-hover);
    border-radius: 16px; width: 100%; max-width: 440px;
    max-height: 90vh; overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,.85);
}
.ckp-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 18px; border-bottom: 1px solid var(--border-color);
}
.ckp-head h3 {
    font-size: .95rem; font-weight: 600; color: #fff;
    display: flex; align-items: center; gap: 9px;
}
.ckp-head h3 i { color: var(--gold); font-size: .88rem; }
.ckp-pulse { animation: ckpPulse 1.5s ease-in-out infinite; }
@keyframes ckpPulse { 0%,100% { opacity:1; } 50% { opacity:.35; } }
.ckp-counter { font-family: 'JetBrains Mono', monospace; font-size: .75rem; color: var(--text-muted); }
.ckp-body { padding: 18px; overflow-y: auto; }
.ckp-now { font-size: .87rem; color: var(--text-muted); margin-bottom: 12px; }
.ckp-track {
    height: 5px; background: rgba(255,255,255,.07);
    border-radius: 4px; overflow: hidden; margin-bottom: 13px;
}
.ckp-fill {
    height: 100%; width: 0; background: var(--gold);
    border-radius: 4px; transition: width .35s var(--ease);
}
.ckp-stats {
    display: flex; gap: 18px; margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace; font-size: .7rem; color: var(--text-dim);
}
.ckp-stat { display: inline-flex; align-items: center; gap: 7px; }
.ckp-stat b { color: var(--text-main); }
.ckp-dot { width: 7px; height: 7px; border-radius: 50%; }
.ckp-dot.live { background: var(--green); }
.ckp-dot.err  { background: var(--red); }
.ckp-log { display: flex; flex-direction: column; gap: 6px; }
.ckp-row {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 9px;
    background: rgba(255,255,255,.025); border: 1px solid var(--border-color);
    font-size: .82rem; transition: border-color .2s, background .2s;
}
.ckp-row img { width: 16px; height: 16px; border-radius: 3px; flex-shrink: 0; }
.ckp-row-dom {
    font-family: 'JetBrains Mono', monospace; font-size: .78rem; color: var(--text-main);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0;
}
.ckp-row-state {
    font-family: 'JetBrains Mono', monospace; font-size: .68rem;
    color: var(--text-dim); display: inline-flex; align-items: center; gap: 6px;
    flex-shrink: 0; white-space: nowrap;
}
.ckp-row.wait .ckp-row-state i { color: var(--gold); }
.ckp-row.live { border-color: rgba(74,222,128,.28); background: rgba(74,222,128,.05); }
.ckp-row.live .ckp-row-state { color: var(--green); }
.ckp-row.err  { border-color: rgba(248,113,113,.28); background: rgba(248,113,113,.05); }
.ckp-row.err .ckp-row-state { color: var(--red); }

/* ── ringkasan hasil ── */
.ck-rsum {
    display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 13px; padding: 18px 22px; margin-bottom: 18px;
}
.ck-rs-item { display: flex; align-items: center; gap: 13px; }
.ck-rs-ico {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: .92rem;
}
.ck-rs-ico.ico-blue { background: rgba(96,165,250,.11); border: 1px solid rgba(96,165,250,.24); color: var(--blue); }
.ck-rs-ico.ico-red  { background: rgba(248,113,113,.11); border: 1px solid rgba(248,113,113,.24); color: var(--red); }
.ck-rs-ico.ico-gold { background: rgba(212,175,55,.11); border: 1px solid rgba(212,175,55,.24); color: var(--gold); }
.ck-rs-val { font-size: 1.3rem; font-weight: 700; color: #fff; line-height: 1.15; }
.ck-rs-lbl {
    font-family: 'JetBrains Mono', monospace; font-size: .62rem;
    letter-spacing: 1.1px; text-transform: uppercase; color: var(--text-dim); margin-top: 2px;
}
.ck-rs-dom {
    font-family: 'JetBrains Mono', monospace; font-size: .84rem;
    color: var(--gold); font-weight: 500;
}
.ck-rs-div { width: 1px; align-self: stretch; background: var(--border-color); }

/* ── kepala tabel hasil ── */
.fc-result-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap; margin-bottom: 13px;
}
.fc-chip {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace; font-size: .68rem;
    background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.26);
    color: var(--green); border-radius: 50px; padding: 5px 13px;
}
.fc-upsell {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; color: var(--text-dim);
}
.fc-upsell i { color: var(--gold); }
.fc-upsell a { color: var(--gold); text-decoration: none; font-weight: 600; }
.fc-upsell a:hover { text-decoration: underline; }

/* ── tabel hasil ── */
.fc-table-wrap {
    overflow-x: auto; background: var(--bg-soft);
    border: 1px solid var(--border-color); border-radius: 13px;
}
.fc-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.fc-table thead th {
    padding: 13px 14px; text-align: left; white-space: nowrap;
    border-bottom: 1px solid var(--border-color);
    font-family: 'JetBrains Mono', monospace; font-size: .62rem;
    font-weight: 500; letter-spacing: 1.1px; text-transform: uppercase;
    color: var(--text-dim); background: rgba(255,255,255,.02);
}
.fc-table thead th.center, .fc-table tbody td.center { text-align: center; }
.fc-table .th-src { cursor: default; border-bottom: 1px dotted var(--border-hover); }
.fc-table tbody td {
    padding: 13px 14px; border-bottom: 1px solid var(--border-color);
    font-size: .87rem; color: var(--text-main); white-space: nowrap;
}
.fc-table tbody tr:last-child td { border-bottom: none; }
.fc-table tbody tr { transition: background .2s; }
.fc-table tbody tr:hover { background: rgba(255,255,255,.022); }
.ds-dom-wrap { display: inline-flex; align-items: center; gap: 9px; }
.ds-favicon { width: 17px; height: 17px; border-radius: 4px; flex-shrink: 0; }
.ds-val {
    font-family: 'JetBrains Mono', monospace; font-size: .87rem;
    font-weight: 600; color: #fff; min-width: 22px; text-align: right;
}

/* metrik + bar */
.ck-metric { display: inline-flex; align-items: center; gap: 8px; }
.ck-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ck-dot.q-good { background: var(--green); }
.ck-dot.q-mid  { background: var(--gold); }
.ck-dot.q-bad  { background: var(--red); }
.ck-bar {
    width: 52px; height: 3px; border-radius: 3px; overflow: hidden;
    background: rgba(255,255,255,.09); flex-shrink: 0;
}
.ck-bar-fill { display: block; height: 100%; border-radius: 3px; }
.ck-bar-fill.q-good { background: var(--green); }
.ck-bar-fill.q-mid  { background: var(--gold); }
.ck-bar-fill.q-bad  { background: var(--red); }

/* sel terkunci (premium) */
.fc-lock-th { position: relative; }
.fc-lock-cell {
    position: relative; display: inline-flex;
    align-items: center; justify-content: center; min-width: 54px;
}
.fc-fake {
    font-family: 'JetBrains Mono', monospace; font-size: .84rem;
    color: var(--text-dim); filter: blur(4px); user-select: none; opacity: .55;
}
.fc-tag {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    color: var(--gold); font-size: .72rem; line-height: 1; pointer-events: none;
}
.fc-ip { font-family: 'JetBrains Mono', monospace; font-size: .78rem; color: var(--text-muted); }
.fc-ip.same-ip { color: var(--gold); }
.fc-ip-load, .fc-ip-none { color: var(--text-dim); }

/* ── kotak ajakan ── */
.cta-box {
    display: flex; align-items: center; justify-content: space-between;
    gap: 22px; flex-wrap: wrap; margin-top: 22px;
    background: linear-gradient(135deg, var(--bg-soft), #0c0c0c);
    border: 1px solid rgba(212,175,55,.2); border-radius: 14px; padding: 26px 28px;
}
.cta-box h3 {
    font-size: 1.08rem; font-weight: 600; color: #fff;
    margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
}
.cta-box h3 i { color: var(--gold); }
.cta-box p { font-size: .88rem; color: var(--text-muted); max-width: 520px; }

/* ── tooltip ── */
#th-tip {
    position: fixed; z-index: 1300; max-width: 260px; pointer-events: none;
    background: #0c0c0c; border: 1px solid var(--border-hover); border-radius: 10px;
    padding: 10px 13px; opacity: 0; transform: translateY(4px);
    transition: opacity .18s ease, transform .18s ease;
    box-shadow: 0 14px 34px -12px rgba(0,0,0,.85);
}
#th-tip.show { opacity: 1; transform: none; }
.th-tip-head {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding-bottom: 7px; margin-bottom: 7px; border-bottom: 1px solid var(--border-color);
}
.th-tip-src {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    font-weight: 600; color: var(--gold);
}
.th-tip-cap {
    font-family: 'JetBrains Mono', monospace; font-size: .58rem;
    letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim);
}
.th-tip-body { font-size: .8rem; line-height: 1.6; color: var(--text-muted); }

/* ── FAQ (tombol, dipakai faqToggle) ── */
.faq-wrap { max-width: 780px; margin: 46px auto 0; }
.faq-head {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.15rem; font-weight: 600; color: #fff; margin-bottom: 18px;
}
.faq-head i { color: var(--gold); font-size: .92rem; }
.faq-item {
    border: 1px solid var(--border-color); border-radius: 10px;
    background: var(--bg-soft); margin-bottom: 10px; overflow: hidden;
}
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 15px 18px; cursor: pointer; text-align: left;
    background: none; border: none; color: var(--text-main);
    font-family: 'Inter', sans-serif; font-size: .93rem; font-weight: 500;
    transition: color .2s;
}
.faq-q:hover { color: #fff; }
.faq-q i { font-size: .68rem; color: var(--text-dim); transition: transform .25s ease, color .2s; flex-shrink: 0; }
.faq-item.open .faq-q { color: #fff; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a p { padding: 0 18px 16px; font-size: .88rem; line-height: 1.7; color: var(--text-muted); }

@media (max-width: 640px) {
    .ck-card { padding: 20px 18px; }
    .ck-rsum { gap: 16px; padding: 16px 18px; }
    .ck-rs-div { display: none; }
    .cta-box { padding: 22px 20px; }
    .cta-box .btn { width: 100%; }
    .fc-result-head { flex-direction: column; align-items: flex-start; gap: 9px; }
    .ckp-box { max-height: 86vh; }
}
/* ══════════════════════════════════════════════════════════════
   AUTENTIKASI — masuk & daftar
   ══════════════════════════════════════════════════════════════ */
.auth-shell {
    display: flex; align-items: flex-start; justify-content: center;
    padding: 46px 20px 60px;
}
.auth-box { width: 100%; max-width: 430px; }

/* kepala */
.auth-head { text-align: center; margin-bottom: 22px; }
.auth-logo {
    width: 46px; height: 46px; border-radius: 13px; margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-soft); border: 1px solid var(--border-color);
}
.auth-logo img { width: 26px; height: 26px; object-fit: contain; }
.auth-h1 {
    font-size: 1.5rem; font-weight: 600; color: #fff;
    letter-spacing: -.6px; margin-bottom: 7px;
}
.auth-lead { font-size: .9rem; color: var(--text-muted); }

/* kartu */
.auth-card {
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 15px; overflow: hidden;
    box-shadow: 0 24px 55px -25px rgba(0,0,0,.8);
}

/* tab */
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border-color); }
.auth-tab {
    position: relative; padding: 15px 10px; text-align: center; text-decoration: none;
    font-size: .92rem; font-weight: 500; color: var(--text-dim);
    transition: color .2s, background .2s;
}
.auth-tab:hover { color: var(--text-main); background: rgba(255,255,255,.02); }
.auth-tab.active { color: #fff; font-weight: 600; }
.auth-tab.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
    height: 2px; background: var(--gold);
}

.auth-body { padding: 26px 26px 28px; }

/* pesan */
.auth-msg {
    display: flex; align-items: flex-start; gap: 10px;
    border-radius: 10px; padding: 12px 14px; margin-bottom: 18px;
    font-size: .87rem; line-height: 1.6;
}
.auth-msg i { margin-top: .18em; flex-shrink: 0; }
.auth-msg-err { background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.28); color: #f4c2c2; }
.auth-msg-err i { color: var(--red); }
.auth-msg-ok  { background: rgba(39,201,63,.08); border: 1px solid rgba(39,201,63,.28); color: #b6f0c8; }
.auth-msg-ok i { color: var(--green); }

/* isian */
.auth-field { margin-bottom: 16px; }
.auth-field label {
    display: block; font-size: .84rem; font-weight: 500;
    color: var(--text-main); margin-bottom: 7px;
}
.auth-input-wrap {
    display: flex; align-items: center; gap: 11px;
    background: rgba(0,0,0,.32); border: 1px solid var(--border-color);
    border-radius: 10px; padding: 0 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.auth-input-wrap:focus-within {
    border-color: var(--gold); background: rgba(0,0,0,.5);
    box-shadow: 0 0 0 3px rgba(212,175,55,.14);
}
.auth-input-wrap > i { color: var(--text-dim); font-size: .85rem; width: 15px; text-align: center; flex-shrink: 0; }
.auth-input-wrap input {
    flex: 1; min-width: 0; background: none; border: none; outline: none; color: #fff;
    font-family: 'Inter', sans-serif; font-size: .94rem; padding: 12px 0;
}
.auth-input-wrap input::placeholder { color: var(--text-dim); }
.auth-eye {
    background: none; border: none; cursor: pointer; padding: 4px;
    color: var(--text-dim); font-size: .82rem; flex-shrink: 0; transition: color .2s;
}
.auth-eye:hover { color: var(--text-main); }
.auth-hint { font-family: 'JetBrains Mono', monospace; font-size: .64rem; color: var(--text-dim); margin-top: 6px; }

/* tombol kirim */
.auth-submit {
    width: 100%; margin-top: 4px; padding: 13px 20px;
    border: none; border-radius: 10px; cursor: pointer;
    background: var(--gold); color: #0a0a0a;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    transition: filter .2s, box-shadow .2s, transform .15s;
}
.auth-submit:hover { filter: brightness(1.07); box-shadow: 0 8px 22px -8px rgba(212,175,55,.5); }
.auth-submit:active { transform: translateY(1px); }
.auth-submit:disabled { opacity: .6; cursor: not-allowed; filter: none; box-shadow: none; }

/* pemisah */
.auth-divider {
    display: flex; align-items: center; gap: 14px; margin: 22px 0 18px;
    font-family: 'JetBrains Mono', monospace; font-size: .64rem;
    letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-dim);
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border-color);
}

/* tombol google */
.auth-google {
    display: flex; align-items: center; justify-content: center; gap: 11px;
    width: 100%; box-sizing: border-box; padding: 12px 20px;
    border-radius: 10px; text-decoration: none;
    background: rgba(255,255,255,.04); border: 1px solid var(--border-color);
    color: var(--text-main); font-size: .92rem; font-weight: 500;
    transition: background .2s, border-color .2s, color .2s;
}
.auth-google:hover { background: rgba(255,255,255,.08); border-color: var(--border-hover); color: #fff; }
.auth-google img { width: 18px; height: 18px; }

/* kaki */
.auth-foot {
    text-align: center; margin-top: 22px;
    font-size: .84rem; color: var(--text-dim); line-height: 1.7;
}
.auth-foot a { color: var(--gold); text-decoration: none; font-weight: 500; }
.auth-foot a:hover { text-decoration: underline; }
.auth-back {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 14px; font-size: .84rem; color: var(--text-dim); text-decoration: none;
    transition: color .2s;
}
.auth-back:hover { color: var(--text-main); }

@media (max-width: 480px) {
    .auth-shell { padding: 34px 16px 52px; }
    .auth-body { padding: 22px 20px 24px; }
    .auth-h1 { font-size: 1.32rem; }
}
/* ══════════════════════════════════════════════════════════════
   PANDUAN METRIK — daftar isi, tingkatan BMR, kartu metrik
   ══════════════════════════════════════════════════════════════ */

/* daftar isi */
.toc {
    max-width: 780px; margin: 0 auto 44px;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 13px; padding: 22px 24px;
}
.toc-title {
    display: flex; align-items: center; gap: 9px;
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 15px;
}
.toc-title i { color: var(--gold); font-size: .76rem; }
.toc-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px 22px;
    list-style: none; padding: 0; margin: 0;
}
.toc-list a {
    display: flex; align-items: baseline; gap: 10px;
    padding: 7px 0; text-decoration: none;
    font-size: .89rem; color: var(--text-muted);
    transition: color .2s;
}
.toc-list a:hover { color: var(--gold); }
.toc-list .n {
    font-family: 'JetBrains Mono', monospace; font-size: .68rem;
    color: var(--text-dim); flex-shrink: 0;
}

/* tingkatan BMR */
.tier-box {
    border: 1px solid var(--border-color); border-radius: 12px;
    overflow: hidden; margin: 1.5rem 0 1.9rem;
}
.tier {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px; background: var(--bg-soft);
    border-bottom: 1px solid var(--border-color);
}
.tier:last-child { border-bottom: none; }
.tier-stars {
    color: var(--gold); font-size: .84rem; letter-spacing: 1.5px;
    flex-shrink: 0; min-width: 78px;
}
.tier-name {
    font-size: .93rem; font-weight: 600; color: #fff;
    flex-shrink: 0; min-width: 62px;
}
.tier-range {
    font-family: 'JetBrains Mono', monospace; font-size: .68rem;
    color: var(--text-muted); background: rgba(255,255,255,.04);
    border: 1px solid var(--border-color); border-radius: 6px;
    padding: 3px 9px; flex-shrink: 0; min-width: 62px; text-align: center;
}
.tier-desc { font-size: .86rem; color: var(--text-muted); line-height: 1.55; }

/* kartu metrik */
.metric-card {
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 12px; padding: 20px 22px; margin: 1.4rem 0;
}
.metric-top {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}
.metric-abbr {
    font-family: 'JetBrains Mono', monospace; font-size: .92rem; font-weight: 700;
    color: var(--gold); background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.26); border-radius: 8px; padding: 5px 11px;
}
.metric-name { font-size: 1rem; font-weight: 600; color: #fff; }
.metric-src {
    margin-left: auto; font-family: 'JetBrains Mono', monospace;
    font-size: .62rem; letter-spacing: 1.1px; text-transform: uppercase;
    color: var(--text-dim); border: 1px solid var(--border-color);
    border-radius: 50px; padding: 3px 10px;
}
.metric-card p { font-size: .91rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.metric-card p + p { margin-top: .8rem; }
.metric-scale {
    display: flex; align-items: center; gap: 10px; margin-top: 13px;
    padding-top: 13px; border-top: 1px solid var(--border-color);
    font-family: 'JetBrains Mono', monospace; font-size: .66rem; color: var(--text-dim);
}
.metric-scale .track {
    flex: 1; height: 3px; border-radius: 3px; overflow: hidden;
    background: rgba(255,255,255,.08);
}
.metric-scale .track i { display: block; height: 100%; border-radius: 3px; }
.metric-scale .track i.up   { background: linear-gradient(90deg, rgba(39,201,63,.25), var(--green)); width: 100%; }
.metric-scale .track i.down { background: linear-gradient(90deg, rgba(248,113,113,.28), var(--red)); width: 100%; }
/* Domain Rating memakai biru, mengikuti indikator DR di tabel hasil */
.metric-scale .track i.up.dr { background: linear-gradient(90deg, rgba(91,156,248,.25), var(--blue)); }

/* catatan penting */
.note-flip {
    display: flex; gap: 13px; align-items: flex-start;
    background: rgba(248,113,113,.06); border: 1px solid rgba(248,113,113,.24);
    border-radius: 10px; padding: 15px 17px; margin: 1.3rem 0;
}
.note-flip i { color: var(--red); margin-top: .2em; flex-shrink: 0; }
.note-flip p { margin: 0; font-size: .89rem; color: var(--text-main); line-height: 1.7; }

/* sumber data */
.src-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 1.4rem 0; }
.src-card {
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 12px; padding: 20px;
}
.src-logo { height: 20px; width: auto; max-width: 96px; object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1); opacity: .5; margin-bottom: 14px; }
.src-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.src-card .items {
    display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.src-card .items span {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    color: var(--text-muted); background: rgba(255,255,255,.04);
    border: 1px solid var(--border-color); border-radius: 6px; padding: 3px 8px;
}

@media (max-width: 700px) {
    .toc { padding: 18px 18px; margin-bottom: 34px; }
    .toc-list { grid-template-columns: 1fr; gap: 0; }
    .tier { flex-wrap: wrap; gap: 8px 12px; padding: 13px 15px; }
    .tier-desc { width: 100%; font-size: .83rem; }
    .metric-card { padding: 18px; }
    .metric-src { margin-left: 0; }
    .src-grid { grid-template-columns: 1fr; }
}
/* ══════════════════════════════════════════════════════════════
   HALAMAN LEGAL — syarat & privasi
   ══════════════════════════════════════════════════════════════ */
.legal-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
    max-width: 780px; margin: 0 auto 34px;
    padding: 13px 18px; border-radius: 11px;
    background: var(--bg-soft); border: 1px solid var(--border-color);
    font-family: 'JetBrains Mono', monospace; font-size: .68rem;
    letter-spacing: .6px; color: var(--text-dim);
}
.legal-meta span { display: inline-flex; align-items: center; gap: 8px; }
.legal-meta i { color: var(--gold); font-size: .72rem; }
.legal-meta b { color: var(--text-muted); font-weight: 500; }

/* penomoran pasal */
.article h2[data-no] { align-items: flex-start; }
.article h2[data-no]::before {
    content: attr(data-no); flex-shrink: 0;
    width: auto; height: auto; background: none; border-radius: 0;
    font-family: 'JetBrains Mono', monospace; font-size: .82rem; font-weight: 700;
    color: var(--gold); padding-top: .18em; min-width: 24px;
}

/* ringkasan poin penting */
.legal-key {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    max-width: 780px; margin: 0 auto 40px;
}
.legal-key-item {
    background: var(--bg-soft); border: 1px solid var(--border-color);
    border-radius: 11px; padding: 16px 17px;
}
.legal-key-item i { color: var(--gold); font-size: .88rem; margin-bottom: 10px; display: block; }
.legal-key-item b { display: block; font-size: .89rem; color: #fff; font-weight: 600; margin-bottom: 4px; }
.legal-key-item span { font-size: .8rem; color: var(--text-muted); line-height: 1.6; }

/* kontak di kaki dokumen */
.legal-contact {
    max-width: 780px; margin: 40px auto 0;
    padding-top: 26px; border-top: 1px solid var(--border-color);
    font-size: .89rem; color: var(--text-muted); line-height: 1.75;
}
.legal-contact a { color: var(--gold); text-decoration: none; font-weight: 500; }
.legal-contact a:hover { text-decoration: underline; }

@media (max-width: 700px) {
    .legal-key { grid-template-columns: 1fr; gap: 10px; }
    .legal-meta { gap: 8px 14px; padding: 12px 15px; font-size: .64rem; }
}