/* Custom Variables */
:root {
    --font-family: 'Share Tech Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    
    /* Dark Theme (Default) */
    --bg-main: #0a0a0a;
    --bg-panel: rgba(20, 20, 20, 0.7);
    --bg-panel-solid: #141414;
    --bg-light-glass: rgba(255, 255, 255, 0.02);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-cyan: #06b6d4;
    --accent-blue: #3b82f6;
    --glow-cyan: rgba(6, 182, 212, 0.4);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.5);
    
    --badge-free: #10b981;
    --badge-premium: #f59e0b;
    --badge-market: #8b5cf6;
    --badge-ai: #ec4899;
    --badge-creator: #3b82f6;
}

[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-panel: rgba(255, 255, 255, 0.8);
    --bg-panel-solid: #ffffff;
    --bg-light-glass: rgba(0, 0, 0, 0.02);
    --border-glass: rgba(0, 0, 0, 0.1);
    --text-main: #0f172a;
    --text-muted: #475569;
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
*, *::before, *::after { font-family: var(--font-family) !important; }
input, textarea, select, button, pre, code, kbd, samp { font-family: var(--font-family) !important; }
html { scroll-behavior: smooth; font-family: var(--font-family); color: var(--text-main); background: var(--bg-main); overflow-x: hidden; }
body { line-height: 1.6; letter-spacing: 0.025em; transition: background-color 0.3s, color 0.3s; position: relative; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
.inline-mr { display: inline-block; margin-right: 6px; vertical-align: middle; }

/* Layout & Typography */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; position: relative; z-index: 1; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
p { color: var(--text-muted); }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-2 { margin-top: 0.75rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 600px; }
.w-full { width: 100%; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 1rem; }

/* Grid System */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Glass & UI Elements */
.glass-panel { background: var(--bg-panel); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-glass); border-radius: 16px; padding: 1.5rem; box-shadow: var(--shadow-soft); transition: transform 0.3s ease, border-color 0.3s; }
.glass-panel:hover { transform: translateY(-5px); border-color: rgba(6, 182, 212, 0.3); }
.bg-light-glass { background: var(--bg-light-glass); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; transition: all 0.2s; text-align: center; }
.btn:active { transform: scale(0.96); }
.btn-primary { background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue)); color: #fff; box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2); }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4); filter: brightness(1.1); }
.btn-outline { border: 1px solid var(--border-glass); background: rgba(255,255,255,0.05); color: var(--text-main); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--accent-cyan); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-icon { padding: 0.75rem; border: 1px solid var(--border-glass); border-radius: 8px; background: rgba(255,255,255,0.05); color: var(--text-main); }
.btn-icon:hover { background: var(--accent-cyan); color: #fff; border-color: var(--accent-cyan); }

/* Badges */
.badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-glow { background: rgba(6, 182, 212, 0.1); color: var(--accent-cyan); border: 1px solid var(--accent-cyan); margin-bottom: 1rem; }
.badge-free { background: rgba(16, 185, 129, 0.1); color: var(--badge-free); border: 1px solid var(--badge-free); }
.badge-premium { background: rgba(245, 158, 11, 0.1); color: var(--badge-premium); border: 1px solid var(--badge-premium); }
.badge-market { background: rgba(139, 92, 246, 0.1); color: var(--badge-market); border: 1px solid var(--badge-market); }
.badge-ai { background: rgba(236, 72, 153, 0.1); color: var(--badge-ai); border: 1px solid var(--badge-ai); }
.badge-creator { background: rgba(59, 130, 246, 0.1); color: var(--badge-creator); border: 1px solid var(--badge-creator); }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-glass); transition: all 0.3s; }
[data-theme="light"] .navbar { background: rgba(248, 250, 252, 0.8); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo-wrapper { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; }
.nav-logo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--accent-cyan); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; width: 24px; height: 24px; color: var(--text-main); }
.theme-toggle { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border-glass); color: var(--text-main); }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: var(--bg-panel-solid); flex-direction: column; padding: 2rem; transition: left 0.3s ease; justify-content: flex-start; }
    .nav-menu.active { left: 0; }
    .nav-actions { flex-direction: column; width: 100%; }
    .nav-actions .btn { width: 100%; }
}

/* Background Orbs */
.bg-mesh { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; overflow: hidden; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; }
.orb-1 { width: 400px; height: 400px; background: var(--accent-cyan); top: -100px; left: -100px; }
.orb-2 { width: 300px; height: 300px; background: var(--accent-blue); top: 30%; right: -50px; }

