/* Scoped styles retained from the 2026 UI exploration. */

:root {
    --retained-surface: #0d1210;
    --retained-surface-soft: #0a0e0d;
    --retained-line: rgba(255, 255, 255, 0.1);
    --retained-accent-line: rgba(0, 255, 209, 0.35);
}

/* Home product composition */

.index-page #products .product-showcase {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
    gap: 12px;
    margin: 0;
}

.index-page #products .product-main,
.index-page #products .product-right {
    height: clamp(360px, 33vw, 420px);
    overflow: hidden;
    border: 1px solid var(--retained-line);
    border-radius: var(--radius);
    background: var(--retained-surface);
}

.index-page #products .product-main::after,
.index-page #products .feature-box::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.88) 100%);
}

.index-page #products .product-image,
.index-page #products .product-device,
.index-page #products .feature-image {
    border: 0;
    filter: saturate(0.8) contrast(1.03);
    transition: transform 520ms var(--motion-ease), filter 320ms ease;
}

.index-page #products .product-main:hover .product-image,
.index-page #products .product-right:hover .product-device,
.index-page #products .feature-box:hover .feature-image {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.02);
}

.index-page #products .product-overlay,
.index-page #products .feature-content {
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.index-page #products .product-overlay h3,
.index-page #products .feature-content h3 {
    margin-bottom: 8px;
}

.index-page #products .product-overlay p,
.index-page #products .feature-content p {
    color: rgba(255, 255, 255, 0.78);
}

.index-page #products .product-right {
    position: relative;
    align-items: stretch;
    gap: 0;
    padding: 18px;
}

.index-page #products .product-right .view-more {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    width: auto;
    min-width: 142px;
    background: rgba(0, 0, 0, 0.76);
}

.index-page #products .product-features {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
    padding: 0;
}

.index-page #products .feature-box,
.index-page #products .feature-box:first-child,
.index-page #products .feature-box:nth-child(2),
.index-page #products .feature-box:nth-child(3) {
    width: auto;
    height: 260px;
    border: 1px solid var(--retained-line);
    background: var(--retained-surface);
}

.index-page #products .feature-box:nth-child(1),
.index-page #products .feature-box:nth-child(2) {
    grid-column: span 3;
}

.index-page #products .feature-box:nth-child(3) {
    grid-column: span 6;
}

.index-page #products .feature-content p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

/* NeuralShell product page */

.products-page .series-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.products-page .series-item {
    min-width: 0;
    height: 100%;
}

.products-page .specs-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: 20px;
    margin-top: 0;
    align-items: stretch;
}

.products-page .specs-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.products-page .specs-row {
    min-height: 112px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--retained-line);
    border-radius: var(--radius);
    background: rgba(17, 17, 17, 0.6);
    transition: border-color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.products-page .specs-row:hover {
    transform: translateY(-3px);
    border-color: var(--retained-accent-line);
}

.products-page .specs-label {
    flex: none;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
}

.products-page .specs-value {
    min-width: 0;
    color: var(--text-color);
    font-family: 'Michroma', sans-serif;
    font-size: clamp(15px, 1.5vw, 20px);
    overflow-wrap: anywhere;
}

.products-page .specs-image {
    min-height: 100%;
    display: grid;
    place-items: center;
    border: 1px solid var(--retained-line);
    background: rgba(17, 17, 17, 0.6);
}

/* Product information list */

.info-page .info-grid {
    gap: 12px;
}

.info-page .info-item {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
    height: 330px;
    padding: 40px;
    border: 1px solid var(--retained-line);
    background: var(--retained-surface);
}

.info-page .info-image {
    width: 250px;
    height: 250px;
    grid-column: 1;
    background-size: cover;
    filter: saturate(0.76);
}

.info-page .info-content {
    min-width: 0;
    max-width: none;
    min-height: 0;
    height: 250px;
    overflow: hidden;
}

.info-page .info-title-wrap {
    flex: 0 0 auto;
}

.info-page .info-title {
    font-size: clamp(21px, 2.2vw, 27px);
    line-height: 1.35;
}

.info-page .info-text {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.7);
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.info-page .info-item:hover .info-image,
.info-page .info-image.active {
    transform: none;
    filter: saturate(1);
}

