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

:root {
    --bg: #08090d;
    --surface: #111318;
    --surface-hover: #191c24;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #e5e5e5;
    --text-muted: #7a7f8d;
    --accent: #fff;
    --gold: #f5a623;
    --gold-glow: rgba(245, 166, 35, 0.3);
    --badge-product: #ef4444;
    --badge-audience: #f59e0b;
    --badge-funnels: #8b5cf6;
    --badge-marketing: #3b82f6;
    --badge-content: #10b981;
    --badge-sales: #ec4899;
    --badge-youtube: #6366f1;
    --badge-tools: #f97316;
    --badge-dev: #64748b;
    --glass-bg: rgba(17, 19, 24, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100dvh;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(30, 58, 95, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(20, 50, 80, 0.08) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== FADE-IN ANIMATION ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(56, 120, 180, 0.1) 0%, rgba(40, 80, 130, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.hero-sub {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ==================== PIPELINE SECTION ==================== */
.pipeline-section {
    padding: 20px 0 60px;
}

.pipeline-wrapper {
    overflow-x: auto;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
}

.pipeline-wrapper::-webkit-scrollbar {
    height: 4px;
}

.pipeline-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.pipeline-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}

.pipeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-width: max-content;
    padding: 0 4px;
}

.pipeline-stage {
    width: 160px;
    flex-shrink: 0;
    padding: 14px 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-stage:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.stage-icon {
    font-size: 16px;
}

.stage-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stage-skills {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stage-chip {
    padding: 6px 9px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 7px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
}

.stage-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

.stage-chip.plugin-chip {
    background: rgba(245, 166, 35, 0.08);
    border-color: rgba(245, 166, 35, 0.2);
    color: var(--gold);
    font-weight: 600;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.06);
    animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(245, 166, 35, 0.05); }
    50% { box-shadow: 0 0 24px rgba(245, 166, 35, 0.15); }
}

.stage-chip.plugin-chip:hover {
    background: rgba(245, 166, 35, 0.15);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.2);
}

/* Pipeline Arrows */
.pipeline-arrow {
    display: flex;
    align-items: center;
    padding: 0 2px;
    margin-top: 40px;
    user-select: none;
    position: relative;
    width: 16px;
    height: 24px;
    flex-shrink: 0;
}

.arrow-pulse {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    border-radius: 1px;
}

.arrow-pulse::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 12px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(180, 200, 230, 0.5), transparent);
    border-radius: 2px;
    animation: arrowTravel 2s ease-in-out infinite;
}

.arrow-pulse::before {
    content: '';
    position: absolute;
    right: -3px;
    top: -3px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(255, 255, 255, 0.15);
}

@keyframes arrowTravel {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: calc(100% - 12px); opacity: 0; }
}

/* ==================== FILTERS ==================== */
.table-section {
    padding: 0 0 80px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

.filter-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    background: var(--surface-hover);
    color: var(--text);
    border-color: var(--border-strong);
}

.filter-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* ==================== STAGE GROUP HEADERS ==================== */
.stage-group-header {
    cursor: default !important;
}

.stage-group-header:hover {
    background: transparent !important;
}

.stage-group-header td {
    padding: 28px 20px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.stage-group-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
}

.stage-group-label .stage-group-icon {
    font-size: 15px;
    line-height: 1;
}

/* ==================== TABLE ==================== */
.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.skills-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.skills-table colgroup .col-name { width: 28%; }
.skills-table colgroup .col-desc { width: 42%; }
.skills-table colgroup .col-badge { width: 12%; }
.skills-table colgroup .col-stream { width: 14%; }
.skills-table colgroup .col-arrow { width: 4%; }

.skills-table thead {
    border-bottom: 1px solid var(--border);
}

.skills-table th {
    text-align: left;
    padding: 16px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 500;
}

.skills-table td {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    vertical-align: middle;
}

.skills-table tbody tr {
    cursor: pointer;
    transition: background 0.2s ease;
}

.skills-table tbody tr:hover {
    background: var(--surface-hover);
}

.skills-table tbody tr.row-fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.skills-table tbody tr.row-fade-in.row-visible {
    opacity: 1;
    transform: translateY(0);
}

/* VIP/Plugin golden left border */
.skills-table tbody tr.vip-row {
    border-left: 3px solid var(--gold);
}

.skills-table tbody tr.vip-row .skill-name {
    color: var(--gold);
}

.skill-name {
    font-weight: 600;
    color: var(--accent);
}