/* Hero Section */
.hero { padding-top: 120px; min-height: 100vh; display: flex; align-items: center; }
.hero-container { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-container { grid-template-columns: 1.2fr 0.8fr; } }
.subtitle { font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; }
.hero-cta { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.stats-grid { display: flex; gap: 2rem; flex-wrap: wrap; border-top: 1px solid var(--border-glass); padding-top: 1.5rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 700; color: var(--accent-cyan); }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

/* Hero Visual & Mini Terminal */
.hero-visual { position: relative; width: 100%; max-width: 400px; margin: 0 auto; }
.hero-image { width: 100%; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.terminal-card { position: absolute; bottom: -20px; left: -20px; right: -20px; padding: 1rem; font-family: var(--font-family) !important; font-size: 0.85rem; }
.terminal-header { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; border-bottom: 1px solid var(--border-glass); padding-bottom: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }
.terminal-title { margin-left: auto; color: var(--text-muted); }
.text-green { color: #10b981; }
.blink { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }

.float-card { position: absolute; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-soft); animation: float 6s ease-in-out infinite; }
.fc-1 { top: 10%; right: -10%; animation-delay: 0s; }
.fc-2 { top: 40%; left: -15%; animation-delay: 2s; }
.fc-3 { top: 70%; right: -5%; animation-delay: 4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Features & Chips */
.icon-wrapper { width: 50px; height: 50px; border-radius: 12px; background: rgba(6, 182, 212, 0.1); color: var(--accent-cyan); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.icon-wrapper svg { width: 24px; height: 24px; }
.chip-container { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.chip { padding: 0.5rem 1rem; border-radius: 20px; border: 1px solid var(--border-glass); background: var(--bg-panel-solid); font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.chip:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); transform: translateY(-2px); }

/* Main Grid & Cards */
.filter-bar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .filter-bar { flex-direction: row; justify-content: space-between; align-items: center; } }
.search-input { padding: 0.75rem 1rem; border-radius: 8px; border: 1px solid var(--border-glass); background: var(--bg-panel-solid); color: var(--text-main); font-family: inherit; width: 100%; max-width: 300px; outline: none; transition: border-color 0.3s; }
.search-input:focus { border-color: var(--accent-cyan); }
.filter-buttons { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; }
.filter-buttons::-webkit-scrollbar { display: none; }
.filter-btn { padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; border: 1px solid var(--border-glass); white-space: nowrap; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--accent-cyan); color: #fff; border-color: var(--accent-cyan); }

.web-card { display: flex; flex-direction: column; }
.card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.card-icon { width: 40px; height: 40px; color: var(--accent-cyan); display: flex; align-items: center; justify-content: center; }
.card-icon svg { width: 100%; height: 100%; }
.card-icon .sparkle-icon { filter: drop-shadow(0 0 10px rgba(34, 211, 238, .35)); }
.category-label { font-size: 0.8rem; color: var(--accent-cyan); font-weight: 600; margin-bottom: 0.5rem; }
.card-desc { font-size: 0.9rem; margin-bottom: 1rem; flex-grow: 1; line-height: 1.75; }
.feature-list { margin-bottom: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }
.feature-list li { margin-bottom: 0.4rem; position: relative; padding-left: 1.2rem; }
.feature-list li::before { content: "•"; color: var(--accent-cyan); font-weight: bold; position: absolute; left: 0; }
.card-actions { display: flex; gap: 0.5rem; margin-top: auto; }

/* Highlights */
.highlight-box { padding: 2rem; background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(10,10,10,0.9)); }
.highlight-info { padding: 1.5rem; background: var(--bg-panel-solid); border-radius: 12px; border: 1px solid var(--border-glass); }
.full-col { grid-column: 1 / -1; text-align: center; display: flex; flex-direction: column; align-items: center; }

/* Socials & FAQ */
.social-card { text-align: center; padding: 2rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.social-card svg { width: 32px; height: 32px; color: var(--accent-cyan); margin-bottom: 0.5rem; }

.accordion-item { border: 1px solid var(--border-glass); border-radius: 8px; margin-bottom: 0.5rem; overflow: hidden; background: var(--bg-panel-solid); }
.accordion-header { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; font-weight: 600; font-size: 1rem; text-align: left; }
.accordion-header svg { width: 20px; height: 20px; transition: transform 0.3s; }
.accordion-header[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--accent-cyan); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.5rem; }
.accordion-content p { padding-bottom: 1rem; }

/* Footer */
.footer { border-top: 1px solid var(--border-glass); padding: 3rem 0; background: var(--bg-main); }
.footer-logo { width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 1rem; }
.footer-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; font-size: 0.9rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--accent-cyan); }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-glass); }

/* Utilities & Animations */
.border-glow { border: 1px solid var(--accent-cyan); box-shadow: 0 0 15px var(--glow-cyan); }
.toast { position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%); background: var(--accent-cyan); color: #fff; padding: 0.75rem 1.5rem; border-radius: 30px; font-weight: 600; z-index: 1000; transition: bottom 0.3s ease; box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4); }
.toast.show { bottom: 30px; }
.btn-top { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: var(--bg-panel-solid); border: 1px solid var(--border-glass); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 99; color: var(--text-main); }
.btn-top.show { opacity: 1; pointer-events: auto; }
.btn-top:hover { background: var(--accent-cyan); color: #fff; border-color: var(--accent-cyan); }
.btn-top svg { width: 20px; height: 20px; }

/* Fade Up Animation */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.hidden { display: none !important; }

/* ===== DATZON PATCH UPDATE ===== */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}
body {
    background:
        radial-gradient(circle at 18% 8%, rgba(6, 182, 212, 0.16), transparent 32%),
        radial-gradient(circle at 82% 20%, rgba(59, 130, 246, 0.12), transparent 35%),
        var(--bg-main);
}
body.menu-open { overflow: hidden; }

