/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-20) var(--space-6);
    margin-top: 70px;
    background-color: var(--bg-primary);
}

.hero__printer {
    width: 450px;
    height: auto;
    max-width: 90vw;
    margin-bottom: var(--space-6);
    filter: drop-shadow(0 10px 30px rgba(66, 133, 244, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero__subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: var(--space-8);
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.hero__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: var(--weight-medium);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    isolation: isolate;
    letter-spacing: 0.02em;
}

.hero__btn:active {
    transform: scale(0.97);
}

.hero__btn--primary {
    color: white;
    background: linear-gradient(135deg, #4285f4 0%, #357abd 100%);
    box-shadow:
        0 4px 6px -1px rgba(66, 133, 244, 0.2),
        0 2px 4px -1px rgba(66, 133, 244, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero__btn--primary:hover {
    background: linear-gradient(135deg, #5a95f5 0%, #4285f4 100%);
    box-shadow:
        0 10px 15px -3px rgba(66, 133, 244, 0.35),
        0 4px 6px -2px rgba(66, 133, 244, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Sheen effect */
.hero__btn--primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: skewX(-20deg) translateX(-150%);
    transition: transform 0.5s;
    pointer-events: none;
}

.hero__btn--primary:hover::after {
    transform: skewX(-20deg) translateX(150%);
    transition: transform 0.75s ease-in-out;
}

.hero__btn--secondary {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: white;
}

.hero__btn--secondary:active {
    transform: scale(0.97);
}

.hero__btn-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
}