.hero { padding: 6rem 0 3rem; text-align: center; background: radial-gradient(circle at 50% 0%, rgba(139,92,246,0.12) 0%, transparent 70%); }
.hero h1 { font-size: 2.5rem; margin-bottom: 0.75rem; background: var(--gradient-purple); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { color: var(--text-secondary); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; padding: 2rem 0 4rem; }
.tool-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; display: flex; flex-direction: column; gap: 0.75rem; }
.tool-card:hover { border-color: rgba(139,92,246,0.3); box-shadow: 0 8px 30px rgba(139,92,246,0.15); transform: translateY(-2px); }
.tool-card .icon { font-size: 2rem; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); }
.tool-card h3 { font-size: 1.2rem; }
.tool-card p { color: var(--text-secondary); font-size: 0.95rem; flex: 1; }
.tool-card .tag { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #a78bfa; background: rgba(139,92,246,0.1); padding: 0.25rem 0.75rem; border-radius: 999px; }

/* Featured tool callout */
.featured-tool { background: rgba(168,85,247,0.06); border: 1px solid rgba(168,85,247,0.18); border-radius: 14px; padding: 1.5rem 2rem; margin-bottom: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.featured-tool-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #a78bfa; margin-bottom: 0.35rem; }
.featured-tool h2 { font-size: 1.3rem; margin-bottom: 0.35rem; }
.featured-tool p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; margin: 0; }
.featured-tool-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--gradient-purple); color: #fff; font-weight: 600; font-size: 0.95rem; padding: 0.75rem 1.5rem; border-radius: 8px; white-space: nowrap; transition: transform 0.15s ease, box-shadow 0.15s ease; flex-shrink: 0; }
.featured-tool-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(168,85,247,0.3); color: #fff; }
@media (max-width: 640px) { .featured-tool { flex-direction: column; text-align: center; padding: 1.25rem; } .featured-tool-btn { width: 100%; justify-content: center; } }

/* Footer mana dots */
.mana-dot-W { background: #F9FAF4; }
.mana-dot-U { background: #0E68AB; }
.mana-dot-B { background: #150B00; border: 1px solid rgba(255,255,255,0.2); }
.mana-dot-R { background: #D3202A; }
.mana-dot-G { background: #00733E; }

@media (max-width: 768px) {
    .hero h1 { font-size: 1.75rem; }
    .tools-grid { grid-template-columns: 1fr; }
}
