*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #00f0ff;
    --primary-dim: #00f0ff33;
    --secondary: #a855f7;
    --accent: #f59e0b;
    --pink: #ec4899;
    --bg-deep: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text: #e4e4e7;
    --text-dim: #a1a1aa;
    --text-muted: #71717a;
    --success: #22c55e;
    --danger: #ef4444;
    --glow-primary: 0 0 40px #00f0ff44, 0 0 80px #00f0ff22;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-tap-highlight-color: transparent;
}

a { color: var(--primary); text-decoration: none; transition: opacity 0.2s ease; }
a:hover { opacity: 0.8; }

.ambient {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.ambient::before {
    content: ''; position: absolute;
    width: 600px; height: 600px;
    top: -200px; left: -100px;
    background: radial-gradient(circle, #00f0ff15 0%, transparent 70%);
    animation: floatBlob 12s ease-in-out infinite;
}
.ambient::after {
    content: ''; position: absolute;
    width: 500px; height: 500px;
    bottom: -150px; right: -100px;
    background: radial-gradient(circle, #a855f715 0%, transparent 70%);
    animation: floatBlob 15s ease-in-out infinite reverse;
}
@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 30px) scale(0.95); }
}
.grid-pattern {
    position: fixed; inset: 0; z-index: 0;
    background-image:
        linear-gradient(#ffffff03 1px, transparent 1px),
        linear-gradient(90deg, #ffffff03 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.container {
    max-width: 1100px; margin: 0 auto; padding: 0 20px;
    position: relative; z-index: 1;
}
.container.narrow { max-width: 820px; }

/* Nav */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100; padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}
nav.scrolled {
    background: #0a0a0fdd;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #ffffff08;
    padding: 12px 0;
}
nav .container {
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none;
}
.logo .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 12px var(--success);
    animation: pulse 1.5s infinite;
    -webkit-text-fill-color: var(--success);
}
.nav-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: var(--success);
    color: #000;
    font-size: 0.7rem; font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.nav-badge::before {
    content: ''; width: 6px; height: 6px;
    background: #000; border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-daftar {
    display: none; align-items: center; gap: 6px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--primary), #00b8d4);
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 24px #00f0ff66;
    transition: transform 0.2s ease;
    position: relative; overflow: hidden;
}
.nav-daftar::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, #ffffff66, transparent);
    transform: translateX(-100%);
    animation: shine 2.8s infinite;
}
@keyframes shine {
    0%, 60% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}
.nav-daftar:active { transform: scale(0.96); }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Page hero */
.page-hero {
    padding: 140px 0 60px;
    position: relative;
}
.breadcrumb {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { width: 12px; height: 12px; }
.breadcrumb .current { color: var(--text); }
.page-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: var(--primary-dim);
    border: 1px solid #00f0ff22;
    border-radius: 50px;
    font-size: 0.74rem; font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: 1.2px;
}
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}
.page-hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-hero .lead {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 720px;
    line-height: 1.7;
}
.page-meta {
    display: flex; gap: 20px; flex-wrap: wrap;
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.page-meta strong { color: var(--text); font-weight: 600; }

/* Section */
section.page-section { padding: 30px 0; }
section.page-section.spaced { padding: 50px 0; }

/* Article-style typography */
.prose h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem; font-weight: 700;
    letter-spacing: -0.6px;
    margin: 48px 0 18px;
    line-height: 1.25;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem; font-weight: 700;
    letter-spacing: -0.3px;
    margin: 32px 0 12px;
    color: var(--text);
}
.prose p {
    margin-bottom: 16px;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.75;
}
.prose strong { color: var(--text); font-weight: 600; }
.prose em { color: var(--primary); font-style: normal; font-weight: 500; }
.prose ul, .prose ol {
    margin: 0 0 20px 0;
    padding-left: 22px;
    color: var(--text-dim);
}
.prose ul li, .prose ol li {
    margin-bottom: 10px;
    line-height: 1.7;
    padding-left: 6px;
}
.prose ul li::marker { color: var(--primary); }
.prose ol li::marker { color: var(--primary); font-weight: 700; }

