/* Content visible by default — GSAP animates from hidden states */
.about-us-page [data-reveal] {
    opacity: 1;
}

/* --- Hero Section (Dark Mode Refactoring) --- */
.about-hero-section {
    position: relative;
    padding: 130px 0 100px;
    background: radial-gradient(circle at 80% 20%, rgba(107, 189, 188, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 15% 75%, rgba(177, 124, 254, 0.1) 0%, transparent 60%),
                #070422; /* High-contrast dark cyber background */
    overflow: hidden;
    color: #ffffff;
}

.about-hero-section__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.about-hero-section__dotgrid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.25;
}

.about-hero-section__mesh {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
}

.about-hero-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-hero-section__grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

/* Badge in dark mode */
.about-hero-section__badge {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-bottom: 1.5rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero-section__badge-glow {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--color-secondary), var(--color-electric-lavender));
    opacity: 0.18;
    z-index: -1;
}

.about-hero-section__badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
}

.about-hero-section__chip-icon {
    color: var(--color-secondary);
}

.about-hero-section__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff; /* Explicitly white in dark mode */
    letter-spacing: -0.02em;
}

.about-hero-section__title-line {
    display: block;
}

.about-hero-section__title-line--gradient {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-electric-lavender) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-secondary);
    display: inline-block;
}

.about-hero-section__lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.65;
    color: #b4b1c5; /* Muted lavender gray for high readability */
    margin-bottom: 2.2rem;
}

.about-hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.about-hero-section__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-hero-section__btn-arrow {
    transition: transform 200ms ease;
}

.about-hero-section__btn-primary:hover .about-hero-section__btn-arrow {
    transform: translateX(4px);
}

/* Secondary outline button styling for dark background */
.about-hero-section__btn-secondary {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.about-hero-section__btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* --- Hero Visual Container (Clean Float) --- */
.about-hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-visual-img {
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 16px 32px rgba(107, 189, 188, 0.2));
}

.about-hero-visual-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, rgba(107, 189, 188, 0.12) 0%, rgba(177, 124, 254, 0.06) 40%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

/* Orbiting particle dots */
.about-hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.about-hero-particle--1 {
    background: var(--color-secondary);
    box-shadow: 0 0 12px var(--color-secondary);
    top: 10%;
    right: 5%;
    animation: particleDrift1 7s ease-in-out infinite;
}

.about-hero-particle--2 {
    background: var(--color-electric-lavender);
    box-shadow: 0 0 10px var(--color-electric-lavender);
    bottom: 15%;
    left: 8%;
    width: 5px;
    height: 5px;
    animation: particleDrift2 9s ease-in-out infinite;
}

.about-hero-particle--3 {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    top: 50%;
    left: 2%;
    width: 4px;
    height: 4px;
    animation: particleDrift3 11s ease-in-out infinite;
}

/* --- Who We Are Grid (BEM layout extension) --- */
.about-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-section__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Intro stats card layout */
.about-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-intro-stats__card {
    background: #ffffff;
    border: 1px solid var(--color-outline-variant);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: transform 300ms ease, border-color 300ms ease;
}

.about-intro-stats__card:hover {
    transform: translateY(-4px);
    border-color: var(--color-secondary);
}

.about-intro-stats__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(107, 189, 188, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary-dark);
    margin-bottom: 1.25rem;
}

.about-intro-stats__card h3 {
    font-family: var(--font-headline);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin: 0 0 0.5rem;
    line-height: 1;
}

.about-intro-stats__card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-outline);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Bento Grid Stack (Technical Specs Overrides) --- */
.about-us-page .offerings-section__bento {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-us-page .offerings-section__bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .about-us-page .offerings-section__bento {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-us-page .offerings-section__card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(55, 50, 150, 0.06);
    border-radius: var(--radius-2xl);
    padding: 2.25rem;
    box-shadow: 0 10px 30px rgba(55, 50, 150, 0.02);
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 400ms ease,
                border-color 400ms ease;
    overflow: hidden;
    z-index: 1;
}

.about-us-page .offerings-section__card--large {
    grid-column: 1 / -1;
    grid-row: auto;
}

@media (min-width: 768px) {
    .about-us-page .offerings-section__card--large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* Sweeping Neon Border Glow Animation on Hover */
.about-us-page .offerings-section__card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-electric-lavender), var(--color-primary), var(--color-secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    background-size: 300% 300%;
    opacity: 0;
    z-index: 2;
    transition: opacity 400ms ease;
    pointer-events: none;
}

.about-us-page .offerings-section__card:hover::after {
    opacity: 1;
    animation: borderGlowSweep 3s linear infinite;
}

.about-us-page .offerings-section__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(55, 50, 150, 0.08);
    border-color: transparent;
}

