/* ============================================================
   KUTIM-CSIRT — "Security Operations Terminal" theme
   Hacker / CLI aesthetic — Computer Security Incident Response Team
   Pemerintah Kabupaten Kutai Timur
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');

:root {
    --bg:          #080b10;
    --bg-2:        #0a0e15;
    --panel:       #0d1219;
    --panel-2:     #10171f;
    --panel-3:     #141d28;
    --line:        #1e2a38;
    --line-bright: #2c3e52;
    --text:        #c3d0de;
    --dim:         #6c7f95;
    --faint:       #44546a;
    --green:       #3df5a0;
    --green-d:     #1f9c66;
    --cyan:        #2bd9e4;
    --amber:       #f5b53d;
    --red:         #ff5277;
    --violet:      #9d8bff;
    --glow-green:  0 0 7px rgba(61,245,160,.50);
    --glow-red:    0 0 7px rgba(255,82,119,.50);
    --glow-cyan:   0 0 7px rgba(43,217,228,.45);
    --mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Menlo, Consolas, monospace;
}

* { scroll-behavior: smooth; box-sizing: border-box; }

body {
    min-height: 100vh;
    font-family: var(--mono);
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 18% 0%, rgba(43,217,228,.05), transparent 42%),
        radial-gradient(circle at 88% 8%, rgba(61,245,160,.05), transparent 40%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6, .display-4 {
    font-family: var(--mono);
    color: #eef4fb;
    font-weight: 700;
    letter-spacing: -0.01em;
}

a { color: var(--green); text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: var(--green); text-shadow: var(--glow-green); }

img { max-width: 100%; height: auto; }

section { padding-top: 56px; padding-bottom: 56px; }

/* Section tepat setelah page-header: kurangi jarak atas — header sudah memberi ruang 52px. */
.page-header + section,
.page-header + div > section:first-child { padding-top: 36px; }

::selection { background: var(--green); color: var(--bg); }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--line-bright); border-radius: 0; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--green-d); }

/* ---- CRT overlay (scanlines + vignette) ---- */
.crt-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9000;
    background:
        repeating-linear-gradient(to bottom,
            rgba(0,0,0,0) 0, rgba(0,0,0,0) 2px,
            rgba(0,0,0,.13) 3px, rgba(0,0,0,0) 4px);
}
.crt-overlay::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 56%, rgba(0,0,0,.55) 100%);
}

/* ---- utility ---- */
.text-accent { color: var(--green) !important; text-shadow: var(--glow-green); }
.text-cyber  { color: var(--cyan) !important; }
.fw-mono     { font-family: var(--mono); }
.section-soft { background-color: var(--bg-2); }
.bg-navy, .bg-dark { background-color: var(--panel) !important; }
.text-white { color: #eef4fb !important; }

.section-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--green);
    text-shadow: var(--glow-green);
}
.section-kicker::before { content: '// '; color: var(--faint); text-shadow: none; }
.section-title { position: relative; display: inline-block; margin-bottom: .35rem; }
.section-title::before { content: '$ '; color: var(--green); text-shadow: var(--glow-green); }
.section-rule {
    width: 100%; max-width: 240px; height: 1px; border: 0;
    background: repeating-linear-gradient(90deg, var(--line-bright) 0 8px, transparent 8px 14px);
    opacity: 1;
    margin: .9rem 0 1.6rem;
}
.section-rule.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    transition: background-color .3s ease, box-shadow .3s ease;
    padding-top: .55rem;
    padding-bottom: .55rem;
    background-color: rgba(8,11,16,.82);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.navbar.bg-dark {
    background-color: rgba(8,11,16,.96) !important;
    box-shadow: 0 1px 0 var(--line-bright), 0 8px 30px rgba(0,0,0,.55);
}
.navbar-brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; margin-right: .5rem; }
.navbar-brand .term-prompt {
    font-size: .82rem;
    color: var(--green);
    text-shadow: var(--glow-green);
    font-weight: 700;
    white-space: nowrap;
}
.navbar .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    font-size: .86rem;
    padding-left: .8rem !important;
    padding-right: .8rem !important;
}
.navbar .nav-link::before { content: ''; color: var(--faint); margin-right: .15rem; }
.navbar .nav-link:hover { color: var(--green) !important; text-shadow: var(--glow-green); }
.navbar .nav-link:hover::before { content: '> '; color: var(--green); }
.navbar .nav-link.active {
    color: var(--green) !important;
    text-shadow: var(--glow-green);
}
.navbar .nav-link.active::before { content: '> '; color: var(--green); }
.navbar-toggler {
    border: 1px solid var(--line-bright);
    border-radius: 0;
    padding: .25rem .5rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(61,245,160,.3); }
.logo { max-height: 58px; width: auto; }
.logo-mitra { max-height: 52px; }
.logo-sep { width: 1px; height: 30px; background: var(--line-bright); flex-shrink: 0; align-self: center; }
.nav-status {
    font-size: .72rem;
    color: var(--green);
    letter-spacing: .1em;
    border: 1px solid var(--line-bright);
    padding: .12rem .5rem;
    white-space: nowrap;
}

.btn-report {
    background: transparent;
    color: var(--red) !important;
    font-family: var(--mono);
    font-weight: 700;
    font-size: .84rem;
    border: 1px solid var(--red);
    border-radius: 0;
    padding: .42rem 1rem;
    transition: all .18s ease;
    text-shadow: var(--glow-red);
}
.btn-report:hover {
    background: var(--red);
    color: var(--bg) !important;
    text-shadow: none;
    box-shadow: var(--glow-red);
}