.prose .check-list {
    list-style: none;
    padding-left: 0;
}
.prose .check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}
.prose .check-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 4px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--success);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.prose hr {
    border: none;
    height: 1px;
    background: #ffffff10;
    margin: 40px 0;
}

.prose blockquote {
    border-left: 3px solid var(--primary);
    padding: 4px 18px;
    margin: 20px 0;
    color: var(--text);
    font-style: italic;
    background: #00f0ff08;
    border-radius: 0 12px 12px 0;
}

/* Info box */
.info-box {
    background: var(--bg-card);
    border: 1px solid #ffffff08;
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 22px 0;
}
.info-box.warn { border-left-color: var(--accent); }
.info-box.danger { border-left-color: var(--danger); }
.info-box.success { border-left-color: var(--success); }
.info-box-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
    display: flex; align-items: center; gap: 8px;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 28px 0;
}
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card {
    background: var(--bg-card);
    border: 1px solid #ffffff08;
    border-radius: 18px;
    padding: 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.info-card:hover {
    border-color: #00f0ff22;
    transform: translateY(-3px);
}
.info-card .ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.ic-cyan { background: #00f0ff15; color: var(--primary); }
.ic-purple { background: #a855f715; color: var(--secondary); }
.ic-amber { background: #f59e0b15; color: var(--accent); }
.ic-green { background: #22c55e15; color: var(--success); }
.ic-pink { background: #ec489915; color: var(--pink); }
.ic-blue { background: #3b82f615; color: #3b82f6; }
.info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px;
}
.info-card p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Stats banner */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid #ffffff08;
    border-radius: 22px;
    padding: 32px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}
.stats-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}
.stat-block {
    text-align: center;
    padding: 12px 8px;
    border-right: 1px solid #ffffff08;
}
.stat-block:last-child { border-right: none; }
.stat-block .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-block .lab {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 32px;
    margin: 32px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}
.timeline-item {
    position: relative;
    padding-bottom: 28px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px; top: 6px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 3px solid var(--primary);
    box-shadow: 0 0 16px #00f0ff55;
}
.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 4px;
}
.timeline-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.timeline-desc {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Contact channels */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 28px 0;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid #ffffff08;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text);
}
.contact-card:hover {
    border-color: #00f0ff33;
    transform: translateY(-3px);
}
.contact-card .ico {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card .body { flex: 1; min-width: 0; }
.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.contact-card .desc {
    font-size: 0.86rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}
.contact-card .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    word-break: break-word;
}
.contact-card .badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.7rem;
    color: var(--success);
    margin-top: 6px;
    font-weight: 600;
}
.contact-card .badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: pulse 1.5s infinite;
}

/* Hours table */
.hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid #ffffff08;
    border-radius: 16px;
    overflow: hidden;
    margin: 22px 0;
}
.hours-table th, .hours-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid #ffffff06;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table th {
    background: #ffffff05;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.72rem;
}
.hours-table td:last-child {
    color: var(--success);
    font-weight: 600;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #4c1d95 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    margin: 48px 0 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ffffff10;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, #00f0ff15, transparent 70%);
    pointer-events: none;
}
.cta-banner h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.cta-banner p {
    color: var(--text-dim);
    margin-bottom: 24px;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
}
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--primary), #00b8d4);
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
    position: relative; overflow: hidden;
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* TOC */
.toc {
    background: var(--bg-card);
    border: 1px solid #ffffff08;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
}
.toc-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.toc ol li {
    padding: 8px 0;
    border-top: 1px solid #ffffff06;
    counter-increment: toc-counter;
}
.toc ol li:first-child { border-top: none; }
.toc ol li::before {
    content: counter(toc-counter, decimal-leading-zero);
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 12px;
}
.toc { counter-reset: toc-counter; }
.toc a {
    color: var(--text);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}
