/**
 * Module: lpage_hero
 * Auto-extracted from style.css
 */

/* HERO */
.t1-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3rem;
    padding: 7rem max(1.5rem, calc(50vw - var(--max-width) / 2 + 1.5rem)) 4rem;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.t1-hero--short { 
    min-height: 50vh; 
    padding-top: 8rem;
}

.t1-hero--centered { 
    text-align: center; 
}

.t1-hero--centered hgroup { 
    margin: 0 auto; 
}

.t1-hero--centered .t1-hero__actions { 
    justify-content: center; 
}

.t1-hero--two-col {
    grid-template-columns: 1.2fr 1fr;
}

.t1-hero::before {
    content: attr(data-bg-char);
    position: absolute;
    top: 8%;
    right: 6%;
    font-size: min(28vw, 400px);
    font-weight: 100;
    color: rgba(0,168,128,0.07);
    pointer-events: none;
    line-height: 1;
    transform: translateZ(0); /* Force GPU compositing */
}

.t1-hero hgroup { 
    max-width: 600px; 
}

.t1-hero hgroup small {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jade-bright);
    margin-bottom: 1.5rem;
}

.t1-hero hgroup small::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--jade-bright);
}

.t1-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
}

.t1-hero h1 em {
    display: block;
    font-style: normal;
    background: linear-gradient(90deg, var(--jade-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.t1-hero hgroup p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin: 0 0 2rem;
}

.t1-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 900px) {
    .t1-hero { 
        padding-top: 7rem;
        padding-bottom: 3rem;
    }
    .t1-hero--two-col { 
        grid-template-columns: 1fr; 
    }
    .t1-hero::before { 
        font-size: 200px; 
        top: 10%; 
        right: 5%; 
    }
    .t1-hero hgroup { 
        text-align: center; 
        margin: 0 auto; 
    }
    .t1-hero hgroup small::before { 
        display: none; 
    }
    .t1-hero hgroup small { 
        justify-content: center; 
    }
    .t1-hero__actions { 
        justify-content: center; 
    }
}

/* Hero Bridge */
.t1-bridge {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.t1-bridge::before {
    content: "";
    position: absolute;
    left: 0.875rem;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--jade-bright), rgba(0,168,128,0.2));
}

.t1-bridge > a {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
}

.t1-bridge > a::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--jade-bright);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0,168,128,0.2);
}

.t1-bridge > a:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--jade);
    
}

.t1-bridge__icon {
    grid-row: span 2;
    font-size: 1.75rem;
}

.t1-bridge small {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jade-bright);
}

.t1-bridge strong { 
    font-size: 1rem; 
    font-weight: 600; 
}

@media (max-width: 899px) {
    .t1-bridge { 
        max-width: 380px; 
        margin: 0 auto; 
    }
}