.container { width: min(100%, 1200px); }
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    transform: none !important;
    will-change: auto;
    background: rgba(7, 9, 12, 0.92);
}
.nav-container { gap: 1rem; }
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}
.logo-wrapper { flex: 0 0 auto; }
.logo-text { letter-spacing: 0.02em; }
.theme-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.theme-toggle:hover { transform: rotate(12deg) scale(1.04); border-color: var(--accent-cyan); background: rgba(6, 182, 212, .10); }
.theme-toggle svg { width: 20px; height: 20px; }

/* Theme icon micro animations */
.theme-toggle svg {
    transform-origin: 50% 50%;
    transform-box: fill-box;
    will-change: transform;
}

.theme-toggle .sun-icon {
    animation: datzonSunSpin 7s linear infinite;
}

.theme-toggle .moon-icon {
    animation: datzonMoonRock 2.6s ease-in-out infinite;
}

@keyframes datzonSunSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes datzonMoonRock {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

@media (prefers-reduced-motion: reduce) {
    .theme-toggle .sun-icon,
    .theme-toggle .moon-icon {
        animation: none;
    }
}
.hamburger {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease;
}
.hamburger:hover { background: rgba(255,255,255,.05); border-color: var(--border-glass); }
.hamburger span {
    width: 25px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--text-main);
    transition: transform .32s cubic-bezier(.34,1.56,.64,1), opacity .22s ease, width .22s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (min-width: 769px) {
    .nav-menu { margin-left: auto; }
    .nav-right { margin-left: 0; }
}
@media (max-width: 768px) {
    .nav-container { height: 72px; }
    .hamburger { display: inline-flex; }
    .nav-menu {
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100dvh - 72px);
        transform: translateX(105%);
        transition: transform .32s ease;
        padding: 3rem 1.5rem;
        background: rgba(15, 15, 16, 0.98);
        border-left: 1px solid var(--border-glass);
    }
    .nav-menu.active { left: 0; transform: translateX(0); }
    .nav-link { font-size: 1.2rem; padding: .55rem 0; }
    .nav-actions { margin-top: 1.2rem; }
}

.hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 4rem;
    overflow: hidden;
}
.hero-container { gap: 2.5rem; }
.hero-content { min-width: 0; }
.hero h1 { font-size: clamp(2.25rem, 8vw, 4.4rem); letter-spacing: -0.04em; }
.hero .subtitle { font-size: clamp(1rem, 3.8vw, 1.18rem); line-height: 1.75; }
.hero-cta .btn { min-height: 54px; border-radius: 14px; }

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(.45rem, 2vw, 1rem);
    width: 100%;
    flex-wrap: nowrap !important;
    align-items: stretch;
    padding-top: 1.25rem;
}
.stat-item {
    min-width: 0;
    padding: .75rem .45rem;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
    text-align: center;
    align-items: center;
}
.stat-num { font-size: clamp(1.35rem, 6vw, 2rem); line-height: 1; }
.stat-label {
    margin-top: .45rem;
    font-size: clamp(.58rem, 2.1vw, .78rem);
    line-height: 1.25;
    letter-spacing: .08em;
    max-width: 100%;
}

.hero-visual {
    max-width: min(100%, 330px);
    padding: 1rem 0 3.5rem;
    overflow: visible;
}
.hero-image {
    width: min(100%, 290px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 28px;
    background: #f9f6eb;
    padding: .7rem;
}
.terminal-card {
    left: 0;
    right: 0;
    bottom: .4rem;
    border-radius: 20px;
}
.float-card {
    padding: .42rem .72rem;
    font-size: .72rem;
    white-space: nowrap;
    max-width: max-content;
    z-index: 5;
}
.fc-1 { top: 12%; right: 0; }
.fc-2 { top: 43%; left: 0; }
.fc-3 { top: 65%; right: 0; }
@media (min-width: 1024px) {
    .hero-visual { max-width: 390px; }
    .hero-image { width: 330px; }
}

.section { overflow-x: clip; }
.filter-bar { width: 100%; }
.search-input {
    width: 100%;
    max-width: none !important;
    min-height: 54px;
    border-radius: 14px;
    font-size: 1rem;
}
@media (min-width: 768px) {
    .filter-bar { flex-direction: column; align-items: stretch; }
}
.filter-buttons {
    width: 100%;
    gap: .7rem;
    padding-bottom: .15rem;
}
.filter-btn {
    flex: 1 0 auto;
    min-height: 44px;
    border-radius: 999px;
    padding: .55rem 1.1rem;
}
@media (max-width: 430px) {
    .filter-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: .45rem; overflow: visible; }
    .filter-btn { min-width: 0; padding: .5rem .45rem; font-size: .78rem; }
}

.web-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
}
.card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    align-items: stretch;
    gap: .75rem;
    width: 100%;
}
.card-actions .btn-primary { min-width: 0; border-radius: 14px; }
.copy-btn.btn-icon {
    width: 56px !important;
    min-width: 56px;
    height: 56px;
    padding: 0 !important;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.copy-btn svg { width: 21px; height: 21px; }

.highlight-box {
    border-radius: 28px;
    overflow: hidden;
}
.highlight-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 245px;
    gap: .55rem;
}
.highlight-info p { max-width: 560px; }
.highlight-info .btn { border-radius: 14px; min-height: 48px; }

