/* =============================================
   HERO SECTION STYLES
   Engineering Plastics Information Portal
   ============================================= */

.hero {
    position: relative;
    padding: 80px 0 100px;
    background-color: var(--bg-surface);
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 48px 48px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
}

@media (min-width: 769px) {
    .hero-inner {
        padding: 0 32px;
    }
}

@media (min-width: 1025px) {
    .hero-inner {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 60px;
        justify-content: space-between;
    }
}

.hero-content {
    flex: 1;
    max-width: 760px;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--gold-dim);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    display: block;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin: 0 auto 28px;
    max-width: 100%;
}

@media (min-width: 769px) {
    .hero-headline {
        font-size: 3rem;
        max-width: 600px;
    }
}

@media (min-width: 1025px) {
    .hero-headline {
        font-size: 4rem;
        line-height: 1.05;
        margin-left: 0;
        max-width: 760px;
    }
}

.hero-headline .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text-primary);
}

.hero-subtext {
    font-family: var(--font-body);
    font-size: 15px;
    color: #777777;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Stat Boxes */
.hero-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    flex-shrink: 0;
    margin-top: 20px;
    width: 100%;
}

@media (min-width: 1025px) {
    .hero-stats {
        flex-direction: column;
        justify-content: flex-start;
        width: auto;
    }
}

.stat-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-left: 3px solid var(--gold);
    padding: 20px 28px;
    min-width: 200px;
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 6px;
}

/* Removed Legacy Desktop-First Responsive Block */
