
/* Marketing Hero */
.marketing-hero {
    position: relative;
    width: 100%;
    min-height: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #181716;
}

/* Ambient thumbnail collage - marketing-hero.js assigns each .marketing-hero-thumb
   its own random size/position (relative to this container) and animates it. */
.marketing-hero-thumbs {
    position: absolute;
    inset: 0;
}

.marketing-hero-thumb {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background-size: cover;
    background-position: center;
    opacity: 0;
}

/* Static (non-animated) mobile thumbnails - normal document flow above/below
   the content, so they can never overlap the text. Hidden on desktop, where
   the animated .marketing-hero-thumbs collage takes over instead. */
.marketing-hero-mobile-thumbs {
    display: none;
}

.marketing-hero-mobile-thumb {
    flex: 1 1 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    display: block;
}

/* Centered content column */
.marketing-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    padding: 40px 20px;
    text-align: center;
}

.marketing-hero-heading {
    color: #fff !important;
    font-size: 2.5rem !important;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
}

.marketing-hero-accent {
    position: relative;
    display: inline-block;
    color: #e897b6 !important;
    font-style: italic;
}

.marketing-hero-text {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.05rem !important;
    line-height: 1.7;
    margin: 0 0 32px;
}

.marketing-hero-button {
    display: inline-block;
    background: transparent;
    border: 1px solid #fff;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem !important;
}

/* Squiggle annotation - anchored to the accent span itself (its parent,
   .marketing-hero-accent, is the positioning context) so it always sits next
   to "better-fit solution." regardless of copy length or line wrapping. */
.marketing-hero-squiggle {
    position: absolute;
    top: -34px;
    left: 100%;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    width: 180px;
    margin-left: 8px;
    text-align: left;
}

.marketing-hero-squiggle-icon {
    width: 78px;
    height: auto;
    flex-shrink: 0;
}

.marketing-hero-squiggle-text {
    color: #fff !important;
    font-size: 0.75rem !important;
    line-height: 1.4;
    text-align: center;
}

/* Responsive - hide the scattered thumbnails, collapse to just the content */
@media (max-width: 900px) {
    .marketing-hero {
        flex-direction: column;
        min-height: 0;
        padding: 24px 0;
    }
    .marketing-hero-thumbs {
        display: none;
    }
    .marketing-hero-mobile-thumbs {
        display: flex;
        gap: 12px;
        width: 100%;
        max-width: 500px;
        padding: 0 20px;
    }
    .marketing-hero-mobile-thumbs-top {
        margin-bottom: 24px;
    }
    .marketing-hero-mobile-thumbs-bottom {
        margin-top: 24px;
    }
    .marketing-hero-squiggle {
        /* Anchoring it to running text doesn't reflow well at narrow widths -
           simplest to just hide this decorative flourish on mobile. */
        display: none;
    }
    .marketing-hero-heading {
        font-size: 2rem !important;
    }
}
