/* Header animation */
header {
    animation: fadeDown 1s ease-out;
}

/* Hero */
.hero {
    text-align: center;
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 10;
    animation: heroIn 1.2s ease-out 0.3s both;
}

.hero-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--orange);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray-light);
    margin-top: 1.5rem;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Product cards */
.products {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    animation: fadeUp 1s ease-out 0.8s both;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--black-lighter);
    border: 1px solid rgba(255, 106, 0, 0.08);
    border-radius: 10px;
    padding: 2.5rem;
    text-decoration: none;
    transition: border-color 0.3s, transform 0.2s;
}

.product-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateY(-2px);
}

.product-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 0.25rem;
}

.product-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-light);
    line-height: 1.6;
}

.product-arrow {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--gray);
    transition: color 0.3s, transform 0.3s;
}

.product-card:hover .product-arrow {
    color: var(--orange);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 640px) {
    .hero { padding: 3rem 1.5rem 1.5rem; }
    .products { padding: 3rem 1.5rem 4rem; }
    .product-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .product-arrow { display: none; }
}