.about-us-page .offerings-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-xl);
    background: rgba(107, 189, 188, 0.08);
    color: var(--color-secondary-dark);
    position: relative;
    z-index: 3;
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
                background-color 300ms ease,
                color 300ms ease;
}

.about-us-page .offerings-section__card:hover .offerings-section__icon {
    transform: scale(1.1) translateY(-2px);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-electric-lavender));
    color: #ffffff;
}

.about-us-page .offerings-section__card h3 {
    font-family: var(--font-headline);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 0.85rem;
    letter-spacing: -0.01em;
}

.about-us-page .offerings-section__card p {
    color: #5c5979;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Custom visual stack load animation for large card */
.about-us-page .about-bento-visual {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
    width: 100%;
}

.about-us-page .about-bento-visual__bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(55, 50, 150, 0.04);
    position: relative;
    overflow: hidden;
}

.about-us-page .about-bento-visual__bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--telemetry-width, 70%);
    background: linear-gradient(90deg, var(--color-secondary), var(--color-electric-lavender));
    border-radius: inherit;
    animation: liveTelemetryPulse 3s ease-in-out infinite alternate;
    animation-delay: var(--telemetry-delay, 0s);
}

@keyframes borderGlowSweep {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes liveTelemetryPulse {
    0% { transform: scaleX(0.92); opacity: 0.85; filter: brightness(1); }
    100% { transform: scaleX(1.03); opacity: 1; filter: brightness(1.15); }
}

/* --- Governance Section (Executive Leadership Box Cards) --- */
.about-us-page .governance-section {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.about-us-page .governance-box-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-top: 3.5rem;
}

@media (min-width: 768px) {
    .about-us-page .governance-box-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-us-page .governance-box-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(55, 50, 150, 0.08);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(55, 50, 150, 0.04);
    transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 450ms ease,
                border-color 450ms ease;
    z-index: 1;
}

.about-us-page .governance-box-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color, var(--color-secondary));
    box-shadow: 0 25px 50px rgba(55, 50, 150, 0.09);
}

.about-us-page .governance-box-card__avatar-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.75rem;
    padding: 5px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(55, 50, 150, 0.08);
    border: 2px solid rgba(55, 50, 150, 0.08);
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 400ms ease, box-shadow 400ms ease;
}

.about-us-page .governance-box-card:hover .governance-box-card__avatar-wrap {
    transform: scale(1.06);
    border-color: var(--accent-color, var(--color-secondary));
    box-shadow: 0 12px 30px var(--accent-glow, rgba(107, 189, 188, 0.25));
}

.about-us-page .governance-box-card__avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.about-us-page .governance-box-card__role {
    display: inline-block;
    font-size: 0.725rem;
    font-weight: 800;
    color: var(--accent-color, var(--color-secondary));
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: rgba(55, 50, 150, 0.05);
    border-radius: var(--radius-full);
}

.about-us-page .governance-box-card__name {
    font-family: var(--font-headline);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0.25rem 0 0.75rem;
    letter-spacing: -0.01em;
}

.about-us-page .governance-box-card__bio {
    font-size: 0.875rem;
    color: #5c5979;
    line-height: 1.65;
    margin: 0;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 0.4; }
}

/* --- CTA Section (Matched with Services Page Gradient & Ambient Orbs) --- */
.about-us-page .about-cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #373296, #006a69 55%, #b17cfe);
}

.about-us-page .about-cta-section__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-us-page .about-cta-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.45;
    animation: webstudioFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.about-us-page .about-cta-section__orb--1 {
    width: 260px;
    height: 260px;
    left: 6%;
    top: 15%;
    background: #b17cfe;
}

.about-us-page .about-cta-section__orb--2 {
    width: 200px;
    height: 200px;
    right: 8%;
    bottom: 10%;
    background: #6bbdbc;
    animation-delay: -3s;
}