/* Technology page: retain detail-card styling and arrangement only. */

.technology-page .tech-intro-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
}

.technology-page .tech-intro-item {
    max-height: none;
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--retained-line);
    background: var(--retained-surface);
}

.technology-page .tech-intro-item:nth-child(1),
.technology-page .tech-intro-item:nth-child(4) {
    grid-column: span 7;
}

.technology-page .tech-intro-item:nth-child(2),
.technology-page .tech-intro-item:nth-child(3) {
    grid-column: span 5;
}

.technology-page .intro-number {
    margin-bottom: 32px;
    color: var(--primary-color);
    font-size: 15px;
}

.technology-page .intro-content h3 {
    font-size: 22px;
}

.technology-page .intro-content p {
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.68);
}

.technology-page .core-tech-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
}

.technology-page .core-tech-item {
    grid-column: span 6;
    min-width: 0;
    min-height: 260px;
    padding: 24px;
    gap: 20px;
    align-items: stretch;
    border: 1px solid var(--retained-line);
    background: var(--retained-surface);
}

.technology-page .core-tech-item:nth-child(1),
.technology-page .core-tech-item:nth-child(2),
.technology-page .core-tech-item:nth-child(3),
.technology-page .core-tech-item:nth-child(4) {
    grid-column: span 6;
    flex-direction: row;
}

.technology-page .core-tech-content {
    max-width: none;
    min-height: 0;
    min-width: 0;
    justify-content: flex-start;
}

.technology-page .core-tech-title {
    margin-bottom: 14px;
    font-size: clamp(20px, 1.8vw, 24px);
}

.technology-page .core-tech-text,
.technology-page .summary-text {
    color: rgba(255, 255, 255, 0.68);
}

.technology-page .core-tech-text {
    font-size: 15px;
    line-height: 1.75;
}

.technology-page .core-tech-image {
    width: 180px;
    height: auto;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    align-self: center;
    filter: saturate(0.7);
}

.technology-page .core-tech-image.active,
.technology-page .core-tech-item:hover .core-tech-image {
    transform: none;
    filter: saturate(1);
}

.technology-page .summary-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 1000px) {
    .index-page #products .product-showcase {
        grid-template-columns: 1fr;
    }

    .index-page #products .product-main {
        height: 400px;
    }

    .index-page #products .product-right {
        height: 300px;
    }

    .index-page #products .product-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .index-page #products .feature-box:nth-child(1),
    .index-page #products .feature-box:nth-child(2) {
        grid-column: auto;
    }

    .index-page #products .feature-box:nth-child(3) {
        grid-column: 1 / -1;
    }

    .products-page .specs-wrapper {
        grid-template-columns: 1fr;
    }

    .technology-page .core-tech-item,
    .technology-page .core-tech-item:nth-child(1),
    .technology-page .core-tech-item:nth-child(2),
    .technology-page .core-tech-item:nth-child(3),
    .technology-page .core-tech-item:nth-child(4) {
        grid-column: span 12;
        flex-direction: row;
    }

    .technology-page .core-tech-image,
    .technology-page .core-tech-item:nth-child(2) .core-tech-image,
    .technology-page .core-tech-item:nth-child(3) .core-tech-image {
        width: min(30%, 220px);
        max-width: 220px;
        aspect-ratio: 1 / 1;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .index-page #products .product-main {
        height: 340px;
    }

    .index-page #products .product-right {
        height: 280px;
    }

    .index-page #products .product-features,
    .products-page .series-grid,
    .products-page .specs-table {
        grid-template-columns: 1fr;
    }

    .index-page #products .feature-box:nth-child(n) {
        grid-column: 1;
        height: 240px;
    }

    .info-page .info-item {
        grid-template-columns: 1fr;
        gap: 20px;
        height: auto;
        padding: 20px;
    }

    .info-page .info-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .info-page .info-content {
        height: auto;
        min-height: 0;
    }

    .info-page .info-text {
        -webkit-line-clamp: 4;
    }

    .technology-page .tech-intro-item:nth-child(n) {
        grid-column: span 12;
        min-height: 0;
    }

    .technology-page .core-tech-item,
    .technology-page .core-tech-item:nth-child(1),
    .technology-page .core-tech-item:nth-child(2),
    .technology-page .core-tech-item:nth-child(3),
    .technology-page .core-tech-item:nth-child(4) {
        grid-column: span 12;
        min-height: 0;
        padding: 20px;
        flex-direction: column;
    }

    .technology-page .core-tech-image,
    .technology-page .core-tech-item:nth-child(2) .core-tech-image,
    .technology-page .core-tech-item:nth-child(3) .core-tech-image {
        width: 100%;
        max-width: none;
        aspect-ratio: 16 / 9;
        margin: 16px 0 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .index-page #products .product-image,
    .index-page #products .product-device,
    .index-page #products .feature-image,
    .products-page .specs-row {
        transition: none;
    }
}

