*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Navbar ── */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link, .nav-link-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #a1a1aa;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover, .nav-link-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #18181b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 6px;
    margin-top: 4px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: #a1a1aa;
    border-radius: 6px;
    transition: 0.15s;
}

.dropdown-menu a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost {
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    transition: 0.2s;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.25);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    background: #fff;
    color: #000;
    border-radius: 8px;
    transition: 0.2s;
}

.btn-white:hover {
    background: #e4e4e7;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: 0.2s;
}

.btn-dark:hover {
    background: rgba(255,255,255,0.1);
}

.btn-lg {
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    padding: 8px;
}

/* ── Hero ── */
.hero {
    position: relative;
    text-align: center;
    padding: 160px 24px 80px;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px 6px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 32px;
    transition: 0.2s;
}

.announcement-badge:hover {
    background: rgba(255,255,255,0.1);
}

.badge-link {
    color: #71717a;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.125rem;
    color: #71717a;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Mockup Section ── */
.mockup-section {
    padding: 0 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #71717a;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 999px;
    transition: 0.25s;
}

.feature-tab:hover {
    color: #d4d4d8;
    background: rgba(255,255,255,0.08);
}

.feature-tab.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

.mockup-container {
    position: relative;
}

.mockup-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.mockup-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Volt Window ── */
.volt-window {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.volt-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.volt-titlebar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #a1a1aa;
}

.instance-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border-radius: 6px;
    font-weight: 500;
}