.about-us-page .about-cta-section__orb--3 {
    width: 140px;
    height: 140px;
    right: 35%;
    top: 25%;
    background: rgba(255, 255, 255, 0.45);
    animation-delay: -5s;
}

.about-us-page .about-cta-section__box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-us-page .about-cta-section__box h2 {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-us-page .about-cta-section__box p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.25rem;
}

/* Hero image gentle floating bob */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Background glow breathing */
@keyframes glowPulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Particle drift animations */
@keyframes particleDrift1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    25% { transform: translate(-15px, 10px); opacity: 1; }
    50% { transform: translate(5px, -20px); opacity: 0.5; }
    75% { transform: translate(18px, 8px); opacity: 0.9; }
}

@keyframes particleDrift2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    33% { transform: translate(20px, -12px); opacity: 1; }
    66% { transform: translate(-10px, 15px); opacity: 0.4; }
}

@keyframes particleDrift3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    20% { transform: translate(12px, 18px); opacity: 0.8; }
    40% { transform: translate(-8px, -10px); opacity: 1; }
    60% { transform: translate(15px, -5px); opacity: 0.6; }
    80% { transform: translate(-12px, 12px); opacity: 0.9; }
}

/* --- Principles Section (Light Mode Override for About Us Page) --- */
.about-us-page .principles-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: var(--color-on-surface);
    position: relative;
    padding: 120px 0;
    border-bottom: 1px solid var(--color-outline-variant);
}

.about-us-page .principles-section .principles-section__grid-pattern {
    background-image:
        linear-gradient(rgba(55, 50, 150, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(55, 50, 150, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.about-us-page .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-us-page .section-header h2,
.about-us-page .section-header__title {
    font-family: var(--font-headline);
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-primary) !important;
    letter-spacing: -0.03em;
    margin-top: 0.5rem;
}

.about-us-page .section-eyebrow {
    color: var(--color-secondary) !important;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-us-page .principles-section__item {
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 2rem 1.5rem;
    transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: visible;
    z-index: 1;
}

/* Large ambient backdrop glow behind the item */
.about-us-page .principles-section__item::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, var(--accent-glow-color, rgba(107, 189, 188, 0.08)) 0%, transparent 70%);
    opacity: 0;
    filter: blur(40px);
    z-index: -1;
    transform: scale(0.9);
    transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1),
                opacity 450ms ease;
    pointer-events: none;
}

.about-us-page .principles-section__item:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.about-us-page .principles-section__item:hover {
    transform: translateY(-8px);
}

.about-us-page .principles-section__header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-us-page .principles-section h3 {
    font-family: var(--font-headline);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: color 300ms ease;
}

/* Sliding Indicator Arrow */
.about-us-page .principles-arrow {
    display: inline-block;
    opacity: 0;
    transform: translateX(-8px);
    transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 300ms ease;
    color: var(--accent-color, var(--color-secondary));
    margin-left: 0.6rem;
    font-weight: 700;
}

.about-us-page .principles-section__item:hover .principles-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Expanding accent line under the heading */
.about-us-page .principles-section h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color, var(--color-secondary));
    border-radius: 2px;
    transition: width 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-us-page .principles-section__item:hover h3 {
    color: var(--accent-color, var(--color-primary));
}

.about-us-page .principles-section__item:hover h3::after {
    width: 100%;
}

.about-us-page .principles-section__item p {
    color: #5c5979;
    font-size: 0.975rem;
    line-height: 1.75;
    margin: 0;
    transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), color 300ms ease;
}

.about-us-page .principles-section__item:hover p {
    transform: translateX(6px);
    color: #110f24;
}

.about-us-page .principles-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    background: #ffffff;
    border: 1px solid rgba(55, 50, 150, 0.08);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(55, 50, 150, 0.02);
    position: relative;
    flex-shrink: 0;
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), 
                background-color 300ms ease, 
                color 300ms ease,
                border-color 300ms ease,
                box-shadow 300ms ease;
}

/* Glow ring behind icon */
.about-us-page .principles-section__icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 1.5px solid var(--accent-color, var(--color-secondary));
    opacity: 0;
    transform: scale(0.85);
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
                opacity 300ms ease;
}