.social-grid { align-items: stretch; }
.social-card {
    min-height: 210px;
    justify-content: center;
    border-radius: 24px;
}
.social-card svg {
    width: 42px;
    height: 42px;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.social-card h4 { font-size: 1.15rem; }
.social-card p { max-width: 280px; }

.contact-info .btn {
    min-height: 54px;
    border-radius: 14px;
    overflow-wrap: anywhere;
}
.footer-logo { width: 58px; height: 58px; }
.footer-desc { max-width: 560px; margin: 0 auto; }

.btn-top {
    bottom: 24px;
    right: 20px;
    width: 52px;
    height: 52px;
    z-index: 150;
}

@media (max-width: 520px) {
    .container { padding-left: 1.25rem; padding-right: 1.25rem; }
    .hero-cta { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
    .hero-cta .btn { padding-left: .7rem; padding-right: .7rem; }
    .section { padding: 4.2rem 0; }
    .grid { gap: 1.25rem; }
    .glass-panel { border-radius: 20px; padding: 1.35rem; }
    .web-card { padding: 1.55rem; }
    .card-icon { width: 46px; height: 46px; }
}
section[id] { scroll-margin-top: 92px; }

/* ===== DATZON HERO + LIQUID HEADER PATCH ===== */
.navbar {
    background:
        linear-gradient(135deg, rgba(3, 7, 12, .78), rgba(8, 13, 20, .58)) !important;
    backdrop-filter: blur(24px) saturate(165%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(165%) !important;
    border-bottom: 1px solid rgba(255,255,255,.085) !important;
    box-shadow:
        0 18px 42px rgba(0,0,0,.34),
        inset 0 1px 0 rgba(255,255,255,.055) !important;
    overflow: hidden;
}
.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 0%, rgba(6, 217, 255, .16), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(37, 99, 235, .12), transparent 36%),
        linear-gradient(90deg, rgba(255,255,255,.045), transparent 35%, rgba(255,255,255,.035));
    opacity: .72;
}
.navbar > * { position: relative; z-index: 1; }
[data-theme="light"] .navbar {
    background:
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.54)) !important;
    backdrop-filter: blur(24px) saturate(165%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(165%) !important;
    border-bottom-color: rgba(15,23,42,.12) !important;
    box-shadow:
        0 18px 42px rgba(15,23,42,.10),
        inset 0 1px 0 rgba(255,255,255,.72) !important;
}
[data-theme="light"] .navbar::before {
    background:
        radial-gradient(circle at 12% 0%, rgba(6, 182, 212, .18), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(37, 99, 235, .11), transparent 36%),
        linear-gradient(90deg, rgba(255,255,255,.60), transparent 45%, rgba(255,255,255,.35));
}
@media (max-width: 768px) {
    .nav-menu {
        background:
            linear-gradient(145deg, rgba(7,10,15,.84), rgba(15,20,28,.70)) !important;
        backdrop-filter: blur(26px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(26px) saturate(160%) !important;
        border-top: 1px solid rgba(255,255,255,.06);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
    }
    [data-theme="light"] .nav-menu {
        background:
            linear-gradient(145deg, rgba(255,255,255,.88), rgba(248,250,252,.70)) !important;
        border-top-color: rgba(15,23,42,.10);
    }
}

.hero-visual {
    max-width: min(100%, 315px) !important;
    padding: .75rem 0 7.65rem !important;
    isolation: isolate;
}
.hero-image {
    width: min(100%, 252px) !important;
    position: relative;
    z-index: 1;
}
.terminal-card {
    left: 50% !important;
    right: auto !important;
    bottom: -0.25rem !important;
    transform: translateX(-50%);
    width: min(100%, 294px);
    padding: .82rem .9rem !important;
    border-radius: 18px !important;
    z-index: 4;
}
.terminal-card.glass-panel {
    background: linear-gradient(135deg, rgba(27,27,27,.72), rgba(8,10,14,.58));
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.terminal-header {
    margin-bottom: .45rem !important;
    padding-bottom: .45rem !important;
}
.terminal-title { font-size: .76rem; letter-spacing: .08em; }
.terminal-body p { font-size: .73rem; line-height: 1.45; }
.float-card {
    min-height: 36px;
    padding: .32rem .58rem !important;
    font-size: .65rem !important;
    border-radius: 16px !important;
    line-height: 1.15;
    z-index: 6;
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
}
.float-card svg {
    width: 13px !important;
    height: 13px !important;
    flex: 0 0 13px;
}
.fc-1 { top: 13.5% !important; right: -0.55rem !important; }
.fc-2 { top: 49.5% !important; left: -0.62rem !important; }
.fc-3 { top: 72% !important; right: -0.62rem !important; }

@media (max-width: 380px) {
    .hero-visual { max-width: min(100%, 292px) !important; padding-bottom: 7.3rem !important; }
    .hero-image { width: min(100%, 238px) !important; }
    .terminal-card { width: min(100%, 276px); padding: .76rem .82rem !important; }
    .terminal-body p { font-size: .68rem; }
    .float-card { font-size: .60rem !important; padding: .28rem .48rem !important; min-height: 32px; }
    .fc-1 { right: -0.15rem !important; }
    .fc-2 { left: -0.15rem !important; }
    .fc-3 { right: -0.15rem !important; }
}
@media (min-width: 768px) {
    .hero-visual { max-width: 360px !important; padding-bottom: 7.8rem !important; }
    .hero-image { width: 275px !important; }
    .terminal-card { width: 322px; }
    .float-card { font-size: .72rem !important; padding: .38rem .68rem !important; }
    .fc-1 { right: .15rem !important; }
    .fc-2 { left: .15rem !important; }
    .fc-3 { right: .15rem !important; }
}
@media (min-width: 1024px) {
    .hero-visual { max-width: 390px !important; padding-bottom: 8rem !important; }
    .hero-image { width: 305px !important; }
    .terminal-card { width: 345px; bottom: -0.35rem !important; }
    .fc-1 { right: .05rem !important; }
    .fc-2 { left: .05rem !important; }
    .fc-3 { right: .05rem !important; }
}

/* ===== DATZON V3 FIX PATCH: MOBILE MENU, HERO FLOATING, LIGHT THEME ===== */
.navbar {
    overflow: visible !important;
    isolation: isolate;
}
.navbar::before {
    border-radius: inherit;
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        top: 72px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: calc(100dvh - 72px) !important;
        z-index: 300 !important;
        display: flex !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(106%) !important;
        transition:
            transform .34s cubic-bezier(.22,1,.36,1),
            opacity .25s ease,
            visibility .25s ease !important;
        padding: 3.25rem 1.5rem 2rem !important;
    }
    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .navbar:has(.nav-menu.active) {
        border-bottom-color: rgba(6, 217, 255, .18) !important;
    }
}

/* Naikin TikTok floating card dan rapikan posisi agar tidak nutup logo */
.fc-1 { top: 12.5% !important; right: -0.35rem !important; }
.fc-2 { top: 47.5% !important; left: -0.5rem !important; }
.fc-3 { top: 61.5% !important; right: -0.35rem !important; }
@media (max-width: 380px) {
    .fc-1 { right: -0.05rem !important; }
    .fc-2 { left: -0.05rem !important; }
    .fc-3 { top: 60.5% !important; right: -0.05rem !important; }
}
@media (min-width: 768px) {
    .fc-1 { right: .25rem !important; }
    .fc-2 { left: .25rem !important; }
    .fc-3 { top: 61% !important; right: .25rem !important; }
}
@media (min-width: 1024px) {
    .fc-3 { top: 60% !important; right: .25rem !important; }
}

/* Terminal DATZON.SYSTEM dibuat jelas di light mode */
[data-theme="light"] .terminal-card.glass-panel {
    background:
        linear-gradient(135deg, rgba(255,255,255,.86), rgba(226,246,255,.68)) !important;
    border-color: rgba(15,23,42,.12) !important;
    box-shadow:
        0 18px 44px rgba(15,23,42,.14),
        inset 0 1px 0 rgba(255,255,255,.86) !important;
    color: #0f172a !important;
}
[data-theme="light"] .terminal-card .terminal-header {
    border-bottom-color: rgba(15,23,42,.13) !important;
}
[data-theme="light"] .terminal-title {
    color: #334155 !important;
    opacity: .9;
}
[data-theme="light"] .terminal-body p,
[data-theme="light"] .terminal-body .blink {
    color: #172033 !important;
    opacity: 1 !important;
    text-shadow: none !important;
}
[data-theme="light"] .terminal-body .text-green {
    color: #059669 !important;
    font-weight: 800;
}

/* Highlight/Kenapa Lewat DATZON mengikuti light mode */
[data-theme="light"] .highlight-box {
    background:
        radial-gradient(circle at 18% 0%, rgba(6,182,212,.13), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,.92), rgba(230,246,255,.72)) !important;
    border-color: rgba(15,23,42,.10) !important;
    box-shadow: 0 18px 48px rgba(15,23,42,.10) !important;
}
[data-theme="light"] .highlight-info {
    background: rgba(255,255,255,.82) !important;
    border-color: rgba(15,23,42,.10) !important;
    box-shadow: 0 12px 28px rgba(15,23,42,.07) !important;
    color: #0f172a !important;
}
[data-theme="light"] .highlight-info h3 {
    color: #0f172a !important;
}
[data-theme="light"] .highlight-info p {
    color: #475569 !important;
}
[data-theme="light"] .highlight-info .btn-outline {
    background: rgba(255,255,255,.85) !important;
    border-color: rgba(15,23,42,.14) !important;
    color: #0f172a !important;
}
[data-theme="light"] .highlight-info .btn-outline:hover {
    border-color: var(--accent-cyan) !important;
    background: rgba(6,182,212,.08) !important;
}


