/* ===========================
   Hero Section - Cinematic 3D Style
   =========================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 14vh;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 65%, rgba(120, 55, 15, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 100% 70% at 50% 90%, rgba(100, 45, 12, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(80, 35, 10, 0.2) 0%, transparent 80%),
        radial-gradient(ellipse 140% 100% at 50% 100%, rgba(40, 16, 5, 0.8) 0%, transparent 50%),
        #0a0a0a;
}

/* Extra warm glow layer */
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 50% 75%, rgba(253, 102, 37, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 35% 30% at 50% 80%, rgba(253, 80, 20, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Dark vignette edges */
.hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Subtitle */
.hero__subtitle {
    position: relative;
    z-index: 10;
    font-family: var(--font-body);
    font-size: clamp(0.6rem, 0.9vw, 0.8rem);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 500;
    margin-bottom: 1.2rem;
    text-align: center;
    pointer-events: none;
}

/* Main title - MASSIVE */
.hero__title {
    position: relative;
    z-index: 4;
    font-family: var(--font-display);
    font-size: clamp(4rem, 13vw, 14rem);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-align: center;
    user-select: none;
    pointer-events: none;
    padding: 0 1rem;
}

.hero__line {
    display: block;
    color: #fd6625;
}

.hero__line--2 {
    color: #e85a22;
}

.hero__line--3 {
    color: #b8441a;
    -webkit-text-stroke: 1px #c44d1d;
}



/* ===========================
   3D Cat Characters - Video
   Cats overlap the text (in front)
   =========================== */
.hero__cats {
    position: absolute;
    bottom: -2%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    max-width: 1100px;
    z-index: 8;
    pointer-events: none;
}

.hero__cats-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.8) contrast(1.1) saturate(1.2);
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(253, 102, 37, 0.6));
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #fd6625);
    animation: hero-scroll-line 2s ease-in-out infinite;
}

@keyframes hero-scroll-line {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ===========================
   Decorative Particles
   =========================== */
.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero__particle {
    position: absolute;
    background: #fd6625;
    animation: hero-particle-rise 10s ease-in-out infinite;
}

/* Round dots */
.hero__particle--1 {
    width: 5px; height: 5px; border-radius: 50%;
    top: 25%; left: 8%;
    opacity: 0.5;
    animation-delay: 0s;
    animation-duration: 9s;
}
.hero__particle--2 {
    width: 8px; height: 8px; border-radius: 50%;
    top: 55%; left: 4%;
    opacity: 0.2;
    animation-delay: -2s;
    animation-duration: 12s;
}
.hero__particle--3 {
    width: 3px; height: 3px; border-radius: 50%;
    top: 75%; left: 15%;
    opacity: 0.6;
    animation-delay: -5s;
    animation-duration: 8s;
}

/* Diamonds / rotated squares */
.hero__particle--4 {
    width: 6px; height: 6px; border-radius: 1px;
    top: 40%; left: 10%;
    opacity: 0.3;
    transform: rotate(45deg);
    animation-name: hero-particle-spin;
    animation-delay: -3s;
    animation-duration: 14s;
}
.hero__particle--5 {
    width: 4px; height: 4px; border-radius: 1px;
    top: 85%; left: 7%;
    opacity: 0.4;
    transform: rotate(45deg);
    animation-name: hero-particle-spin;
    animation-delay: -7s;
    animation-duration: 11s;
}

/* Right side - dots */
.hero__particle--6 {
    width: 4px; height: 4px; border-radius: 50%;
    top: 20%; right: 6%;
    opacity: 0.45;
    animation-delay: -1s;
    animation-duration: 10s;
}
.hero__particle--7 {
    width: 7px; height: 7px; border-radius: 50%;
    top: 50%; right: 10%;
    opacity: 0.18;
    animation-delay: -4s;
    animation-duration: 13s;
}
.hero__particle--8 {
    width: 3px; height: 3px; border-radius: 50%;
    top: 70%; right: 4%;
    opacity: 0.55;
    animation-delay: -6s;
    animation-duration: 9s;
}

/* Right side - diamonds */
.hero__particle--9 {
    width: 5px; height: 5px; border-radius: 1px;
    top: 35%; right: 12%;
    opacity: 0.3;
    transform: rotate(45deg);
    animation-name: hero-particle-spin;
    animation-delay: -2.5s;
    animation-duration: 12s;
}
.hero__particle--10 {
    width: 4px; height: 4px; border-radius: 1px;
    top: 82%; right: 8%;
    opacity: 0.35;
    transform: rotate(45deg);
    animation-name: hero-particle-spin;
    animation-delay: -8s;
    animation-duration: 10s;
}

/* Rings (hollow circles) */
.hero__particle--11 {
    width: 12px; height: 12px; border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(253, 102, 37, 0.25);
    top: 30%; left: 5%;
    animation-delay: -3.5s;
    animation-duration: 15s;
}
.hero__particle--12 {
    width: 10px; height: 10px; border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(253, 102, 37, 0.2);
    top: 60%; right: 6%;
    animation-delay: -6.5s;
    animation-duration: 13s;
}

@keyframes hero-particle-rise {
    0%   { transform: translateY(0) scale(1); opacity: var(--_o, 0.4); }
    50%  { transform: translateY(-30px) scale(1.2); opacity: calc(var(--_o, 0.4) * 1.5); }
    100% { transform: translateY(0) scale(1); opacity: var(--_o, 0.4); }
}

@keyframes hero-particle-spin {
    0%   { transform: rotate(45deg) translateY(0); opacity: 0.3; }
    50%  { transform: rotate(225deg) translateY(-20px); opacity: 0.6; }
    100% { transform: rotate(405deg) translateY(0); opacity: 0.3; }
}

/* Hide particles on mobile */
@media (max-width: 809px) {
    .hero__particles {
        display: none;
    }
}

/* Bottom gradient fade */
.hero__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, var(--color-bg-primary) 0%, rgba(13,13,13,0.6) 35%, rgba(13,13,13,0.2) 60%, transparent 100%);
    z-index: 12;
    pointer-events: none;
}
