/* index (home) page styles */
/* FOUT guard — revealed after CSS loads */
.index-page { visibility: visible; }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
#hero {
    background: var(--black);
    justify-content: center;
    align-items: flex-start;
    padding-top: 8rem;
}

#hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 1100px;
    max-height: 1100px;
    background: radial-gradient(circle, rgba(56, 87, 173, 0.24) 0%, transparent 65%);
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 85%;
    width: 100%;
}

.hero-line {
    font-family: var(--font-hero);
    font-size: var(--hero-size);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: var(--white);
    display: block;
    margin-left: -0.02em;
}
.hero-line-1 {
    margin-bottom: 0.05em;
    text-shadow: 0 0 80px rgba(101, 162, 210, 0.3), 0 0 120px rgba(56, 87, 173, 0.2);
}

.hero-line-2 {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--white);
    text-stroke: 1.5px var(--white);
    background: linear-gradient(90deg, var(--pink), var(--bright-blue), var(--pink));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-sweep 4s ease-in-out infinite;
    position: relative;
}

/* Gradient glow behind "TO EVOLVE." */
.hero-line-2-wrapper {
    position: relative;
    display: block;
}

.hero-line-2-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(224, 35, 135, 0.12) 0%, rgba(101, 162, 210, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

@keyframes gradient-sweep {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Fallback for non-webkit */
@supports not (-webkit-text-stroke: 1.5px var(--white)) {
    .hero-line-2 {
        color: var(--white);
        background: none;
        -webkit-text-stroke: initial;
        animation: none;
    }
}

.hero-subhead {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: clamp(2.5rem, 6vh, 5rem);
}

.hero-ctas {
    display: flex;
    gap: 4rem;
    margin-top: clamp(2.5rem, 5vh, 4rem);
    flex-wrap: wrap;
}

/* ============================================================
   SECTION 2 — CAPABILITIES
   ============================================================ */
#services {
    background: var(--black);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(3rem, 8vw, 8rem);
    row-gap: clamp(1rem, 2vw, 1.5rem);
    padding-top: 4rem;
    padding-bottom: 4rem;
    flex-wrap: wrap;
}

#services::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(56, 87, 173, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Reduced padding for services section */
#services .capabilities-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.capabilities-headline-wrapper {
    flex-shrink: 0;
}

.capabilities-headline {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--h1-size);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    white-space: nowrap;
    opacity: 1;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.capability-item {
    border-top: 1px solid rgba(101, 162, 210, 0.15);
    padding: clamp(0.75rem, 2vh, 1.5rem) 0;
    transition: border-color 0.4s ease;
}


.capability-item:hover {
    border-color: rgba(224, 35, 135, 0.5);
}

/* Capability header row — number + icon side by side */
.capability-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.capability-header .capability-number {
    margin-bottom: 0;
}

.capability-number {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--light-blue);
    display: block;
    transition: color 0.4s ease;
}

/* Capability icon wrapper */
.capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--light-blue);
    transition: color 0.4s ease, transform 0.4s ease;
}

.capability-item:hover .capability-icon {
    color: var(--pink);
    transform: translateX(4px) scale(1.1);
}

.featured-pillar-row .capability-icon {
    color: var(--light-blue) !important;
}

.capability-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    animation: gear-rotate 20s linear infinite;
}

/* Specific icon animations */
.capability-item:nth-child(1) .capability-icon svg {
    animation: gear-rotate 20s linear infinite;
}

.capability-item:nth-child(2) .capability-icon svg {
    animation: brain-pulse 2.5s ease-in-out infinite;
}

.capability-item:nth-child(3) .capability-icon svg {
    animation: globe-float 3s ease-in-out infinite;
}

/* Featured service pillar icon — category-specific animations */
/* Must match or exceed .capability-icon svg specificity (0,0,1,1) to override the blanket gear-rotate */
.featured-pillar-row .capability-icon .featured-pillar-cogs {
    animation: gear-rotate 20s linear infinite;
}
.featured-pillar-row .capability-icon .featured-pillar-brain {
    animation: brain-pulse 2.5s ease-in-out infinite;
}
.featured-pillar-row .capability-icon .featured-pillar-globe {
    animation: globe-float 3s ease-in-out infinite;
}

