/* ==========================================================
   3D Printing Hero
   Phase 1 - Layout
========================================================== */

.printing-hero{
    position:relative;
    min-height:calc(100vh - 78px);
    margin-top:78px;
    display:flex;
    align-items:center;
    padding:60px 0 40px;
    overflow:hidden;
    scroll-margin-top:78px;
}

.hero-wrapper{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:58% 42%;
    gap:40px;
    align-items:center;
}

.hero-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
    max-height:720px;
}

.hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:580px;
}

.hero-badge{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:28px;
    color:var(--text-soft);
    font-size:.82rem;
    font-weight:600;
    letter-spacing:.25em;
    text-transform:uppercase;
}

.hero-badge i{
    color:#21d4fd;
    font-size:1rem;
}

.hero-title{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin:0;
    max-width:780px;
}

.hero-title .line{
    display:block;
    font-size:clamp(4rem,6vw,5.6rem);
    font-weight:800;
    line-height:.92;
    letter-spacing:-3px;
    color:var(--text);
}

.hero-title .gradient{
    background:var(--accent-gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.hero-description{
    max-width:560px;
    margin-top:36px;
    font-size:1.32rem;
    line-height:1.8;
    color:var(--text-soft);
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:22px;
    margin-top:52px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    height:62px;
    padding:0 34px;
    border-radius:20px;
    font-size:1rem;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
    cursor:pointer;
    min-width:240px;
}

.hero-btn i{
    transition:.35s ease;
}

.hero-btn-primary{
    color:white;
    background:var(--accent-gradient);
    box-shadow:0 12px 35px rgba(55,140,255,.28);
}

.hero-btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 45px rgba(55,140,255,.38);
}

.hero-btn-secondary{
    color:var(--text);
    border:1px solid var(--border);
    background:var(--glass-background);
    backdrop-filter:blur(18px);
}

.hero-btn-secondary:hover{
    background:var(--card-color);
    transform:translateY(-3px);
}

.hero-btn-secondary:hover i{
    transform:translateX(5px);
}

.hero-stat-panel{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:48px;
    padding:28px 34px;
    border-radius:24px;
    border:1px solid var(--card-border);
    backdrop-filter:blur(20px);
}

.hero-stat{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.hero-stat h3{
    margin:0;
    font-size:2rem;
    font-weight:800;
    color:var(--text);
}

.hero-stat p{
    margin:0;
    font-size:1rem;
    line-height:1.5;
    color:var(--text-soft);
}

.hero-printer-area{
    position:relative;
    width:100%;
    height:650px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-glow{
    position:absolute;
    width:560px;
    height:560px;
    border-radius:50%;
    background:var(--hero-glow);
    filter:blur(40px);
    z-index:0;
    animation:glowPulse 6s ease-in-out infinite;
}

.hero-printer{
    position:relative;
    z-index:2;
    animation:printerFloat 5s ease-in-out infinite;
    transition:transform .45s ease,filter .45s ease;
}

.hero-printer img{
    display:block;
    width:600px;
    max-width:100%;
    height:auto;
    filter:drop-shadow(0 30px 55px rgba(0,0,0,.45));
    transition:transform .45s ease,filter .45s ease;
}

.hero-info-card{
    position:absolute;
    right:20px;
    bottom:30px;
    width:170px;
    height:54px;
    overflow:hidden;
    border-radius:28px;
    backdrop-filter:blur(18px);
    background:var(--glass-background);
    border:1px solid var(--card-border);
    transition:
        width .38s cubic-bezier(.22,1,.36,1),
        height .38s cubic-bezier(.22,1,.36,1),
        border-radius .38s ease,
        box-shadow .38s ease;
    z-index:5;
}

.hero-info-card:hover{
    width:320px;
    height:390px;
    border-radius:24px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.35),
        0 0 30px rgba(0,225,255,.15);
    transform:translateY(-4px);
}

.hero-info-card:hover .hero-info-content{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

.hero-info-header{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:54px;
    font-size:1rem;
    font-weight:700;
    color:var(--text);
}

.hero-info-header i{font-size:15px;}
.hero-info-header span{font-size:1rem;}

.hero-info-content{
    padding:6px 22px 24px;
    opacity:0;
    transform:translateY(12px);
    transition:opacity .30s ease .12s,transform .30s ease .12s;
    pointer-events:none;
}

.hero-info-card:hover .hero-info-header{color:var(--text);}

.hero-info-card:hover .hero-info-body{
    max-height:500px;
    opacity:1;
    padding:0 22px 22px;
}

.hero-status{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    margin-bottom:20px;
    border-radius:999px;
    background:rgba(35,210,120,.18);
    color:#62ffab;
    font-weight:600;
    font-size:.9rem;
}

.hero-info-content h3{
    margin:0;
    font-size:2rem;
    font-weight:700;
    color:var(--text);
}

.hero-machine-type{
    margin:8px 0 16px;
    color:var(--text-soft);
    font-size:1rem;
}

.hero-divider{
    width:100%;
    height:1px;
    background:var(--border);
    margin-bottom:14px;
}

.hero-spec{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:14px;
}

.hero-spec i{
    margin-top:4px;
    color:#29d8ff;
    font-size:1rem;
    width:18px;
}

.hero-spec div{
    display:flex;
    flex-direction:column;
}

.hero-spec label{
    color:var(--text-soft);
    font-size:.82rem;
    margin-bottom:4px;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.hero-spec span{
    color:var(--text);
    font-size:.95rem;
    font-weight:500;
}