.toc a:hover { color: var(--primary); }

/* Footer */
footer {
    padding: 50px 0 40px;
    border-top: 1px solid #ffffff06;
    text-align: center;
    margin-top: 60px;
}
footer .footer-links {
    display: flex; justify-content: center; gap: 22px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
footer .footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.86rem;
    transition: color 0.2s ease;
}
footer .footer-links a:hover { color: var(--primary); }
footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Mobile sticky bottom CTA */
.mobile-cta-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 95;
    padding: 12px 16px calc(12px + var(--safe-bottom));
    background: linear-gradient(180deg, transparent, #0a0a0fee 30%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    gap: 10px;
}
.mobile-cta-chat {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: var(--bg-card);
    border: 1px solid #ffffff15;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--success);
    text-decoration: none;
    position: relative;
}
.mobile-cta-chat::after {
    content: '';
    position: absolute;
    top: 8px; right: 8px;
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
    animation: pulse 1.5s infinite;
}
.mobile-cta-chat svg { width: 22px; height: 22px; }
.mobile-cta-btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary), #00b8d4);
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem; font-weight: 800;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 0 30px #00f0ff66;
    position: relative; overflow: hidden;
}
.mobile-cta-btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, #ffffff66, transparent);
    transform: translateX(-100%);
    animation: shine 2.5s infinite;
}
.mobile-cta-btn:active { transform: scale(0.98); opacity: 1; }
.mobile-cta-btn svg { width: 18px; height: 18px; }

@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-banner { grid-template-columns: repeat(2, 1fr); }
    .stat-block:nth-child(2) { border-right: none; }
    .stat-block:nth-child(1), .stat-block:nth-child(2) {
        border-bottom: 1px solid #ffffff08;
        padding-bottom: 22px;
    }
    .stat-block:nth-child(3), .stat-block:nth-child(4) { padding-top: 22px; }
}

@media (max-width: 640px) {
    .page-hero { padding: 110px 0 36px; }
    .page-hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .page-hero .lead { font-size: 0.98rem; }
    .page-meta { gap: 14px; font-size: 0.78rem; }
    .prose h2 { font-size: 1.4rem; margin: 36px 0 14px; }
    .prose h3 { font-size: 1.05rem; margin: 24px 0 10px; }
    .prose p, .prose ul li, .prose ol li { font-size: 0.95rem; }
    .cards-grid, .cards-grid.two { grid-template-columns: 1fr; gap: 14px; }
    .info-card { padding: 22px 20px; }
    .stats-banner {
        grid-template-columns: 1fr 1fr;
        padding: 22px 18px; gap: 14px;
    }
    .stat-block { padding: 8px 4px; border-right: none !important; border-bottom: none !important; }
    .stat-block .num { font-size: 1.6rem; }
    .stat-block .lab { font-size: 0.7rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 14px; }
    .contact-card { padding: 22px 20px; gap: 14px; }
    .contact-card .ico { width: 46px; height: 46px; font-size: 1.3rem; }
    .cta-banner { padding: 32px 22px; border-radius: 20px; }
    .cta-banner h3 { font-size: 1.3rem; }
    .nav-daftar { display: inline-flex; }
    .nav-badge { display: none; }
    .logo { font-size: 1.25rem; }
    .toc { padding: 20px 18px; }
    .hours-table th, .hours-table td { padding: 12px 14px; font-size: 0.85rem; }
    .info-box { padding: 18px 20px; }
    .timeline { padding-left: 28px; }
    .mobile-cta-bar { display: flex; }
    footer { padding: 40px 0 calc(96px + var(--safe-bottom)); margin-top: 40px; }
    footer .footer-links { gap: 14px; }
    footer .footer-links a { font-size: 0.8rem; }
}