.skill-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-product { background: var(--badge-product); color: #fff; }
.badge-audience { background: var(--badge-audience); color: #000; }
.badge-funnels { background: var(--badge-funnels); color: #fff; }
.badge-marketing { background: var(--badge-marketing); color: #fff; }
.badge-content { background: var(--badge-content); color: #000; }
.badge-sales { background: var(--badge-sales); color: #fff; }
.badge-youtube { background: var(--badge-youtube); color: #fff; }
.badge-tools { background: var(--badge-tools); color: #000; }
.badge-dev { background: var(--badge-dev); color: #fff; }

.stream-link {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.row-arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.skills-table tbody tr:hover .row-arrow {
    transform: translateX(4px);
    color: var(--text);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
    padding: 80px 0 100px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(56, 120, 180, 0.08) 0%, rgba(40, 80, 130, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-title {
    position: relative;
    z-index: 1;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #fff;
}

.cta-subtitle {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    flex-shrink: 0;
}

.cta-button {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 16px 40px;
    background: #f0f0f0;
    color: #0a0a0a;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.cta-limited {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ==================== MODAL ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-scroll {
    overflow-y: auto;
    flex: 1;
    padding-bottom: 32px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text);
}

/* Modal Header */
.modal-header {
    padding: 32px 32px 16px;
}

.modal-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.meta-value {
    color: var(--text);
    font-size: 0.85rem;
    background: var(--surface-hover);
    padding: 2px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

/* Modal Sections */
.modal-section {
    padding: 0 32px;
    margin-top: 20px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin-bottom: 12px;
}

.section-label svg {
    opacity: 0.6;
}

.detail-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Items (files, links) */
.item-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.15s;
    cursor: default;
}

.item-row svg {
    flex-shrink: 0;
    opacity: 0.5;
}

a.item-row:hover,
.item-row.clickable:hover {
    background: var(--surface-hover);
    cursor: pointer;
}

.item-row.dimmed {
    opacity: 0.5;
}

.item-note {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Instruction Preview */
.instruction-preview {
    margin-top: 12px;
    position: relative;
}

.preview-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.82rem;
    border-radius: 8px;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: #ddd;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: #444;
}

.instruction-preview pre {
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    overflow: auto;
    max-height: 350px;
}

.instruction-preview code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
}

.copy-success {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--badge-content);
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 5;
}

.copy-success.show {
    display: block;
    animation: fadeInOut 1.5s ease forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(5px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Example chat */
.example-chat {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px 0;
}

.chat-msg {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.chat-avatar-user {
    background: rgba(59, 130, 246, 0.15);
}

.chat-avatar-bot {
    background: rgba(16, 185, 129, 0.15);
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 100%;
}

.chat-bubble-user {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.chat-bubble-bot {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.82rem;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Plugin components */
.plugin-components {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 4px 0;
}

.component-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 12px;
    transition: border-color 0.2s;
}

.component-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.component-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.component-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.component-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.component-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* Lock badge */
.locked-row {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.lock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 4px 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 20px;
    font-size: 0.72rem;
    color: #f59e0b;
    white-space: nowrap;
}

.lock-badge svg {
    stroke: #f59e0b;
}

/* Updated badges */
.updated-badge {
    font-size: 0.78rem;
    white-space: nowrap;
}

.updated-fresh {
    color: #10b981;
    font-weight: 600;
}

.updated-fresh::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    margin-right: 5px;
    vertical-align: middle;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 1; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}

.updated-recent {
    color: rgba(255, 255, 255, 0.5);
}

.updated-old {
    color: rgba(255, 255, 255, 0.25);
}

/* VIP star */
.vip-star {
    display: inline-block;
    font-size: 0.7rem;
    animation: pulse-star 2s ease-in-out infinite;
    vertical-align: middle;
    margin-left: 4px;
}

@keyframes pulse-star {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .pipeline {
        flex-direction: column;
        align-items: center;
        min-width: auto;
    }
    .pipeline-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        padding: 4px 0;
    }
    .pipeline-stage {
        min-width: 280px;
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-divider {
        height: 28px;
    }

    .skills-table th:nth-child(2),
    .skills-table td:nth-child(2),
    .skills-table th:nth-child(4),
    .skills-table td:nth-child(4) {
        display: none;
    }

    .skills-table {
        table-layout: auto;
    }

    .skills-table th,
    .skills-table td {
        padding: 12px 14px;
    }

    .skills-table colgroup { display: none; }

    .modal-header,
    .modal-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .preview-actions {
        flex-direction: column;
    }

    .plugin-components {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 0 80px;
    }
}

@media (max-width: 480px) {
    .skills-table .skill-desc {
        font-size: 0.85rem;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

}

/* Dimmed rows */
.row-dimmed {
    opacity: 0.5;
}
.row-dimmed:hover {
    opacity: 0.7;
    cursor: default;
}