@keyframes gear-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes brain-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes globe-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.capability-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--h2-size);
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.capability-item:hover .capability-title {
    color: var(--pink);
}

.capability-item:hover .capability-number {
    color: var(--pink);
}

.capability-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--body-size);
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    line-height: 1.6;
}

/* ============================================================
   SECTION 3 — HOW WE WORK
   ============================================================ */
#how-we-work {
    background: var(--black);
    position: relative;
    justify-content: center;
    gap: clamp(3rem, 6vh, 5rem);
}

#how-we-work::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 15%;
    width: 45vw;
    height: 45vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(56, 87, 173, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.how-headline-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(6rem, 18vw, 20rem);
    color: rgba(255, 255, 255, 0.045);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.how-headline {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--h1-size);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.how-items {
    display: flex;
    gap: clamp(2rem, 6vw, 6rem);
    position: relative;
    z-index: 2;
}

.how-item {
    flex: 1;
    min-width: 0;
}

.how-item-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--h2-size);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    transition: color 0.3s ease, background 0.3s ease;
}

.how-item:hover .how-item-label {
    background: linear-gradient(90deg, var(--pink), var(--bright-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.how-item-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--body-size);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 380px;
}

/* ============================================================
   SECTION 4 — NEWS (v10 refined)
   ============================================================ */
#news {
    background: var(--black);
    justify-content: center;
    gap: clamp(2rem, 4vh, 3rem);
}

#news::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 5%;
    width: 40vw;
    height: 40vw;
    max-width: 550px;
    max-height: 550px;
    background: radial-gradient(circle, rgba(56, 87, 173, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.news-headline {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--h1-size);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
}

.news-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.news-view-all {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.news-view-all::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--pink), var(--bright-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-view-all:hover {
    background: linear-gradient(90deg, var(--pink), var(--bright-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.news-view-all:hover::after {
    transform: scaleX(1);
}

.news-layout {
    display: flex;
    gap: clamp(2rem, 6vw, 3rem);
    align-items: flex-start;
}

.news-main {
    flex: 0 0 60%;
    min-width: 0;
}

.news-sidebar {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

.news-preview {
    position: relative;
}

.news-preview-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 0.35rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.news-preview:hover .news-preview-title {
    color: var(--pink);
    text-shadow: 0 0 10px rgba(224, 35, 135, 0.5);
}

.news-preview-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--light-blue);
}

.news-preview-category {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-blue);
    margin-bottom: 0.35rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.news-preview-category:hover {
    color: var(--pink);
    text-shadow: 0 0 8px rgba(224, 35, 135, 0.4);
}

.news-preview-author {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.4rem;
}

.news-preview-excerpt {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.news-preview-readmore {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--light-blue);
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.news-preview-readmore:hover {
    color: var(--pink);
    text-shadow: 0 0 8px rgba(224, 35, 135, 0.4);
}

/* --- News author widget (inline styles extracted) --- */
.news-author-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.news-author-avatar {
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

.news-author-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    color: var(--white);
    background: rgba(0, 0, 0, 0.9);
    padding: 0.3rem 0.6rem;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.news-author-wrap:hover .news-author-tooltip {
    opacity: 1 !important;
}

.news-preview:hover .news-preview-readmore {
    color: var(--pink);
    text-shadow: 0 0 8px rgba(224, 35, 135, 0.4);
}

.news-preview-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--pink), var(--bright-blue));
    opacity: 0.5;
    margin-top: 0.5rem;
}

/* --- Capability + How-We-Work CTA links (inline styles extracted) --- */
.capability-learn-more {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.how-item-learn-more {
    margin-top: 1rem;
}

.news-article {
    max-width: 860px;
}

.news-article-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    position: relative;
}

.news-article-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--bright-blue));
}

.news-article-title:hover {
    color: var(--white);
    text-shadow: 0 0 12px rgba(224, 35, 135, 0.5);
}

.news-meta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--light-blue);
    margin-bottom: 1.5rem;
}

