/* ==========================================
   FEATURES LIST — Shared Values
   Intro + totem + 4 scroll-driven values
   ========================================== */
.features-list {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fl__grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2.5rem, 6vw, 7rem);
    padding: 0 6vw;
    box-sizing: border-box;
    padding-top: 60px;
}

.fl__copy-side {
    position: relative;
    flex: 1 1 50%;
    order: 2;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: start;
    width: min(100%, 700px);
    max-width: 700px;
    min-height: 0;
    z-index: 2;
}

.fl__intro,
.fl__value-stage {
    position: relative;
    grid-area: 1 / 1;
    width: min(100%, 700px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.fl__value-stage {
    display: grid;
    align-items: center;
    pointer-events: none;
}

.fl__eyebrow,
.fl__value-index {
    display: inline-block;
    font-family: var(--font-family-base);
    font-size: var(--font-size-xs-2);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-eyebrow);
    color: var(--gold);
}

.fl__eyebrow {
    margin-bottom: 2rem;
}

.fl__intro-title,
.fl__value-title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
}

.fl__intro-title {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-heading-relaxed);
    margin-bottom: 2.25rem;
}

.fl__value-title {
    font-size: var(--font-size-h2-alt-2);
    line-height: var(--line-height-heading-loose);
    margin: 0 0 1.4rem 0;
    max-width: 100%;
}

.fl__intro-title-line,
.fl__value-title-line {
    display: block;
    overflow: hidden;
    /*padding-bottom: 0.14em;*/
}

.fl__intro-title-word,
.fl__value-title-word {
    display: inline-block;
    will-change: transform;
}

.fl__gold,
.fl__intro-title-word em,
.fl__value-title-word em {
    color: var(--gold);
    font-style: normal;
}

.fl__intro-text,
.fl__value-text,
.fl__value-tagline {
    font-family: var(--font-family-base);
    margin: 0;
}

.fl__intro-text {
    max-width: 620px;
    font-size: var(--font-size-body-mobile);
    line-height: var(--line-height-copy-relaxed);
    color: var(--color-white);
}

.fl__intro-text > *,
.fl__value-text > * {
    margin: 0;
}

.fl__intro-text > * + *,
.fl__value-text > * + * {
    margin-top: 1em;
}

.fl__value {
    position: relative;
    grid-area: 1 / 1;
    margin: 0;
    width: min(100%, 700px);
    pointer-events: none;
}

.fl__value-index {
    margin-bottom: 1.3rem;
}

.fl__value-tagline {
    font-size: var(--font-size-sm-7);
    line-height: var(--line-height-copy-card);
    color: rgba(var(--color-gold-rgb), 0.95);
    max-width: 28rem;
    margin-bottom: 1rem;
}

.fl__value-text {
    max-width: 32rem;
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-copy-relaxed);
    /*color: rgba(var(--color-white-rgb), 0.64);*/
}

.fl__totem-column {
    position: relative;
    flex: 1 1 50%;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 620px;
    z-index: 1;
}

.fl__totem-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 620px;
}

.fl__totem-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.fl__seed-base,
.fl__seed-image {
    transition:
        opacity 0.45s ease,
        fill 0.45s ease,
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.45s ease;
}

.fl__seed-base {
    fill: rgba(var(--color-slate-blue-rgb), 0.16);
}

.fl__seed-image {
    opacity: 0.3;
    filter: grayscale(18%) contrast(1.05);
    transform-box: fill-box;
    transform-origin: center center;
}

.fl__seed.is-active .fl__seed-base {
    fill: rgba(var(--color-gold-rgb), 0.12);
}

.fl__seed.is-active .fl__seed-image {
    opacity: 0.95;
    filter: grayscale(0%) contrast(1.02);
    transform: scale(1.05);
}

/* ==========================================
   RESPONSIVE + REDUCED MOTION
   ========================================== */
@media (max-width: 1023px), (prefers-reduced-motion: reduce) {
    .features-list {
        height: auto;
        overflow: visible;
    }

    .fl__grid {
        height: auto;
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding: var(--section-padding-mobile-offset);
    }

    .fl__copy-side {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .fl__intro,
    .fl__value-stage {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .fl__intro {
        margin-bottom: 2.5rem;
    }

    .fl__eyebrow {
        opacity: 1;
        transform: none;
    }

    .fl__eyebrow::before {
        transform: translateY(-50%) scaleX(1);
    }

    .fl__intro-title {
        font-size: var(--font-size-h2-mobile);
        margin-bottom: 1.5rem;
    }

    .fl__intro-title-word,
    .fl__value-title-word {
        transform: none !important;
    }

    .fl__intro-text {
        opacity: 1;
        transform: none;
        font-size: var(--font-size-nav);
        max-width: 100%;
    }

    .fl__totem-column {
        grid-column: auto;
        width: min(74vw, 400px);
        height: auto;
        display: block;
        justify-self: center;
    }

    .fl__totem-shell {
        opacity: 1 !important;
        transform: none !important;
    }

    .fl__value-stage {
        display: flex;
        flex-direction: column;
        gap: var(--space-xl);
        pointer-events: auto;
        align-items: stretch;
    }

    .fl__value {
        position: relative;
        inset: auto;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding-top: 2rem;
        border-top: 1px solid rgba(var(--color-gold-rgb), 0.1);
    }

    .fl__value-title {
        font-size: var(--font-size-h3-3);
        max-width: 100%;
    }

    .fl__value-tagline,
    .fl__value-text {
        opacity: 1 !important;
        transform: none !important;
        max-width: 100%;
    }

    .fl__value-tagline {
        font-size: var(--font-size-sm-6);
    }

    .fl__value-text {
        font-size: var(--font-size-sm-6);
    }

    .fl__seed-image {
        opacity: 0.56;
        transform: none;
    }
}
