/* ===== HERO ===== */
.hero {
    background: var(--text);
    color: #fff;
    padding: 80px 32px;
    position: relative;
    overflow: hidden;
}

.hero-noise {
    position: absolute;
    inset: 0;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 24px;
    max-width: 700px;
}

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

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 420px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-white {
    padding: 12px 24px;
    background: #fff;
    color: var(--text);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
}

.btn-white:hover {
    opacity: 0.88;
}

.btn-ghost-white {
    padding: 12px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.btn-ghost-white:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* ===== TICKER ===== */
.ticker {
    background: var(--accent);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 24px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ticker-item::after {
    content: '·';
    margin-left: 24px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE — HERO ===== */
@media (max-width: 769px) {
    .hero {
        padding: 40px 16px 48px;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 64px);
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-sub {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-cta {
        width: 100%;
    }

    .btn-white,
    .btn-ghost-white {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 13px;
    }

    .ticker {
        height: 32px;
    }

    .ticker-item {
        font-size: 11px;
        padding: 0 16px;
    }
}
