.hero-section { text-align: center; margin-bottom: 3rem; }
.hero-section h1 { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.75rem; line-height: 1.15; }
.gradient-text { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.subtitle { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.5; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.hub-card { background: var(--bg-surface); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass); border: 1px solid var(--bg-surface-border); border-radius: 16px; padding: 1.75rem; text-decoration: none; color: inherit; transition: var(--transition-smooth); }
.hub-card:hover { transform: translateY(-4px); border-color: var(--accent-glow); box-shadow: 0 12px 35px rgba(59, 130, 246, 0.12); }
.hub-card h2 { font-size: 1.35rem; margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: space-between; }
.hub-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.4; }
.tools-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.tool-item-card { background: var(--bg-surface); border: 1px solid var(--bg-surface-border); border-radius: 14px; padding: 1.5rem; text-decoration: none; color: inherit; transition: var(--transition-smooth); }
.tool-item-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.01); }
.tool-item-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--text-primary); }
.tool-item-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.45; }
.drop-zone { background: var(--bg-surface); border: 2px dashed var(--bg-surface-border); border-radius: 20px; padding: 4rem 1.5rem; text-align: center; cursor: pointer; transition: var(--transition-smooth); max-width: 750px; margin: 0 auto 2rem auto; width: 100%; }
.drop-zone:hover, .drop-zone.dragover { border-color: var(--accent-glow); background: rgba(59, 130, 246, 0.04); }
.security-badge { display: inline-block; margin-top: 1.25rem; font-size: 0.7rem; padding: 0.3rem 0.85rem; background: rgba(16, 185, 129, 0.08); color: #10b981; border-radius: 30px; font-weight: 600; letter-spacing: 0.02em; }
.control-panel { max-width: 550px; margin: 1.5rem auto; background: var(--bg-surface); padding: 1.5rem; border-radius: 16px; border: 1px solid var(--bg-surface-border); width: 100%; }
.control-group { margin-bottom: 1.25rem; }
.control-group label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text-secondary); }
.control-group input[type="range"], .control-group select { width: 100%; accent-color: var(--accent-glow); background: rgba(0,0,0,0.2); border: 1px solid var(--bg-surface-border); color: var(--text-primary); padding: 0.5rem; border-radius: 8px; font-size: 0.9rem; }
body.light-theme .control-group input[type="range"], body.light-theme .control-group select { background: #fff; }
.btn-primary { background: var(--accent-gradient); border: none; color: white; padding: 0.75rem 1.5rem; border-radius: 10px; font-weight: 600; cursor: pointer; width: 100%; font-size: 0.95rem; transition: var(--transition-smooth); margin-top: 0.5rem; }
.btn-primary:hover { opacity: 0.92; transform: scale(0.995); }
.file-status-box { margin-top: 1.25rem; padding: 1rem; background: rgba(0,0,0,0.15); border: 1px solid var(--bg-surface-border); border-radius: 10px; font-size: 0.85rem; line-height: 1.4; word-break: break-all; }
.progress-bar-container { background: rgba(255,255,255,0.06); border-radius: 4px; height: 5px; margin-top: 0.6rem; overflow: hidden; }
.progress-bar-fill { height: 100%; width: 0%; background: var(--accent-gradient); transition: width 0.2s ease; }

@media (max-width: 640px) {
    .hero-section h1 { font-size: 2.0rem; }
    .hero-section { margin-bottom: 2rem; }
    .subtitle { font-size: 0.95rem; }
    .drop-zone { padding: 3rem 1rem; }
}