/* Shared information surfaces over the fixed visual stage. */
.neural-stage-page {
    --site-glass-bg: rgba(7, 12, 14, 0.78);
    --site-glass-bg-hover: rgba(10, 16, 18, 0.88);
    --site-glass-line: rgba(255, 255, 255, 0.1);
    --site-glass-line-hover: rgba(0, 255, 209, 0.38);
    --site-glass-blur: blur(14px) saturate(1.16);
}

.neural-stage-page :is(
    .feature-item,
    #technology .tech-center-copy,
    #technology .tech-item,
    .team-member,
    .timeline-content,
    .news-item,
    .awards li,
    .case-item,
    .series-item,
    .specs-row,
    .info-item,
    .tech-intro-item,
    .core-tech-item,
    .tech-summary .summary-text,
    .news-toc,
    .news-article,
    .contact-form
) {
    border: 1px solid var(--site-glass-line);
    border-radius: var(--radius);
    background: var(--site-glass-bg);
    -webkit-backdrop-filter: var(--site-glass-blur);
    backdrop-filter: var(--site-glass-blur);
    box-shadow: none;
    transition:
        border-color 420ms var(--motion-ease),
        box-shadow 520ms var(--motion-ease),
        background-color 420ms var(--motion-ease),
        transform 420ms var(--motion-ease);
}

.neural-stage-page :is(
    .feature-item,
    #technology .tech-item,
    .team-member,
    .timeline-content,
    .news-item,
    .awards li,
    .case-item,
    .series-item,
    .specs-row,
    .info-item,
    .tech-intro-item,
    .core-tech-item
):hover {
    border-color: var(--site-glass-line-hover);
    background: var(--site-glass-bg-hover);
    box-shadow: 0 24px 54px -34px rgba(0, 255, 209, 0.42);
}

/* Team portraits use one monochrome, dimensional treatment across Home and About. */
.neural-stage-page .team-member {
    position: relative;
    padding: 0;
    isolation: isolate;
    box-shadow: none;
    transform: translate3d(0, 0, 0);
}

.neural-stage-page .team-member:hover {
    border-color: var(--site-glass-line-hover);
    background: var(--site-glass-bg-hover);
    box-shadow: none;
    transform: translate3d(0, -3px, 0);
}

.neural-stage-page .member-portrait {
    perspective: 900px;
    border-bottom: 1px solid var(--site-glass-line);
    background: rgba(2, 7, 9, 0.72);
    box-shadow:
        inset 0 -24px 32px rgba(0, 255, 209, 0.025),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.neural-stage-page .member-portrait::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 50%;
    z-index: 0;
    width: 54%;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 255, 209, 0.16);
    filter: blur(9px);
    opacity: 0.62;
    transform: translateX(-50%);
}

.neural-stage-page .member-portrait-media {
    inset: 8px 10px 0;
    z-index: 1;
    transform: translate3d(0, 3px, 0);
    will-change: transform;
}

.neural-stage-page .member-image {
    opacity: 1;
    filter:
        drop-shadow(0 0 1px rgba(99, 213, 255, 0.6))
        drop-shadow(0 18px 13px rgba(0, 0, 0, 0.48));
    transform: translate3d(0, 4px, 34px) scale(0.94);
    transform-origin: center bottom;
    transition:
        filter 520ms var(--motion-ease),
        opacity 520ms var(--motion-ease),
        transform 620ms var(--motion-ease);
    will-change: transform;
}