/* ============================================================
   TERMINAL WINDOW (shared chrome)
   ============================================================ */
.terminal {
    background: var(--panel);
    border: 1px solid var(--line-bright);
    border-radius: 8px;
    box-shadow: 0 30px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(61,245,160,.04);
    overflow: hidden;
}
.terminal-bar {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .9rem;
    background: var(--panel-3);
    border-bottom: 1px solid var(--line);
}
.tdot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.tdot-r { background: #ff5f57; }
.tdot-y { background: #febc2e; }
.tdot-g { background: #28c840; }
.terminal-title {
    margin-left: .6rem;
    font-size: .78rem;
    color: var(--dim);
}
.terminal-status {
    margin-left: auto;
    font-size: .72rem;
    letter-spacing: .08em;
    color: var(--green);
}
.blip {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: var(--glow-green);
    margin-right: .35rem;
    vertical-align: 1px;
    animation: blink 1.6s steps(1) infinite;
}
.terminal-body { padding: 1.8rem 1.9rem 2rem; }

@keyframes blink { 0%,49% {opacity:1;} 50%,100% {opacity:.15;} }
@keyframes caret { 0%,49% {opacity:1;} 50%,100% {opacity:0;} }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(61,245,160,.5); }
    70% { box-shadow: 0 0 0 9px rgba(61,245,160,0); }
    100% { box-shadow: 0 0 0 0 rgba(61,245,160,0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding-top: 90px;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,11,16,.93), rgba(8,11,16,.97));
    z-index: -1;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(61,245,160,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,245,160,.045) 1px, transparent 1px);
    background-size: 38px 38px;
    z-index: -1;
}
.t-line {
    font-size: .92rem;
    color: var(--dim);
    margin-bottom: .15rem;
    word-break: break-word;
}
.t-prompt { color: var(--green); font-weight: 700; }
.t-path   { color: var(--cyan); }
.t-out {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #f4f8fd;
    letter-spacing: -.02em;
    margin: .1rem 0 .2rem;
    text-shadow: 0 0 26px rgba(61,245,160,.25);
}
.t-comment { color: var(--green-d); font-size: .92rem; margin-bottom: .3rem; }
.hero-lead {
    color: var(--text);
    font-size: 1rem;
    max-width: 660px;
    margin: .15rem 0 .3rem;
    padding-left: .4rem;
    border-left: 2px solid var(--line-bright);
}
.cursor {
    color: var(--green);
    animation: caret 1.1s steps(1) infinite;
    text-shadow: var(--glow-green);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.4rem 0 1.5rem; }