.about-us-page .principles-section__item:hover .principles-section__icon {
    transform: scale(1.1) translateY(-2px);
    background: var(--accent-color, var(--color-secondary));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px var(--accent-shadow-color);
}

.about-us-page .principles-section__item:hover .principles-section__icon::after {
    opacity: 1;
    transform: scale(1);
    animation: iconRingPulse 2s infinite;
}

.about-us-page .principles-section__icon svg {
    width: 26px;
    height: 26px;
}

@keyframes iconRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

/* --- Split Tech Showcase Section --- */
.about-us-page .tech-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3.5rem;
}

@media (min-width: 992px) {
    .about-us-page .tech-showcase__grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

/* Left List Item styling */
.about-us-page .tech-showcase__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-us-page .tech-showcase__item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(55, 50, 150, 0.04);
    border-radius: var(--radius-2xl);
    transition: all 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.about-us-page .tech-showcase__item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(55, 50, 150, 0.03);
    z-index: -1;
    opacity: 0;
    transition: opacity 350ms ease;
}

.about-us-page .tech-showcase__item.is-active::before,
.about-us-page .tech-showcase__item:hover::before {
    opacity: 1;
}

.about-us-page .tech-showcase__item.is-active,
.about-us-page .tech-showcase__item:hover {
    transform: translateX(8px);
    border-color: var(--accent-color, var(--color-secondary));
    box-shadow: 0 15px 35px rgba(55, 50, 150, 0.04);
}

.about-us-page .tech-showcase__item-num {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-outline);
    transition: color 300ms ease;
    padding-top: 0.2rem;
}

.about-us-page .tech-showcase__item.is-active .tech-showcase__item-num,
.about-us-page .tech-showcase__item:hover .tech-showcase__item-num {
    color: var(--accent-color, var(--color-secondary));
}

.about-us-page .tech-showcase__item h3 {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
    transition: color 300ms ease;
}

.about-us-page .tech-showcase__item.is-active h3,
.about-us-page .tech-showcase__item:hover h3 {
    color: var(--accent-color, var(--color-primary));
}

.about-us-page .tech-showcase__item p {
    color: #5c5979;
    font-size: 0.925rem;
    line-height: 1.65;
    margin: 0;
}

/* Right Console wrapper styling */
.about-us-page .tech-showcase__visual-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-us-page .tech-showcase__console {
    width: 100%;
    max-width: 440px;
    background: #0d0b2e; /* Dark cyberpunk console style background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 60px rgba(7, 4, 34, 0.35);
    overflow: hidden;
    height: 330px;
    display: flex;
    flex-direction: column;
}

.about-us-page .tech-showcase__console-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-us-page .tech-showcase__console-dots {
    display: flex;
    gap: 6px;
}

.about-us-page .tech-showcase__console-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.about-us-page .tech-showcase__console-dots span:nth-child(1) { background: #ff5f56; }
.about-us-page .tech-showcase__console-dots span:nth-child(2) { background: #ffbd2e; }
.about-us-page .tech-showcase__console-dots span:nth-child(3) { background: #27c93f; }

.about-us-page .tech-showcase__console-title {
    font-family: ui-monospace, monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-us-page .tech-showcase__console-body {
    flex: 1;
    position: relative;
    padding: 2.25rem;
}

/* Graphics switcher */
.about-us-page .tech-showcase__graphic {
    position: absolute;
    inset: 2.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 400ms ease, transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-page .tech-showcase__graphic.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- Sticky Multi-Image Spec Container & Enhanced Hover Effects --- */
.about-us-page .tech-showcase__visual-wrapper {
    position: sticky;
    top: 110px;
    align-self: start;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.about-us-page .tech-showcase__image-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-2xl);
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
    overflow: visible;
}

.about-us-page .tech-showcase__image-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(107, 189, 188, 0.18) 0%, rgba(177, 124, 254, 0.12) 50%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 450ms ease;
}

.about-us-page .tech-showcase__image-card:hover .tech-showcase__image-glow {
    opacity: 1;
}

/* 4 Overlay Spec Images with Cross-Fade Transition */
.about-us-page .tech-showcase__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--radius-2xl);
    object-fit: cover;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 500ms cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 15px 40px rgba(55, 50, 150, 0.08);
}

.about-us-page .tech-showcase__img.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}