.instance-badge.waiting {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.volt-body {
    display: flex;
    min-height: 420px;
}

.volt-sidebar {
    width: 180px;
    background: #0d0d0d;
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 12px;
    flex-shrink: 0;
}

.sidebar-icons {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.s-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #52525b;
    cursor: default;
}

.s-icon.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.sidebar-search {
    padding: 6px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    font-size: 0.75rem;
    color: #52525b;
    margin-bottom: 12px;
}

.sidebar-tree {
    font-size: 0.75rem;
}

.tree-label {
    color: #52525b;
    padding: 4px 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.65rem;
}

.tree-item {
    padding: 5px 8px 5px 16px;
    color: #71717a;
    border-radius: 4px;
    cursor: default;
}

.tree-item.active {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.volt-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.editor-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    min-height: 36px;
}

.editor-tabs {
    display: flex;
    gap: 2px;
}

.e-tab {
    padding: 8px 14px;
    font-size: 0.75rem;
    color: #52525b;
    border-bottom: 2px solid transparent;
}

.e-tab.active {
    color: #d4d4d8;
    border-bottom-color: #3b82f6;
    background: rgba(255,255,255,0.03);
}

.close-tab {
    margin-left: 6px;
    opacity: 0.5;
}

.editor-actions {
    display: flex;
    gap: 8px;
}

.run-btn {
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #22c55e;
    color: #000;
    border-radius: 6px;
}

.layout-btn {
    padding: 4px 10px;
    font-size: 0.75rem;
    color: #71717a;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
}

.editor-content {
    display: flex;
    flex: 1;
    min-height: 200px;
    overflow: hidden;
}

.line-numbers {
    padding: 12px 8px;
    font-family: 'Consolas', 'Fira Code', monospace;
    font-size: 0.72rem;
    line-height: 1.6;
    color: #3f3f46;
    text-align: right;
    user-select: none;
    background: #0a0a0a;
    border-right: 1px solid rgba(255,255,255,0.04);
}

.code-area {
    padding: 12px 16px;
    font-family: 'Consolas', 'Fira Code', monospace;
    font-size: 0.72rem;
    line-height: 1.6;
    overflow-x: auto;
    flex: 1;
}

.code-area .kw { color: #c084fc; }
.code-area .fn { color: #60a5fa; }
.code-area .str { color: #fbbf24; }
.code-area .cm { color: #52525b; font-style: italic; }

.terminal-panel {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #0a0a0a;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    font-size: 0.7rem;
    color: #52525b;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.t-tab {
    padding: 2px 8px;
    border-radius: 4px;
}

.t-tab.active {
    background: rgba(255,255,255,0.06);
    color: #a1a1aa;
}

.t-filter {
    margin-left: auto;
}

.terminal-body {
    padding: 8px 12px;
    font-family: 'Consolas', monospace;
    font-size: 0.7rem;
    line-height: 1.7;
    max-height: 100px;
    overflow-y: auto;
}

.t-time { color: #3f3f46; }
.t-tag { color: #60a5fa; }
.t-line.success { color: #4ade80; }
.t-ms { color: #52525b; }

.editor-statusbar {
    display: flex;
    gap: 16px;
    padding: 4px 12px;
    font-size: 0.65rem;
    color: #52525b;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.status-connected {
    margin-left: auto;
    color: #4ade80;
}

/* Multi-Instance */
.instance-list {
    font-size: 0.75rem;
}

.inst-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: #71717a;
    border-radius: 6px;
    cursor: default;
}

.inst-item.active {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.inst-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.inst-dot.green { background: #22c55e; }
.inst-dot.yellow { background: #eab308; }

.launch-inst {
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    font-size: 0.75rem;
    color: #71717a;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 6px;
}

.account-manager {
    padding: 20px;
    flex: 1;
}

.account-manager h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.am-sub {
    font-size: 0.8rem;
    color: #52525b;
    margin-bottom: 20px;
}

.am-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 16px;
}

.am-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.am-card-head {
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
}

.am-count {
    font-weight: 400;
    color: #4ade80;
    font-size: 0.75rem;
}

.am-card-body {
    padding: 14px;
}

.am-field {
    margin-bottom: 12px;
}

.am-field label {
    display: block;
    font-size: 0.7rem;
    color: #52525b;
    margin-bottom: 4px;
}

.am-field input {
    width: 100%;
    padding: 6px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: #d4d4d8;
    font-size: 0.75rem;
    font-family: inherit;
}

.am-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.75rem;
    color: #a1a1aa;
}

.toggle {
    width: 36px;
    height: 20px;
    background: #27272a;
    border-radius: 999px;
    position: relative;
}

.toggle.on {
    background: #22c55e;
}

.toggle.on::after {
    content: '';
    position: absolute;
    right: 3px;
    top: 3px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
}

.am-table {
    padding: 8px;
}

.am-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 0.6fr;
    padding: 8px 10px;
    font-size: 0.72rem;
    color: #71717a;
    border-radius: 4px;
}

.am-row.head {
    color: #52525b;
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.am-row .green { color: #4ade80; }
.am-row .yellow { color: #facc15; }

/* Setup */
.setup-body .volt-sidebar {
    width: 60px;
}

.setup-main {
    padding: 24px;
}

.setup-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.setup-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 16px 20px;
}

.setup-card h3 {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #d4d4d8;
}

.setup-path {
    display: flex;
    align-items: center;
    gap: 10px;
}

.setup-path code {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    font-size: 0.75rem;
    color: #71717a;
    font-family: 'Consolas', monospace;
}

.browse-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    white-space: nowrap;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #a1a1aa;
}

.file-ver {
    margin-left: auto;
    font-size: 0.7rem;
    color: #52525b;
}

.setup-hint {
    font-size: 0.8rem;
    color: #52525b;
    margin-bottom: 16px;
}

.connection-spinner {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #71717a;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.mockup-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.75rem;
    color: #52525b;
}

.mockup-disclaimer strong {
    color: #71717a;
}

/* ── Platform Section ── */
.platform-section {
    padding: 100px 24px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.platform-section h2,
.performance-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: #71717a;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.chart-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 48px;
    text-align: left;
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.chart-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: #71717a;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 10px;
    height: 3px;
    border-radius: 2px;
}

.legend-dot.volt { background: #3b82f6; }
.legend-dot.others { background: #666; }

.chart-poll {
    margin-left: auto;
    font-size: 0.7rem;
    color: #52525b;
    font-family: 'Consolas', monospace;
}

.chart-area {
    position: relative;
    height: 200px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-y-labels {
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #3f3f46;
}

.volt-line {
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.4));
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.fcard {
    padding: 28px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    transition: 0.3s;
}

.fcard:hover {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
}

.fcard-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 16px;
    color: #a1a1aa;
}

.fcard h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.fcard p {
    font-size: 0.85rem;
    color: #71717a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.fcard-link {
    font-size: 0.85rem;
    color: #a1a1aa;
    transition: 0.2s;
}

.fcard-link:hover {
    color: #fff;
}

/* ── Decompiler ── */
.decompiler-section {
    padding: 0 24px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.decompiler-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.decompiler-hex, .decompiler-code {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
}

.hex-header {
    padding: 10px 16px;
    font-size: 0.75rem;
    color: #71717a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.hex-content {
    padding: 16px;
    font-family: 'Consolas', monospace;
    font-size: 0.65rem;
    line-height: 1.8;
    color: #52525b;
    overflow-x: auto;
}

.decompiler-arrow {
    font-size: 1.5rem;
    color: #3f3f46;
}

.decompiler-code pre {
    padding: 16px;
    font-family: 'Consolas', monospace;
    font-size: 0.72rem;
    line-height: 1.6;
    overflow-x: auto;
}

/* ── Testimonial ── */
.testimonial-section {
    padding: 80px 24px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-section blockquote p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d4d4d8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-section footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
}

.testimonial-section footer strong {
    color: #fff;
}

.testimonial-section footer span {
    color: #52525b;
}

.testimonial-note {
    margin-top: 24px;
    font-size: 0.75rem;
    color: #3f3f46;
    line-height: 1.6;
}

/* ── Performance ── */
.performance-section {
    padding: 100px 24px;
    text-align: center;
}

/* ── Download ── */
.download-section {
    padding: 60px 24px 100px;
    display: flex;
    justify-content: center;
}

.download-card {
    text-align: center;
    padding: 48px 56px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    max-width: 520px;
}

.download-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.download-card p {
    color: #71717a;
    margin-bottom: 28px;
}

.download-meta {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    color: #52525b;
}

/* ── Footer ── */
.footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 40px 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-discord {
    display: inline-flex;
    color: #71717a;
    transition: 0.2s;
}

.footer-discord:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #d4d4d8;
}

.footer-col a {
    display: block;
    font-size: 0.8rem;
    color: #52525b;
    padding: 4px 0;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #71717a;
    padding: 6px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 999px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.theme-toggle {
    display: flex;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 3px;
}

.theme-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    color: #52525b;
    transition: 0.2s;
}

.theme-btn.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.copyright {
    font-size: 0.75rem;
    color: #3f3f46;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-center, .nav-actions .btn-ghost { display: none; }
    .menu-toggle { display: block; }

    .nav-center.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        padding: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .decompiler-grid {
        grid-template-columns: 1fr;
    }

    .decompiler-arrow {
        text-align: center;
        transform: rotate(90deg);
    }

    .am-grid {
        grid-template-columns: 1fr;
    }

    .volt-sidebar {
        display: none;
    }

    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .navbar { padding: 12px 16px; }
    .hero { padding: 120px 16px 60px; }
    .download-card { padding: 32px 24px; }
    .footer { padding: 32px 16px 16px; }
}