.term-btn {
    font-family: var(--mono);
    font-size: .88rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(61,245,160,.05);
    border: 1px solid var(--green-d);
    border-radius: 0;
    padding: .6rem 1.15rem;
    transition: all .18s ease;
}
.term-btn::before { content: '> '; color: var(--faint); }
.term-btn:hover {
    background: var(--green);
    color: var(--bg);
    text-shadow: none;
    box-shadow: var(--glow-green);
}
.term-btn:hover::before { color: var(--bg); }
.term-btn-danger {
    color: var(--red);
    background: rgba(255,82,119,.06);
    border-color: var(--red);
}
.term-btn-danger:hover { background: var(--red); color: var(--bg); box-shadow: var(--glow-red); }
.hero-meta {
    display: flex; flex-wrap: wrap; gap: 1.4rem;
    font-size: .8rem; color: var(--dim);
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.hero-meta .ok { color: var(--green); text-shadow: var(--glow-green); margin-right: .3rem; }

/* Hero: teks di kiri, logo KUTIM-CSIRT di kanan */
.hero-layout { display: flex; align-items: center; gap: 2.4rem; }
.hero-col-text { flex: 1 1 auto; min-width: 0; }
.hero-col-brand { flex: 0 0 auto; display: flex; justify-content: center; }
.hero-logo {
    width: 210px; max-width: 22vw; height: auto;
    filter: drop-shadow(0 0 26px rgba(43,217,228,.22));
}
@media (max-width: 860px) {
    .hero-layout { gap: 1.3rem; }
    .hero-logo { width: 140px; }
}
@media (max-width: 600px) {
    .hero-layout { gap: .9rem; }
    .hero-logo { width: 96px; }
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    position: relative;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 142px 0 52px;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(61,245,160,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,245,160,.05) 1px, transparent 1px);
    background-size: 36px 36px;
    -webkit-mask-image: radial-gradient(ellipse at top left, #000, transparent 78%);
    mask-image: radial-gradient(ellipse at top left, #000, transparent 78%);
}
.page-header .container { position: relative; }
.page-header .ph-icon {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--green-d);
    background: rgba(61,245,160,.06);
    color: var(--green);
    font-size: 1.5rem;
    margin-bottom: .9rem;
    box-shadow: var(--glow-green);
}
.page-header h1 {
    color: #f4f8fd;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}
.page-header h1::before { content: '~$ '; color: var(--green); }
.page-header h1::after {
    content: '▋'; color: var(--green);
    animation: caret 1.1s steps(1) infinite;
    margin-left: .15rem;
}
.page-header .ph-sub { color: var(--dim); max-width: 660px; font-size: .92rem; }
.page-header .breadcrumb { margin: 0; font-size: .82rem; }
.page-header .breadcrumb-item { color: var(--faint); }
.page-header .breadcrumb a { color: var(--cyan); }
.page-header .breadcrumb-item.active { color: var(--dim); }
.page-header .breadcrumb-item + .breadcrumb-item::before { content: '/'; color: var(--faint); }

/* ============================================================
   PANELS / CARDS
   ============================================================ */
.card-effect {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 24px;
    height: 100%;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card-effect:hover {
    border-color: var(--green-d);
    box-shadow: 0 14px 38px rgba(0,0,0,.5), 0 0 0 1px rgba(61,245,160,.18);
    transform: translateY(-4px);
}
.card-effect img { border-radius: 4px; }

/* terminal-window cards */
.feature-card,
.channel-card,
.content-prose .card {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line-bright);
    border-radius: 7px;
    padding: 2.7rem 1.5rem 1.6rem;
    height: 100%;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.feature-card::before,
.channel-card::before,
.content-prose .card::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 30px;
    border-radius: 7px 7px 0 0;
    border-bottom: 1px solid var(--line);
    background-color: var(--panel-3);
    background-image:
        radial-gradient(circle 4px at 16px 15px, #ff5f57 99%, transparent 100%),
        radial-gradient(circle 4px at 32px 15px, #febc2e 99%, transparent 100%),
        radial-gradient(circle 4px at 48px 15px, #28c840 99%, transparent 100%);
    background-repeat: no-repeat;
}
.feature-card:hover,
.channel-card:hover,
.content-prose .card:hover {
    border-color: var(--green-d);
    box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(61,245,160,.16);
    transform: translateY(-4px);
}
.feature-icon {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--green-d);
    background: rgba(61,245,160,.06);
    color: var(--green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.02rem; color: #eef4fb; }
.feature-card h3::before { content: '> '; color: var(--green); }

/* feature/channel/content card body text */
.feature-card p, .channel-card p { color: var(--dim); font-size: .9rem; }

/* content cards (visi-misi, layanan catalogue) */
.content-prose .card { padding: 2.5rem 1.4rem 1.3rem; }
/* Kartu mengikuti tinggi isi — hilangkan ruang kosong dari penyamaan tinggi (h-100) */
.content-prose .card { height: auto !important; }
.content-prose .card-body { padding: 0; }
.content-prose .card h3,
.content-prose .card .card-title {
    margin-top: 0;
    font-size: 1rem;
    color: var(--green);
    text-shadow: var(--glow-green);
}
.content-prose .card h3::before,
.content-prose .card .card-title::before { content: '# '; color: var(--faint); text-shadow: none; }
.content-prose .card .card-text,
.content-prose .card p { color: var(--dim); }
.content-prose .card ul { padding-left: 1.1rem; }
.content-prose .card .text-muted { color: var(--faint) !important; }

/* ============================================================
   STAT BAND
   ============================================================ */
.stat-band {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
/* Rapikan jarak: py-5 luar + py-3 dalam menumpuk terlalu lebar — ratakan jadi wajar. */
.stat-band.py-5 { padding-top: 2.4rem !important; padding-bottom: 2.4rem !important; }
.stat-band > .container.py-3 { padding-top: 0 !important; padding-bottom: 0 !important; }
.stat-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(61,245,160,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,245,160,.045) 1px, transparent 1px);
    background-size: 36px 36px;
}
.stat-item {
    position: relative;
    border-left: 1px solid var(--line);
    padding: .3rem 0 .3rem 1.2rem;
}
.stat-item i { color: var(--green); font-size: 1.3rem; margin-bottom: .5rem; display: block; }
.stat-num {
    font-family: var(--mono);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--green);
    line-height: 1;
    text-shadow: var(--glow-green);
}
.stat-num .text-accent { color: var(--green) !important; }
.stat-label { color: var(--dim); font-size: .82rem; margin-top: .45rem; }

/* ============================================================
   CTA / ALERT BAND
   ============================================================ */
.cta-band {
    background:
        repeating-linear-gradient(135deg, rgba(255,82,119,.05) 0 12px, transparent 12px 24px),
        var(--panel);
    border: 1px solid var(--red);
    border-radius: 6px;
    padding: 1.9rem 2rem;
    position: relative;
    box-shadow: 0 0 26px rgba(255,82,119,.10);
}
.cta-band h2 { color: #f4f8fd; }
.cta-band h2::before {
    content: '[!] ';
    color: var(--red);
    text-shadow: var(--glow-red);
}
.cta-band p { color: var(--dim); margin-bottom: 0; }
.cta-band .btn-light {
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--bg);
    font-weight: 700;
    border-radius: 0;
}
.cta-band .btn-light:hover { box-shadow: var(--glow-red); color: var(--bg); }

/* ============================================================
   SEVERITY BADGES
   ============================================================ */
.severity-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .2rem .5rem;
    border-radius: 0;
    border: 1px solid currentColor;
}
.severity-badge::before { content: '['; }
.severity-badge::after  { content: ']'; }
.sev-critical { color: var(--red); background: rgba(255,82,119,.08); }
.sev-high     { color: #ff9d4d; background: rgba(255,157,77,.08); }
.sev-medium   { color: var(--amber); background: rgba(245,181,61,.08); }
.sev-low      { color: var(--green); background: rgba(61,245,160,.07); }
.sev-info     { color: var(--cyan); background: rgba(43,217,228,.08); }

/* ============================================================
   ARTICLE / DB CONTENT PROSE
   ============================================================ */
.content-prose { font-size: .94rem; color: var(--text); }
/* Kecilkan jarak antar-bagian — section mb-5 (3rem) + margin-top h2 menumpuk terlalu lebar.
   !important diperlukan untuk mengalahkan utilitas .mb-5 Bootstrap yang juga !important */
.content-prose section { margin-bottom: 1.5rem !important; padding-top: 0 !important; padding-bottom: 0 !important; }
.content-prose section:last-child { margin-bottom: 0 !important; }
.content-prose h2 {
    font-size: 1.22rem;
    color: #eef4fb;
    margin-top: 1.7rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--line);
}
.content-prose h2:first-child { margin-top: 0; }
.content-prose h2::before { content: '# '; color: var(--green); text-shadow: var(--glow-green); }
.content-prose h3 {
    font-size: 1.05rem;
    color: var(--cyan);
    margin-top: 1.7rem;
    margin-bottom: .65rem;
    padding-left: .6rem;
    border-left: 2px solid var(--cyan);
}
.content-prose ul, .content-prose ol { padding-left: 1.3rem; }
.content-prose li { margin-bottom: .4rem; }
.content-prose li::marker { color: var(--green); }
.content-prose p { margin-bottom: 1rem; }
/* Rapatkan sedikit jarak antarkata pada teks bacaan — spasi font monospace terasa terlalu lebar */
.content-prose p,
.content-prose li,
.content-prose blockquote,
.hero-lead,
.page-header .ph-sub { word-spacing: -0.1em; }
.content-prose a { color: var(--green); border-bottom: 1px dotted var(--green-d); }
.content-prose strong { color: #eef4fb; }
.content-prose em { color: var(--cyan); font-style: italic; }
.content-prose blockquote {
    border-left: 3px solid var(--green);
    background: var(--panel);
    padding: .9rem 1.1rem;
    margin: 1.4rem 0;
    color: var(--dim);
}
.content-prose .text-muted { color: var(--faint) !important; }
.content-prose .row { margin-top: .4rem; }

/* vm card legacy */
.vm-card {
    background: var(--panel);
    border: 1px solid var(--line-bright);
    border-radius: 7px;
    padding: 1.6rem;
    height: 100%;
}
.vm-card h3 { color: var(--green); }
.vm-card p, .vm-card li { color: var(--dim); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 1.2rem 1.4rem;
    margin-bottom: .9rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover {
    border-color: var(--green);
    box-shadow: 0 0 0 1px rgba(61,245,160,.12);
}
.faq-item h3 {
    font-size: 1rem;
    color: #eef4fb;
    margin-bottom: .55rem;
    display: flex;
    gap: .55rem;
}
.faq-item h3::before {
    content: '[?]';
    flex: 0 0 auto;
    color: var(--green);
    font-weight: 700;
    text-shadow: var(--glow-green);
}
.faq-item p { margin-bottom: 0; color: var(--dim); font-size: .92rem; }
.faq-item p::before { content: '> '; color: var(--faint); }
.faq-item a { color: var(--green); }

/* ============================================================
   CHANNEL / STEPS
   ============================================================ */
.channel-card .ch-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line-bright);
    background: var(--panel-2);
    color: var(--cyan);
    font-size: 1.25rem;
    margin-bottom: .8rem;
}
.channel-card.urgent .ch-icon { color: var(--red); border-color: var(--red); }
.channel-card h3 { color: #eef4fb; font-size: .95rem; }
.channel-card h3::before { content: '> '; color: var(--green); }
.channel-card a { color: var(--green); }

.step-item { display: flex; gap: 1rem; margin-bottom: 1.3rem; }
.step-num {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    border: 1px solid var(--green-d);
    background: rgba(61,245,160,.06);
    color: var(--green);
    font-family: var(--mono);
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    text-shadow: var(--glow-green);
}
.step-num::before { content: '0'; }
.step-item h3 { color: #eef4fb; font-size: 1rem; }
.step-item h3::before { content: '> '; color: var(--green); }
.step-item p { color: var(--dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.sticky-footer { position: sticky; top: 100%; }
.footer-top {
    padding-top: 54px;
    padding-bottom: 36px;
    background-color: var(--bg-2);
    border-top: 1px solid var(--line-bright);
    position: relative;
}
.footer-top::before {
    content: '';
    position: absolute; left: 0; right: 0; top: -1px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--green-d) 0 14px, transparent 14px 26px);
}
.footer-top h4 {
    color: var(--green);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1rem;
}
.footer-top h4::before { content: '# '; color: var(--faint); }
.footer-top a, .footer-top li, .footer-top p { color: var(--dim); font-size: .86rem; }
.footer-top a { display: block; padding: .12rem 0; }
.footer-top a::before { content: '> '; color: var(--faint); }
.footer-top a:hover { color: var(--green); text-shadow: var(--glow-green); }
.footer-brand-logo { max-height: 66px; width: auto; margin-bottom: .9rem; }
.footer-logos { display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem; }
.footer-logos .footer-brand-logo { margin-bottom: 0; }
.footer-logo-mitra { max-height: 58px; }

/* === Statistik Pengunjung (widget footer) === */
.footer-stats { border-top: 1px solid var(--line); background: rgba(0,0,0,.20); padding: 1.7rem 0 1.6rem; }
.fs-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.fs-title { font-family: var(--mono); font-weight: 700; color: #eef4fb; font-size: .95rem; }
.fs-title i { color: var(--green); vertical-align: -2px; }
.fs-online { font-family: var(--mono); font-size: .78rem; color: var(--dim); display: inline-flex; align-items: center; gap: .42rem; }
.fs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: var(--glow-green); animation: fsPulse 1.7s ease-in-out infinite; }
@keyframes fsPulse { 0%,100% { opacity: 1; } 50% { opacity: .22; } }

.fs-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: .7rem; margin-bottom: 1rem; }
.fs-tile { background: var(--panel); border: 1px solid var(--line-bright); padding: .72rem .5rem; text-align: center; }
.fs-num { font-family: var(--mono); font-weight: 800; font-size: 1.5rem; color: var(--green); text-shadow: var(--glow-green); line-height: 1.1; }
.fs-lbl { font-size: .68rem; color: var(--dim); margin-top: .26rem; }

.fs-cols { display: grid; grid-template-columns: 1.7fr 1fr; gap: .9rem; }
.fs-panel { background: var(--panel); border: 1px solid var(--line-bright); padding: .9rem 1rem; }
.fs-sub { font-family: var(--mono); font-size: .72rem; color: var(--faint); margin-bottom: .75rem; }

.fs-bars { display: flex; align-items: flex-end; gap: .35rem; height: 92px; }
.fs-bar { flex: 1; display: flex; flex-direction: column; align-items: center; height: 100%; }
.fs-bar-track { flex: 1; width: 100%; display: flex; align-items: flex-end; }
.fs-bar-fill { width: 100%; background: linear-gradient(180deg, var(--green), var(--green-d)); min-height: 2px; }
.fs-bar:hover .fs-bar-fill { box-shadow: var(--glow-green); }
.fs-bar-lbl { font-size: .55rem; color: var(--faint); margin-top: .3rem; white-space: nowrap; }

.fs-top-row { display: flex; justify-content: space-between; gap: .7rem; padding: .34rem 0; border-bottom: 1px dashed var(--line); font-size: .8rem; }
.fs-top-row:last-child { border-bottom: 0; }
.fs-top-path { color: var(--dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fs-top-num { color: var(--green); font-family: var(--mono); font-weight: 700; flex-shrink: 0; }
.fs-top-empty { font-family: var(--mono); font-size: .76rem; color: var(--faint); }

/* === Trust strip (DigiCert seal + SSL Labs) === */
.footer-trust { border-top: 1px solid var(--line); background: rgba(0,0,0,.15); }
.footer-trust .ft-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .9rem 1.2rem;
}
.footer-trust .ft-label {
  font-family: var(--mono); font-size: .75rem; color: var(--faint);
}
.footer-trust .ft-item { display: inline-flex; align-items: center; min-height: 44px; }
.footer-trust .ft-item iframe,
.footer-trust .ft-item img { vertical-align: middle; }
.footer-trust .ft-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .8rem;
  font-family: var(--mono); font-size: .76rem; font-weight: 600;
  color: var(--green); background: rgba(0,0,0,.35);
  border: 1px solid var(--green); border-radius: 2px;
  text-decoration: none; letter-spacing: .02em;
  transition: background .15s, box-shadow .15s, color .15s;
}
.footer-trust .ft-btn:hover {
  background: var(--green); color: #061018;
  box-shadow: var(--glow-green); text-decoration: none;
}
.footer-trust .ft-btn i { font-size: .95rem; }
@media (max-width: 575px) {
  .footer-trust .ft-row { gap: .6rem .9rem; }
  .footer-trust .ft-label { width: 100%; text-align: center; }
}

@media (max-width: 860px) {
  .fs-grid { grid-template-columns: repeat(3,1fr); }
  .fs-cols { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .fs-grid { grid-template-columns: repeat(2,1fr); }
  .fs-num { font-size: 1.3rem; }
  .fs-bar-lbl { font-size: .46rem; }
}

/* === Galeri Album === */
.gal-album-card { display: block; text-decoration: none; background: var(--panel);
  border: 1px solid var(--line-bright); height: 100%;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.gal-album-card:hover { border-color: var(--green); transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(61,245,160,.14); }
.gal-album-cover { position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-bottom: 1px solid var(--line-bright); }
.gal-album-cover img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .28s ease; }
.gal-album-card:hover .gal-album-cover img { transform: scale(1.05); }
.gal-album-noimg { width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; background: var(--bg-2); }
.gal-album-noimg i { font-size: 3rem; color: var(--green-d); }
.gal-album-count { position: absolute; right: .5rem; bottom: .5rem; font-family: var(--mono);
  background: rgba(7,12,18,.85); color: var(--green); border: 1px solid var(--green-d);
  font-size: .72rem; padding: .18rem .52rem; }
.gal-album-body { padding: .95rem 1.1rem 1.1rem; }
.gal-album-title { font-size: 1rem; color: #eef4fb; margin: 0 0 .4rem; line-height: 1.35; }
.gal-album-date { font-size: .8rem; color: var(--dim); margin: 0; }
.gal-album-date i { color: var(--green); }

.gal-back { display: inline-flex; align-items: center; gap: .25rem; color: var(--dim);
  text-decoration: none; font-family: var(--mono); font-size: .82rem; margin-bottom: .9rem; }
.gal-back:hover { color: var(--green); }
.gal-album-desc { color: var(--dim); margin-bottom: .55rem; }
.gal-meta { font-family: var(--mono); font-size: .8rem; color: var(--faint); margin-bottom: 1.15rem; }
.gal-meta i { color: var(--green); }

.gal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; }
.gal-thumb { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid var(--line-bright); }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .25s ease; }
.gal-thumb:hover img { transform: scale(1.07); }
.gal-thumb-zoom { position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; background: rgba(7,12,18,0); opacity: 0;
  transition: opacity .2s ease, background .2s ease; }
.gal-thumb:hover .gal-thumb-zoom { opacity: 1; background: rgba(7,12,18,.46); }
.gal-thumb-zoom i { font-size: 1.9rem; color: var(--green); text-shadow: var(--glow-green); }
@media (max-width: 760px) { .gal-grid { grid-template-columns: repeat(2,1fr); } }

/* Lightbox (CSS :target — tanpa JS) */
.gal-lb { display: none; position: fixed; inset: 0; z-index: 1090;
  align-items: center; justify-content: center; gap: .4rem; padding: 3vh 1.4rem; }
.gal-lb:target { display: flex; }
.gal-lb-backdrop { position: absolute; inset: 0; background: rgba(3,6,10,.94);
  backdrop-filter: blur(2px); }
.gal-lb-fig { position: relative; z-index: 2; margin: 0; display: flex;
  flex-direction: column; align-items: center; max-width: 1040px; }
.gal-lb-fig img { max-width: 100%; max-height: 84vh; object-fit: contain;
  border: 1px solid var(--line-bright); }
.gal-lb-fig figcaption { color: var(--dim); font-family: var(--mono); font-size: .8rem;
  text-align: center; margin-top: .65rem; }
.gal-lb-fig figcaption span { color: var(--green); }
.gal-lb-nav { position: relative; z-index: 2; flex-shrink: 0; color: #eef4fb;
  font-size: 2.4rem; line-height: 1; text-decoration: none; }
.gal-lb-nav:hover { color: var(--green); text-shadow: var(--glow-green); }
.gal-lb-close { position: absolute; top: 2vh; right: 1.4rem; z-index: 3; width: 2.5rem;
  height: 2.5rem; display: flex; align-items: center; justify-content: center;
  color: #eef4fb; font-size: 1.7rem; text-decoration: none;
  border: 1px solid var(--line-bright); background: rgba(7,12,18,.85); }
.gal-lb-close:hover { color: var(--green); border-color: var(--green); }
@media (max-width: 600px) {
  .gal-lb-nav { font-size: 1.8rem; }
  .gal-lb { padding: 2vh .3rem; }
}
.footer-top .text-accent { color: var(--green) !important; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
    display: inline-flex;
    width: 38px; height: 38px;
    border: 1px solid var(--line-bright);
    color: var(--dim) !important;
    align-items: center; justify-content: center;
    font-size: 1.05rem;
}
.footer-social a::before { content: ''; }
.footer-social a:hover { border-color: var(--green); color: var(--green) !important; box-shadow: var(--glow-green); }
.footer-bottom {
    background-color: var(--bg);
    border-top: 1px solid var(--line);
    color: var(--faint);
    font-size: .8rem;
}
.footer-bottom a { color: var(--dim); }

/* ============================================================
   BOOTSTRAP OVERRIDES (dark terminal)
   ============================================================ */
.card {
    background-color: var(--panel);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 6px;
}
.card-title, .card-title a { color: #eef4fb; }
.card-text { color: var(--dim); }
.text-muted { color: var(--dim) !important; }
.text-dark { color: var(--text) !important; }

.btn { border-radius: 0; font-family: var(--mono); font-weight: 700; font-size: .86rem; }
.btn-outline-primary {
    color: var(--green); border: 1px solid var(--green-d); background: rgba(61,245,160,.05);
}
.btn-outline-primary:hover {
    background: var(--green); color: var(--bg); border-color: var(--green); box-shadow: var(--glow-green);
}
.btn-outline-secondary {
    color: var(--cyan); border: 1px solid var(--line-bright); background: transparent;
}
.btn-outline-secondary:hover { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
.btn-outline-light { color: var(--text); border: 1px solid var(--line-bright); }
.btn-outline-light:hover { background: var(--text); color: var(--bg); }
.btn-light {
    background: var(--panel-3); border: 1px solid var(--line-bright); color: var(--text);
}
.btn-light:hover { background: var(--green); color: var(--bg); border-color: var(--green); }
.btn-danger {
    background: transparent; color: var(--red); border: 1px solid var(--red);
}
.btn-danger:hover { background: var(--red); color: var(--bg); box-shadow: var(--glow-red); }

.form-control, .form-select {
    background-color: var(--panel);
    border: 1px solid var(--line-bright);
    border-radius: 0;
    color: var(--text);
    font-family: var(--mono);
}
.form-control::placeholder { color: var(--faint); }
.form-control:focus, .form-select:focus {
    background-color: var(--panel);
    border-color: var(--green-d);
    color: var(--text);
    box-shadow: 0 0 0 2px rgba(61,245,160,.18);
}
.input-group-text { background: var(--panel-3); border: 1px solid var(--line-bright); color: var(--dim); border-radius: 0; }

.table { color: var(--text); border-color: var(--line); }
.table > :not(caption) > * > * { background-color: transparent; color: var(--text); border-color: var(--line); }
.table-dark, .table .table-dark { background-color: var(--panel-3) !important; }
.table-dark th { background-color: var(--panel-3) !important; color: var(--green) !important; }
.table-striped > tbody > tr:nth-of-type(odd) > * { background-color: rgba(255,255,255,.018); color: var(--text); }
.table a { color: var(--green); }

.breadcrumb-item + .breadcrumb-item::before { color: var(--faint); }

.pagination { gap: 4px; }
.page-link {
    background: var(--panel);
    border: 1px solid var(--line-bright);
    color: var(--text);
    border-radius: 0 !important;
    font-family: var(--mono);
}
.page-link:hover { background: var(--panel-3); color: var(--green); border-color: var(--green-d); }
.page-item.active .page-link { background: var(--green); border-color: var(--green); color: var(--bg); }
.page-item.disabled .page-link { background: var(--bg-2); color: var(--faint); }

/* ============================================================
   PDF / RFC viewer
   ============================================================ */
.pdfobject-container {
    height: 86vh;
    border: 1px solid var(--line-bright);
    border-radius: 6px;
    overflow: hidden;
}
#my_pdf { min-height: 80vh; }

/* back-to-top */
#backToTop {
    background: var(--panel-3) !important;
    border: 1px solid var(--green-d) !important;
    color: var(--green) !important;
    border-radius: 0 !important;
    box-shadow: var(--glow-green);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--panel);
        border: 1px solid var(--line-bright);
        padding: 1rem;
        margin-top: .6rem;
    }
    .navbar-brand .term-prompt { display: none; }
    .hero { background-attachment: scroll; }
    .terminal-body { padding: 1.3rem 1.1rem 1.5rem; }
    .page-header { padding-top: 116px; }
    .stat-item { border-left: 0; padding-left: 0; }
    .cta-band { padding: 1.5rem 1.3rem; }
}
@media (max-width: 575.98px) {
    .t-out { font-size: 2.3rem; }
    .hero-meta { gap: .8rem; }
    .terminal-title { display: none; }
}

/* === Halaman Insiden === */

/* Rekapitulasi kategori — bar rows */
.incident-cat-list {
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--panel);
    padding: 1.2rem 1.4rem;
}
.incident-cat-row { padding: .55rem 0; }
.incident-cat-row + .incident-cat-row { border-top: 1px solid var(--line); }
.incident-cat-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .4rem;
}
.incident-cat-name { color: var(--text); font-size: .9rem; }
.incident-cat-name::before { content: '> '; color: var(--green); }
.incident-cat-count {
    color: var(--green);
    font-weight: 700;
    text-shadow: var(--glow-green);
    font-size: .95rem;
}
.incident-cat-bar {
    height: 8px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}
.incident-cat-fill {
    display: block;
    height: 100%;
    min-width: 4px;
    background: linear-gradient(90deg, var(--green-d), var(--green));
    box-shadow: var(--glow-green);
    border-radius: 3px;
}

/* Kartu insiden */
.content-prose .card.incident-card { margin-bottom: 1.6rem; }
.content-prose .card.incident-card:last-child { margin-bottom: 0; }

.incident-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: .2rem 0 .8rem;
}
.incident-badges .severity-badge i { margin-right: .15rem; }