/* ===== SHARE TECH MONO + CYBER MOTION PATCH ===== */
html, body,
button, input, textarea, select,
a, p, span, small, strong, b, i,
h1, h2, h3, h4, h5, h6,
.badge, .btn, .chip, .filter-btn,
.logo-text, .stat-num, .stat-label,
.terminal-card, .terminal-card *,
.nav-link, .category-label, .footer-links a,
.accordion-header, .accordion-content,
.toast {
    font-family: var(--font-family) !important;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 4px),
        radial-gradient(circle at 50% 0%, rgba(6, 182, 212, .08), transparent 32%);
    mix-blend-mode: screen;
    opacity: .18;
    animation: datzonScanline 7s linear infinite;
}
[data-theme="light"] body::before {
    background:
        repeating-linear-gradient(0deg, rgba(15,23,42,.035) 0 1px, transparent 1px 4px),
        radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .08), transparent 32%);
    mix-blend-mode: multiply;
    opacity: .12;
}

.bg-mesh::after {
    content: "";
    position: absolute;
    inset: -20%;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.28) 1px, transparent 1.7px),
        radial-gradient(circle, rgba(34,211,238,.22) 1px, transparent 1.7px);
    background-size: 90px 90px, 130px 130px;
    background-position: 0 0, 34px 58px;
    opacity: .16;
    animation: datzonStarDrift 28s linear infinite;
}
[data-theme="light"] .bg-mesh::after { opacity: .12; }