.neural-stage-page .team-member:hover .member-image {
    opacity: 1;
    filter:
        drop-shadow(0 0 8px rgba(0, 255, 209, 0.18))
        drop-shadow(0 22px 15px rgba(0, 0, 0, 0.52));
    transform: translate3d(0, -4px, 54px) scale(0.985);
}

.neural-stage-page .team-member[data-member='zheng'] .member-image {
    transform: translate3d(0, 0, 34px) scale(1.06);
}

.neural-stage-page .team-member[data-member='zheng']:hover .member-image {
    transform: translate3d(0, -5px, 54px) scale(1.1);
}

.neural-stage-page .member-details {
    background: rgba(3, 8, 10, 0.2);
}

.neural-stage-page .team-member .member-role {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.neural-stage-page .team-member .member-education {
    border-top: 1px solid var(--site-glass-line);
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.65;
    text-wrap: pretty;
}

.motion-enabled .member-portrait-media {
    animation: memberPortraitFloat 6.8s ease-in-out infinite alternate;
}

.motion-enabled .team-member:nth-child(2n) .member-portrait-media {
    animation-delay: -2.4s;
}

.motion-enabled .team-member:nth-child(3n) .member-portrait-media {
    animation-delay: -4.1s;
}

.motion-enabled .team-member:hover .member-portrait-media {
    animation-play-state: paused;
}

@keyframes memberPortraitFloat {
    from {
        transform: translate3d(0, 4px, 0);
    }

    to {
        transform: translate3d(0, -3px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .motion-enabled .member-portrait-media {
        animation: none;
    }
}

/* News keeps its image-led grid while sharing the Data catalog's quieter structure. */
.news-page {
    --news-card-line: rgba(255, 255, 255, 0.12);
    --news-card-muted: #9aabad;
    --news-card-cyan: #63d5ff;
}

.news-page .news-item {
    position: relative;
    min-width: 0;
    padding: 0;
    border-color: var(--news-card-line);
    background: var(--site-glass-bg);
    box-shadow: none;
    transform: translate3d(0, 0, 0);
}

.news-page .news-item:hover,
.news-page .news-item:focus-within {
    border-color: var(--site-glass-line-hover);
    background: var(--site-glass-bg-hover);
    box-shadow: none;
    transform: translate3d(0, -2px, 0);
}

.news-page .news-image {
    position: relative;
    border-bottom: 1px solid var(--news-card-line);
    filter: saturate(0.74) contrast(1.04) brightness(0.9);
}

.news-page .news-item:hover .news-image,
.news-page .news-item:focus-within .news-image {
    filter: saturate(0.98) contrast(1.02) brightness(1);
    transform: scale(1.02);
}

.news-page .news-content {
    padding: 0;
}

.news-page .news-content-text {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 24px 24px 22px;
}

.news-page .news-content h3 {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.45;
}

.news-page .news-content p {
    color: var(--news-card-muted);
    line-height: 1.75;
    max-height: calc(1.75em * 6);
}

.news-page .news-meta {
    gap: 12px;
    margin-top: auto;
    padding: 14px 24px;
    border-top: 1px solid var(--news-card-line);
}

.news-page .meta-left {
    min-width: 0;
    flex-wrap: wrap;
    gap: 8px;
}

.news-page .date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.4;
}

.news-page .tag {
    padding: 4px 7px;
    border: 1px solid rgba(99, 213, 255, 0.28);
    border-radius: 4px;
    background: rgba(99, 213, 255, 0.06);
    color: var(--news-card-cyan);
    font-size: 10px;
    line-height: 1.2;
}

.news-page .news-meta .view-more {
    min-width: 0;
    padding: 8px 10px;
    border-color: rgba(0, 255, 209, 0.38);
    border-radius: 6px;
    background: transparent;
    color: var(--primary-color);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.news-page .news-meta .view-more::after {
    margin-left: 8px;
}

.news-page :is(.news-title-link, .news-meta .view-more):focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.index-page .feature-item {
    min-width: 0;
    min-height: 194px;
    padding: 22px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.index-page .feature-item:not(:last-child)::after {
    display: none;
}

/* Product visuals remain direct media, without a second card frame. */
.index-page #products :is(.product-main, .product-right, .feature-box),
.products-page .specs-image {
    padding: 0;
    border: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
}

.index-page #products :is(.product-main, .product-right, .feature-box):hover,
.products-page .specs-image:hover {
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.index-page #products .product-main::after,
.index-page #products .feature-box::after {
    inset: 0;
    border-radius: var(--radius);
}

.index-page #products :is(.product-image, .product-device, .feature-image),
.products-page :is(.overview-image, .specs-image, .specs-image img),
.info-page .info-image {
    border: 0;
    box-shadow: none;
}

/* Home technology: one open feature composition followed by compact services. */
.index-page #technology h2 {
    margin-bottom: 52px;
}

.index-page #technology .tech-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.index-page #technology .tech-center {
    display: grid;
    grid-template-columns: minmax(300px, 4fr) minmax(0, 8fr);
    gap: 14px;
    padding: 0;
    overflow: visible;
    text-align: left;
}

.motion-enabled .index-page #technology .tech-center.motion-visible {
    transform: none;
    filter: none;
}

.index-page #technology .tech-center-copy {
    min-height: 410px;
    padding: 34px;
    display: flex;
    align-items: flex-end;
}