.incident-dates {
    color: var(--faint) !important;
    font-size: .82rem;
    margin-bottom: .8rem !important;
}
.incident-dates i { color: var(--green); margin-right: .2rem; }

.incident-summary { margin-bottom: 1rem; }

.incident-block {
    border: 1px solid var(--line);
    background: var(--bg-2);
    padding: .7rem .95rem;
    border-radius: 5px;
    margin-bottom: .7rem;
}
.incident-block:last-child { margin-bottom: 0; }
.incident-block-title {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--cyan);
    margin: 0 0 .25rem;
}
.incident-block-title::before { content: '// '; color: var(--faint); }
.incident-block p {
    margin-bottom: 0;
    color: var(--dim);
    font-size: .9rem;
}

/* Kartu apresiasi pelapor celah (VDP) */
.incident-credit {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    margin-top: .9rem;
    padding: .85rem 1rem;
    border: 1px solid var(--amber);
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(245,181,61,.10), rgba(245,181,61,.02));
}
.incident-credit-icon {
    font-size: 1.5rem;
    color: var(--amber);
    line-height: 1;
    flex-shrink: 0;
    margin-top: .1rem;
}
.incident-credit-label {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--amber);
}
.incident-credit-name {
    margin: .15rem 0 .3rem;
    font-size: 1.02rem;
    font-weight: 600;
    color: #eef4fb;
    text-shadow: 0 0 8px rgba(245,181,61,.35);
}
.incident-credit-note {
    margin: 0;
    font-size: .84rem;
    color: var(--dim);
}

