/* ==========================================
   HERO
========================================== */

.hero {
    position: relative;
    z-index: 1;

    min-height: 800px;
    display: flex;
    align-items: center;

    padding: calc(var(--header-height) + 48px) 0 64px;
    overflow: hidden;
}

/* Background */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background: linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 38% 34% 28%;
    align-items: center;
    gap: 24px;
}

/* ==========================================
   LEFT
========================================== */

.hero-left h1 {
    max-width: 580px;
    margin-bottom: 22px;

    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 4.4vw, 4.6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--color-white);
}

.hero-left h1 span {
    color: var(--color-primary);
}

.subtitle {
    display: inline-block;
    margin-bottom: 1rem;

    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: .78rem;
    font-weight: 600;
}

.gold-line {
    width: 110px;
    height: 2px;
    margin: 1.6rem 0;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.hero-left p {
    max-width: 460px;
    margin-bottom: 26px;

    color: var(--color-text-light);
    line-height: 1.8;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.8rem;

    color: var(--color-text-muted);
    font-size: .92rem;
}

.hero-note svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-note strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* ==========================================
   CENTER
========================================== */

.hero-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;

    filter: blur(70px);
    animation: glow 8s ease-in-out infinite;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 7s ease-in-out infinite;
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    height: auto;
    aspect-ratio: 1536 / 1024;

    mix-blend-mode: lighten;

    -webkit-mask-image: radial-gradient(ellipse 60% 60% at center, #000 50%, transparent 96%);
    mask-image: radial-gradient(ellipse 60% 60% at center, #000 50%, transparent 96%);
}

/* ==========================================
   RIGHT
========================================== */

.hero-right {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 1rem 1.1rem;
    border-radius: 18px;

    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);

    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature:hover {
    transform: translateX(6px);
    border-color: rgba(214, 166, 79, .45);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.feature-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    width: 32px;
    height: 32px;
    border-radius: 50%;

    background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary));
    box-shadow: 0 0 18px rgba(214, 166, 79, .35);
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: #171200;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
}

.feature p {
    color: var(--color-text-light);
    font-size: .83rem;
    line-height: 1.45;
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

@keyframes glow {
    0%, 100% {
        transform: scale(1);
        opacity: .6;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image {
        animation: none;
    }
}