/* === HOME PAGE STYLES — BuzzingFrame ===
   Styles specific to index.html sections
   ================================================ */

/* --- HERO GRID --- */
.hero-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
}

.text-row {
    border-top: 1px solid var(--line-color);
    padding: 2vh 0;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.text-row.last {
    border-bottom: 1px solid var(--line-color);
}

/* Typography */
.hero-text {
    font-size: clamp(4rem, 11vw, 11rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--text-white);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 4px 40px rgba(1, 1, 2, 0.9), 0 0 80px rgba(1, 1, 2, 0.7);
}

/* --- SVG SLOT MACHINE --- */

/* The Window (Mask) */
/* The icon-machine now just holds our static arrow */
.icon-machine {
    display: inline-flex;
    width: 0px;
    height: 0.8em;
    overflow: hidden;
    opacity: 0;
    margin-right: 0px;
    align-items: center;
    /* Changed from flex-start to center */
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* Reveal on Hover */
a.hero-text:hover .icon-machine {
    width: 1.0em;
    opacity: 1;
    margin-right: 20px;
}

/* SVG Styling */
.industrial-arrow {
    width: 60%;
    height: 60%;
    fill: currentColor;
    display: block;
}

/* Hover Colors */
a.hero-text.mint:hover {
    color: var(--accent-mint);
}

a.hero-text.violet:hover {
    color: var(--accent-violet);
}


/* Browse Box */
.browse-box {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #E2E2E2;
    color: var(--bg-dark);
    width: 320px;
    height: 180px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px;
    text-decoration: none;
    transition: background 0.3s;
    z-index: 5;
}

.browse-box:hover {
    background-color: var(--accent-mint);
}

.browse-text {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.browse-arrow {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.browse-box:hover .browse-arrow {
    transform: translate(4px, -4px);
}

/* --- HERO MOBILE --- */
@media (max-width: 1024px) {
    .browse-box {
        width: 240px;
        height: 140px;
        padding: 20px;
    }

    .icon-machine {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-main {
        justify-content: flex-end;
        padding-top: 10vh;
    }

    .hero-text {
        font-size: clamp(2.8rem, 14vw, 5rem);
    }

    .text-row {
        padding: 1.5vh 0;
    }

    .browse-box {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
        margin-top: 10px;
    }

    .text-row.last {
        flex-wrap: wrap;
    }

    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 40px 0 30px 0;
    }

    .studio-label {
        font-size: 0.9rem;
    }

    .partners {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: clamp(2.2rem, 13vw, 3.5rem);
    }

    .studio-label {
        font-size: 0.8rem;
    }
}

/* --- HERO FOOTER (Partners Marquee) --- */
.hero-footer {
    padding: 60px 0 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.studio-label {
    color: var(--text-white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.85;
    white-space: nowrap;
}

.partners {
    overflow: hidden;
    position: relative;
    flex: 1;
    margin-left: 40px;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 50px;
    align-items: center;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.p-logo {
    height: 30px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(100%) brightness(1.5);
    transition: opacity 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
}

.p-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.p-logo:hover {
    opacity: 0.9;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- SECTION: FEATURED WORK --- */
.section-work {
    position: relative;
    padding: 10vh 0;
    width: 100%;
    background: transparent;
}

.work-grid {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 4vw;
}

/* Sticky Sidebar Label */
.work-sidebar {
    position: relative;
}

/* The Project Gallery */
.gallery-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Stagger the second column down for "Masonry" look */
.col-right {
    margin-top: 120px;
}

/* The Glass Card */
.work-card {
    position: relative;
    display: block;
    text-decoration: none;
    margin-bottom: 80px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--surface-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.work-card:hover {
    border-color: var(--border-hover);
    background: var(--surface-hover);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.card-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* .card-image-container::after shine sweep → shared.css */

/* Image inside */
/* .card-img grayscale/opacity/transition → shared.css */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover: color reveal only, no zoom */
.work-card:hover .card-image-container {
    border-bottom-color: var(--accent-mint);
}

.work-card:hover .card-img {
    opacity: 1;
}

.work-card:hover .card-image-container::after {
    left: 150%;
}

/* Work Card HUD Treatment */

/* Scan line removed in favor of light sweep */

/* Typography */
.card-info {
    padding: 25px 30px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-shadow: 0 2px 20px rgba(1, 1, 2, 0.8);
}

.work-card:hover .card-title {
    color: var(--accent-mint);
}

.card-tags {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-grey);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.work-card:hover .card-tags {
    border-color: var(--accent-mint);
    color: var(--accent-mint);
    background: rgba(52, 254, 194, 0.1);
}

/* View All Work Button */
.work-view-all {
    grid-column: 2;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    border-color: var(--accent-mint);
    color: #050510;
    background: var(--accent-mint);
    box-shadow: 0 0 30px rgba(52, 254, 194, 0.3);
}

.view-all-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover .view-all-arrow {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .gallery-cols {
        grid-template-columns: 1fr;
    }

    .col-right {
        margin-top: 0;
    }

    .work-view-all {
        grid-column: 1;
    }
}

/* --- SECTION: CAPABILITIES --- */
.section-capabilities {
    position: relative;
    padding: 10vh 0;
    width: 100%;
    background: transparent;
    z-index: 2;
}



@media (max-width: 1024px) {
    .section-capabilities {
        padding: 10vh 0;
    }

    .section-capabilities .proc-content {
        grid-template-columns: 1fr;
    }
}

/* --- SECTION: PROCESS / HOW IT WORKS --- */
.section-process {
    position: relative;
    padding: 10vh 0;
    width: 100%;
    background: transparent;
    z-index: 2;
}

.proc-grid {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 4vw;
}

/* Sidebar */
.proc-sidebar {
    position: relative;
}

/* Vertical Progress Track */
.proc-progress {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    height: calc(100% - 80px);
    min-height: 400px;
}

.proc-progress-line {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes lineStrobe {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.proc-progress-fill {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0%;
    max-height: calc(100% - 30px);
    background: var(--accent-mint);
    box-shadow: 0 0 8px var(--accent-mint);
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: lineStrobe 3s infinite;
}

.proc-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 28px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    z-index: 2;
}

.proc-dot[data-step="0"] {
    top: 0;
}

.proc-dot[data-step="1"] {
    top: 50%;
    margin-top: -14px;
}

.proc-dot[data-step="2"] {
    bottom: 0;
}

.proc-dot-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-grey);
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.proc-dot.active {
    border-color: var(--accent-mint);
    background: rgba(10, 30, 25, 0.95);
    box-shadow: 0 0 15px rgba(52, 254, 194, 0.3), inset 0 0 8px rgba(52, 254, 194, 0.1);
    transform: translateX(-50%) scale(1.08);
}

.proc-dot.active .proc-dot-num {
    color: var(--accent-mint);
}

/* Content Column */
.proc-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.proc-header {
    max-width: 600px;
    padding-bottom: 20px;
}

/* proc-eyebrow, proc-headline, proc-subline → shared.css */

/* Step Card (HUD Module) — same glass as cap-module for consistent 3D visibility */
.proc-card {
    display: flex;
    flex-direction: row;
    height: 420px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(40px) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease,
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        -webkit-backdrop-filter 0.3s ease;
}

.proc-card.visible {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.proc-card:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

/* Viewport Pane (3D iframe) — same glass as cap-viewport */
.proc-viewport {
    flex: 0.9;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: backdrop-filter 0.3s ease,
        -webkit-backdrop-filter 0.3s ease,
        border-color 0.3s ease;
}

.proc-card.mint:hover .proc-viewport {
    border-right-color: var(--accent-mint);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

.proc-card.violet:hover .proc-viewport {
    border-right-color: var(--accent-violet);
}

.proc-model-frame {
    width: 100%;
    height: 120%;
    border: none;
    z-index: 1;
    pointer-events: none;
}

.proc-viewport:hover .proc-model-frame {
    pointer-events: auto;
}

/* Terminal Pane (Text) */
.proc-terminal {
    flex: 1.1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
}

.proc-term-label {
    font-size: 0.75rem;
    color: var(--text-grey);
    opacity: 0.85;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.proc-term-title {
    font-family: var(--font-main);
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin: 0;
    transition: color 0.3s ease;
    text-shadow: 0 2px 20px rgba(1, 1, 2, 0.8);
}

.proc-card.mint:hover .proc-term-title {
    color: var(--accent-mint);
}

.proc-card.violet:hover .proc-term-title {
    color: var(--accent-violet);
}

.proc-term-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.proc-term-desc {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.7;
    text-shadow: 0 2px 15px rgba(1, 1, 2, 0.7);
}

.proc-term-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proc-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-mint);
    box-shadow: 0 0 6px var(--accent-mint);
    animation: procPulse 2s infinite ease-in-out;
}

@keyframes procPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.proc-status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-grey);
    opacity: 0.75;
    letter-spacing: 0.05em;
}

.proc-footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proc-footer-text {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-white);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Process Responsive: 1024px */
@media (max-width: 1024px) {
    .proc-grid {
        grid-template-columns: 1fr;
    }

    .proc-progress {
        display: none;
    }

    .proc-card {
        height: 400px;
        opacity: 0;
        transform: translateY(40px) translateZ(0);
    }

    .proc-card.visible {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

/* Process Responsive: 768px */
@media (max-width: 768px) {
    .proc-card {
        flex-direction: column;
        height: auto;
    }

    .proc-viewport {
        flex: none;
        height: 280px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .proc-terminal {
        flex: none;
        padding: 25px;
    }

    .proc-term-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .proc-content {
        gap: 30px;
    }
}

/* --- SECTION: PRICING --- */
.section-pricing {
    position: relative;
    padding: 10vh 0;
    width: 100%;
    background: transparent;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 4vw;
}

.pricing-sidebar {
    position: relative;
}

/* Content Column */
.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-header {
    max-width: 700px;
    padding-bottom: 20px;
}

/* pricing-eyebrow, pricing-subline → shared.css */

/* Override: tighter tracking for home pricing headline */
.pricing-headline {
    letter-spacing: -0.02em;
}

/* 3 Column Tier Cards */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Individual Tier Card */
/* .pricing-card glassmorphism/reveal/hover → shared.css */
.pricing-card {
    display: flex;
    flex-direction: column;
}


/* Card Header */
.pricing-card-header {
    padding: 30px 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.pricing-tier-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-grey);
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 15px;
}

.pricing-tier-name {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin: 0 0 8px;
    transition: color 0.3s ease;
    text-shadow: 0 2px 20px rgba(1, 1, 2, 0.8);
}

.pricing-card:hover .pricing-tier-name {
    color: var(--accent-mint);
}

.pricing-tier-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-grey);
    line-height: 1.6;
    opacity: 0.85;
}

.pricing-price {
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: var(--text-white);
    margin-top: auto;
    padding-top: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(1, 1, 2, 0.8);
}

.pricing-price-period {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-grey);
    font-weight: 400;
    opacity: 0.8;
}

/* Card Body — feature list */
.pricing-card-body {
    padding: 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-includes-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-grey);
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature-icon {
    color: var(--accent-mint);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
    opacity: 0.9;
}

.pricing-feature strong {
    color: var(--text-white);
    font-weight: 500;
}

/* Card Footer — CTA */
.pricing-card-footer {
    padding: 20px 30px 30px;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 16px 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-cta:hover {
    border-color: var(--accent-mint);
    background: var(--accent-mint);
    color: #050510;
    box-shadow: var(--shadow-glow-mint);
}

.pricing-cta:active {
    transform: scale(0.98);
    filter: brightness(0.9);
}

/* Guidance line below cards */
.pricing-guidance {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-guidance-text {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-white);
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Pricing Responsive: 1024px */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tiers {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card {
        opacity: 0;
        transform: translateY(40px);
    }

    .pricing-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Responsive: 768px */
@media (max-width: 768px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- SECTION: FAQ --- */
.section-faq {
    position: relative;
    padding: 10vh 0;
    width: 100%;
    background: transparent;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 4vw;
}

.faq-sidebar {
    position: relative;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-header {
    max-width: 600px;
    padding-bottom: 20px;
}

/* faq-eyebrow, faq-headline → shared.css */

.faq-subline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* FAQ accordion + responsive → shared.css */

/* CTA section styles are defined in shared.css — no duplicates needed here */


/* -----------------------------------------------
   PERFORMANCE OVERRIDES
   Promote scroll-animated cards to own compositor layer
   for smoother animations.
   ----------------------------------------------- */

/* Promote scroll-animated cards to own compositor layer */
.work-card,
.proc-card {
    will-change: opacity, transform;
}

/* C. Disable scan-line animation on work cards */
.work-card .scan-line {
    display: none;
}

/* D. Pause infinite animations when section is offscreen.
   .in-view class is toggled by IntersectionObserver in home.js */
.section-partners .partners-track {
    animation-play-state: paused;
}

.section-partners.in-view .partners-track {
    animation-play-state: running;
}

/* Hero footer partners - always animate when hero is visible */
.hero-footer .partners-track {
    animation-play-state: running;
}

.proc-progress-fill {
    animation-play-state: paused;
}

.section-process.in-view .proc-progress-fill {
    animation-play-state: running;
}