footer{padding:3rem 2rem;text-align:center;border-top:1px solid var(--glass-border);background:var(--bg-surface);position:relative;overflow:hidden}
footer::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:200px;height:1px;background:linear-gradient(90deg,transparent,var(--accent-violet),transparent)}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-brand{font-family:'Syne',sans-serif;font-size:1.5rem;font-weight:800;background:linear-gradient(135deg,var(--accent-violet),var(--accent-cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent;margin-bottom:1rem}
.footer-links{display:flex;justify-content:center;gap:2rem;margin-bottom:1.5rem;flex-wrap:wrap}
.footer-links a{color:var(--text-muted);text-decoration:none;font-size:.85rem;transition:color .3s ease;position:relative}
.footer-links a::after{content:'';position:absolute;bottom:-2px;left:0;width:0;height:1px;background:var(--accent-violet);transition:width .3s ease}
.footer-links a:hover{color:var(--accent-violet)}
.footer-links a:hover::after{width:100%}
.footer-copy{color:var(--text-dim);font-size:.8rem}
.footer-copy .heart{color:var(--accent-rose);display:inline-block;animation:heartbeat 1.5s ease-in-out infinite}
@keyframes heartbeat{0%,100%{transform:scale(1)}50%{transform:scale(1.2)}}
.footer-social{display:flex;justify-content:center;gap:1rem;margin-top:1.5rem}
.footer-social a{width:40px;height:40px;border-radius:50%;border:1px solid var(--glass-border);display:flex;align-items:center;justify-content:center;font-size:1rem;transition:all .3s ease;color:var(--text-muted);background:var(--glass-bg)}
.footer-social a:hover{border-color:var(--accent-violet);color:var(--accent-violet);transform:translateY(-3px);box-shadow:var(--glow-violet)}
