.hero {
    position: relative; min-height: 85vh; display: flex; align-items: center;
    overflow: hidden; padding: 120px 0 80px;
    background: linear-gradient(135deg, #ededed 0%, #dcdcdc 50%, #c9c9c9 100%);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5;
}
.hero-glow--1 {
    width: 500px; height: 500px; top: -150px; right: 10%;
    background: radial-gradient(circle, rgba(15,15,15,0.12) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.hero-glow--2 {
    width: 400px; height: 400px; bottom: -100px; left: 5%;
    background: radial-gradient(circle, rgba(15,15,15,0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}
.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Two-column layout */
.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(15,15,15,0.06); border: 1px solid rgba(15,15,15,0.12);
    color: var(--accent); margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(36px, 5vw, 60px); font-weight: 800;
    line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px;
    color: var(--text-heading);
}
.hero-subtitle {
    font-size: 17px; color: var(--text-muted); line-height: 1.7;
    max-width: 480px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 40px;
    padding-top: 28px; border-top: 1px solid var(--border);
}
.hero-stat strong {
    display: block; font-size: 22px; font-weight: 700; color: var(--text-heading);
    margin-bottom: 4px;
}
.hero-stat span { font-size: 13px; color: var(--text-muted); }

/* Right side image */
.hero-visual {
    display: flex; justify-content: center; align-items: center;
}
.hero-image {
    width: 100%; max-width: 520px; height: auto;
    filter: drop-shadow(0 20px 60px rgba(15,15,15,0.10));
    animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .hero-image { max-width: 300px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}

/* Remove site-main padding on front page — hero handles its own */
.home .site-main { padding-top: 0; }