.orb-1 { animation: orbFloatOne 13s ease-in-out infinite alternate; }
.orb-2 { animation: orbFloatTwo 16s ease-in-out infinite alternate; }

.logo-wrapper { position: relative; }
.logo-wrapper::after {
    content: "";
    position: absolute;
    inset: -9px -12px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 50%, rgba(6,182,212,.22), transparent 42%);
    opacity: 0;
    transform: scale(.86);
    transition: opacity .25s ease, transform .25s ease;
    z-index: -1;
}
.logo-wrapper:hover::after { opacity: 1; transform: scale(1); }
.logo-text {
    text-shadow: 0 0 18px rgba(6,182,212,.18);
    animation: datzonLogoPulse 4.8s ease-in-out infinite;
}
.nav-logo { animation: datzonLogoOrbit 7s ease-in-out infinite; }

.theme-toggle {
    position: relative;
    overflow: hidden;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.theme-toggle::before {
    content: "";
    position: absolute;
    inset: -45%;
    background: conic-gradient(from 0deg, transparent, rgba(6,182,212,.45), transparent, rgba(139,92,246,.35), transparent);
    opacity: 0;
    animation: datzonSpin 4s linear infinite;
}
.theme-toggle > svg,
.theme-toggle .theme-icon-svg { position: relative; z-index: 1; }
.theme-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(6,182,212,.45);
    box-shadow: 0 0 24px rgba(6,182,212,.22);
}
.theme-toggle:hover::before { opacity: .7; }
.theme-toggle .theme-icon-svg { animation: iconPop .36s cubic-bezier(.2,1.5,.45,1); }

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6,217,255,.9), rgba(139,92,246,.75), transparent);
    transform: translateX(-100%);
    animation: navEnergyLine 5.5s ease-in-out infinite;
    pointer-events: none;
}

.btn, .chip, .filter-btn, .glass-panel, .web-card, .social-card, .value-card, .highlight-info, .accordion-item {
    position: relative;
}
.btn { overflow: hidden; }
.btn-primary::after,
.btn-outline::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.22) 45%, transparent 70%);
    transform: translateX(-130%);
    transition: transform .65s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}
.btn:hover::after { transform: translateX(130%); }
.btn-primary { background-size: 180% 180%; animation: btnGradientFlow 5s ease infinite; }

.hero-image {
    animation: heroImageHover 6.8s ease-in-out infinite;
    filter: drop-shadow(0 0 22px rgba(6,182,212,.10));
}
.hero-visual::before {
    content: "";
    position: absolute;
    width: 78%;
    aspect-ratio: 1;
    left: 50%;
    top: 1rem;
    translate: -50% 0;
    border-radius: 32px;
    background: conic-gradient(from 0deg, transparent, rgba(6,182,212,.24), transparent, rgba(59,130,246,.24), transparent);
    filter: blur(24px);
    opacity: .48;
    animation: datzonSpin 11s linear infinite;
    z-index: 0;
}
.terminal-card {
    overflow: hidden;
    animation: terminalFloat 7.4s ease-in-out infinite;
}
.terminal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(6,182,212,.10), transparent);
    transform: translateY(-115%);
    animation: terminalScanner 4.4s ease-in-out infinite;
    pointer-events: none;
}
.terminal-body p { animation: terminalTextGlow 3.2s ease-in-out infinite; }
.terminal-body p:nth-child(2) { animation-delay: .25s; }
.terminal-body p:nth-child(3) { animation-delay: .5s; }
.terminal-body p:nth-child(4) { animation-delay: .75s; }

.float-card {
    animation-name: floatCyber;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.float-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(6,182,212,.35), transparent 42%, rgba(139,92,246,.28));
    opacity: 0;
    transition: opacity .25s ease;
    z-index: -1;
}
.float-card:hover::after { opacity: 1; }