/* Disclaimer */
.incident-disclaimer {
    border: 1px solid var(--line-bright);
    background: var(--panel);
    border-radius: 5px;
    padding: 1rem 1.2rem;
}
.incident-disclaimer p {
    color: var(--dim);
    font-size: .85rem;
}
.incident-disclaimer i { color: var(--amber); margin-right: .35rem; }

/* === Navbar dropdown & toggle bahasa === */
.navbar .dropdown-menu {
    background: var(--panel-2);
    border: 1px solid var(--line-bright);
    border-radius: 0;
    padding: .35rem 0;
    margin-top: .45rem;
    box-shadow: 0 14px 32px rgba(0,0,0,.6);
}
.navbar .dropdown-item {
    color: var(--text);
    font-size: .85rem;
    font-weight: 500;
    padding: .42rem 1.05rem;
}
.navbar .dropdown-item::before { content: '> '; color: var(--faint); }
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: var(--panel-3);
    color: var(--green);
    text-shadow: var(--glow-green);
}
.navbar .dropdown-item:hover::before { color: var(--green); }
.navbar .nav-link.dropdown-toggle::after { vertical-align: .14em; margin-left: .3em; }
.lang-switch {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .03em;
    border: 1px solid var(--line-bright);
    padding: .1rem .15rem;
    white-space: nowrap;
}
.lang-switch a { color: var(--dim); padding: .08rem .42rem; }
.lang-switch a.on { color: var(--green); text-shadow: var(--glow-green); }
.lang-switch a:hover { color: var(--green); }
.lang-switch .sep { color: var(--faint); }

