/*
 * Log About Us — Hero Section
 * Scoped to body.log-co-about-page / .page-id-about
 * Depends on: design-tokens.css (plum/sage tokens)
 * Source: about_us_2.html — Hero Section only
 */

/* ── Page Background ── */
body.log-co-about-page,
body.page-id-about {
    background: var(--paper) !important;
}

/* ── Hero Section ── */
.log-co-ab-hero {
    position: relative;
    background: linear-gradient(155deg, var(--plum-950) 0%, #3b0d44 50%, var(--plum-800) 100%);
    /* !important: beats WP core's .is-layout-constrained > * { margin-left/right:auto !important }
       AND its width:var(--theme-block-width) rule (near-viewport px), which combined with the
       88px side margins above pushed the card ~160px past the right edge (bug68). */
    width: auto !important;
    margin: 22px 88px 0 !important;
    border-radius: 26px;
    overflow: hidden;
    padding: 52px 72px;
    color: #fff;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.log-co-ab-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}

.log-co-ab-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 500px at var(--cx,20%) var(--cy,30%), rgba(29,219,149,.11), transparent 65%);
    pointer-events: none;
    z-index: 0;
    transition: background .15s linear;
}

.log-co-ab-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    width: 100%;
}

.log-co-ab-hero-text {
    max-width: 520px;
}

.log-co-ab-pill-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    opacity: 0;
    animation: log-co-fadeUp .7s var(--ease) forwards;
}

.log-co-ab-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage-500);
    animation: log-co-pulseDot 1.5s ease-in-out infinite;
}

.log-co-ab-pill-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sage-400);
}

@keyframes log-co-pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.65); }
}

.log-co-ab-hero h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #fff;
    opacity: 0;
    animation: log-co-fadeUp .8s var(--ease) .12s forwards;
}

.log-co-ab-hero h1 .log-co-line-wrap {
    overflow: hidden;
    display: block;
}

.log-co-ab-hero h1 .log-co-word-em {
    display: inline-block;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(95deg, var(--sage-400), var(--sage-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.log-co-ab-hero-desc {
    margin-top: 18px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.8;
    opacity: 0;
    animation: log-co-fadeUp .8s var(--ease) .22s forwards;
}

.log-co-ab-hero-btns {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
    opacity: 0;
    animation: log-co-fadeUp .8s var(--ease) .32s forwards;
}

.log-co-ab-hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    opacity: 0;
    animation: log-co-fadeUp .8s var(--ease) .42s forwards;
}

.log-co-ab-proof-avatars {
    display: flex;
}

.log-co-ab-proof-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    background: linear-gradient(135deg, var(--plum-600), var(--sage-600));
    margin-left: -8px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.log-co-ab-proof-av:first-child {
    margin-left: 0;
}

.log-co-ab-proof-text {
    font-size: 12.5px;
    color: rgba(255,255,255,.65);
}

.log-co-ab-proof-text strong {
    color: #fff;
}

@keyframes log-co-fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