.meta-divider {
    opacity: 0.4;
}

/* Category — default light-blue (inherit from .news-meta), pink on hover */
.meta-category {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.meta-category:hover {
    color: var(--pink);
    text-shadow: 0 0 8px rgba(224, 35, 135, 0.4);
}

.meta-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.meta-link:hover {
    color: var(--pink);
    text-shadow: 0 0 8px rgba(224, 35, 135, 0.4);
}

.news-excerpt {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--body-size);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 620px;
}

/* Read-more link hover — consistent pink + glow */
.news-article .text-link:hover {
    color: var(--pink);
    background: none;
    -webkit-text-fill-color: var(--pink);
    text-shadow: 0 0 8px rgba(224, 35, 135, 0.4);
}

.news-accent-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--pink), var(--bright-blue));
    margin-bottom: 2rem;
    transition: width 1s ease 0.3s;
}

.section.in-view .news-accent-line {
    width: 120px;
}

/* ============================================================
   SECTION 5 — CONTACT
   ============================================================ */
#connect {
    background: var(--black);
    justify-content: center;
    align-items: flex-start;
    gap: clamp(2rem, 4vh, 3rem);
    padding-bottom: clamp(3rem, 8vh, 6rem);
}

#connect::before {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(56, 87, 173, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.connect-headline {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--h1-size);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
}

.connect-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 520px;
    width: 100%;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1rem 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--body-size);
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--pink);
}

.form-group textarea {
    min-height: 100px;
}

.form-submit {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.form-submit::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--pink), var(--bright-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit:hover {
    background: linear-gradient(90deg, var(--pink), var(--bright-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.form-submit:hover::after {
    transform: scaleX(1);
}

/* ============================================================
   FEATURED SERVICE — Gradient Horizon (Concept A)
   ============================================================ */
.featured-service {
    width: 100%;
    flex: 1 0 100%;
    padding: clamp(1rem, 2vw, 2rem) clamp(2rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.featured-service::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(56, 87, 173, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 35%, rgba(224, 35, 135, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 70%, rgba(101, 162, 210, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(56, 87, 173, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.featured-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    width: 100%;
}

/* --- Left column: SVG graphic --- */
.featured-graphic {
    flex: 0 0 clamp(280px, 40%, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
}

/* --- Right column: copy --- */
.featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.featured-headline {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--h2-size);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    position: relative;
    padding-bottom: 1rem;
}

/* Gradient accent rule under the headline */
.featured-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--bright-blue));
}

.featured-description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--body-size);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
}

.featured-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

/* Override uppercase for featured-service CTAs — keep title case */
.featured-ctas .text-link {
    text-transform: none;
    letter-spacing: 0.05em;
}

/* --- Divider between featured service and capabilities --- */
.featured-service::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--section-px);
    right: var(--section-px);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(224, 35, 135, 0.3) 20%, rgba(101, 162, 210, 0.3) 50%, rgba(224, 35, 135, 0.3) 80%, transparent 100%);
    pointer-events: none;
}

/* --- Mobile: stack vertically --- */
@media (max-width: 768px) {
    .featured-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .featured-graphic {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .featured-svg {
        max-width: 300px;
    }

    .featured-content {
        text-align: center;
        align-items: center;
    }

    .featured-description {
        max-width: 100%;
    }

    .featured-ctas {
        justify-content: center;
    }

    .featured-headline {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
}

/* Featured badge */
.featured-label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: clamp(1rem, 2vw, 2rem);
    margin-top: clamp(1rem, 2vw, 2rem);
    width: 100%;
}

.featured-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--pink);
    border: 1px solid rgba(224, 35, 135, 0.4);
    padding: 0.35rem 1rem;
    border-radius: 2px;
    white-space: nowrap;
}


.featured-pillar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-pillar {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light-blue);
    white-space: nowrap;
    transition: color 0.4s ease;
}

.featured-pillar-row:hover .featured-pillar {
    color: var(--pink);
}

.featured-pillar-row:hover .capability-icon {
    color: var(--pink) !important;
    transform: none !important;
}

.featured-label-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(224, 35, 135, 0.25), transparent);
}