.index-page #technology .tech-center-copy p {
    max-width: 38ch;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
    order: initial;
}

.index-page #technology .tech-main-image {
    width: 100%;
    height: 410px;
    min-width: 0;
    margin: 0;
    border: 0;
    border-radius: var(--radius);
    background-position: center;
    box-shadow: none;
    filter: contrast(1.06) brightness(0.96);
    mix-blend-mode: screen;
    animation: none;
}

.index-page #technology .tech-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.index-page #technology .tech-item {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-width: 0;
    min-height: 112px;
    padding: 14px;
    text-align: left;
}

.index-page #technology .tech-number {
    position: absolute;
    top: 10px;
    right: 12px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 10px;
}

.index-page #technology .tech-image {
    width: 72px;
    height: 72px;
    margin: 0;
    border: 0;
    border-radius: calc(var(--radius) - 2px);
    box-shadow: none;
}

.index-page #technology .tech-item:hover .tech-image {
    filter: grayscale(0%);
}

.index-page #technology .tech-item p {
    min-width: 0;
    max-width: none;
    margin: 0;
    padding-right: 12px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.index-page .team-member {
    padding: 0;
}

.index-page #news {
    --home-news-line: rgba(255, 255, 255, 0.12);
    --home-news-muted: #9aabad;
    --home-news-cyan: #63d5ff;
}

.index-page #news .news-grid {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.index-page #news .news-item {
    position: relative;
    min-width: 0;
    height: auto;
    padding: 0;
    border-color: var(--home-news-line);
    background: var(--site-glass-bg);
    box-shadow: none;
    transform: translate3d(0, 0, 0);
}

.index-page #news .news-item:hover,
.index-page #news .news-item:focus-within {
    border-color: var(--site-glass-line-hover);
    background: var(--site-glass-bg-hover);
    box-shadow: none;
    transform: translate3d(0, -2px, 0);
}

.index-page #news .news-image {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid var(--home-news-line);
    filter: saturate(0.74) contrast(1.04) brightness(0.9);
}

.index-page #news .news-item:hover .news-image,
.index-page #news .news-item:focus-within .news-image {
    filter: saturate(0.98) contrast(1.02) brightness(1);
    transform: scale(1.02);
}

.index-page #news .news-content {
    min-width: 0;
    padding: 0;
}

.index-page #news .news-content-text {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 18px 17px 16px;
}

.index-page #news .news-content h3 {
    display: -webkit-box;
    min-height: calc(1.45em * 2);
    margin-bottom: 10px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.45;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.index-page #news .news-content p {
    display: -webkit-box;
    max-height: calc(1.65em * 3);
    overflow: hidden;
    color: var(--home-news-muted);
    font-size: 12px;
    line-height: 1.65;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.index-page #news .news-meta {
    gap: 8px;
    margin-top: auto;
    padding: 12px 16px 14px;
    border-top: 1px solid var(--home-news-line);
}

