/* HERO — Landing screen and its call-to-action button. */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 3rem;
    background: #fefefe;
    position: relative;
    z-index: 2;
}

/* No frame here, and no divider either: section::before would otherwise draw
   its dashed rule right under the fixed header. */
.hero::before {
    content: none;
}

.hero::after {
    content: '✦';
    position: absolute;
    top: 15%;
    right: 15%;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-top: 4rem;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: #000000;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
    position: relative;
}

.hero-content h1::before {
    content: '◈';
    position: absolute;
    top: -20px;
    left: -40px;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.2);
}

.hero-content h1::after {
    content: '◈';
    position: absolute;
    bottom: -20px;
    right: -40px;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.4rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: #000000;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
    border: 3px solid #000000;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.1) 0px,
    rgba(255,255,255,0.1) 5px,
    transparent 5px,
    transparent 10px
    );
    transition: all 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}