.web-card, .value-card, .social-card, .highlight-info, .accordion-item {
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.web-card::before, .value-card::before, .social-card::before, .highlight-info::before, .accordion-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(6,182,212,.24), transparent 34%),
        linear-gradient(120deg, transparent, rgba(255,255,255,.06), transparent);
    opacity: 0;
    transition: opacity .28s ease;
    pointer-events: none;
}
.web-card:hover::before, .value-card:hover::before, .social-card:hover::before, .highlight-info:hover::before, .accordion-item:hover::before,
.card-glow-active::before {
    opacity: .9;
}
.web-card:hover, .value-card:hover, .social-card:hover, .highlight-info:hover {
    box-shadow:
        0 22px 54px rgba(0,0,0,.30),
        0 0 0 1px rgba(6,182,212,.16),
        0 0 38px rgba(6,182,212,.10);
}
.web-card:hover { transform: translateY(-7px) scale(1.012); }
.card-icon {
    border-radius: 16px;
    transition: transform .28s ease, filter .28s ease;
    animation: cardIconBreath 5.2s ease-in-out infinite;
}
.web-card:hover .card-icon,
.value-card:hover .icon-wrapper,
.social-card:hover svg {
    transform: translateY(-3px) rotate(-2deg) scale(1.08);
    filter: drop-shadow(0 0 16px rgba(6,182,212,.35));
}
.card-icon .sparkle-icon {
    animation: sparklePulse 2.2s ease-in-out infinite;
    transform-origin: center;
}

.badge-glow, .chip:hover, .filter-btn.active {
    box-shadow: 0 0 20px rgba(6,182,212,.16);
}
.badge-glow { animation: badgeSignal 3.2s ease-in-out infinite; }
.filter-btn.active { animation: activeFilterPulse 2.8s ease-in-out infinite; }
.stat-item {
    transform-origin: center;
    animation: statWakeUp .55s ease both;
}
.stat-item:nth-child(2) { animation-delay: .08s; }
.stat-item:nth-child(3) { animation-delay: .16s; }
.stat-item:nth-child(4) { animation-delay: .24s; }
.stat-num { text-shadow: 0 0 18px rgba(6,182,212,.28); }

.grid .fade-up:nth-child(2) { transition-delay: .06s; }
.grid .fade-up:nth-child(3) { transition-delay: .12s; }
.grid .fade-up:nth-child(4) { transition-delay: .18s; }
.grid .fade-up:nth-child(5) { transition-delay: .24s; }
.grid .fade-up:nth-child(6) { transition-delay: .30s; }
.grid .fade-up:nth-child(7) { transition-delay: .36s; }
.grid .fade-up:nth-child(8) { transition-delay: .42s; }
.grid .fade-up:nth-child(9) { transition-delay: .48s; }
.grid .fade-up:nth-child(10) { transition-delay: .54s; }