.index-page #news .meta-left {
    min-width: 0;
    flex-wrap: wrap;
    gap: 6px;
}

.index-page #news .date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    line-height: 1.4;
}

.index-page #news .tag {
    padding: 3px 6px;
    border: 1px solid rgba(99, 213, 255, 0.28);
    border-radius: 4px;
    background: rgba(99, 213, 255, 0.06);
    color: var(--home-news-cyan);
    font-size: 9px;
    line-height: 1.2;
}

.index-page #news .news-meta .view-more {
    min-width: 0;
    padding: 7px 8px;
    border-color: rgba(0, 255, 209, 0.38);
    border-radius: 6px;
    background: transparent;
    color: var(--primary-color);
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
}

.index-page #news .news-meta .view-more::after {
    margin-left: 6px;
}

.index-page #news :is(.news-title-link, .news-meta .view-more):focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.index-page .timeline-item:hover .timeline-content {
    border-color: var(--site-glass-line-hover);
    box-shadow: 0 24px 54px -34px rgba(0, 255, 209, 0.42);
    transform: none;
}

.index-page .awards li {
    margin-right: 20px;
    padding: 10px;
}

.index-page .awards li img {
    display: block;
}

.products-page .specs-image {
    display: grid;
    place-items: center;
}

.products-page .specs-image img {
    mix-blend-mode: screen;
}

.technology-page .tech-summary .summary-text {
    padding: 28px 32px;
}

.news-detail-page .news-article {
    padding: clamp(24px, 3vw, 40px);
}

.news-detail-page .news-article > .news-text {
    margin-bottom: 0;
}

.news-detail-page .news-article > .news-text > :last-child {
    margin-bottom: 0;
}

@media (min-width: 1001px) {
    .news-detail-page .news-article {
        margin-top: 16px;
    }
}

.news-detail-page .news-title {
    margin-top: 0;
}

.news-detail-page .news-toc {
    background: var(--site-glass-bg);
}

.about-page .contact-form {
    padding: clamp(22px, 3vw, 34px);
}

@media (max-width: 1000px) {
    .index-page #technology .tech-center {
        grid-template-columns: minmax(0, 1fr);
    }

    .index-page #technology .tech-main-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        order: -1;
    }

    .index-page #technology .tech-center-copy {
        min-height: 0;
    }

    .index-page #technology .tech-center-copy p {
        max-width: 68ch;
    }

    .index-page #technology .tech-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .neural-stage-page {
        --site-glass-blur: blur(10px) saturate(1.12);
    }

    .index-page .feature-item {
        min-height: 170px;
        padding: 18px 14px;
    }

    .index-page #technology h2 {
        margin-bottom: 38px;
    }

    .index-page #technology .tech-center-copy {
        padding: 24px;
    }

    .index-page #technology .tech-center-copy p {
        font-size: 15px;
    }

    .news-detail-page .news-article {
        padding: 20px;
    }
}

@media (max-width: 1100px) {
    .index-page #news .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .index-page #news .news-grid {
        width: min(100%, 420px);
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .index-page #news .news-content-text {
        padding: 20px 18px 17px;
    }

    .index-page #news .news-content h3 {
        font-size: 16px;
    }

    .index-page #news .news-content p {
        font-size: 13px;
    }

    .index-page #news .news-meta {
        padding: 13px 18px 15px;
    }
}

@media (max-width: 560px) {
    .index-page #technology .tech-services {
        grid-template-columns: minmax(0, 1fr);
    }

    .index-page #technology .tech-item {
        min-height: 104px;
    }

    .news-page .news-content-text {
        padding: 22px 20px 20px;
    }

    .news-page .news-meta {
        padding: 14px 20px;
    }

    .neural-stage-page .member-details {
        padding: 20px 20px 22px;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .neural-stage-page :is(
        .feature-item,
        #technology .tech-center-copy,
        #technology .tech-item,
        .team-member,
        .timeline-content,
        .news-item,
        .awards li,
        .case-item,
        .series-item,
        .specs-row,
        .info-item,
        .tech-intro-item,
        .core-tech-item,
        .tech-summary .summary-text,
        .news-toc,
        .news-article,
        .contact-form
    ) {
        background: #0b1012;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
}