/* === Edukasi keamanan (halaman Cek Link Phishing) === */
.edu-title { font-size: 1.3rem; }
.edu-title::before { content: '$ '; color: var(--green); text-shadow: var(--glow-green); }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.1rem; }
@media (max-width: 768px) { .edu-grid { grid-template-columns: 1fr; } }
.edu-card {
    background: var(--panel);
    border: 1px solid var(--line-bright);
    border-radius: 7px;
    padding: 1.15rem 1.3rem;
    margin-bottom: 1.1rem;
}
.edu-card h3 {
    font-size: 1rem;
    margin: 0 0 .55rem;
    display: flex; align-items: center; gap: .5rem;
}
.edu-card h3 i { font-size: 1.2rem; }
.edu-card p { color: var(--dim); margin: 0; font-size: .9rem; }
.edu-list { color: var(--dim); font-size: .9rem; margin: 0; padding-left: 1.2rem; }
.edu-list li { margin-bottom: .4rem; }
.edu-list li::marker { color: var(--green); }
.edu-card strong { color: #eef4fb; }
.edu-card em { color: var(--cyan); font-style: normal; }
.edu-cyan h3  { color: var(--cyan); }
.edu-red h3   { color: var(--red); }
.edu-amber h3 { color: var(--amber); }
.edu-green h3 { color: var(--green); }
.edu-callout {
    display: flex; align-items: center; gap: .8rem;
    background: rgba(255,82,119,.09);
    border: 1px solid var(--red);
    border-radius: 7px;
    padding: .95rem 1.2rem;
    margin-top: .3rem;
}
.edu-callout i { font-size: 1.7rem; color: var(--red); flex-shrink: 0; }
.edu-callout p { margin: 0; font-size: .9rem; color: var(--text); }

#form-cek, #hasil-scan { scroll-margin-top: 84px; }

/* Sembunyikan badge mengambang reCAPTCHA (notis teks reCAPTCHA tetap ada di form) */
.grecaptcha-badge { visibility: hidden !important; }

/* === Sistem Tiketing === */
.tk-badge {
    display: inline-block; font-size: .72rem; font-weight: 700;
    padding: .22rem .62rem; border-radius: 0; border: 1px solid var(--line-bright);
    letter-spacing: .04em; white-space: nowrap;
}
.tk-badge.s-diterima { color: var(--cyan);  border-color: var(--cyan); }
.tk-badge.s-triase   { color: var(--cyan);  border-color: var(--cyan); }
.tk-badge.s-proses   { color: var(--amber); border-color: var(--amber); }
.tk-badge.s-tunggu   { color: var(--amber); border-color: var(--amber); }
.tk-badge.s-selesai  { color: var(--green); border-color: var(--green); text-shadow: var(--glow-green); }
.tk-badge.s-tutup    { color: var(--faint); border-color: var(--line-bright); }
/* timeline riwayat tiket */
.tk-timeline { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.tk-timeline li { position: relative; padding: 0 0 1.3rem 1.5rem; border-left: 1px solid var(--line-bright); }
.tk-timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.tk-timeline li::before {
    content: ''; position: absolute; left: -5px; top: .25rem;
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--green); box-shadow: var(--glow-green);
}
.tk-timeline .tk-when { font-size: .76rem; color: var(--faint); }
.tk-timeline .tk-head { color: #eef4fb; font-weight: 700; font-size: .9rem; }
.tk-timeline .tk-msg  { color: var(--dim); font-size: .9rem; margin: .25rem 0 0; white-space: pre-line; }
/* kartu langkah/progres status */
.tk-steps { display: flex; flex-wrap: wrap; gap: .4rem; margin: .8rem 0; }
.tk-step {
    font-size: .72rem; padding: .2rem .55rem; border: 1px solid var(--line);
    color: var(--faint);
}
.tk-step.done { color: var(--green); border-color: var(--green-d); }
.tk-step.now  { color: var(--bg); background: var(--green); border-color: var(--green); font-weight: 700; }
/* kartu tiket di dashboard & info */
.tk-meta { font-size: .82rem; color: var(--dim); }
.tk-meta strong { color: #eef4fb; }
.tk-note-internal { border: 1px solid rgba(245,181,61,.35); background: rgba(245,181,61,.06); }

/* === Bar share artikel (link statis, tanpa tracking) — 23 Jun 2026 === */
.share-bar { display:flex; align-items:center; flex-wrap:wrap; gap:.5rem; padding:.85rem 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.share-label { font-family:'JetBrains Mono',monospace; font-size:.8rem; color:var(--green-d); margin-right:.35rem; letter-spacing:.5px; }
.share-btn { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border:1px solid var(--line-bright); border-radius:6px; color:var(--text); background:transparent; font-size:1.15rem; cursor:pointer; transition:all .15s ease; text-decoration:none; }
.share-btn:hover { transform:translateY(-2px); }
.share-wa:hover  { border-color:#25D366; color:#25D366; box-shadow:0 0 10px rgba(37,211,102,.35); }
.share-tg:hover  { border-color:#229ED9; color:#229ED9; box-shadow:0 0 10px rgba(34,158,217,.35); }
.share-x:hover   { border-color:#e7eef5; color:#e7eef5; box-shadow:0 0 10px rgba(231,238,245,.25); }
.share-fb:hover  { border-color:#1877F2; color:#1877F2; box-shadow:0 0 10px rgba(24,119,242,.35); }
.share-copy:hover, .share-copy.copied { border-color:var(--green); color:var(--green); box-shadow:var(--glow-green); }

/* === Tombol Langganan RSS (warna khas RSS) === */
.btn-rss { display:inline-flex; align-items:center; gap:.4rem; border:1px solid #e8821e; color:#f0922e; background:transparent; font-family:'JetBrains Mono',monospace; font-size:.8rem; padding:.35rem .9rem; border-radius:6px; text-decoration:none; transition:all .15s ease; }
.btn-rss:hover { background:#e8821e; color:#080b10; box-shadow:0 0 12px rgba(232,130,30,.4); }
.btn-rss i { font-size:1rem; }