@keyframes datzonScanline {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 80px, 0 0; }
}
@keyframes datzonStarDrift {
    from { transform: translate3d(0,0,0) rotate(0deg); }
    to { transform: translate3d(60px, -90px, 0) rotate(2deg); }
}
@keyframes orbFloatOne {
    0% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(45px, 70px, 0) scale(1.08); }
    100% { transform: translate3d(120px, 20px, 0) scale(.94); }
}
@keyframes orbFloatTwo {
    0% { transform: translate3d(0,0,0) scale(.95); }
    50% { transform: translate3d(-60px, 65px, 0) scale(1.08); }
    100% { transform: translate3d(-120px, -10px, 0) scale(1); }
}
@keyframes datzonLogoPulse {
    0%, 100% { text-shadow: 0 0 14px rgba(6,182,212,.18); }
    50% { text-shadow: 0 0 26px rgba(6,182,212,.42), 0 0 40px rgba(59,130,246,.16); }
}
@keyframes datzonLogoOrbit {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(2deg); }
}
@keyframes iconPop {
    0% { transform: scale(.6) rotate(-24deg); opacity: .55; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes datzonSpin { to { transform: rotate(360deg); } }
@keyframes navEnergyLine {
    0%, 26% { transform: translateX(-105%); opacity: 0; }
    42% { opacity: 1; }
    74%, 100% { transform: translateX(105%); opacity: 0; }
}
@keyframes btnGradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes heroImageHover {
    0%, 100% { transform: translateY(0) rotate(.2deg); }
    50% { transform: translateY(-9px) rotate(-.8deg); }
}
@keyframes terminalFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -5px; }
}
@keyframes terminalScanner {
    0%, 40% { transform: translateY(-115%); opacity: 0; }
    52% { opacity: .85; }
    72%, 100% { transform: translateY(115%); opacity: 0; }
}
@keyframes terminalTextGlow {
    0%, 100% { text-shadow: 0 0 0 transparent; }
    50% { text-shadow: 0 0 10px rgba(6,182,212,.20); }
}
@keyframes floatCyber {
    0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
    50% { transform: translate3d(0,-12px,0) rotate(-1deg); }
}
@keyframes cardIconBreath {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(6,182,212,.10)); }
    50% { filter: drop-shadow(0 0 15px rgba(6,182,212,.28)); }
}
@keyframes sparklePulse {
    0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 9px rgba(34,211,238,.35)); }
    50% { transform: scale(1.08) rotate(5deg); filter: drop-shadow(0 0 18px rgba(139,92,246,.42)); }
}
@keyframes badgeSignal {
    0%, 100% { box-shadow: 0 0 12px rgba(6,182,212,.12); }
    50% { box-shadow: 0 0 24px rgba(6,182,212,.32); }
}
@keyframes activeFilterPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}
@keyframes statWakeUp {
    from { opacity: 0; transform: translateY(8px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

/* ===== DATZON FINAL HERO FLOAT + LITE PERFORMANCE PATCH =====
   Patokan posisi: logo DATZON besar di tengah, DATZON.SYSTEM di bawah,
   Apps Mod kanan-atas, Premium Store kiri-tengah, TikTok Tools kanan-bawah. */
.hero-visual {
    position: relative !important;
    width: 100% !important;
    max-width: min(100%, 520px) !important;
    margin: 0 auto !important;
    padding: .75rem 0 13.6rem !important;
    overflow: visible !important;
    isolation: isolate !important;
}
.hero-image {
    width: min(78vw, 395px) !important;
    max-width: 395px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    animation: none !important;
    filter: none !important;
    transform: none !important;
    will-change: auto !important;
}
.hero-visual::before {
    display: none !important;
    animation: none !important;
}
.terminal-card,
.terminal-card.glass-panel {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: 2.25rem !important;
    width: min(84vw, 460px) !important;
    max-width: 460px !important;
    transform: translateX(-50%) !important;
    z-index: 4 !important;
    animation: none !important;
    transition: transform .28s ease, box-shadow .28s ease !important;
    will-change: auto !important;
}
.terminal-card::before {
    display: none !important;
    animation: none !important;
}
.terminal-body p {
    animation: none !important;
}
.float-card,
.float-card.glass-panel {
    position: absolute !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: max-content !important;
    max-width: max-content !important;
    min-height: 40px !important;
    white-space: nowrap !important;
    z-index: 7 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
    backdrop-filter: blur(10px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
}
.float-card::after,
.float-card:hover::after {
    display: none !important;
}
.fc-1 {
    top: 3.05rem !important;
    right: .25rem !important;
    left: auto !important;
}
.fc-2 {
    top: 16.35rem !important;
    left: .05rem !important;
    right: auto !important;
}
.fc-3 {
    top: 23.05rem !important;
    right: .25rem !important;
    left: auto !important;
}

/* Biar halaman lebih ringan di HP: matikan efek glow pointer dan animasi berat. */
.web-card,
.value-card,
.social-card,
.highlight-info,
.accordion-item {
    transition: border-color .18s ease, transform .18s ease !important;
    will-change: auto !important;
}
.web-card::before,
.value-card::before,
.social-card::before,
.highlight-info::before,
.accordion-item::before,
.card-glow-active::before {
    display: none !important;
    opacity: 0 !important;
}
.web-card:hover,
.value-card:hover,
.social-card:hover,
.highlight-info:hover {
    transform: none !important;
    box-shadow: var(--shadow-soft) !important;
}
.card-icon,
.card-icon .sparkle-icon,
.icon-wrapper,
.social-card svg,
.badge-glow,
.filter-btn.active,
.btn-primary {
    animation: none !important;
    filter: none !important;
    will-change: auto !important;
}
.btn::after,
.btn-outline::after {
    display: none !important;
}

@media (max-width: 380px) {
    .hero-visual {
        max-width: min(100%, 360px) !important;
        padding-bottom: 12.7rem !important;
    }
    .hero-image {
        width: min(76vw, 288px) !important;
    }
    .terminal-card,
    .terminal-card.glass-panel {
        width: min(88vw, 330px) !important;
        bottom: 1.95rem !important;
    }
    .float-card,
    .float-card.glass-panel {
        font-size: .62rem !important;
        padding: .32rem .54rem !important;
        min-height: 34px !important;
    }
    .fc-1 { top: 2.7rem !important; right: .25rem !important; }
    .fc-2 { top: 14.65rem !important; left: .1rem !important; }
    .fc-3 { top: 20.5rem !important; right: .35rem !important; }
}

@media (min-width: 768px) {
    .hero-visual {
        max-width: 460px !important;
        padding-bottom: 12.2rem !important;
    }
    .hero-image {
        width: 345px !important;
        max-width: 345px !important;
    }
    .terminal-card,
    .terminal-card.glass-panel {
        width: 395px !important;
        bottom: 2rem !important;
    }
    .fc-1 { top: 3.4rem !important; right: .35rem !important; }
    .fc-2 { top: 15.2rem !important; left: .2rem !important; }
    .fc-3 { top: 21.1rem !important; right: .5rem !important; }
}

@media (min-width: 1024px) {
    .hero-visual {
        max-width: 420px !important;
        padding-bottom: 10.6rem !important;
    }
    .hero-image {
        width: 330px !important;
        max-width: 330px !important;
    }
    .terminal-card,
    .terminal-card.glass-panel {
        width: 365px !important;
        bottom: 1.65rem !important;
    }
    .fc-1 { top: 3.1rem !important; right: .15rem !important; }
    .fc-2 { top: 13.9rem !important; left: .15rem !important; }
    .fc-3 { top: 19.6rem !important; right: .25rem !important; }
}


/* Monochrome theme icons: white in dark mode, black in light mode. */
.theme-toggle .theme-icon-svg {
    color: var(--text-main);
    fill: none;
    stroke: currentColor;
}
[data-theme="dark"] .theme-toggle .theme-icon-svg { color: #ffffff; }
[data-theme="light"] .theme-toggle .theme-icon-svg { color: #000000; }
