/* ==========================================================================
   Hero — Full-viewport landing section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 72px; /* nav height */
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-hero);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: var(--space-md);
}

.hero-accent {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    max-width: 50ch;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--text-base);
    color: #0A0A0A;
    background: var(--color-accent);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    text-decoration: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.hero-cta:hover {
    background: var(--color-accent-hover);
    color: #0A0A0A;
    transform: translateY(-2px);
}

/* --- Background gradient mesh --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 145, 58, 0.12) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    animation: hero-float 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 145, 58, 0.06) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: hero-float 15s ease-in-out infinite reverse;
}

@keyframes hero-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* --- Noise texture overlay --- */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

@media (max-width: 700px) {
    .hero {
        min-height: 80vh;
    }
}
