
@font-face {
    font-family: 'DesignFont';
    src: url('/assets/official/font-regular.woff2') format('woff2'),
         url('/assets/official/font-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DesignFont';
    src: url('/assets/official/font-bold.woff2') format('woff2'),
         url('/assets/official/font-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html { 
    font-size: min(calc(100vw / 14.4), calc(100vh / 10.5)); 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow: hidden; 
}

/* 自定义轻量滚动条 */
::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(31, 86, 194, 0.15);
    border-radius: 0.04rem;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(31, 86, 194, 0.3);
}

/* Ultra-wide wrapper */
.page-shell.wide-shell {
    max-width: 14.4rem;
}
/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DesignFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #24324b;
    background: #eef3fb;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    background: #ffffff;
    padding: 0.16rem 0.28rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 0.02rem 0.08rem rgba(25, 72, 146, 0.05);
    z-index: 100;
    position: relative;
}

.site-nav {
    max-width: 14.4rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    color: #1f56c2;
    text-decoration: none;
}

.brand-mark {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 0.14rem;
    background: linear-gradient(135deg, #1f56c2, #6fa2ff);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.18rem;
    font-weight: 700;
    box-shadow: 0 0.12rem 0.2rem rgba(31, 86, 194, 0.18);
}

.brand-logo {
    height: 0.42rem;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0.4rem;
    padding: 0 0.04rem;
    margin: 0 0.16rem;
    border-radius: 0;
    border-bottom: 0.02rem solid transparent;
    color: #445168;
    font-size: 0.15rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: transparent;
    color: #1f56c2;
    border-bottom: 0.02rem solid #1f56c2;
}

.page-shell {
    width: 100%;
    max-width: 100%;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.page-card,
.page-section,
.feature-panel,
.product-card,
.news-card,
.info-card,
.contact-card {
    background: #fff;
    border-radius: 0.24rem;
    box-shadow: 0 0.12rem 0.32rem rgba(21, 54, 107, 0.04), 0 0.02rem 0.06rem rgba(21, 54, 107, 0.02); border: 0.01rem solid rgba(21, 54, 107, 0.05);
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0.36rem;
    padding: 0.48rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
    padding: 0.08rem 0.14rem;
    border-radius: 9.99rem;
    background: #e9f0ff;
    color: #1f56c2;
    font-size: 0.13rem;
    font-weight: 700;
    margin-bottom: 0.18rem;
}

.hero h1 {
    font-size: 0.48rem;
    line-height: 1.15;
    margin-bottom: 0.18rem;
    color: #1f2f4d;
}

.hero p {
    color: #5d6b83;
    font-size: 0.16rem;
    margin-bottom: 0.24rem;
}

.hero-actions {
    display: flex;
    gap: 0.14rem;
    flex-wrap: wrap;
}

.btn,
.btn-secondary,
.btn-link {
    border: 0;
    border-radius: 0.08rem;
    font-size: 0.16rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
    background: #1f56c2;
    color: #fff;
    padding: 0.14rem 0.28rem;
    box-shadow: 0 0.14rem 0.24rem rgba(31, 86, 194, 0.22);
}

.btn:hover,
.btn-secondary:hover,
.btn-link:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.14rem 0.22rem;
    background: #edf3ff;
    color: #1f56c2;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.12rem 0.18rem;
    background: transparent;
    color: #1f56c2;
}

.hero-visual {
    min-height: 3.2rem;
    border-radius: 0.28rem;
    background: linear-gradient(145deg, #ecf3ff, #d9e6ff);
    position: relative;
    overflow: hidden;
    border: 0.01rem solid #d6e3ff;
}

.hero-visual::before,
.hero-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(31, 86, 194, 0.08);
}

.hero-visual::before {
    width: 2.6rem;
    height: 2.6rem;
    top: -0.7rem;
    right: -0.4rem;
}

.hero-visual::after {
    width: 1.8rem;
    height: 1.8rem;
    left: -0.4rem;
    bottom: -0.5rem;
}

.hero-network {
    position: absolute;
    inset: 0.32rem;
    border-radius: 0.24rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(231, 239, 255, 0.8));
    display: grid;
    place-items: center;
}

.hero-center {
    width: 1.16rem;
    height: 1.16rem;
    border-radius: 50%;
    background: radial-gradient(circle at center, #78a8ff 0%, #1f56c2 70%);
    box-shadow: 0 0 0 0.12rem rgba(31, 86, 194, 0.08);
    position: relative;
}

.hero-node {
    position: absolute;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: #fff;
    border: 0.01rem solid #d7e4ff;
    display: grid;
    place-items: center;
    color: #1f56c2;
    font-size: 0.13rem;
    font-weight: 700;
    box-shadow: 0 0.08rem 0.18rem rgba(17, 61, 132, 0.1);
}

.node-top { top: 0.3rem; left: 50%; transform: translateX(-50%); }
.node-right { top: 50%; right: 0.3rem; transform: translateY(-50%); }
.node-bottom { bottom: 0.3rem; left: 50%; transform: translateX(-50%); }
.node-left { top: 50%; left: 0.3rem; transform: translateY(-50%); }

.page-section {
    padding: 0.4rem;
    margin-top: 0.28rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 0.28rem;
}

.section-heading h2 {
    font-size: 0.34rem;
    color: #1f2f4d;
    margin-bottom: 0.08rem;
}

.section-heading p {
    color: #6d7a92;
    max-width: 7.6rem;
    margin: 0 auto;
}

.overview-grid,
.feature-grid,
.products-grid,
.news-grid,
.about-grid,
.contact-grid,
.highlight-grid {
    display: grid;
    gap: 0.2rem;
}

.overview-grid {
    grid-template-columns: 1.2fr 1fr;
}

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.products-grid,
.news-grid,
.about-grid {
    grid-template-columns: repeat(3, 1fr);
}

.highlight-grid,
.contact-grid {
    grid-template-columns: repeat(2, 1fr);
}

.overview-visual {
    min-height: 3rem;
    border-radius: 0.22rem;
    background: linear-gradient(135deg, #d9e7ff, #eef4ff);
    display: grid;
    place-items: center;
    color: #1f56c2;
    font-size: 0.32rem;
    font-weight: 800;
}

.overview-copy {
    display: grid;
    gap: 0.16rem;
}

.feature-panel,
.product-card,
.news-card,
.info-card,
.contact-card {
    padding: 0.24rem;
}

.feature-icon,
.info-icon {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 0.16rem;
    display: grid;
    place-items: center;
    background: #edf3ff;
    color: #1f56c2;
    font-weight: 800;
    margin-bottom: 0.14rem;
}

.feature-panel h3,
.product-card h3,
.news-card h3,
.info-card h3,
.contact-card h3 {
    font-size: 0.2rem;
    color: #1f2f4d;
    margin-bottom: 0.1rem;
}

.feature-panel p,
.product-card p,
.news-card p,
.info-card p,
.contact-card p,
.overview-copy p,
.empty-state,
.list-note {
    color: #66748c;
}

.product-visual {
    height: 1.8rem;
    border-radius: 0.18rem;
    margin-bottom: 0.18rem;
    background: linear-gradient(135deg, #dbe8ff, #eef4ff);
    position: relative;
    overflow: hidden;
}

.product-visual::before,
.product-visual::after {
    content: '';
    position: absolute;
    border-radius: 9.99rem;
    background: rgba(31, 86, 194, 0.18);
}

.product-visual::before {
    width: 1.5rem;
    height: 1.5rem;
    top: 0.2rem;
    left: 0.24rem;
}

.product-visual::after {
    width: 1.1rem;
    height: 1.1rem;
    bottom: 0.18rem;
    right: 0.2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.12rem;
    color: #7a879d;
    font-size: 0.13rem;
    margin-bottom: 0.14rem;
}

.news-card p {
    white-space: pre-line;
}

.contact-card strong {
    display: block;
    font-size: 0.14rem;
    color: #1f56c2;
    margin-bottom: 0.06rem;
}

.form-shell {
    padding: 0.32rem;
}

.form-title {
    margin-bottom: 0.2rem;
}

.form-title h2 {
    font-size: 0.32rem;
    color: #1f2f4d;
    margin-bottom: 0.08rem;
}

.form-title p {
    color: #6c7890;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.18rem;
}

.form-group {
    display: grid;
    gap: 0.08rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.14rem;
    font-weight: 700;
    color: #31425f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 0.01rem solid #d4dff4;
    border-radius: 0.14rem;
    padding: 0.14rem 0.16rem;
    font: inherit;
    color: #24324b;
    background: #fdfefe;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f56c2;
    box-shadow: 0 0 0 0.04rem rgba(31, 86, 194, 0.08);
}

.message {
    min-height: 0.24rem;
    margin-top: 0.12rem;
    font-size: 0.14rem;
    font-weight: 700;
}

.success {
    color: #157347;
}

.error {
    color: #c0392b;
}

.site-footer {
    padding: 0.18rem 0.28rem 0.24rem;
    text-align: center;
    color: #728099;
    font-size: 0.13rem;
    background: transparent;
    margin-top: auto;
}

.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 0.14rem 0.12rem;
    border-bottom: 0.01rem solid #e7edf7;
    vertical-align: top;
}

.data-table th {
    color: #52627b;
    font-size: 0.14rem;
    font-weight: 700;
    background: #f7faff;
}

.admin-root {
    /* 强制基础字号为100px，配合zoom实现原生级2K无损缩放，彻底解决12px最小字体导致排版错位的问题 */
    font-size: 100px !important;
    overflow: hidden !important;
}

.admin-page {
    background: linear-gradient(180deg, #edf3ff 0%, #f7faff 100%);
    margin: 0;
    padding: 0;
    display: block !important;
    /* 始终以2K (2560px) 为基准分辨率进行全景缩放 */
    zoom: calc(100vw / 2560);
    width: 2560px !important;
    height: calc(100vh / (100vw / 2560)) !important;
    overflow: hidden !important;
}

.admin-login-page {
    margin: 0;
    padding: 0;
    display: grid !important;
    place-items: center;
    width: 100vw !important;
    height: 100vh !important;
    overflow: hidden !important;
    position: relative;
    background: #071a44;
    --admin-motion-x: 0;
    --admin-motion-y: 0;
}

.admin-login-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(4, 18, 58, 0.34), rgba(10, 36, 101, 0.58)),
        url('/assets/official/BCI_Rise_and_Challenges.jpg') center/cover no-repeat;
    transform: translate3d(calc(var(--admin-motion-x) * -10px), calc(var(--admin-motion-y) * -8px), 0) scale(1.01);
    transition: transform 0.35s ease-out;
}

.admin-login-page::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(111, 162, 255, 0.2), transparent 32%),
        radial-gradient(circle at 80% 18%, rgba(181, 108, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(6, 20, 56, 0.18), rgba(6, 20, 56, 0.52));
}

.admin-login-decor {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    opacity: 0.42;
}

.admin-login-decor::before,
.admin-login-decor::after {
    content: '';
    position: absolute;
    border-color: rgba(187, 212, 255, 0.28);
}

.admin-login-decor-left {
    left: 0.42rem;
    top: 0.42rem;
    width: 1.14rem;
    height: 1.14rem;
}

.admin-login-decor-left::before {
    inset: 0;
    border-top: 0.01rem solid rgba(187, 212, 255, 0.24);
    border-left: 0.01rem solid rgba(187, 212, 255, 0.24);
    border-top-left-radius: 0.18rem;
}

.admin-login-decor-left::after {
    left: 0;
    top: 0.22rem;
    width: 0.44rem;
    border-top: 0.01rem solid rgba(187, 212, 255, 0.18);
}

.admin-login-decor-right {
    right: 0.42rem;
    bottom: 0.42rem;
    width: 1.24rem;
    height: 1.24rem;
}

.admin-login-decor-right::before {
    inset: 0;
    border-right: 0.01rem solid rgba(187, 212, 255, 0.22);
    border-bottom: 0.01rem solid rgba(187, 212, 255, 0.22);
    border-bottom-right-radius: 0.2rem;
}

.admin-login-decor-right::after {
    right: 0;
    bottom: 0.26rem;
    width: 0.5rem;
    border-top: 0.01rem solid rgba(187, 212, 255, 0.16);
}

.admin-network-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.92;
    transition: transform 0.35s ease-out;
}

.admin-network-svg {
    width: 100%;
    height: 100%;
}

.admin-network-paths use {
    fill: none;
    stroke: url(#adminPulseLine);
    stroke-width: 2.2;
    stroke-linecap: round;
    opacity: 0.56;
}

.admin-network-nodes circle {
    fill: rgba(177, 231, 255, 0.9);
    opacity: 0.9;
}

.admin-network-pulses circle {
    filter: drop-shadow(0 0 10px rgba(141, 226, 255, 0.78));
}

.admin-login-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 5.6rem);
    padding: 0.28rem;
    transition: transform 0.35s ease-out;
}

.admin-login-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.32rem;
    padding: 0.4rem 0.38rem 0.36rem;
    background: linear-gradient(180deg, rgba(7, 24, 68, 0.72), rgba(5, 18, 56, 0.62));
    border: 0.01rem solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 0.34rem 0.72rem rgba(3, 13, 39, 0.34);
    backdrop-filter: blur(0.22rem);
    color: #eff5ff;
}

.admin-login-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 24%, transparent 72%, rgba(111, 162, 255, 0.1)),
        radial-gradient(circle at top right, rgba(111, 162, 255, 0.2), transparent 34%);
    pointer-events: none;
}

.admin-login-card::after {
    content: '';
    position: absolute;
    inset: 0.01rem;
    border-radius: calc(0.32rem - 0.01rem);
    border: 0.01rem solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.admin-login-card-accent {
    position: absolute;
    left: 0.38rem;
    top: 0;
    width: 1.28rem;
    height: 0.03rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0), rgba(125, 211, 252, 0.92), rgba(59, 130, 246, 0));
    box-shadow: 0 0 0.18rem rgba(125, 211, 252, 0.32);
}

.admin-login-brand {
    display: flex;
    align-items: center;
    gap: 0.16rem;
    margin-bottom: 0.12rem;
    position: relative;
    z-index: 1;
}

.admin-login-logo {
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 0.16rem;
    box-shadow: 0 0.12rem 0.28rem rgba(31, 86, 194, 0.22);
}

.admin-login-brand-copy {
    display: block;
}

.admin-login-brand-copy strong {
    display: block;
    font-size: 0.22rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.admin-login-form {
    position: relative;
    z-index: 1;
    margin-top: 0.2rem;
    display: grid;
    gap: 0.18rem;
}

.admin-login-field {
    display: grid;
    gap: 0.08rem;
}

.admin-login-field span {
    font-size: 0.13rem;
    font-weight: 700;
    color: rgba(240, 245, 255, 0.9);
}

.admin-login-field input {
    width: 100%;
    border: 0.01rem solid rgba(193, 212, 255, 0.18);
    border-radius: 0.16rem;
    min-height: 0.56rem;
    padding: 0 0.18rem;
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
    font-size: 0.15rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.admin-login-field input::placeholder {
    color: rgba(228, 236, 255, 0.5);
}

.admin-login-field input:focus {
    border-color: rgba(111, 162, 255, 0.82);
    box-shadow: 0 0 0 0.04rem rgba(91, 146, 255, 0.14), 0 0.08rem 0.22rem rgba(23, 74, 182, 0.16);
    background: rgba(255, 255, 255, 0.13);
}

.admin-login-message {
    min-height: 0.24rem;
    font-size: 0.13rem;
    line-height: 1.5;
    color: rgba(232, 240, 255, 0.82);
}

.admin-login-message.error {
    color: #ffd5d8;
}

.admin-login-submit,
.dashboard-logout-btn {
    border: none;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.2s ease, filter 0.24s ease;
}

.admin-login-submit {
    position: relative;
    overflow: hidden;
    min-height: 0.56rem;
    border-radius: 0.16rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 48%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 0.16rem;
    font-weight: 700;
    box-shadow: 0 0.18rem 0.34rem rgba(29, 78, 216, 0.3);
}

.admin-login-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 12%, rgba(255, 255, 255, 0.26) 48%, transparent 78%);
    transform: translateX(-130%);
    transition: transform 0.52s ease;
}

.admin-login-submit:hover,
.dashboard-logout-btn:hover {
    transform: translateY(-0.014rem);
    filter: brightness(1.03);
}

.admin-login-submit:hover {
    box-shadow: 0 0.22rem 0.42rem rgba(29, 78, 216, 0.34);
}

.admin-login-submit:hover::before {
    transform: translateX(130%);
}

.admin-login-submit:active,
.dashboard-logout-btn:active {
    transform: translateY(-0.005rem) scale(0.995);
}

.admin-login-submit:disabled,
.dashboard-logout-btn:disabled {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}

.admin-layout {
    display: flex;
    align-items: stretch;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 13.2rem;
}

.admin-sidebar {
    width: 2.56rem;
    height: 100vh;
    padding: 0.16rem 0.16rem 0.16rem;
    background: linear-gradient(180deg, #16284d 0%, #1c3568 100%);
    color: #dce6ff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-right: 0.01rem solid rgba(255, 255, 255, 0.08);
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    margin-top: 0;
    padding-top: 0;
}

.admin-menu button {
    width: 100%;
    border: 0.01rem solid rgba(255, 255, 255, 0.08);
    border-radius: 0.16rem;
    padding: 0.18rem 0.18rem 0.16rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    color: #d7e3fb;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: grid;
    gap: 0.06rem;
}

.admin-menu button:hover,
.admin-menu button.active {
    background: linear-gradient(135deg, rgba(45, 104, 226, 0.92) 0%, rgba(31, 86, 194, 0.92) 100%);
    border-color: rgba(141, 182, 255, 0.72);
    box-shadow: 0 0.14rem 0.28rem rgba(8, 37, 90, 0.22);
    transform: translateY(-0.01rem);
    color: #ffffff;
}

.menu-title {
    font-size: 0.16rem;
    font-weight: 700;
    line-height: 1.4;
}

.menu-desc {
    font-size: 0.12rem;
    line-height: 1.5;
    color: rgba(223, 233, 255, 0.8);
}

.admin-menu button.active .menu-desc,
.admin-menu button:hover .menu-desc {
    color: rgba(255, 255, 255, 0.88);
}

.admin-sidebar-foot {
    margin-top: auto;
    padding-top: 0.14rem;
}

.admin-sidebar-foot a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0.48rem;
    border-radius: 0.14rem;
    background: rgba(255, 255, 255, 0.08);
    color: #edf4ff;
    font-size: 0.14rem;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.admin-sidebar-foot a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-0.01rem);
}

.admin-content {
    flex: 1;
    height: 100vh;
    display: block !important;
    overflow-y: auto;
    padding: 0.16rem 0.18rem 0.16rem !important;
    margin: 0 !important;
    background: transparent;
    box-sizing: border-box;
}

.admin-main-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding-top: 0 !important;
}



.admin-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.1rem;
}

.metric-card {
    padding: 0.16rem 0.18rem;
    border-radius: 0.2rem;
    background: #ffffff;
    border: 0.01rem solid rgba(205, 219, 244, 0.7);
    box-shadow: 0 0.14rem 0.28rem rgba(25, 72, 146, 0.04);
    min-height: 1.36rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-card-highlight {
    background: linear-gradient(135deg, #1f56c2 0%, #123f96 100%);
    color: #ffffff;
    border-color: transparent;
}

.metric-label {
    display: inline-block;
    font-size: 0.12rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #7382a0;
    margin-bottom: 0.1rem;
}

.metric-card strong {
    display: block;
    font-size: 0.32rem;
    line-height: 1.2;
    color: #1a2950;
    margin-bottom: 0.06rem;
}

.metric-card p {
    font-size: 0.13rem;
    line-height: 1.6;
    color: #66758d;
}

.metric-card-highlight .metric-label,
.metric-card-highlight strong,
.metric-card-highlight p {
    color: #ffffff;
}

.admin-panel {
    padding: 0;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
}

.admin-panel.hidden {
    display: none;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.14rem;
    margin-bottom: 0.1rem;
}

.panel-header h2 {
    font-size: 0.26rem;
    line-height: 1.3;
    color: #1f2f4d;
    margin-bottom: 0.06rem;
}

.panel-header p {
    font-size: 0.14rem;
    line-height: 1.6;
    color: #6d7a92;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    min-height: 0.34rem;
    padding: 0 0.14rem;
    border-radius: 9.99rem;
    background: #e8f0ff;
    color: #1f56c2;
    font-size: 0.12rem;
    font-weight: 700;
    white-space: nowrap;
}

.admin-grid {
    display: grid;
    gap: 0.1rem;
}

.admin-grid-news {
    grid-template-columns: minmax(3.5rem, 4rem) minmax(0, 1.5fr);
}

.admin-grid-single {
    grid-template-columns: minmax(0, 1fr);
}

.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.2rem;
    border: 0.01rem solid rgba(205, 219, 244, 0.72);
    box-shadow: 0 0.16rem 0.34rem rgba(25, 72, 146, 0.05);
    min-width: 0;
}

.content-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.14rem;
    padding: 0.18rem 0.18rem 0;
}

.content-card-head h3 {
    font-size: 0.2rem;
    line-height: 1.4;
    color: #1d2a4c;
    margin-bottom: 0.06rem;
}

.content-card-head p {
    font-size: 0.13rem;
    line-height: 1.6;
    color: #6d7a92;
}

.admin-form-shell {
    padding: 0.18rem;
}

.admin-form-shell .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.16rem;
}

.admin-form-shell textarea {
    min-height: 2.2rem;
    resize: vertical;
}

.admin-form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.12rem;
    margin-top: 0.14rem;
}

.admin-table-wrap {
    padding: 0.04rem 0.18rem 0.18rem;
}

.table-wrap {
    overflow-x: auto;
    min-width: 0;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.data-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 0.15rem 0.14rem;
    border-bottom: 0.01rem solid #e7edf7;
    vertical-align: top;
    font-size: 0.14rem;
    line-height: 1.6;
    word-break: break-word;
}

.data-table th {
    color: #52627b;
    font-size: 0.13rem;
    font-weight: 700;
    background: #f7faff;
}

.data-table td {
    color: #25314a;
    background: #ffffff;
}

.data-table tbody tr:hover td {
    background: #fbfdff;
}

.cell-content {
    display: block;
    min-width: 0;
}

.cell-content.muted {
    color: #687892;
}

.cell-content.multiline {
    white-space: pre-line;
}

.cell-content.strong {
    font-weight: 700;
    color: #1d2a4c;
}

.cell-content.mono {
    font-variant-numeric: tabular-nums;
}

.empty-state {
    padding: 0.22rem 0;
    color: #6d7a92;
}



/* --- Global Admin Themes & UI Optimization --- */
:root[data-theme] {
    --admin-bg-body: #f4f7fc;
    --admin-bg-sidebar: #111d32;
    --admin-bg-card: #ffffff;
    --admin-text-main: #1a2950;
    --admin-text-sub: #6d7a92;
    --admin-border: rgba(0,0,0,0.04);
    --admin-shadow: 0 6px 32px rgba(0,0,0,0.04);
    --admin-primary: #1f56c2;
    --admin-primary-hover: #16429b;
    --admin-card-radius: 0.16rem;
    --admin-input-bg: #f8fbff;
}

:root[data-theme="green"] {
    --admin-bg-body: #f0fdf4;
    --admin-bg-sidebar: #064e3b;
    --admin-bg-card: #ffffff;
    --admin-text-main: #064e3b;
    --admin-text-sub: #166534;
    --admin-border: rgba(6,78,59,0.05);
    --admin-shadow: 0 6px 32px rgba(6,78,59,0.04);
    --admin-primary: #10b981;
    --admin-primary-hover: #059669;
    --admin-input-bg: #f0fdf4;
}

:root[data-theme="purple"] {
    --admin-bg-body: #f5f3ff;
    --admin-bg-sidebar: #2e1065;
    --admin-bg-card: #ffffff;
    --admin-text-main: #2e1065;
    --admin-text-sub: #5b21b6;
    --admin-border: rgba(46,16,101,0.05);
    --admin-shadow: 0 6px 32px rgba(46,16,101,0.04);
    --admin-primary: #8b5cf6;
    --admin-primary-hover: #7c3aed;
    --admin-input-bg: #f5f3ff;
}

/* Theme Switcher UI */
.dashboard-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.16rem;
}

.dashboard-logout-btn {
    min-height: 0.38rem;
    padding: 0 0.16rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--admin-text-main);
    font-size: 0.13rem;
    font-weight: 700;
    box-shadow: var(--admin-shadow);
}

.theme-switcher {
    display: flex;
    gap: 0.08rem;
    align-items: center;
    background: var(--admin-bg-card);
    padding: 0.06rem 0.1rem;
    border-radius: 0.2rem;
    box-shadow: var(--admin-shadow);
}

.theme-btn {
    width: 0.18rem;
    height: 0.18rem;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    padding: 0;
}
.theme-btn:hover { transform: scale(1.15); }
.theme-btn.active { border-color: #fff; outline: 2px solid var(--admin-text-sub); }
.theme-default { background: #111d32; }
.theme-green { background: #064e3b; }
.theme-purple { background: #2e1065; }

/* Apply Theme Variables & UI Refinements */
[data-theme] .dashboard-shell {
    background: var(--admin-bg-body) !important;
}

[data-theme] .dashboard-sidebar {
    background: var(--admin-bg-sidebar) !important;
}

[data-theme] .dashboard-topbar {
    background: transparent !important;
    border-bottom: none !important;
}

[data-theme] .dashboard-topbar-title {
    color: var(--admin-text-main) !important;
}

.dashboard-topbar-sub {
    display: none !important;
}

[data-theme] .dashboard-stat-card,
[data-theme] .dashboard-card,
[data-theme] .dashboard-chart-card,
[data-theme] .dashboard-table-scroll {
    background: var(--admin-bg-card) !important;
    border: none !important;
    border-radius: var(--admin-card-radius) !important;
    box-shadow: var(--admin-shadow) !important;
}

[data-theme] .dashboard-card-head {
    border-bottom: none !important;
}

[data-theme] .dashboard-card-title,
[data-theme] .dashboard-stat-value,
[data-theme] .dashboard-stat-label,
[data-theme] .data-table th,
[data-theme] .data-table td {
    color: var(--admin-text-main) !important;
}

[data-theme] .dashboard-card-sub,
[data-theme] .dashboard-stat-note,
[data-theme] .dashboard-pagination-info,
[data-theme] .dashboard-table th {
    color: var(--admin-text-sub) !important;
}

[data-theme] .data-table th,
[data-theme] .data-table td {
    border-bottom: 1px solid var(--admin-border) !important;
    background: transparent !important;
}

[data-theme] .btn {
    background: var(--admin-primary) !important;
    border: none !important;
}

[data-theme] .btn:hover {
    background: var(--admin-primary-hover) !important;
}

.admin-page .btn,
.admin-page .btn-secondary,
.admin-page .btn-link,
.admin-page .filter-btn,
.admin-page .dashboard-inline-btn,
.admin-page .editor-tool,
.admin-page .btn-danger-soft,
.admin-page .dashboard-back-btn,
.admin-page .dashboard-pagination-btn {
    min-height: 0.3rem !important;
    padding: 0 0.14rem !important;
    border-radius: 0.07rem !important;
    font-size: 0.12rem !important;
    line-height: 1 !important;
}

.admin-page .btn,
.admin-page .btn-secondary,
.admin-page .filter-btn {
    font-weight: 700 !important;
    box-shadow: 0 0.06rem 0.16rem rgba(31, 86, 194, 0.12) !important;
}

.admin-page .btn {
    min-width: 0.86rem;
}

.admin-page .btn-secondary,
.admin-page .btn-link,
.admin-page .btn-danger-soft,
.admin-page .dashboard-back-btn,
.admin-page .dashboard-pagination-btn {
    box-shadow: none !important;
}

.admin-page .dashboard-inline-btn,
.admin-page .editor-tool {
    min-height: 0.28rem !important;
    padding: 0 0.1rem !important;
    font-size: 0.115rem !important;
}

.admin-page .filter-btn {
    min-width: 0.68rem;
}

.admin-page .dashboard-pagination-btn {
    min-width: 0.3rem !important;
    padding: 0 0.1rem !important;
}

.admin-page .dashboard-form-actions-inline,
.admin-page .filter-form {
    gap: 0.08rem !important;
}

.admin-page .dashboard-card-head-inline {
    gap: 0.12rem;
}

[data-theme] .dashboard-pagination-btn {
    border: 1px solid var(--admin-border) !important;
    background: var(--admin-bg-card) !important;
    color: var(--admin-text-main) !important;
}

[data-theme] .dashboard-pagination-btn.active {
    background: var(--admin-primary) !important;
    border-color: var(--admin-primary) !important;
    color: #fff !important;
}

/* --- Admin Filter Bar --- */
.dashboard-filter-bar {
    padding: 0 0.24rem 0.16rem;
    border-bottom: 1px solid var(--admin-border);
    margin-bottom: 0.16rem;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.12rem;
    align-items: center;
}

.filter-input,
.filter-select {
    min-height: 0.32rem;
    padding: 0 0.12rem;
    border: 0.01rem solid #d7e3ff;
    border-radius: 0.08rem;
    background: #f8fbff;
    color: #24324b;
    font-size: 0.13rem;
    outline: none;
    font-family: 'DesignFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    flex: 1;
    min-width: 140px;
    max-width: 200px;
}

.filter-btn {
    min-height: 0.32rem;
    padding: 0 0.16rem;
    border-radius: 0.08rem;
    font-size: 0.13rem;
    white-space: nowrap;
}

[data-theme="dark"] .filter-input,
[data-theme="dark"] .filter-select {
    background: var(--admin-input-bg);
    border-color: var(--admin-border);
    color: var(--admin-text-main);
}

[data-theme] .dashboard-filter-bar {
    border-bottom-color: var(--admin-border);
}

/* News Editor Layout */
.news-editor-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.8rem;
    gap: 0.2rem;
    align-items: start;
    flex: 1;
    min-height: 0;
    height: calc(100vh - 2.46rem);
    overflow: hidden;
}

.news-editor-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    min-height: 0;
}

.news-editor-sidebar {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    align-self: stretch;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0.06rem;
    margin-top: 0;
    min-height: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.editor-group-full {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
    min-height: 0;
}

.editor-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.08rem;
    padding: 0.12rem;
    background: #f8fbff;
    border: 0.01rem solid #d7e3ff;
    border-radius: 0.1rem 0.1rem 0 0;
}

.editor-toolbar select {
    min-height: 0.32rem;
    padding: 0 0.28rem 0 0.1rem;
    border: 0.01rem solid #cbd8f1;
    border-radius: 0.06rem;
    background: #ffffff;
    color: #33507f;
    font-size: 0.12rem;
    cursor: pointer;
    flex: 1;
    min-width: 80px;
    max-width: 140px;
}

.editor-toolbar .editor-tool {
    padding: 0.06rem 0.1rem;
    background: transparent;
    border: 0.01rem solid transparent;
    border-radius: 0.04rem;
    color: #50617f;
    font-size: 0.12rem;
    cursor: pointer;
    white-space: nowrap;
}

.editor-toolbar .editor-tool:hover {
    background: #ffffff;
    border-color: #cbd8f1;
    color: #1f56c2;
}

.editor-toolbar .editor-tool-fullscreen {
    margin-left: auto;
}

.editor-toolbar .editor-tool-fullscreen.active {
    background: #1f56c2;
    border-color: #1f56c2;
    color: #ffffff;
}

.editor-group-full .rich-editor {
    flex: 1;
    min-height: 0;
    height: auto !important;
    overflow-y: auto;
}

.dashboard-sidebar-section {
    background: rgba(255, 255, 255, 0.96);
    border: 0.01rem solid rgba(205, 219, 244, 0.78);
    border-radius: 0.16rem;
    box-shadow: 0 0.08rem 0.24rem rgba(25, 72, 146, 0.06);
    padding: 0.2rem 0.24rem;
}

.dashboard-sidebar-section input,
.dashboard-sidebar-section select,
.dashboard-sidebar-section textarea {
    background: #ffffff !important;
}

.dashboard-sidebar-title {
    font-size: 0.16rem;
    font-weight: 700;
    color: var(--admin-text-main);
    margin: 0 0 0.16rem 0;
    padding-bottom: 0.12rem;
    border-bottom: 0.01rem solid rgba(205, 219, 244, 0.62);
}

.dashboard-sidebar-section .form-group {
    margin-bottom: 0.16rem;
}

.dashboard-sidebar-section .form-group:last-child {
    margin-bottom: 0;
}

.news-editor-sidebar .form-group label {
    font-size: 0.13rem;
    margin-bottom: 0.08rem;
    line-height: 1.4;
    color: #50617f;
}

.news-editor-sidebar input:not([type="file"]),
.news-editor-sidebar select,
.news-editor-sidebar textarea {
    font-size: 0.13rem !important;
    min-height: 0.38rem !important;
    padding: 0.06rem 0.12rem !important;
    border-radius: 0.1rem !important;
    line-height: 1.4 !important;
}

.news-editor-sidebar select {
    padding-right: 0.28rem !important;
}

.news-editor-sidebar input[type="datetime-local"] {
    font-size: 0.13rem !important;
}

.news-detail-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.editor-fullscreen-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.18rem;
    padding: 0.14rem 0.18rem;
    border: 0.01rem solid rgba(37, 99, 235, 0.18);
    border-radius: 0.14rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(29, 78, 216, 0.94));
    color: #ffffff;
    box-shadow: 0 0.18rem 0.42rem rgba(15, 23, 42, 0.18);
}

.editor-fullscreen-banner-copy {
    display: grid;
    gap: 0.04rem;
}

.editor-fullscreen-banner-copy strong {
    font-size: 0.15rem;
    letter-spacing: 0.01em;
}

.editor-fullscreen-banner-copy span {
    font-size: 0.12rem;
    color: rgba(255, 255, 255, 0.8);
}

#news-detail-view.admin-editor-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 120;
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

#news-detail-view.admin-editor-fullscreen .dashboard-card-head {
    display: none;
}

#news-detail-view.admin-editor-fullscreen .news-detail-body {
    flex: 1;
    min-height: 0;
    gap: 0.12rem;
    padding: 0.14rem 0.18rem 0.18rem;
    background: #f5f8ff;
}

#news-detail-view.admin-editor-fullscreen .editor-fullscreen-banner {
    display: none !important;
}

#news-detail-view.admin-editor-fullscreen .dashboard-editor-form {
    min-height: 0;
}

#news-detail-view.admin-editor-fullscreen .news-editor-layout {
    height: 100%;
}

#news-detail-view.admin-editor-fullscreen .news-editor-main > .form-group:first-child {
    display: none;
}

body.admin-editor-fullscreen-active {
    overflow: hidden !important;
}

.dashboard-editor-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    min-height: 0;
}
[data-theme] .dashboard-form .form-group input,
[data-theme] .dashboard-form .form-group textarea,
[data-theme] .dashboard-form .form-group select,
[data-theme] .dashboard-select {
    border: 1px solid var(--admin-border) !important;
    background: var(--admin-input-bg) !important;
    color: var(--admin-text-main) !important;
    border-radius: 0.12rem !important;
}
[data-theme] .dashboard-form .form-group input:focus,
[data-theme] .dashboard-form .form-group textarea:focus,
[data-theme] .dashboard-form .form-group select:focus {
    border-color: var(--admin-primary) !important;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05) !important;
}

[data-theme] .message {
    background: var(--admin-input-bg) !important;
    border: 1px solid var(--admin-border) !important;
    color: var(--admin-text-main) !important;
}

[data-theme] .dashboard-pill,
[data-theme] .dashboard-status {
    border-radius: 0.2rem !important;
    border: 1px solid var(--admin-border) !important;
}

/* Theme fixes for specific components */
[data-theme] .dashboard-nav-item.active {
    background: rgba(255, 255, 255, 0.15) !important;
}

[data-theme] .dashboard-nav-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

[data-theme] .dashboard-table-scroll {
    padding: 0 0.12rem !important;
}

.page-shell.wide-shell {
    max-width: 13.2rem;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.module-page {
    /* 移除固定计算高度 */
}

.module-stage {
    background: #ffffff;
    border-radius: 0.28rem;
    box-shadow: 0 0.16rem 0.42rem rgba(25, 72, 146, 0.06), 0 0.02rem 0.08rem rgba(25, 72, 146, 0.03);
    padding: 0.44rem 0.48rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.module-heading {
    text-align: center;
    margin-bottom: 0.4rem;
}

.module-heading h1 {
    font-size: 0.54rem;
    color: #1f2f4d;
    margin-bottom: 0.12rem;
}

.module-heading h2 {
    font-size: 0.4rem;
    color: #1f2f4d;
    margin-bottom: 0.1rem;
}

.module-heading p {
    max-width: 8.2rem;
    margin: 0 auto;
    color: #66748c;
    font-size: 0.16rem;
}

.hero-block {
    width: 100%;
    max-width: 14.4rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(4.3rem, 0.98fr);
    gap: 0.6rem;
    align-items: center;
}

.module-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.08rem 0.14rem;
    border-radius: 9.99rem;
    background: #ebf2ff;
    color: #1f56c2;
    font-size: 0.13rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.16rem;
}

.hero-copy h1 {
    font-size: 0.6rem;
    line-height: 1.2;
    margin-bottom: 0.22rem;
    color: #1f2f4d;
    font-weight: 700;
}

.hero-copy .text-dark {
    color: #1f2f4d;
}

.hero-copy .text-blue {
    color: #1f56c2;
}

.hero-copy .underline-dark {
    border-bottom: 0.04rem solid #1f2f4d;
    padding-bottom: 0.02rem;
}

.hero-copy p {
    max-width: 6.2rem;
    color: #5c6a82;
    font-size: 0.16rem;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.hero-copy .hero-actions {
    display: flex;
    gap: 0.16rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.12rem;
    margin-top: 0.24rem;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0.36rem;
    padding: 0 0.14rem;
    border-radius: 9.99rem;
    background: #f5f8ff;
    border: 0.01rem solid #dbe6fb;
    color: #51617b;
    font-size: 0.13rem;
    font-weight: 700;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.14rem 0.28rem;
    border-radius: 0.08rem;
    border: 0.01rem solid #1f56c2;
    color: #1f56c2;
    font-size: 0.16rem;
    font-weight: 700;
    background: transparent;
    transition: all 0.2s ease;
}

.media-frame {
    position: relative;
    padding: 0.24rem;
    border-radius: 0.16rem;
    background: #e6eef9;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.12rem;
}

.media-caption {
    margin-top: 0.2rem;
    text-align: center;
    color: #1f56c2;
    font-size: 0.16rem;
    font-weight: 700;
}

.image-slot {
    width: 100%;
    min-height: 2.2rem;
    border: 0.02rem dashed #a9bddf;
    border-radius: 0.14rem;
    background: linear-gradient(135deg, #f9fbff, #e8f0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6984b6;
    font-size: 0.16rem;
    font-weight: 700;
    padding: 0.24rem;
}

.image-slot.large {
    min-height: 3.6rem;
}

.image-slot.medium {
    min-height: 2.8rem;
}

.image-slot.small {
    min-height: 1.4rem;
}

.image-slot.circle-slot {
    border-radius: 0.24rem;
}

.asset-media {
    position: relative;
    overflow: hidden;
    border-radius: 0.22rem;
    background: linear-gradient(180deg, #eef3fb, #f8fbff);
}

.asset-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asset-media.contain {
    background: linear-gradient(180deg, #f9fbff, #eef3fb);
}

.asset-media.contain img {
    object-fit: contain;
}

.scholar-layout {
    display: grid;
    grid-template-columns: minmax(3.2rem, 0.92fr) minmax(0, 1.08fr);
    gap: 0.28rem;
    align-items: start;
}

.scholar-profile {
    background: #ffffff;
    border-radius: 0.24rem;
    padding: 0.26rem;
    box-shadow: 0 0.08rem 0.24rem rgba(25, 72, 146, 0.04), 0 0.02rem 0.06rem rgba(25, 72, 146, 0.02);
    border: 0.01rem solid rgba(25, 72, 146, 0.04);
}

.profile-media {
    height: 4.2rem;
    margin-bottom: 0.22rem;
}

.scholar-profile h3 {
    font-size: 0.22rem;
    color: #1f56c2;
    margin-bottom: 0.1rem;
}

.scholar-profile p {
    color: #5e6b82;
    margin-bottom: 0.18rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.14rem;
}

.profile-stat {
    background: #f4f7fc;
    border-radius: 0.18rem;
    padding: 0.16rem;
}

.profile-stat strong {
    display: block;
    font-size: 0.22rem;
    color: #1f2f4d;
    margin-bottom: 0.06rem;
}

.profile-stat span {
    color: #6a7890;
    font-size: 0.13rem;
    font-weight: 600;
}

.scholar-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.18rem;
}

.soft-card {
    background: #f3f6fc;
    border-radius: 0.16rem;
    padding: 0.24rem;
    min-height: 2rem;
}

.soft-card .feature-icon,
.news-card .feature-icon {
    margin-bottom: 0.16rem;
}

.soft-card h4 {
    font-size: 0.16rem;
    color: #32415f;
    margin-bottom: 0.12rem;
}

.soft-card p {
    color: #66748c;
    font-size: 0.15rem;
}

.scholar-note {
    margin-top: 0.2rem;
    padding: 0.2rem 0.22rem;
    border-radius: 0.18rem;
    background: linear-gradient(135deg, #e9f1ff, #f8fbff);
    color: #4f607a;
    font-size: 0.15rem;
    line-height: 1.8;
}

.advantage-grid,
.product-showcase,
.news-grid.static-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.22rem;
}

.advantage-card,
.product-card,
.news-card.media-card {
    background: #ffffff;
    border-radius: 0.16rem;
    overflow: hidden;
    box-shadow: 0 0.08rem 0.24rem rgba(25, 72, 146, 0.04), 0 0.02rem 0.06rem rgba(25, 72, 146, 0.02);
    border: 0.01rem solid rgba(25, 72, 146, 0.04);
}

.advantage-card .image-slot,
.product-card .image-slot,
.news-card.media-card .image-slot {
    border-radius: 0;
    border: 0;
    background: #dbe7fb;
}

.advantage-card .asset-media,
.product-card .asset-media,
.news-card.media-card .asset-media {
    min-height: 2.2rem;
    border-radius: 0;
}

.advantage-card .asset-media.contain,
.product-card .asset-media.contain {
    padding: 0.18rem;
}

.advantage-card .card-body,
.product-card .card-body,
.news-card.media-card .card-body {
    padding: 0.24rem;
}

.advantage-card h3,
.product-card h3,
.news-card.media-card h3 {
    font-size: 0.18rem;
    color: #3a465a;
    margin-bottom: 0.12rem;
}

.advantage-card p,
.product-card p,
.news-card.media-card p {
    color: #647289;
    font-size: 0.15rem;
}

.product-showcase {
    grid-template-columns: repeat(3, 1fr);
}

.product-card .image-slot {
    min-height: 2.4rem;
}

.product-highlight {
    margin-top: 0.14rem;
    color: #2d68d0;
    font-weight: 700;
    font-size: 0.15rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.22rem;
}

.news-intro-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.18rem;
    margin-bottom: 0.26rem;
    padding: 0.18rem 0.22rem;
    border-radius: 0.2rem;
    background: linear-gradient(135deg, #edf3ff, #f9fbff);
}

.news-intro-card p {
    color: #60708a;
}

.news-intro-card strong {
    color: #1f2f4d;
    font-size: 0.18rem;
}

.news-card.media-card .news-meta {
    justify-content: flex-start;
    color: #6c7790;
    margin-bottom: 0.14rem;
}

.news-card.media-card .card-body:first-child {
    padding-bottom: 0.14rem;
}

.news-card.media-card .card-body:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
    padding-top: 0;
}

.news-card.media-card h3 {
    min-height: 0.54rem;
}

.news-card.media-card p {
    flex: 1;
}

.news-link {
    display: inline-flex;
    color: #2d68d0;
    font-weight: 700;
}

.about-layout,
/* Contact Page New Layout */
.contact-layout-new {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.18rem !important;
}

.contact-info-panel-new, .contact-form-panel-new {
    background: #ffffff !important;
    border-radius: 0.16rem !important;
    padding: 0.28rem !important;
    border: 0.01rem solid #eef3fb !important;
}

.contact-info-panel-new h3, .contact-form-panel-new h3 {
    font-size: 0.2rem !important;
    font-weight: 700 !important;
    color: #1f56c2 !important;
    margin: 0 0 0.18rem 0 !important;
}

.contact-info-row-new {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.14rem !important;
}

.contact-item-new {
    display: flex !important;
    align-items: center !important;
    gap: 0.1rem !important;
    color: #1f56c2 !important;
}

.contact-item-new span {
    font-size: 0.15rem !important;
    color: #1a2233 !important;
}

.coop-form-new {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.24rem !important;
}

.form-row-3-new {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.24rem !important;
}

.form-group-new {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.12rem !important;
}

.form-group-new label {
    font-size: 0.14rem !important;
    color: #5c6a82 !important;
}

.form-group-new input[type="text"], .form-group-new textarea {
    padding: 0.16rem !important;
    border: 0.01rem solid #e2e8f0 !important;
    border-radius: 0.08rem !important;
    font-size: 0.14rem !important;
    color: #1a2233 !important;
    background: #ffffff !important;
    transition: border-color 0.2s ease !important;
}

.form-group-new input[type="text"]:focus, .form-group-new textarea:focus {
    outline: none !important;
    border-color: #1f56c2 !important;
}

.option-group-new {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.16rem !important;
}

.option-item-new {
    display: flex !important;
    align-items: center !important;
    gap: 0.08rem !important;
    padding: 0.16rem !important;
    border: 0.01rem solid #e2e8f0 !important;
    border-radius: 0.08rem !important;
    cursor: pointer !important;
    font-size: 0.14rem !important;
    color: #1a2233 !important;
}

.option-item-new:has(input:checked) {
    border-color: #1f56c2 !important;
    background: #f8fbff !important;
}

.btn-submit-new {
    background: #1f56c2 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0.08rem !important;
    padding: 0.16rem 0 !important;
    font-size: 0.16rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    margin-top: 0.08rem !important;
}

.btn-submit-new:hover {
    background: #15429d !important;
}
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0.24rem;
}

.about-copy,
.contact-panel {
    background: #ffffff;
    border-radius: 0.18rem;
    padding: 0.28rem;
    box-shadow: 0 0.08rem 0.24rem rgba(25, 72, 146, 0.04), 0 0.02rem 0.06rem rgba(25, 72, 146, 0.02);
    border: 0.01rem solid rgba(25, 72, 146, 0.04);
}

.about-copy h3,
.contact-panel h3 {
    font-size: 0.26rem;
    color: #1f2f4d;
    margin-bottom: 0.14rem;
}

.about-copy p,
.contact-panel p {
    color: #637188;
    margin-bottom: 0.14rem;
}

.about-visual {
    min-height: 4.2rem;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.18rem;
    margin-top: 0.22rem;
}

.about-feature-card {
    padding: 0.2rem;
    border-radius: 0.18rem;
    background: #f5f8ff;
}

.about-feature-card strong {
    display: block;
    margin-bottom: 0.1rem;
    color: #1f2f4d;
    font-size: 0.16rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.18rem;
    margin-top: 0.24rem;
}

.value-card {
    background: #ffffff;
    border-radius: 0.16rem;
    padding: 0.24rem;
    box-shadow: 0 0.08rem 0.24rem rgba(25, 72, 146, 0.04), 0 0.02rem 0.06rem rgba(25, 72, 146, 0.02); border: 0.01rem solid rgba(25, 72, 146, 0.04);
}

.value-card h4 {
    font-size: 0.18rem;
    color: #27415f;
    margin-bottom: 0.1rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.18rem;
    margin-top: 0.22rem;
}

.contact-item {
    background: #ffffff;
    border-radius: 0.16rem;
    padding: 0.22rem;
    box-shadow: 0 0.08rem 0.24rem rgba(25, 72, 146, 0.04), 0 0.02rem 0.06rem rgba(25, 72, 146, 0.02); border: 0.01rem solid rgba(25, 72, 146, 0.04);
}

.contact-item strong {
    display: block;
    color: #2d68d0;
    margin-bottom: 0.1rem;
}

.contact-item span {
    display: block;
    color: #495971;
    font-size: 0.18rem;
    font-weight: 700;
}

.contact-visual {
    min-height: 100%;
}

.contact-visual img {
    min-height: 100%;
}

.contact-note {
    margin-top: 0.16rem;
    padding: 0.16rem 0.18rem;
    border-radius: 0.16rem;
    background: #f4f8ff;
    color: #5d6d86;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 0.18rem;
    padding: 0.3rem;
    box-shadow: 0 0.08rem 0.24rem rgba(25, 72, 146, 0.04), 0 0.02rem 0.06rem rgba(25, 72, 146, 0.02);
    border: 0.01rem solid rgba(25, 72, 146, 0.04);
}

.contact-form-card .form-title {
    margin-bottom: 0.22rem;
}

.coop-form-actions {
    display: flex;
    align-items: center;
    gap: 0.18rem;
    flex-wrap: wrap;
}

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.12rem;
}

.option-item {
    position: relative;
}

.option-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0.4rem;
    padding: 0 0.18rem;
    border-radius: 9.99rem;
    background: #f5f8ff;
    border: 0.01rem solid #d9e4fb;
    color: #60708a;
    font-size: 0.14rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-item input:checked + span {
    background: #1f56c2;
    border-color: #1f56c2;
    color: #ffffff;
}

.empty-state-card {
    padding: 0.28rem;
    border-radius: 0.16rem;
    background: #ffffff;
    color: #68758c;
    box-shadow: 0 0.08rem 0.24rem rgba(25, 72, 146, 0.04), 0 0.02rem 0.06rem rgba(25, 72, 146, 0.02);
    border: 0.01rem solid rgba(25, 72, 146, 0.04);
}

.home-stage {
    background: #f4f7fc;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0.56rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}







/* ========================================= */
/* UI PERFECT MATCH OVERRIDES (4K NO SCROLL) */
/* ========================================= */

html {
    font-size: min(calc(100vw / 14.4), calc(100vh / 9.6)) !important;
}

body {
    background: #f4f8fc !important;
    margin: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

.site-header {
    height: 0.8rem !important;
    padding: 0 !important;
    box-shadow: 0 0.02rem 0.1rem rgba(0, 0, 0, 0.03) !important;
    background: #ffffff !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

body[data-page="news"],
body[data-page="news-detail"] {
    padding-top: 0 !important;
}

body[data-page="news"] .site-header,
body[data-page="news-detail"] .site-header {
    position: static !important;
}

.site-nav {
    width: 16.4rem !important;
    max-width: 92% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.brand {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.brand-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.02rem !important;
    min-width: 0 !important;
    color: #0f172a !important;
}

.brand-title-line {
    display: block !important;
    font-size: 0.16rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em !important;
    color: #0f172a !important;
}

.brand-subtitle-line {
    display: block !important;
    font-size: 0.1rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.06em !important;
    color: rgba(71, 85, 105, 0.86) !important;
}

.brand-logo {
    height: 0.44rem !important;
    width: auto !important;
    display: block !important;
}

.nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.44rem !important;
    height: 100% !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links li {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.nav-links a {
    height: 100% !important;
    margin: 0 !important;
    padding: 0 0.04rem !important;
    font-size: 0.16rem !important;
    color: #1a2233 !important;
    font-weight: 700 !important;
    border-bottom: 0.03rem solid transparent !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.nav-links a:hover, .nav-links a.active {
    border-bottom: 0.03rem solid #1f56c2 !important;
    color: #1f56c2 !important;
}

.home-stage {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: calc(100vh - 0.8rem - 0.6rem) !important;
}

.hero-block {
    width: 11.8rem !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
}

.hero-copy {
    flex: 0 0 4.8rem !important;
}

.hero-copy h1 {
    font-size: 0.68rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.24rem !important;
    letter-spacing: 0.02rem !important;
    color: #1a2233 !important;
}

.hero-copy .underline-dark {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.hero-copy p {
    font-size: 0.16rem !important;
    line-height: 1.8 !important;
    margin-bottom: 0.4rem !important;
    color: #5c6a82 !important;
}

.hero-copy .hero-actions {
    display: flex !important;
    gap: 0.24rem !important;
}

.btn, .btn-outline {
    width: 1.6rem !important;
    height: 0.52rem !important;
    font-size: 0.17rem !important;
    padding: 0 !important;
    border-radius: 0.06rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-outline {
    border: 0.02rem solid #1f56c2 !important;
}

.hero-visual-card {
    flex: 0 0 6rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.media-frame {
    background: #e9edf4 !important;
    padding: 0.32rem !important;
    border-radius: 0.16rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.hero-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.media-caption {
    font-size: 0.16rem !important;
    margin-top: 0.2rem !important;
    color: #1f56c2 !important;
    font-weight: 700 !important;
}

.site-footer {
    height: 0.6rem !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    color: #8a96a8 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.site-footer p {
    margin: 0;
}

.site-footer p + p {
    margin-left: 0.12rem;
}

/* ========================================= */
/* INNER PAGES 4K PERFECT MATCH OVERRIDES    */
/* ========================================= */

.module-page:not([data-page="home"]) .page-shell {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.24rem 0 !important;
    height: calc(100vh - 0.8rem - 0.6rem) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.module-page:not([data-page="home"]) .module-stage {
    width: 14.4rem !important;
    max-width: 92% !important;
    height: 100% !important;
    margin: 0 auto !important;
    border-radius: 0.24rem !important;
    padding: 0.4rem 0.56rem !important;
    box-sizing: border-box !important;
    overflow-y: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 0.12rem 0.32rem rgba(25, 72, 146, 0.05), 0 0.02rem 0.08rem rgba(25, 72, 146, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Custom Scrollbar for inner stage */
.module-page:not([data-page="home"]) .module-stage::-webkit-scrollbar {
    width: 0.06rem !important;
}
.module-page:not([data-page="home"]) .module-stage::-webkit-scrollbar-thumb {
    background: rgba(31, 86, 194, 0.15) !important;
    border-radius: 0.03rem !important;
}

body[data-page="contact"] {
    height: auto !important;
    min-height: 100vh;
    width: 100%;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

body[data-page="contact"] .page-shell {
    height: auto !important;
    min-height: calc(100vh - 1.4rem) !important;
    justify-content: flex-start !important;
    padding: 0.18rem 0 0.26rem !important;
}

body[data-page="contact"] .module-stage {
    height: auto !important;
    overflow: visible !important;
}

.module-heading {
    margin-bottom: 0.4rem !important;
    text-align: center !important;
}

.module-heading h2 {
    font-size: 0.36rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.12rem !important;
    color: #1a2233 !important;
    letter-spacing: 0.01rem !important;
}

.module-heading p {
    font-size: 0.15rem !important;
    line-height: 1.6 !important;
    max-width: 10.8rem !important;
    margin: 0 auto !important;
    color: #5c6a82 !important;
}

/* Advantage Page New Layout */
.advantage-grid-new {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.24rem !important;
    margin-top: 0.4rem !important;
}

.advantage-card-new {
    background: #ffffff !important;
    border-radius: 0.16rem !important;
    border: 0.01rem solid #eef3fb !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.advantage-card-new:hover {
    transform: translateY(-0.04rem) !important;
    box-shadow: 0 0.12rem 0.24rem rgba(31, 86, 194, 0.06) !important;
}

.advantage-media-new {
    height: 1.8rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    position: relative !important;
}

.advantage-media-new.blue-bg {
    background: #ffffff !important;
}

.advantage-media-new.blue-bg::after {
    content: none !important;
    display: none !important;
}

.advantage-media-new img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: relative !important;
    z-index: 0 !important;
}

body[data-page="advantages"] .advantage-card-new:nth-child(-n+4) .advantage-media-new img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
}

.advantage-body-new {
    padding: 0.32rem 0.24rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.advantage-body-new h3 {
    font-size: 0.2rem !important;
    font-weight: 700 !important;
    color: #1a2233 !important;
    margin: 0 0 0.16rem 0 !important;
}

.advantage-body-new p {
    font-size: 0.14rem !important;
    color: #5c6a82 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Product Page New Layout */
.product-grid-new {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.24rem !important;
    margin-top: 0.4rem !important;
}

.product-card-new {
    background: #ffffff !important;
    border-radius: 0.16rem !important;
    border: 0.01rem solid #eef3fb !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.product-card-new:hover {
    transform: translateY(-0.04rem) !important;
    box-shadow: 0 0.12rem 0.24rem rgba(31, 86, 194, 0.06) !important;
}

.product-media-new {
    height: 2.4rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    padding: 0.2rem !important;
    border-radius: 0.16rem 0.16rem 0 0 !important;
    position: relative !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.product-media-new.blue-bg {
    background: #d4e5ff !important;
}

.product-media-new img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
}

/* 产品模块第二、三个设备图片放大并高出顶部 */
.product-card-new:nth-child(2) .product-media-new img,
.product-card-new:nth-child(3) .product-media-new img {
    max-width: 260% !important;
    max-height: none !important;
    height: 260% !important;
    transform: translateY(-0.4rem) !important;
}

.product-body-new {
    padding: 0.32rem 0.24rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.product-body-new h3 {
    font-size: 0.2rem !important;
    font-weight: 700 !important;
    color: #1a2233 !important;
    margin: 0 0 0.16rem 0 !important;
}

.product-body-new p {
    font-size: 0.14rem !important;
    color: #5c6a82 !important;
    line-height: 1.6 !important;
    margin: 0 0 0.24rem 0 !important;
}

.product-highlight-new {
    margin-top: auto !important;
    font-size: 0.14rem !important;
    font-weight: 700 !important;
    color: #1f56c2 !important;
}

/* News Page New Layout */
.home-news-stage {
    margin-top: 0.28rem;
}

.module-heading-inline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.24rem;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.14rem;
    margin-top: 0.32rem;
}

.home-news-item {
    position: relative;
    min-height: 1.72rem;
    padding: 0.2rem 0.22rem 0.2rem;
    border-radius: 0.16rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 0.01rem solid #e4ebf7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.16rem;
}

.home-news-item.has-more-entry {
    padding-bottom: 0.52rem;
}

.home-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.08rem;
    align-items: center;
    font-size: 0.12rem;
    color: #7c8aa5;
}

.home-news-date {
    color: #1f56c2;
    font-weight: 700;
}

.home-news-title {
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 0.16rem;
    font-weight: 700;
    line-height: 1.7;
    color: #1a2233;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}

.home-news-title:hover {
    color: #1f56c2;
}

.home-news-more {
    position: absolute;
    right: 0.22rem;
    bottom: 0.18rem;
    color: #1f56c2;
    text-decoration: none;
    font-size: 0.13rem;
    font-weight: 700;
}

.home-news-empty {
    grid-column: 1 / -1;
}

body[data-page="news"] .page-shell,
body[data-page="news-detail"] .page-shell {
    height: auto !important;
    min-height: calc(100vh - 1.4rem) !important;
    justify-content: flex-start !important;
    padding: 0 !important;
}

body[data-page="news"] .module-stage,
body[data-page="news-detail"] .module-stage {
    height: auto !important;
    overflow: visible !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.news-page-stage {
    min-height: auto !important;
    background: #ffffff !important;
    box-shadow: 0 0.12rem 0.32rem rgba(25, 72, 146, 0.05) !important;
}

body[data-page="news-detail"] .news-page-stage {
    padding: 0 !important;
}

body[data-page="news-detail"] .news-page-shell,
body[data-page="news-detail"] #news-detail-page {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}

.news-page-heading {
    margin-bottom: 0.38rem;
}

.news-page-heading h2 {
    color: #1f2f4d !important;
}

.news-page-heading p {
    color: #66748c !important;
}

.news-grid-new {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.3rem !important;
}

.news-grid-feed {
    margin-top: 0 !important;
}

.news-grid-feed .empty-state-card {
    grid-column: 1 / -1;
    text-align: center;
    min-height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #50617f;
    background: #f8fbff;
    border: 0.01rem solid #d7e3ff;
}

.news-card-new {
    background: #f8fbff !important;
    border-radius: 0.18rem !important;
    border: 0.01rem solid #edf2fb !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 4.04rem;
    box-shadow: 0 0.12rem 0.3rem rgba(25, 72, 146, 0.05) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    cursor: default;
}

.news-card-new:hover {
    transform: translateY(-0.04rem) !important;
    box-shadow: 0 0.18rem 0.38rem rgba(25, 72, 146, 0.1) !important;
}

.news-card-content {
    padding: 0.22rem 0.22rem 0.16rem !important;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.news-meta-new {
    font-size: 0.14rem !important;
    color: #5f6f86 !important;
    margin-top: 0 !important;
}

.news-title-new {
    font-size: 0.17rem !important;
    font-weight: 700 !important;
    color: #445469 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 0.54rem !important;
}

.news-summary-new {
    margin: 0 !important;
    font-size: 0.14rem !important;
    line-height: 1.6 !important;
    color: #6a7b92 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.news-media-new {
    display: block;
    height: 1.58rem !important;
    width: calc(100% - 0.44rem) !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border-radius: 0.16rem !important;
    background: #e3ecfb;
    margin: 0 0.22rem;
}

.news-media-new img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0.16rem;
}

.news-detail-link {
    display: inline-flex;
    align-items: center;
    margin: 0.16rem 0.22rem 0.22rem;
    color: #1f56c2;
    font-size: 0.14rem;
    font-weight: 700;
    line-height: 1;
}

.news-detail-link.is-disabled {
    color: #8ea0bb;
}

.news-public-detail {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.news-public-detail-head {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
}

.news-public-detail-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.news-public-type {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 0.34rem;
    padding: 0 0.14rem;
    border-radius: 999px;
    background: #edf4ff;
    color: #1f56c2;
    font-size: 0.13rem;
    font-weight: 700;
}

.news-public-detail-title-group h2 {
    margin: 0;
    font-size: 0.34rem;
    line-height: 1.45;
    color: #18253f;
}

.news-public-meta {
    font-size: 0.15rem;
    color: #70809e;
    line-height: 1.7;
}

.news-public-detail-card {
    padding: 0.34rem 0.38rem;
    border-radius: 0.24rem;
    background: #ffffff;
    border: 0.01rem solid #e6edf8;
    box-shadow: 0 0.16rem 0.42rem rgba(25, 72, 146, 0.08);
}

.news-public-summary {
    margin-bottom: 0.28rem;
    padding: 0.22rem 0.24rem;
    border-radius: 0.18rem;
    background: #f6f9ff;
    border: 0.01rem solid #e2eaf8;
    font-size: 0.17rem;
    line-height: 1.9;
    color: #41536f;
}

.news-public-content {
    font-size: 0.17rem;
    line-height: 1.95;
    color: #24324b;
    word-break: break-word;
}

.news-public-content > :first-child {
    margin-top: 0;
}

.news-public-content img,
.news-public-content video {
    max-width: 100%;
    height: auto;
    border-radius: 0.16rem;
}

.news-public-content video {
    width: 100%;
    background: #000000;
}

/* Cards typography */
.feature-panel, .product-card, .news-card, .info-card, .soft-card {
    padding: 0.32rem !important;
    border-radius: 0.16rem !important;
    background: #f8fbff !important;
    border: 0.01rem solid #eef3fb !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.feature-panel:hover, .product-card:hover, .news-card:hover, .info-card:hover, .soft-card:hover {
    transform: translateY(-0.04rem) !important;
    box-shadow: 0 0.12rem 0.24rem rgba(31, 86, 194, 0.06) !important;
}

.feature-panel h3, .product-card h3, .news-card h3, .info-card h3, .soft-card h4 {
    font-size: 0.2rem !important;
    font-weight: 700 !important;
    color: #1a2233 !important;
    margin-bottom: 0.12rem !important;
}

.feature-panel p, .product-card p, .news-card p, .info-card p, .soft-card p {
    font-size: 0.15rem !important;
    color: #5c6a82 !important;
    line-height: 1.6 !important;
}

.feature-icon, .info-icon {
    width: 0.56rem !important;
    height: 0.56rem !important;
    border-radius: 0.16rem !important;
    font-size: 0.24rem !important;
    margin-bottom: 0.2rem !important;
    background: #edf3ff !important;
    color: #1f56c2 !important;
    display: grid !important;
    place-items: center !important;
}

/* Research Page New Layout */
.scholar-layout-new {
    display: grid !important;
    grid-template-columns: 6.2rem 1fr !important;
    gap: 0.4rem !important;
    align-items: stretch !important;
    flex: 1 !important;
    min-height: 0 !important;
    height: auto !important;
}

.scholar-profile-new {
    display: flex !important;
    flex-direction: column !important;
}

.profile-title {
    font-size: 0.26rem !important;
    font-weight: 700 !important;
    color: #1f56c2 !important;
    margin-bottom: 0.1rem !important;
}

.profile-subtitle {
    font-size: 0.15rem !important;
    color: #5c6a82 !important;
    line-height: 1.6 !important;
    margin-bottom: 0.2rem !important;
}

.profile-media-new {
    flex: 1 !important;
    border-radius: 0.16rem !important;
    overflow: hidden !important;
}

.profile-media-new img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.scholar-info-grid-new {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.2rem !important;
    align-content: stretch !important;
}

.soft-card-new {
    padding: 0.24rem 0.28rem !important;
    border-radius: 0.16rem !important;
    background: #f8fbff !important;
    border: 0.01rem solid #eef3fb !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.card-header-new {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0.16rem !important;
}

.feature-icon-new {
    width: 0.44rem !important;
    height: 0.44rem !important;
    border-radius: 50% !important;
    background: #eef3fb !important;
    color: #1f56c2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 0.16rem !important;
}

.card-header-new h4 {
    font-size: 0.18rem !important;
    font-weight: 700 !important;
    color: #1a2233 !important;
    margin: 0 !important;
}

.soft-card-new p {
    font-size: 0.14rem !important;
    color: #5c6a82 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* About Page New Layout */
.about-grid-new {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.24rem !important;
    margin-top: 0.4rem !important;
}

.about-card-new {
    background: #f8fbff !important;
    border-radius: 0.16rem !important;
    padding: 0.4rem 0.32rem !important;
    display: flex !important;
    flex-direction: column !important;
    border: 0.01rem solid transparent !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.about-card-new:hover {
    transform: translateY(-0.04rem) !important;
    box-shadow: 0 0.12rem 0.24rem rgba(31, 86, 194, 0.06) !important;
    border-color: #eef3fb !important;
}

.about-icon-new {
    width: 0.64rem !important;
    height: 0.64rem !important;
    border-radius: 50% !important;
    background: #d4e5ff !important;
    color: #1f56c2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.24rem !important;
}

.about-card-new h3 {
    font-size: 0.2rem !important;
    font-weight: 700 !important;
    color: #1a2233 !important;
    margin: 0 0 0.16rem 0 !important;
}

.about-card-new p {
    font-size: 0.14rem !important;
    color: #5c6a82 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}
.contact-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
    align-items: stretch !important;
    min-height: 5.6rem !important;
}

.contact-form-card {
    padding: 0.48rem !important;
    border-radius: 0.2rem !important;
    box-shadow: 0 0.12rem 0.32rem rgba(25, 72, 146, 0.06) !important;
    border: 0.01rem solid #eef3fb !important;
    background: #ffffff !important;
}

.form-title {
    margin-bottom: 0.24rem !important;
}

.form-title h2 {
    font-size: 0.32rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.12rem !important;
    color: #1f2f4d !important;
}

.form-title p {
    font-size: 0.16rem !important;
    color: #5c6a82 !important;
}

.form-group label {
    font-size: 0.15rem !important;
    margin-bottom: 0.08rem !important;
    color: #1a2233 !important;
    font-weight: 700 !important;
}

.form-group input, .form-group textarea {
    padding: 0.16rem 0.2rem !important;
    font-size: 0.15rem !important;
    border-radius: 0.12rem !important;
    background: #f8fbff !important;
    border: 0.01rem solid #dbe6fb !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.option-item span {
    min-height: 0.44rem !important;
    padding: 0 0.24rem !important;
    font-size: 0.15rem !important;
    border-radius: 9.99rem !important;
    background: #f5f8ff !important;
    border: 0.01rem solid #d9e4fb !important;
    color: #60708a !important;
}

.contact-panel {
    background: #ffffff !important;
    border-radius: 0.2rem !important;
    padding: 0.36rem !important;
    box-shadow: 0 0.12rem 0.32rem rgba(25, 72, 146, 0.06) !important;
    border: 0.01rem solid #eef3fb !important;
}

.contact-panel .media-frame,
.contact-panel .asset-media {
    height: 100% !important;
    padding: 0.24rem !important;
    background: #e9edf4 !important;
    border-radius: 0.16rem !important;
}

.contact-panel .image-slot,
.contact-panel .asset-media img {
    height: 100% !important;
    min-height: 100% !important;
    border-radius: 0.12rem !important;
}

/* News Page */
.news-intro-card {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 0.4rem !important;
    padding: 0.4rem !important;
    border-radius: 0.2rem !important;
    background: #f8fbff !important;
    border: 0.01rem solid #eef3fb !important;
    margin-bottom: 0.4rem !important;
}

.news-intro-media {
    height: 3.2rem !important;
    border-radius: 0.12rem !important;
    overflow: hidden !important;
}

.news-intro-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.news-intro-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.news-intro-content h3 {
    font-size: 0.28rem !important;
    font-weight: 700 !important;
    color: #1a2233 !important;
    margin-bottom: 0.16rem !important;
}

.news-intro-content p {
    font-size: 0.16rem !important;
    color: #5c6a82 !important;
    line-height: 1.8 !important;
    margin-bottom: 0.32rem !important;
}

.news-card {
    display: flex !important;
    flex-direction: column !important;
}

.news-card .image-slot {
    height: 2rem !important;
    margin-bottom: 0.2rem !important;
    border-radius: 0.12rem !important;
    width: 100% !important;
}

.news-meta {
    font-size: 0.14rem !important;
    color: #7a879d !important;
    margin-bottom: 0.16rem !important;
}

.image-slot {
    border-radius: 0.12rem !important;
}

/* ========================================= */
/* HOME HEADER AND HERO FINE TUNING          */
/* ========================================= */

body[data-page="home"] .site-header {
}

body[data-page="home"] .site-nav {
    width: 16.4rem !important;
    max-width: 92% !important;
}

body[data-page="home"] .brand-logo {
    width: 0.52rem !important;
    height: 0.52rem !important;
}

body[data-page="home"] .nav-links {
    gap: 0.32rem !important;
}

body[data-page="home"] .nav-links a {
    padding: 0 0.08rem !important;
    font-size: 0.19rem !important;
    letter-spacing: 0.01em !important;
}

body[data-page="home"] .brand-title-line {
    font-size: 0.24rem !important;
    line-height: 1.1 !important;
}

body[data-page="home"] .brand-subtitle-line {
    font-size: 0.13rem !important;
    line-height: 1.2 !important;
}

body.module-page:not([data-page="home"]) .brand-logo {
    width: 0.52rem !important;
    height: 0.52rem !important;
}

body.module-page:not([data-page="home"]) .brand-title-line {
    font-size: 0.24rem !important;
    line-height: 1.1 !important;
}

body.module-page:not([data-page="home"]) .brand-subtitle-line {
    font-size: 0.13rem !important;
    line-height: 1.2 !important;
}

body.module-page:not(.mobile-experience) .brand-logo {
    width: 0.52rem !important;
    height: 0.52rem !important;
}

body.module-page:not(.mobile-experience) .site-nav {
    width: 16.4rem !important;
    max-width: 92% !important;
}

body.module-page:not(.mobile-experience) .brand-title-line {
    font-size: 0.24rem !important;
    line-height: 1.1 !important;
}

body.module-page:not(.mobile-experience) .brand-subtitle-line {
    font-size: 0.13rem !important;
    line-height: 1.2 !important;
}

body.module-page:not(.mobile-experience) .nav-links {
    gap: 0.32rem !important;
}

body.module-page:not(.mobile-experience) .nav-links a {
    padding: 0 0.08rem !important;
    font-size: 0.19rem !important;
    letter-spacing: 0.01em !important;
}

body[data-page="home"] .page-shell {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

body[data-page="home"] .home-stage {
    height: calc(100vh - 0.8rem - 0.6rem) !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body[data-page="home"] .hero-block {
    width: 16.4rem !important;
    max-width: 92% !important;
    padding: 0 !important;
    justify-content: space-between !important;
    gap: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

body[data-page="home"] .hero-copy {
    flex: 0 0 8.4rem !important;
}

body[data-page="home"] .hero-copy h1 {
    font-size: 0.72rem !important;
    margin-bottom: 0.28rem !important;
    line-height: 1.16 !important;
}

body[data-page="home"] .hero-copy p {
    max-width: 8.4rem !important;
    font-size: 0.16rem !important;
    line-height: 1.8 !important;
    margin-bottom: 0.48rem !important;
}

body[data-page="home"] .hero-copy .underline-dark {
    display: inline-block !important;
    margin-left: 0.08rem !important;
}

body[data-page="home"] .hero-copy p strong.text-blue {
    font-weight: 800 !important;
}

body[data-page="home"] .hero-visual-card {
    flex: 0 0 7rem !important;
}

.dashboard-shell {
    display: flex;
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #edf3ff 0%, #f7faff 100%);
}

.dashboard-sidebar {
    width: 2.24rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #16284d 0%, #1c3568 100%);
    border-right: 0.01rem solid rgba(255, 255, 255, 0.08);
}

.dashboard-logo {
    padding: 0.18rem 0.18rem 0.16rem;
    border-bottom: 0.01rem solid rgba(255, 255, 255, 0.08);
}

.dashboard-logo-title {
    color: #ffffff;
    font-size: 0.18rem;
    font-weight: 700;
}

.dashboard-logo-sub {
    color: rgba(220, 230, 255, 0.55);
    font-size: 0.12rem;
    margin-top: 0.04rem;
}

.dashboard-nav {
    flex: 1;
    padding: 0.1rem 0;
}

.dashboard-nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.12rem;
    padding: 0.12rem 0.18rem;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dashboard-nav-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.dashboard-nav-item.active {
    background: rgba(255, 255, 255, 0.12);
}

.dashboard-nav-icon {
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 0.08rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-nav-icon svg {
    width: 0.16rem;
    height: 0.16rem;
}

.news-icon {
    background: rgba(56, 138, 221, 0.2);
    color: #85b7eb;
}

.coop-icon {
    background: rgba(239, 159, 39, 0.2);
    color: #efb555;
}

.stats-icon {
    background: rgba(29, 158, 117, 0.2);
    color: #72d1ac;
}

.content-icon {
    background: rgba(127, 119, 221, 0.2);
    color: #afa9ec;
}

.dashboard-nav-text {
    display: block;
    min-width: 0;
}

.dashboard-nav-text .menu-title {
    display: block;
    font-size: 0.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.dashboard-nav-text .menu-desc {
    display: block;
    font-size: 0.12rem;
    color: rgba(220, 230, 255, 0.42);
    margin-top: 0.02rem;
}

.dashboard-nav-item.active .menu-title,
.dashboard-nav-item.active .menu-desc {
    color: #ffffff;
}

.dashboard-sidebar-foot {
    padding: 0.14rem 0.18rem 0.18rem;
    border-top: 0.01rem solid rgba(255, 255, 255, 0.08);
}

.dashboard-sidebar-foot a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0.42rem;
    border-radius: 0.08rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.13rem;
    font-weight: 600;
}

.dashboard-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard-topbar {
    height: 0.48rem;
    padding: 0 0.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 0.01rem solid rgba(205, 219, 244, 0.72);
    flex-shrink: 0;
}

.dashboard-topbar-title {
    font-size: 0.16rem;
    font-weight: 700;
    color: #1a2950;
}

.dashboard-topbar-sub {
    font-size: 0.12rem;
    color: #6d7a92;
    margin-top: 0.02rem;
}

.dashboard-topbar-badge {
    display: inline-flex;
    align-items: center;
    min-height: 0.28rem;
    padding: 0 0.12rem;
    border-radius: 9.99rem;
    background: #dfeafe;
    color: #1f56c2;
    font-size: 0.12rem;
    font-weight: 700;
}

.dashboard-page {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    padding: 0.12rem;
}

.dashboard-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.dashboard-panel.hidden {
    display: none;
}

.news-workspace {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.news-workspace.hidden,
.news-detail-card.hidden,
#news-form.hidden,
.news-preview-section.hidden {
    display: none;
}

.dashboard-stat-row {
    display: grid;
    gap: 0.1rem;
    flex-shrink: 0;
}

.dashboard-stat-row-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-stat-row-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dashboard-stat-row-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-stat-card,
.dashboard-card,
.dashboard-chart-card {
    background: rgba(255, 255, 255, 0.94);
    border: 0.01rem solid rgba(205, 219, 244, 0.72);
    border-radius: 0.14rem;
    box-shadow: 0 0.08rem 0.18rem rgba(25, 72, 146, 0.04);
}

.dashboard-stat-card {
    padding: 0.12rem 0.14rem;
}

.dashboard-stat-label {
    display: block;
    font-size: 0.12rem;
    color: #7382a0;
}

.dashboard-stat-value {
    display: block;
    font-size: 0.28rem;
    line-height: 1.15;
    color: #1a2950;
    margin: 0.03rem 0 0.04rem;
}

.dashboard-stat-note {
    font-size: 0.12rem;
    line-height: 1.35;
    color: #6d7a92;
}

.dashboard-two-col {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(3.7rem, 4.1rem) minmax(0, 1fr);
    gap: 0.12rem;
}

.dashboard-card,
.dashboard-chart-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.dashboard-card-full,
.dashboard-chart-card {
    flex: 1;
}

.news-detail-card {
    overflow: hidden;
}

.dashboard-card-head {
    padding: 0.12rem 0.14rem 0.08rem;
    border-bottom: 0.01rem solid rgba(205, 219, 244, 0.56);
}

.dashboard-card-head-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.16rem;
}

.dashboard-card-tools {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.1rem;
}

/* Layout fixes for statistics page */
.analytics-layout-seamless {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
    height: 100%;
    overflow: auto;
}

.seamless-top-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.2rem 0.24rem;
    gap: 0.32rem;
    flex-shrink: 0;
}

.seamless-metric-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.seamless-metric-group:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.16rem;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--admin-border);
}

.seamless-group-title {
    font-size: 0.15rem;
    font-weight: 700;
    color: var(--admin-text-main);
    margin-bottom: 0.16rem;
}

.seamless-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem 0.12rem;
}

.seamless-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.seamless-value {
    font-size: 0.28rem;
    font-weight: 700;
    color: var(--admin-text-main);
    line-height: 1;
    margin-bottom: 0.06rem;
    font-family: 'DesignFont', sans-serif;
}

.seamless-label {
    font-size: 0.13rem;
    color: var(--admin-text-sub);
}

.seamless-main-area {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 0.16rem;
    flex: 1;
    min-height: 0;
}

.seamless-chart-box,
.seamless-hot-box {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.seamless-box-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.16rem 0.2rem 0.08rem;
}

.seamless-box-title {
    font-size: 0.15rem;
    font-weight: 700;
    color: var(--admin-text-main);
}

.seamless-box-sub {
    font-size: 0.12rem;
    color: var(--admin-text-sub);
    margin-top: 0.04rem;
}

.seamless-box-body {
    flex: 1;
    min-height: 0;
    padding: 0.12rem 0.2rem 0.2rem;
    display: flex;
    flex-direction: column;
}

/* Ensure chart fills its container */
.analytics-trend-chart {
    flex: 1;
    width: 100%;
    min-height: 0;
    background: transparent !important;
    border: none !important;
    padding: 0;
}

/* Make hot news fit seamlessly */
.hot-news-list {
    flex: 1;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding-right: 0.04rem;
}

.hot-news-item {
    background: transparent;
    border: 1px solid var(--admin-border);
    border-radius: 0.08rem;
    padding: 0.12rem;
    transition: transform 0.2s;
}

.hot-news-item:hover {
    transform: translateY(-2px);
    border-color: var(--admin-primary);
}

.hot-news-item:focus-visible {
    outline: none;
    border-color: var(--admin-primary);
    box-shadow: 0 0 0 0.03rem rgba(31, 86, 194, 0.16);
}

.hot-news-rank {
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 50%;
    background: var(--admin-input-bg);
    color: var(--admin-text-sub);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.12rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hot-news-rank.top {
    background: var(--admin-primary);
    color: #fff;
}

.analytics-trend-empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d7a92;
    font-size: 0.13rem;
}

.analytics-trend-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.analytics-axis-label {
    font-size: 13px;
    fill: #7a88a5;
    font-weight: 600;
}

.analytics-grid-line {
    stroke: #e5ecf8;
    stroke-width: 1;
}

.analytics-line-path {
    fill: none;
    stroke: #1f56c2;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.analytics-line-area {
    fill: url(#trendAreaFill);
}

.analytics-line-point {
    fill: #ffffff;
    stroke: #1f56c2;
    stroke-width: 2;
}

/* 优化数据统计页布局 */
.seamless-box-sub {
    display: none !important;
}

.seamless-chart-box,
.seamless-hot-box {
    display: flex;
    flex-direction: column;
}

.seamless-box-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.analytics-trend-chart {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

.hot-news-list {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    height: 100%;
    justify-content: space-between;
}

.hot-news-item,
.hot-news-empty {
    display: flex;
    align-items: center;
    gap: 0.12rem;
    min-height: 0.44rem;
    padding: 0.1rem 0.12rem;
    border-radius: 0.12rem;
    background: #f7faff;
    border: 0.01rem solid #e1e9f8;
    flex: 1;
}

.hot-news-item {
    width: 100%;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.analytics-layout-compact .hot-news-item,
.analytics-layout-compact .hot-news-empty {
    min-height: 0.44rem;
    padding: 0.1rem 0.12rem;
}

.hot-news-empty {
    justify-content: center;
    color: #6d7a92;
    font-size: 0.13rem;
}

.hot-news-rank {
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dfeafe;
    color: #1f56c2;
    font-size: 0.12rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hot-news-rank.top {
    background: #fff1d6;
    color: #bf7b00;
}

.hot-news-content {
    min-width: 0;
    flex: 1;
}

.hot-news-title {
    font-size: 0.13rem;
    font-weight: 700;
    color: #24324b;
    line-height: 1.4;
}

.hot-news-meta {
    margin-top: 0.02rem;
    font-size: 0.12rem;
    color: #6d7a92;
}

.news-detail-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 0.44rem;
    padding: 0.08rem 0.14rem 0;
    border-bottom: none;
}

.coop-detail-shell {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.coop-detail-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.14rem;
    padding: 0.16rem 0.18rem;
    border-radius: 0.14rem;
    border: 0.01rem solid #dbe7fb;
    background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
}

.coop-detail-hero-main {
    min-width: 0;
    flex: 1;
}

.coop-detail-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.08rem;
}

.coop-detail-name {
    font-size: 0.24rem;
    line-height: 1.25;
    color: #1a2950;
}

.coop-detail-tags {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.08rem;
}

.coop-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.12rem;
}

.coop-detail-section {
    padding: 0.14rem 0.16rem;
    border-radius: 0.12rem;
    border: 0.01rem solid #e1e9f8;
    background: #f9fbff;
}

.coop-detail-section-full {
    flex: 1;
    min-height: 0;
}

.coop-detail-section-title {
    font-size: 0.13rem;
    color: #70819f;
    margin-bottom: 0.08rem;
}

.coop-detail-text {
    font-size: 0.14rem;
    line-height: 1.8;
    color: #24324b;
    word-break: break-word;
}

.coop-detail-requirement {
    white-space: pre-wrap;
    min-height: 2.2rem;
}

.dashboard-card-title {
    font-size: 0.16rem;
    line-height: 1.35;
    color: #1f2f4d;
}

.dashboard-card-sub {
    font-size: 0.12rem;
    color: #6d7a92;
    margin-top: 0.03rem;
}

.dashboard-card-body {
    flex: 1;
    min-height: 0;
    padding: 0.12rem 0.14rem;
}

.news-detail-body {
    overflow: auto;
}

.dashboard-card-body-table {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dashboard-table-scroll {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 0;
    border: 0.01rem solid #e7edf7;
    border-radius: 0.12rem;
    background: #ffffff;
}

.dashboard-form {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.dashboard-form .form-group {
    margin: 0;
}

.dashboard-form .form-group label {
    display: block;
    font-size: 0.13rem;
    color: #6d7a92;
    margin-bottom: 0.06rem;
    font-weight: 500;
}

.dashboard-form .form-group.is-disabled label {
    color: #98a5bb;
}

.dashboard-form .form-group input,
.dashboard-form .form-group textarea,
.dashboard-form .form-group select {
    width: 100%;
    border: 0.01rem solid #d7e3ff;
    border-radius: 0.08rem;
    background: #f8fbff;
    color: #24324b;
    padding: 0.06rem 0.1rem;
    font-size: 0.13rem;
    min-height: 0.32rem;
    outline: none;
    font-family: 'DesignFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dashboard-select {
    min-height: 0.32rem;
    padding: 0 0.1rem;
    border: 0.01rem solid #d7e3ff;
    border-radius: 0.08rem;
    background: #f8fbff;
    color: #24324b;
    font-size: 0.13rem;
    outline: none;
}

.dashboard-form .form-group textarea {
    min-height: 2rem;
    resize: vertical;
}

.dashboard-form .form-group input:focus,
.dashboard-form .form-group textarea:focus,
.dashboard-form .form-group select:focus {
    border-color: #1f56c2;
}

.dashboard-form .form-group.is-disabled input,
.dashboard-form .form-group.is-disabled select,
.dashboard-form .form-group.is-disabled textarea {
    background: #f1f4f9;
    color: #98a5bb;
    cursor: not-allowed;
}

.dashboard-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.2rem;
    padding-top: 0.16rem;
    border-top: 1px solid var(--admin-border);
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.98) 32%);
    backdrop-filter: blur(10px);
}

.dashboard-form-actions-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
}

.dashboard-table th {
    font-size: 0.12rem;
    color: #6d7a92;
}

.dashboard-table td {
    font-size: 0.12rem;
    vertical-align: middle;
}

.dashboard-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.08rem;
    margin-top: 0;
    padding: 0 0.02rem;
}

.dashboard-pagination.hidden {
    display: none;
}

.dashboard-pagination-info {
    flex: 1;
    font-size: 0.12rem;
    color: #6d7a92;
    margin-right: 0.08rem;
}

.dashboard-pagination .dashboard-pagination-btn {
    flex-shrink: 0;
}

.dashboard-pagination-btn {
    min-width: 0.34rem;
    height: 0.34rem;
    padding: 0 0.12rem;
    border: 0.01rem solid #d7e3ff;
    border-radius: 0.08rem;
    background: #ffffff;
    color: #33507f;
    cursor: pointer;
}

.dashboard-pagination-btn.active {
    background: #1f56c2;
    border-color: #1f56c2;
    color: #ffffff;
}

.dashboard-pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.46;
}

.dashboard-back-btn {
    min-height: 0.34rem;
    padding: 0 0.14rem;
    border: 0.01rem solid #d7e3ff;
    border-radius: 0.08rem;
    background: #f8fbff;
    color: #1f56c2;
    font-size: 0.12rem;
    font-weight: 700;
    cursor: pointer;
}

.dashboard-pill,
.dashboard-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0.24rem;
    padding: 0 0.08rem;
    border-radius: 9.99rem;
    font-size: 0.11rem;
    font-weight: 700;
    white-space: nowrap;
}

.dashboard-pill {
    background: #dfeafe;
    color: #1f56c2;
}

.dashboard-pill.subtle {
    background: #eef3fb;
    color: #6d7a92;
}

.dashboard-status.pending {
    background: #faeeda;
    color: #854f0b;
}

.dashboard-status.processed,
.dashboard-status.normal {
    background: #e1f5ee;
    color: #0f6e56;
}

.dashboard-status.published {
    background: #e1f5ee;
    color: #0f6e56;
}

.dashboard-status.scheduled {
    background: #e6f1fb;
    color: #185fa5;
}

.dashboard-status.draft {
    background: #eef3fb;
    color: #6d7a92;
}

.dashboard-status.updated {
    background: #e6f1fb;
    color: #185fa5;
}

.dashboard-chart-body {
    flex: 1;
    min-height: 0;
    padding: 0.14rem 0.16rem 0.16rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.08rem;
}

.dashboard-trend-row {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.dashboard-trend-label {
    width: 0.4rem;
    font-size: 0.12rem;
    color: #6d7a92;
    text-align: right;
    flex-shrink: 0;
}

.dashboard-trend-track {
    flex: 1;
    height: 0.08rem;
    background: #e7eefb;
    border-radius: 0.04rem;
    overflow: hidden;
}

.dashboard-trend-fill {
    height: 100%;
    border-radius: 0.04rem;
    background: linear-gradient(90deg, #8bb9ef 0%, #1f56c2 100%);
}

.dashboard-trend-value {
    width: 0.7rem;
    font-size: 0.12rem;
    color: #6d7a92;
    text-align: right;
    flex-shrink: 0;
}

body.modal-open {
    overflow: hidden;
}

.dashboard-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.12rem;
}

.dashboard-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
    background: rgba(17, 29, 58, 0.46);
}

.dashboard-modal.hidden {
    display: none;
}

.dashboard-modal-panel {
    width: min(8.8rem, 100%);
    max-height: calc(100vh - 0.4rem);
    display: flex;
    flex-direction: column;
    border-radius: 0.16rem;
    overflow: hidden;
    background: #ffffff;
    border: 0.01rem solid rgba(205, 219, 244, 0.72);
    box-shadow: 0 0.18rem 0.45rem rgba(18, 42, 88, 0.18);
}

.dashboard-modal-panel-wide {
    width: min(11.8rem, 100%);
}

.dashboard-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.16rem;
    padding: 0.18rem 0.2rem 0.14rem;
    border-bottom: 0.01rem solid rgba(205, 219, 244, 0.72);
}

.dashboard-modal-title {
    font-size: 0.18rem;
    color: #1a2950;
    line-height: 1.35;
}

.dashboard-modal-sub {
    margin-top: 0.04rem;
    font-size: 0.12rem;
    color: #6d7a92;
}

.dashboard-modal-close {
    width: 0.34rem;
    height: 0.34rem;
    border: none;
    border-radius: 50%;
    background: #eef3fb;
    color: #1f56c2;
    font-size: 0.2rem;
    line-height: 1;
    cursor: pointer;
}

.dashboard-modal-body {
    padding: 0.18rem 0.2rem 0.2rem;
    overflow: auto;
}

.confirm-dialog-panel {
    width: min(5.4rem, 100%);
}

.confirm-dialog-body {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
}

.confirm-dialog-content {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    font-size: 0.13rem;
    line-height: 1.7;
    color: #374764;
}

.confirm-dialog-content p {
    margin: 0;
}

.confirm-dialog-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.1rem;
}

.dashboard-editor-form {
    gap: 0.12rem;
}

.news-cover-upload {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

#news-cover-select {
    width: 100%;
    justify-content: center;
}

.news-cover-preview {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.12rem;
    padding: 0.12rem;
    border: 0.01rem solid rgba(205, 219, 244, 0.78);
    border-radius: 0.1rem;
    background: #f8fbff;
}

.news-cover-preview.hidden {
    display: none;
}

.news-cover-preview-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.1rem;
    border: 0.01rem solid rgba(205, 219, 244, 0.72);
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.news-cover-preview-meta {
    display: grid;
    gap: 0.04rem;
}

.news-cover-preview-name {
    font-size: 0.13rem;
    color: #33507f;
    line-height: 1.45;
    word-break: break-all;
}

.news-cover-preview-spec {
    font-size: 0.12rem;
    color: #7b8aa5;
}

.news-cover-preview button {
    align-self: flex-start;
    flex-shrink: 0;
    white-space: nowrap;
}

.dashboard-form-hint {
    margin: 0;
    font-size: 0.12rem;
    color: #7b8aa5;
    line-height: 1.45;
}

.editor-toolbar input[type="color"] {
    min-height: 0.32rem;
    padding: 0 0.1rem;
    border: 0.01rem solid #d7e3ff;
    border-radius: 0.08rem;
    background: #ffffff;
    color: #24324b;
    width: 0.48rem;
}

.editor-tool,
.dashboard-inline-btn {
    min-height: 0.32rem;
    padding: 0 0.12rem;
    border: none;
    border-radius: 0.08rem;
    background: #e6eefc;
    color: #1f56c2;
    font-size: 0.12rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.dashboard-inline-btn.btn-danger {
    background: #fdecec;
    color: #c63a4e;
}

.dashboard-inline-btn.active {
    background: #1f56c2;
    color: #ffffff;
}

.btn-danger-soft {
    background: #fdecec;
    color: #c63a4e;
    border: 0.01rem solid #f5ccd4;
}

.dashboard-inline-btn.btn-ghost {
    background: #f3f6fb;
    color: #50617f;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-editor-sidebar .dashboard-inline-btn,
.news-editor-sidebar .dashboard-inline-btn.btn-ghost {
    min-height: 0.32rem;
    padding: 0 0.12rem;
    font-size: 0.12rem;
    border-radius: 0.08rem;
}

[data-theme] .news-editor-sidebar .dashboard-sidebar-section,
.news-editor-sidebar .dashboard-sidebar-section {
    background: rgba(255, 255, 255, 0.94) !important;
    border: 0.01rem solid rgba(205, 219, 244, 0.78) !important;
    border-radius: 0.16rem !important;
    box-shadow: 0 0.08rem 0.24rem rgba(25, 72, 146, 0.06) !important;
}

[data-theme] .news-editor-sidebar input:not([type="file"]),
[data-theme] .news-editor-sidebar select,
[data-theme] .news-editor-sidebar textarea {
    border-radius: 0.1rem !important;
    min-height: 0.38rem !important;
    padding: 0.06rem 0.12rem !important;
    font-size: 0.13rem !important;
    background: #f9fbff !important;
}

[data-theme] .news-editor-sidebar input:not([type="file"]):focus,
[data-theme] .news-editor-sidebar select:focus,
[data-theme] .news-editor-sidebar textarea:focus {
    box-shadow: 0 0 0 0.02rem rgba(31, 86, 194, 0.12) !important;
}

.dashboard-inline-btn:disabled,
.btn-danger-soft:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.rich-editor {
    min-height: 3.6rem;
    padding: 0.16rem;
    border: 0.01rem solid #d7e3ff;
    border-top: none;
    border-radius: 0 0 0.1rem 0.1rem;
    background: #ffffff;
    color: #24324b;
    font-size: 0.14rem;
    line-height: 1.8;
    overflow: auto;
    caret-color: #1f56c2;
    scroll-padding-bottom: 0.32rem;
}

.rich-editor:focus {
    outline: none;
    box-shadow: inset 0 0 0 0.02rem rgba(59, 130, 246, 0.18);
}

.rich-editor .editor-active-block {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), rgba(129, 140, 248, 0.04));
    box-shadow: inset 0.03rem 0 0 rgba(59, 130, 246, 0.9);
    border-radius: 0.08rem;
}

.rich-editor p.editor-active-block,
.rich-editor h1.editor-active-block,
.rich-editor h2.editor-active-block,
.rich-editor h3.editor-active-block,
.rich-editor h4.editor-active-block,
.rich-editor h5.editor-active-block,
.rich-editor h6.editor-active-block,
.rich-editor ul.editor-active-block,
.rich-editor ol.editor-active-block,
.rich-editor blockquote.editor-active-block,
.rich-editor pre.editor-active-block,
.rich-editor figure.editor-active-block {
    padding-left: 0.12rem;
    padding-right: 0.12rem;
    transition: background 0.16s ease, box-shadow 0.16s ease;
}

.rich-editor figure.editor-media-block {
    margin: 0.16rem 0;
    padding: 0.12rem;
    border-radius: 0.14rem;
    border: 0.01rem solid rgba(205, 219, 244, 0.78);
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

/* --- News Detail Page --- */
.news-detail-container {
    background: #fff;
    border-radius: 0.16rem;
    padding: 0.08rem 0.4rem 0.24rem !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    min-height: auto !important;
    margin-top: 0 !important;
}

.news-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
    color: var(--text-sub);
    font-size: 0.14rem;
    text-decoration: none;
    margin: 0 0 0.12rem !important;
    transition: color 0.2s;
}

.news-detail-back:hover {
    color: var(--primary);
}

.news-article-title {
    font-size: 0.32rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin: 0 0 0.12rem !important;
    text-align: center;
}

.news-article-main,
.news-article-header {
    margin: 0 !important;
    padding: 0 !important;
}

.news-article-meta {
    display: flex;
    justify-content: center;
    gap: 0.24rem;
    color: var(--text-sub);
    font-size: 0.14rem;
    margin-bottom: 0.24rem;
    padding-bottom: 0.24rem;
    border-bottom: 1px solid var(--border-light);
}

.news-article-body {
    font-size: 0.16rem;
    line-height: 1.8;
    color: #333;
}

.news-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.08rem;
    margin: 0.2rem auto;
    display: block;
}

.rich-editor img,
.dashboard-preview-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.12rem;
    display: block;
}

.rich-editor .editor-media-image {
    width: 100%;
    max-width: min(100%, 8.2rem);
    margin: 0 auto;
}

#news-panel .news-workspace,
#coop-panel .news-workspace {
    gap: 0.08rem;
}

#news-panel .dashboard-stat-row,
#coop-panel .dashboard-stat-row {
    gap: 0.08rem;
}

#news-panel .dashboard-stat-card,
#coop-panel .dashboard-stat-card {
    padding: 0.08rem 0.12rem;
}

#news-panel .dashboard-stat-label,
#coop-panel .dashboard-stat-label {
    font-size: 0.11rem;
}

#news-panel .dashboard-stat-value,
#coop-panel .dashboard-stat-value {
    font-size: 0.22rem;
    margin: 0.01rem 0 0.02rem;
}

#news-panel .dashboard-stat-note,
#coop-panel .dashboard-stat-note {
    font-size: 0.11rem;
    line-height: 1.25;
}

#news-panel .dashboard-card-head,
#coop-panel .dashboard-card-head {
    padding: 0.1rem 0.12rem 0.06rem;
}

#news-panel .dashboard-card-sub,
#coop-panel .dashboard-card-sub {
    margin-top: 0.02rem;
}

#news-panel .dashboard-card-body-table,
#coop-panel .dashboard-card-body-table {
    gap: 0.08rem;
    padding: 0.1rem 0.12rem 0.12rem;
}

#news-panel .dashboard-table th,
#news-panel .dashboard-table td,
#coop-panel .dashboard-table th,
#coop-panel .dashboard-table td {
    padding: 0.11rem 0.12rem;
    line-height: 1.45;
}

#news-panel .dashboard-pagination,
#coop-panel .dashboard-pagination {
    gap: 0.08rem;
}

.rich-editor video,
.dashboard-preview-body video {
    width: 100%;
    max-height: 4rem;
    border-radius: 0.12rem;
    background: #000000;
}

.news-action-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.08rem;
}

.trash-select-cell {
    width: 0.48rem;
    text-align: center;
}

.trash-select-cell input,
#trash-select-all {
    width: 0.16rem;
    height: 0.16rem;
    cursor: pointer;
}

.dashboard-preview-body {
    min-height: 2rem;
    font-size: 0.14rem;
    line-height: 1.85;
    color: #24324b;
}

.dashboard-preview-body h1,
.dashboard-preview-body h2,
.dashboard-preview-body h3,
.dashboard-preview-body h4 {
    color: #1a2950;
    margin: 0.16rem 0 0.08rem;
}

.dashboard-preview-body p,
.dashboard-preview-body ul,
.dashboard-preview-body ol {
    margin: 0 0 0.12rem;
}

.dashboard-preview-link {
    display: flex;
    flex-direction: column;
    gap: 0.06rem;
    margin-bottom: 0.16rem;
    padding: 0.12rem 0.14rem;
    border-radius: 0.12rem;
    background: #f6f9ff;
    border: 0.01rem solid #d7e3ff;
}

.dashboard-preview-link-label {
    font-size: 0.12rem;
    color: #6d7a92;
}

.dashboard-preview-link-anchor {
    color: #1f56c2;
    word-break: break-all;
}

.dashboard-preview-rich {
    min-height: 1.4rem;
}

.news-preview-section {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-height: 0;
}

.news-preview-header {
    padding-bottom: 0.12rem;
    border-bottom: 0.01rem solid rgba(205, 219, 244, 0.56);
}

.admin-news-preview-shell {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.admin-news-preview-hero {
    display: grid;
    gap: 0.16rem;
}

.admin-news-preview-headline {
    display: grid;
    gap: 0.08rem;
}

.admin-news-preview-title {
    margin: 0;
    font-size: 0.28rem;
    line-height: 1.3;
    color: #1a2950;
}

.admin-news-preview-meta {
    font-size: 0.13rem;
    color: #6d7a92;
}

.admin-news-preview-cover-wrap {
    border-radius: 0.16rem;
    overflow: hidden;
    border: 0.01rem solid rgba(205, 219, 244, 0.72);
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.admin-news-preview-cover {
    display: block;
    width: 100%;
    max-height: 4.6rem;
    object-fit: cover;
}

.admin-news-preview-content {
    padding: 0.2rem 0.22rem;
    border-radius: 0.16rem;
    border: 0.01rem solid rgba(205, 219, 244, 0.72);
    background: #ffffff;
    max-height: calc(100vh - 2.6rem);
    overflow: auto;
}

html {
    font-size: clamp(72px, min(calc(100vw / 19.2), calc(100vh / 10.8)), 100px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scrollbar-gutter: stable !important;
}

body {
    min-height: 100vh !important;
    height: auto !important;
    width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scrollbar-gutter: stable !important;
}

.site-header,
.site-footer {
    flex-shrink: 0 !important;
}

.page-shell {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body.module-page:not([data-page="home"]) {
    background: #ffffff !important;
}

.site-nav {
    width: min(16rem, calc(100% - 0.48rem)) !important;
    max-width: min(16rem, calc(100% - 0.48rem)) !important;
}

.module-page:not([data-page="home"]) .page-shell {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0.12rem 0 0.16rem !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
}

.module-page:not([data-page="home"]) .module-stage {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    width: min(14.8rem, calc(100% - 0.48rem)) !important;
    max-width: min(14.8rem, calc(100% - 0.48rem)) !important;
    margin: 0 auto !important;
    padding: 0.28rem 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
}

body.module-page[data-page="news-detail"] .page-shell,
body.module-page[data-page="news-detail"] .page-shell.wide-shell {
    height: auto !important;
    min-height: 0 !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.module-page[data-page="news-detail"] .module-stage,
body.module-page[data-page="news-detail"] .module-stage.news-page-stage {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

body.module-page[data-page="news-detail"] .news-page-shell,
body.module-page[data-page="news-detail"] #news-detail-page,
body.module-page[data-page="news-detail"] .news-detail-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body[data-page="home"] .page-shell {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0.08rem 0 0.12rem !important;
    overflow: visible !important;
}

body[data-page="home"] .home-stage {
    width: 100% !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0.12rem 0 !important;
    align-items: center !important;
}

body[data-page="home"] .hero-block {
    width: min(16rem, 92%) !important;
    max-width: min(16rem, 92%) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(5.2rem, 6.6rem) !important;
    gap: 0.52rem !important;
    align-items: center !important;
}

body[data-page="home"] .hero-copy,
body[data-page="home"] .hero-visual-card {
    flex: initial !important;
}

body[data-page="home"] .hero-copy {
    max-width: 8.1rem !important;
}

body[data-page="home"] .hero-copy h1 {
    font-size: 0.62rem !important;
    line-height: 1.16 !important;
}

body[data-page="home"] .hero-copy p {
    max-width: 7.4rem !important;
    margin-bottom: 0.3rem !important;
}

body[data-page="home"] .hero-visual-card {
    max-width: 6.6rem !important;
    width: 100% !important;
}

body[data-page="home"] .media-frame {
    padding: 0.2rem !important;
}

body[data-page="news"] .page-shell,
body[data-page="contact"] .page-shell {
    padding-top: 0.1rem !important;
    padding-bottom: 0.16rem !important;
}

body[data-page="news"] .module-stage,
body[data-page="contact"] .module-stage {
    width: min(14.8rem, calc(100% - 0.48rem)) !important;
    max-width: min(14.8rem, calc(100% - 0.48rem)) !important;
    padding: 0.28rem 0 !important;
}

body[data-page="news"] .module-heading,
body[data-page="contact"] .module-heading {
    margin-bottom: 0.26rem !important;
}

body[data-page="contact"] .contact-layout-new {
    gap: 0.14rem !important;
}

body[data-page="contact"] .contact-info-panel-new,
body[data-page="contact"] .contact-form-panel-new {
    padding: 0.22rem !important;
}

body[data-page="contact"] .coop-form-new {
    gap: 0.18rem !important;
}

body[data-page="contact"] .contact-info-row-new {
    gap: 0.1rem !important;
}

body:not(.admin-page) .nav-links a {
    font-size: 0.17rem !important;
}

body:not(.admin-page) .site-footer {
    font-size: 0.145rem !important;
}

body:not(.admin-page) .module-kicker,
body:not(.admin-page) .tag-chip,
body:not(.admin-page) .hero-badge,
body:not(.admin-page) .news-public-type,
body:not(.admin-page) .home-news-more {
    font-size: 0.145rem !important;
}

body:not(.admin-page) .hero-copy p,
body:not(.admin-page) .hero p,
body:not(.admin-page) .module-heading p,
body:not(.admin-page) .section-heading p,
body:not(.admin-page) .media-caption,
body:not(.admin-page) .profile-stat span,
body:not(.admin-page) .scholar-profile p,
body:not(.admin-page) .contact-item-new span,
body:not(.admin-page) .form-group-new label,
body:not(.admin-page) .form-group-new input,
body:not(.admin-page) .form-group-new textarea,
body:not(.admin-page) .option-card-new,
body:not(.admin-page) .advantage-body-new p,
body:not(.admin-page) .product-body-new p,
body:not(.admin-page) .product-highlight-new,
body:not(.admin-page) .home-news-meta,
body:not(.admin-page) .news-meta-new,
body:not(.admin-page) .news-detail-link,
body:not(.admin-page) .news-public-meta,
body:not(.admin-page) .contact-card p,
body:not(.admin-page) .overview-copy p,
body:not(.admin-page) .feature-panel p,
body:not(.admin-page) .product-card p,
body:not(.admin-page) .news-card p,
body:not(.admin-page) .info-card p,
body:not(.admin-page) .form-title p {
    font-size: 0.16rem !important;
}

body:not(.admin-page) .home-news-title,
body:not(.admin-page) .news-title-new {
    font-size: 0.18rem !important;
}

body[data-page="home"] .hero-copy p {
    font-size: 0.21rem !important;
    line-height: 1.95 !important;
}

body[data-page="home"] .media-caption {
    font-size: 0.21rem !important;
}

body[data-page="research"] .module-heading p,
body[data-page="research"] .profile-subtitle,
body[data-page="research"] .soft-card-new p {
    font-size: 0.21rem !important;
    line-height: 1.9 !important;
}

@media (min-width: 769px) {
    body[data-page="research"] .page-shell {
        padding-top: 0.08rem !important;
        padding-bottom: 0.12rem !important;
    }

    body[data-page="research"] .module-stage {
        width: min(14.2rem, calc(100% - 0.48rem)) !important;
        max-width: min(14.2rem, calc(100% - 0.48rem)) !important;
        padding: 0.22rem 0 !important;
    }

    body[data-page="research"] .module-heading {
        margin-bottom: 0.24rem !important;
    }

    body[data-page="research"] .module-heading p,
    body[data-page="research"] .profile-subtitle,
    body[data-page="research"] .soft-card-new p {
        font-size: 0.21rem !important;
        line-height: 1.9 !important;
    }

    body[data-page="research"] .scholar-layout-new {
        grid-template-columns: minmax(0, 5.2rem) minmax(0, 1fr) !important;
        gap: 0.42rem !important;
        align-items: stretch !important;
    }

    body[data-page="research"] .profile-title {
        font-size: 0.24rem !important;
        margin-bottom: 0.08rem !important;
    }

    body[data-page="research"] .profile-subtitle {
        font-size: 0.23rem !important;
        line-height: 1.75 !important;
        color: #42536f !important;
        margin-bottom: 0.18rem !important;
    }

    body[data-page="research"] .scholar-profile-new {
        height: 100% !important;
        min-height: 0 !important;
    }

    body[data-page="research"] .profile-media-new {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        max-height: 4.62rem !important;
    }

    body[data-page="research"] .scholar-info-grid-new {
        height: auto !important;
        gap: 0.16rem !important;
        align-self: stretch !important;
        align-content: start !important;
        grid-template-rows: none !important;
        grid-auto-rows: minmax(0, auto) !important;
    }

    body[data-page="research"] .soft-card-new {
        padding: 0.2rem 0.22rem !important;
        justify-content: flex-start !important;
    }

    body[data-page="research"] .card-header-new {
        margin-bottom: 0.12rem !important;
    }

    body[data-page="research"] .card-header-new h4 {
        font-size: 0.2rem !important;
    }
}

body[data-page="advantages"] .module-heading p,
body[data-page="advantages"] .advantage-body-new p,
body[data-page="products"] .module-heading p,
body[data-page="products"] .product-body-new p,
body[data-page="about"] .module-heading p,
body[data-page="about"] .about-card-new p {
    font-size: 0.21rem !important;
    line-height: 1.9 !important;
}

body[data-page="contact"] .module-heading p,
body[data-page="contact"] .contact-item-new span,
body[data-page="contact"] .form-group-new input,
body[data-page="contact"] .form-group-new textarea {
    font-size: 0.21rem !important;
    line-height: 1.9 !important;
}

body[data-page="contact"] .form-group-new label,
body[data-page="contact"] .option-item-new,
body[data-page="contact"] .btn-submit-new,
body[data-page="contact"] .message-new {
    font-size: 0.17rem !important;
    line-height: 1.6 !important;
}

body[data-page="news"] .module-heading p {
    font-size: 0.21rem !important;
    line-height: 1.9 !important;
}

body[data-page="news"] .news-title-new {
    font-size: 0.19rem !important;
}

body[data-page="news"] .news-meta-new,
body[data-page="news"] .news-detail-link {
    font-size: 0.16rem !important;
}

body[data-page="news"] .news-page-shell {
    max-width: min(16rem, calc(100vw - 0.48rem)) !important;
    padding-bottom: 1.28rem !important;
}

body[data-page="news"] .news-grid-new {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0.14rem !important;
    align-items: stretch !important;
}

body[data-page="news"] .news-card-new {
    display: flex !important;
    flex-direction: column !important;
    align-content: stretch !important;
    min-height: 3.38rem !important;
    height: 3.38rem !important;
    border-radius: 0.12rem !important;
}

body[data-page="news"] .news-card-content {
    padding: 0.16rem 0.16rem 0.12rem !important;
    gap: 0.08rem !important;
    min-height: 0.82rem !important;
}

body[data-page="news"] .news-title-new {
    height: 0.5rem !important;
    min-height: 0.5rem !important;
    max-height: 0.5rem !important;
    line-height: 1.45 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    white-space: normal !important;
    overflow: hidden !important;
}

body[data-page="news"]:not(.mobile-experience) .news-summary-new {
    display: none !important;
}

body[data-page="news"] .news-meta-new {
    line-height: 1.35 !important;
}

body[data-page="news"] .news-media-new {
    aspect-ratio: auto !important;
    height: 1.56rem !important;
    width: calc(100% - 0.32rem) !important;
    margin: 0 0.16rem !important;
    flex-shrink: 0 !important;
}

body[data-page="news"] .news-media-new img {
    object-fit: cover !important;
    background: #eef4ff !important;
}

body[data-page="news"] .news-detail-link {
    margin: auto 0.16rem 0.16rem !important;
}

body[data-page="news"] .news-page-pagination {
    position: fixed !important;
    left: 50% !important;
    bottom: 0.48rem !important;
    transform: translateX(-50%) !important;
    width: fit-content !important;
    min-width: 0 !important;
    justify-content: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0.1rem 0.14rem !important;
    gap: 0.08rem !important;
    border: 0.01rem solid #e6edf8 !important;
    border-radius: 0.12rem !important;
    background: #ffffff !important;
    box-shadow: 0 0.08rem 0.24rem rgba(15, 38, 84, 0.12) !important;
    z-index: 40 !important;
}

body[data-page="news"] .news-page-pagination .dashboard-pagination-info {
    flex: 0 0 auto !important;
    margin-right: 0.06rem !important;
    white-space: nowrap !important;
}

body[data-page="news"] .news-page-pagination .dashboard-pagination-btn {
    min-width: 0.72rem !important;
}

@media (max-width: 1600px) {
    html {
        font-size: clamp(68px, min(calc(100vw / 17.2), calc(100vh / 10.2)), 92px) !important;
    }

    body[data-page="home"] .hero-block {
        width: min(15rem, 92%) !important;
        max-width: min(15rem, 92%) !important;
        grid-template-columns: minmax(0, 1fr) minmax(4.6rem, 5.8rem) !important;
        gap: 0.4rem !important;
    }

    body[data-page="home"] .hero-copy h1 {
        font-size: 0.54rem !important;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: clamp(60px, min(calc(100vw / 14.4), calc(100vh / 9.6)), 84px) !important;
    }

    .site-nav {
        width: calc(100% - 0.36rem) !important;
        max-width: calc(100% - 0.36rem) !important;
    }

    body[data-page="home"] .hero-block {
        width: min(13.4rem, 94%) !important;
        max-width: min(13.4rem, 94%) !important;
        grid-template-columns: minmax(0, 1fr) minmax(4rem, 5rem) !important;
        gap: 0.32rem !important;
    }

    .module-page:not([data-page="home"]) .module-stage {
        width: calc(100% - 0.36rem) !important;
        max-width: calc(100% - 0.36rem) !important;
        padding: 0.24rem 0 !important;
    }
}

@media (max-width: 1440px) and (min-width: 769px) {
    .brand-title-line {
        font-size: 0.14rem !important;
    }

    .brand-subtitle-line {
        font-size: 0.11rem !important;
        letter-spacing: 0.04em !important;
    }

    body:not(.admin-page) .nav-links a {
        margin: 0 0.12rem !important;
        font-size: 0.16rem !important;
    }

    body[data-page="home"] .hero-block {
        grid-template-columns: minmax(0, 1fr) minmax(3.8rem, 5.2rem) !important;
        gap: 0.32rem !important;
    }

    .advantage-grid-new {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .product-grid-new {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .home-news-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    body[data-page="news"] .news-grid-new {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .scholar-layout-new {
        grid-template-columns: minmax(4.8rem, 1.08fr) minmax(0, 0.92fr) !important;
        gap: 0.28rem !important;
    }

    .about-grid-new {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .site-header {
        padding: 0.14rem 0.18rem !important;
    }

    .site-nav {
        width: calc(100% - 0.24rem) !important;
        max-width: calc(100% - 0.24rem) !important;
    }

    .brand {
        gap: 0.06rem !important;
    }

    .brand-title-line {
        font-size: 0.125rem !important;
        max-width: 2.9rem !important;
    }

    .brand-subtitle-line {
        font-size: 0.1rem !important;
    }

    body:not(.admin-page) .nav-links a {
        margin: 0 0.08rem !important;
        padding: 0 0.03rem !important;
        font-size: 0.145rem !important;
    }

    .module-page:not([data-page="home"]) .module-stage,
    body[data-page="news"] .module-stage,
    body[data-page="contact"] .module-stage {
        width: calc(100% - 0.24rem) !important;
        max-width: calc(100% - 0.24rem) !important;
    }

    body[data-page="home"] .hero-block {
        width: calc(100% - 0.24rem) !important;
        max-width: calc(100% - 0.24rem) !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.24rem !important;
    }

    body[data-page="home"] .hero-copy,
    body[data-page="home"] .hero-copy p {
        max-width: 100% !important;
    }

    body[data-page="home"] .hero-copy h1 {
        font-size: 0.5rem !important;
    }

    body[data-page="home"] .hero-visual-card {
        max-width: min(100%, 7.2rem) !important;
        margin: 0 auto !important;
    }

    .advantage-grid-new,
    .product-grid-new,
    .about-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .home-news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    body[data-page="news"] .news-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .scholar-layout-new {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.24rem !important;
    }

    .scholar-info-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .contact-layout-new,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.24rem !important;
    }

    .form-row-3-new,
    .contact-info-grid,
    .about-feature-grid,
    .about-values {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .option-group-new {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    html {
        font-size: clamp(54px, min(calc(100vw / 13.2), calc(100vh / 9.2)), 76px) !important;
    }

    .site-nav {
        flex-wrap: wrap !important;
        justify-content: center !important;
        row-gap: 0.12rem !important;
    }

    .brand {
        width: 100% !important;
        justify-content: center !important;
    }

    .nav-links {
        width: 100% !important;
        justify-content: center !important;
    }

    .module-heading h2 {
        font-size: 0.34rem !important;
    }

    body[data-page="home"] .hero-copy h1 {
        font-size: 0.44rem !important;
    }

    .home-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .advantage-grid-new,
    .product-grid-new,
    .about-grid-new,
    body[data-page="news"] .news-grid-new,
    .scholar-info-grid-new,
    .form-row-3-new,
    .contact-info-grid,
    .about-feature-grid,
    .about-values {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    @keyframes mobileAuroraDrift {
        0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.72; }
        50% { transform: translate3d(10px, 16px, 0) scale(1.04); opacity: 1; }
        100% { transform: translate3d(-8px, 28px, 0) scale(0.98); opacity: 0.76; }
    }

    @keyframes mobileSoftPulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(74, 140, 255, 0); }
        50% { box-shadow: 0 0 0 1px rgba(74, 140, 255, 0.14); }
    }

    @keyframes mobileShimmer {
        0% { transform: translateX(-135%); opacity: 0; }
        30% { opacity: 0.22; }
        100% { transform: translateX(135%); opacity: 0; }
    }

    body.mobile-experience {
        --mobile-gutter: 20px;
        --mobile-section-gap: 40px;
        --mobile-block-gap: 32px;
        --mobile-divider: rgba(0, 0, 0, 0.06);
        --mobile-divider-strong: rgba(0, 0, 0, 0.1);
        --mobile-text-main: #111827;
        --mobile-text-body: #4b5563;
        --mobile-text-muted: #9ca3af;
        --mobile-accent: #0f172a;
        --mobile-accent-strong: #000000;
        --mobile-accent-soft: rgba(15, 23, 42, 0.04);
        --mobile-glow-soft: rgba(0, 0, 0, 0.04);
        --mobile-glow-strong: rgba(0, 0, 0, 0.08);
        --mobile-surface-soft: #f9fafb;
        --mobile-surface-strong: #f3f4f6;
        --mobile-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
        --mobile-font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        font-family: var(--mobile-font-stack);
        background: #ffffff !important;
        color: var(--mobile-text-main) !important;
        overflow-y: auto !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        scrollbar-gutter: auto !important;
    }

    html.mobile-experience-root {
        overflow-y: auto !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        scrollbar-gutter: auto !important;
    }

    body.mobile-experience > .site-header,
    body.mobile-experience > .page-shell,
    body.mobile-experience > .site-footer {
        display: none !important;
    }

    body.mobile-experience.mobile-menu-open {
        overflow: hidden !important;
    }

    body.mobile-experience .mobile-site-shell {
        position: relative;
        min-height: 100vh;
        background: #ffffff;
        overflow-x: hidden;
        padding-bottom: env(safe-area-inset-bottom, 0);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    html.mobile-experience-root::-webkit-scrollbar,
    body.mobile-experience::-webkit-scrollbar,
    body.mobile-experience *::-webkit-scrollbar,
    body.mobile-experience .mobile-site-shell::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
        display: none !important;
        background: transparent !important;
    }

    body.mobile-experience .mobile-site-shell::before,
    body.mobile-experience .mobile-site-shell::after {
        content: '';
        position: fixed;
        z-index: 0;
        pointer-events: none;
        filter: blur(24px);
        opacity: 0.78;
        animation: mobileAuroraDrift 11s ease-in-out infinite alternate;
    }

    body.mobile-experience .mobile-site-shell::before {
        top: 72px;
        right: -34px;
        width: 112px;
        height: 112px;
        background: radial-gradient(circle, rgba(64, 126, 255, 0.24) 0%, rgba(64, 126, 255, 0.02) 68%);
    }

    body.mobile-experience .mobile-site-shell::after {
        top: 40%;
        left: -42px;
        width: 128px;
        height: 128px;
        background: radial-gradient(circle, rgba(19, 150, 255, 0.18) 0%, rgba(19, 150, 255, 0.02) 72%);
        animation-duration: 13.5s;
    }

    body.mobile-experience .mobile-site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 10px var(--mobile-gutter);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--mobile-divider);
    }

    body.mobile-experience .mobile-brand {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        min-width: 0;
        flex: 1;
    }

    body.mobile-experience .mobile-brand-logo {
        width: 62px;
        height: 42px;
        border-radius: 0;
        object-fit: contain;
        object-position: left center;
        flex-shrink: 0;
        display: block;
    }

    body.mobile-experience .mobile-brand-copy {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }

    body.mobile-experience .mobile-brand-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.1;
        color: var(--mobile-text-main);
        letter-spacing: -0.01em;
    }

    body.mobile-experience .mobile-brand-subtitle {
        font-size: 9px;
        letter-spacing: 0.12em;
        color: var(--mobile-text-muted);
        opacity: 0.9;
    }

    body.mobile-experience .mobile-menu-button {
        position: relative;
        width: 40px;
        height: 40px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid var(--mobile-divider-strong);
        border-radius: 0;
        background: transparent;
        cursor: pointer;
        overflow: hidden;
        transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
    }

    body.mobile-experience .mobile-menu-button::after {
        content: '';
        position: absolute;
        inset: 0 auto 0 0;
        width: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
        transform: translateX(-135%);
        pointer-events: none;
    }

    body.mobile-experience .mobile-menu-line {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, #183964, #2a7bff);
        transition: transform 0.24s ease, opacity 0.24s ease, width 0.24s ease;
    }

    body.mobile-experience .mobile-menu-button:active {
        transform: scale(0.92);
    }

    body.mobile-experience .mobile-menu-button:focus-visible {
        outline: none;
        border-color: rgba(68, 133, 255, 0.62);
        box-shadow: 0 0 0 1px rgba(68, 133, 255, 0.14), 0 0 0 5px rgba(68, 133, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    }

    body.mobile-experience .mobile-menu-button:active::after {
        animation: mobileShimmer 0.72s ease-out;
    }

    body.mobile-experience .mobile-menu-button.active {
        border-color: var(--mobile-divider-strong);
        background: var(--mobile-surface-soft);
        box-shadow: none;
    }

    body.mobile-experience .mobile-menu-button.active .mobile-menu-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.mobile-experience .mobile-menu-button.active .mobile-menu-line:nth-child(2) {
        opacity: 0;
    }

    body.mobile-experience .mobile-menu-button.active .mobile-menu-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.mobile-experience .mobile-drawer-menu {
        position: fixed;
        top: 59px;
        left: var(--mobile-gutter);
        right: var(--mobile-gutter);
        z-index: 1180;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px) saturate(180%);
        border: 1px solid var(--mobile-divider);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transform: translateY(-10px) scale(0.98);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        overflow: hidden;
    }

    body.mobile-experience .mobile-drawer-menu::before {
        content: '';
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(99, 155, 255, 0.55), rgba(255, 255, 255, 0));
    }

    body.mobile-experience .mobile-drawer-menu.open {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    body.mobile-experience .mobile-drawer-link {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 50px;
        padding: 0 18px;
        border-radius: 0;
        background: transparent;
        border-left: 2px solid transparent;
        color: var(--mobile-text-main);
        font-size: 15px;
        font-weight: 600;
        line-height: 1.2;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, padding-left 0.22s ease;
    }

    body.mobile-experience .mobile-drawer-link::after {
        content: '';
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 0;
        height: 1px;
        background: var(--mobile-divider);
    }

    body.mobile-experience .mobile-drawer-link:active {
        background: linear-gradient(90deg, rgba(31, 102, 229, 0.08), transparent);
        padding-left: 20px;
    }

    body.mobile-experience .mobile-drawer-link.active {
        background: linear-gradient(90deg, rgba(31, 102, 229, 0.11), rgba(31, 102, 229, 0.02));
        border-left-color: var(--mobile-accent);
        color: var(--mobile-accent);
        padding-left: 20px;
    }

    body.mobile-experience .mobile-drawer-link:last-child::after {
        display: none;
    }

    body.mobile-experience .mobile-drawer-link:focus-visible {
        outline: none;
        background: linear-gradient(90deg, rgba(31, 102, 229, 0.08), rgba(31, 102, 229, 0.01));
        border-left-color: rgba(31, 102, 229, 0.55);
        box-shadow: inset 0 0 0 1px rgba(31, 102, 229, 0.12);
    }

    body.mobile-experience .mobile-drawer-icon,
    body.mobile-experience .mobile-bottom-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        line-height: 1;
    }

    body.mobile-experience .mobile-drawer-icon svg,
    body.mobile-experience .mobile-bottom-icon svg {
        width: 20px;
        height: 20px;
        display: block;
    }

    body.mobile-experience .mobile-drawer-label {
        line-height: 1.2;
        letter-spacing: 0.01em;
    }

    body.mobile-experience .mobile-page-shell {
        position: relative;
        z-index: 1;
        padding: 74px 0 48px;
    }

    body[data-page="home"].mobile-experience .mobile-page-shell {
        padding-top: 0;
    }

    body[data-page="news"].mobile-experience .mobile-page-shell {
        padding-top: 44px;
    }

    body.mobile-experience .mobile-page-section {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-section-gap);
        position: relative;
        padding: 40px var(--mobile-gutter);
    }

    body.mobile-experience .mobile-page-section:nth-child(even) {
        background-color: var(--mobile-surface-soft);
    }

    body[data-page="home"].mobile-experience .mobile-page-section:first-child {
        padding-top: 20px;
    }

    body.mobile-experience .mobile-section-heading {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 0;
        position: relative;
        margin-bottom: 8px;
    }

    body.mobile-experience .mobile-section-title {
        margin: 0;
        font-size: 32px;
        line-height: 1.15;
        font-weight: 800;
        color: var(--mobile-text-main);
        letter-spacing: -0.02em;
        text-wrap: balance;
    }

    body.mobile-experience .mobile-section-description {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
        color: var(--mobile-text-body);
        max-width: 34em;
        letter-spacing: 0.01em;
    }

    body.mobile-experience .mobile-hero-card,
    body.mobile-experience .mobile-profile-card,
    body.mobile-experience .mobile-feature-card,
    body.mobile-experience .mobile-product-card,
    body.mobile-experience .mobile-about-card,
    body.mobile-experience .mobile-contact-card,
    body.mobile-experience .mobile-form-card,
    body.mobile-experience .mobile-news-article,
    body.mobile-experience .mobile-news-feed {
        border-radius: 0;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    body.mobile-experience .mobile-home-layout {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-block-gap);
    }

    body.mobile-experience .mobile-home-copy {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    body.mobile-experience .mobile-hero-card {
        padding: 0;
        border-bottom: none;
        position: relative;
    }

    body.mobile-experience .mobile-hero-tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        margin-bottom: 14px;
        padding: 6px 12px;
        border-radius: 100px;
        border: 1px solid var(--mobile-divider-strong);
        background: var(--mobile-surface-soft);
        color: var(--mobile-text-main);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    body.mobile-experience .mobile-hero-title {
        margin: 0 0 16px;
        font-size: 40px;
        line-height: 1.1;
        font-weight: 800;
        color: var(--mobile-text-main);
        letter-spacing: -0.02em;
        text-wrap: balance;
    }

    body.mobile-experience .mobile-hero-title span,
    body.mobile-experience .mobile-hero-title strong {
        color: var(--mobile-text-main);
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: unset;
        font-weight: 800;
    }

    body.mobile-experience .mobile-hero-description {
        margin: 0;
        max-width: 32em;
        font-size: 16px;
        line-height: 1.6;
        color: var(--mobile-text-body);
        letter-spacing: 0.01em;
    }

    body.mobile-experience .mobile-hero-points,
    body.mobile-experience .mobile-profile-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    body.mobile-experience .mobile-hero-point,
    body.mobile-experience .mobile-profile-pill,
    body.mobile-experience .mobile-card-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 28px;
        padding: 0 12px;
        border-radius: 6px;
        border: 1px solid var(--mobile-divider-strong);
        background: var(--mobile-surface-soft);
        color: var(--mobile-text-main);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    body.mobile-experience .mobile-hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    body.mobile-experience .mobile-hero-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 100px;
        border: 1px solid var(--mobile-divider-strong);
        background: transparent;
        color: var(--mobile-text-main);
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.02em;
        text-decoration: none;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
    }

    body.mobile-experience .mobile-hero-action::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 48%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
        transform: translateX(-135%);
        pointer-events: none;
    }

    body.mobile-experience .mobile-hero-action.primary {
        background: var(--mobile-accent-strong);
        border-color: var(--mobile-accent-strong);
        color: #ffffff;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    }

    body.mobile-experience .mobile-hero-action:focus-visible {
        outline: none;
        border-color: var(--mobile-divider-strong);
        background: var(--mobile-surface-strong);
    }

    body.mobile-experience .mobile-hero-action.primary:focus-visible {
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1), 0 0 0 2px var(--mobile-surface-strong), 0 0 0 4px var(--mobile-accent-strong);
    }

    body.mobile-experience .mobile-hero-action:active {
        transform: scale(0.96);
        background: var(--mobile-surface-strong);
    }

    body.mobile-experience .mobile-hero-action.primary:active {
        transform: scale(0.96);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    body.mobile-experience .mobile-hero-action:active::after {
        animation: mobileShimmer 0.7s ease-out;
    }

    body.mobile-experience .mobile-visual-card,
    body.mobile-experience .mobile-profile-media,
    body.mobile-experience .mobile-feature-media,
    body.mobile-experience .mobile-product-media {
        margin-top: 24px;
        overflow: hidden;
        border-radius: 12px;
        background: var(--mobile-surface-soft);
        border: 1px solid var(--mobile-divider);
        box-shadow: var(--mobile-shadow-soft);
        position: relative;
    }

    body.mobile-experience .mobile-home-page .mobile-visual-card {
        margin-top: 0;
        border-radius: 16px;
    }

    body.mobile-experience .mobile-visual-image,
    body.mobile-experience .mobile-profile-media img,
    body.mobile-experience .mobile-feature-media img,
    body.mobile-experience .mobile-product-media img {
        display: block;
        width: 100%;
        height: auto;
    }

    body.mobile-experience .mobile-visual-caption {
        margin: 0;
        padding: 12px 4px 0;
        font-size: 12px;
        font-weight: 500;
        color: var(--mobile-text-muted);
        text-align: center;
        letter-spacing: 0.02em;
    }

    body.mobile-experience .mobile-research-page .mobile-profile-media {
        margin-top: 18px;
        overflow: visible;
        border-radius: 0;
        background: transparent;
    }

    body.mobile-experience .mobile-research-page .mobile-profile-media img {
        border-radius: 0;
    }

    body.mobile-experience .mobile-stats-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch;
    }

    body.mobile-experience .mobile-stat-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 6px;
        min-height: 82px;
        padding: 16px 12px;
        border-radius: 12px;
        border: 1px solid var(--mobile-divider);
        background: var(--mobile-surface-soft);
        box-shadow: var(--mobile-shadow-soft);
        text-align: left;
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease;
    }

    body.mobile-experience .mobile-stat-card:active {
        transform: scale(0.96);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    }

    body.mobile-experience .mobile-stat-value {
        font-size: 26px;
        font-weight: 800;
        color: var(--mobile-text-main);
        line-height: 1;
        letter-spacing: -0.02em;
    }

    body.mobile-experience .mobile-stat-label {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        color: var(--mobile-text-muted);
    }

    body.mobile-experience .mobile-profile-card,
    body.mobile-experience .mobile-feature-card,
    body.mobile-experience .mobile-product-card,
    body.mobile-experience .mobile-about-card,
    body.mobile-experience .mobile-news-article {
        padding: 0 0 24px;
        border-bottom: 1px solid var(--mobile-divider);
        position: relative;
    }

    body.mobile-experience .mobile-profile-card::before,
    body.mobile-experience .mobile-feature-card::before,
    body.mobile-experience .mobile-product-card::before,
    body.mobile-experience .mobile-about-card::before,
    body.mobile-experience .mobile-news-article::before,
    body.mobile-experience .mobile-contact-card::before,
    body.mobile-experience .mobile-form-card::before {
        content: none;
        display: none;
    }

    body.mobile-experience .mobile-card-list > :last-child,
    body.mobile-experience .mobile-info-grid > :last-child,
    body.mobile-experience .mobile-research-page > :last-child,
    body.mobile-experience .mobile-contact-page > :last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    body.mobile-experience .mobile-research-metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch;
    }

    body.mobile-experience .mobile-research-metric {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 6px;
        min-height: 82px;
        padding: 16px 12px;
        border-radius: 12px;
        border: 1px solid var(--mobile-divider);
        background: var(--mobile-surface-soft);
        box-shadow: var(--mobile-shadow-soft);
        text-align: left;
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease;
    }

    body.mobile-experience .mobile-research-metric:active {
        transform: scale(0.96);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    }

    body.mobile-experience .mobile-research-metric-value {
        font-size: 26px;
        font-weight: 800;
        color: var(--mobile-text-main);
        line-height: 1;
        letter-spacing: -0.02em;
    }

    body.mobile-experience .mobile-research-metric-label {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        color: var(--mobile-text-muted);
    }

    body.mobile-experience .mobile-profile-title,
    body.mobile-experience .mobile-feature-title,
    body.mobile-experience .mobile-product-title,
    body.mobile-experience .mobile-about-title {
        margin: 0 0 6px;
        font-size: 24px;
        font-weight: 800;
        line-height: 1.25;
        color: var(--mobile-text-main);
        letter-spacing: -0.02em;
    }

    body.mobile-experience .mobile-profile-subtitle,
    body.mobile-experience .mobile-feature-description,
    body.mobile-experience .mobile-product-description,
    body.mobile-experience .mobile-about-description {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
        color: var(--mobile-text-body);
        letter-spacing: 0.01em;
    }

    body.mobile-experience .mobile-info-grid,
    body.mobile-experience .mobile-card-list {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-block-gap);
    }

    body.mobile-experience .mobile-info-card {
        padding: 0;
        border-bottom: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        position: relative;
    }

    body.mobile-experience .mobile-info-card-header {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }

    body.mobile-experience .mobile-info-title-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        min-width: 0;
    }

    body.mobile-experience .mobile-info-icon,
    body.mobile-experience .mobile-about-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 6px;
        border: 1px solid var(--mobile-divider-strong);
        background: var(--mobile-surface-strong);
        color: var(--mobile-text-main);
        flex-shrink: 0;
        margin-top: 2px;
        box-shadow: none;
    }

    body.mobile-experience .mobile-info-icon svg,
    body.mobile-experience .mobile-about-icon svg {
        width: 20px;
        height: 20px;
    }

    body.mobile-experience .mobile-info-title {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
        color: var(--mobile-text-main);
    }

    body.mobile-experience .mobile-info-body {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
        color: var(--mobile-text-body);
    }

    body.mobile-experience .mobile-tag-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    body.mobile-experience .mobile-advantages-page .mobile-card-list,
    body.mobile-experience .mobile-products-page .mobile-card-list {
        gap: var(--mobile-block-gap);
    }

    body.mobile-experience .mobile-feature-card-row,
    body.mobile-experience .mobile-product-card-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0;
        border-bottom: none;
    }

    body.mobile-experience .mobile-feature-card-row .mobile-feature-media,
    body.mobile-experience .mobile-product-card-row .mobile-product-media {
        margin-top: 0;
        width: 100%;
        height: auto;
        min-height: 0;
        border-radius: 0;
        align-self: stretch;
        background: transparent;
    }

    body.mobile-experience .mobile-feature-card-row .mobile-feature-media img,
    body.mobile-experience .mobile-product-card-row .mobile-product-media img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    body.mobile-experience .mobile-feature-content,
    body.mobile-experience .mobile-product-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        min-width: 0;
        align-items: flex-start;
    }

    body.mobile-experience .mobile-feature-card-row .mobile-feature-title,
    body.mobile-experience .mobile-product-card-row .mobile-product-title {
        margin-bottom: 0;
        font-size: 20px;
        line-height: 1.34;
    }

    body.mobile-experience .mobile-feature-card-row .mobile-feature-description,
    body.mobile-experience .mobile-product-card-row .mobile-product-description {
        font-size: 14px;
        line-height: 1.82;
    }

    body.mobile-experience .mobile-tag-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 28px;
        padding: 0 12px;
        border-radius: 6px;
        border: 1px solid var(--mobile-divider-strong);
        background: var(--mobile-surface-soft);
        color: var(--mobile-text-main);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    body.mobile-experience .contact-layout-new {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--mobile-block-gap) !important;
    }

    body.mobile-experience .mobile-contact-card,
    body.mobile-experience .mobile-form-card {
        padding: 0 !important;
        border-bottom: none;
        position: relative;
    }

    body.mobile-experience .contact-info-panel-new h3,
    body.mobile-experience .contact-form-panel-new h3 {
        margin: 0 0 18px;
        font-size: 22px;
        font-weight: 800;
        color: var(--mobile-text-main);
        letter-spacing: -0.02em;
    }

    body.mobile-experience .contact-info-row-new {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    body.mobile-experience .contact-item-new {
        position: relative;
        display: grid !important;
        grid-template-columns: 18px minmax(0, 1fr);
        align-items: start !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 14px 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid var(--mobile-divider) !important;
        box-sizing: border-box !important;
        transition: background-color 0.22s ease, transform 0.18s ease !important;
    }

    body.mobile-experience .contact-info-row-new > :last-child {
        border-bottom: none !important;
    }

    body.mobile-experience .contact-item-new svg {
        flex-shrink: 0;
        color: var(--mobile-text-main);
        margin-top: 3px;
        filter: none;
    }

    body.mobile-experience .contact-item-new span {
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: var(--mobile-text-body) !important;
    }

    body.mobile-experience .coop-form-new {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    body.mobile-experience .form-row-3-new {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 16px !important;
    }

    body.mobile-experience .form-group-new {
        display: flex !important;
        flex-direction: column !important;
        gap: 9px !important;
        min-width: 0 !important;
    }

    body.mobile-experience .form-group-new label {
        font-size: 13px !important;
        font-weight: 600 !important;
        color: var(--mobile-text-main) !important;
        letter-spacing: 0.02em;
    }

    body.mobile-experience .form-group-new input,
    body.mobile-experience .form-group-new textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid var(--mobile-divider-strong);
        border-radius: 8px;
        background: var(--mobile-surface-soft);
        color: var(--mobile-text-main);
        font-size: 15px !important;
        line-height: 1.55;
        font-family: var(--mobile-font-stack);
        box-sizing: border-box;
        caret-color: var(--mobile-accent);
        transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease !important;
    }

    body.mobile-experience .form-group-new input::placeholder,
    body.mobile-experience .form-group-new textarea::placeholder {
        color: var(--mobile-text-muted);
    }

    body.mobile-experience .form-group-new input:focus,
    body.mobile-experience .form-group-new textarea:focus {
        outline: none;
        border-color: var(--mobile-text-main);
        box-shadow: 0 0 0 1px var(--mobile-text-main);
        background: #ffffff;
    }

    body.mobile-experience .form-group-new textarea {
        min-height: 132px;
        resize: vertical;
    }

    body.mobile-experience .option-group-new {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    body.mobile-experience .option-item-new {
        position: relative;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 48px;
        padding: 11px 12px !important;
        border-radius: 8px !important;
        background: var(--mobile-surface-soft) !important;
        border: 1px solid var(--mobile-divider-strong) !important;
        box-sizing: border-box !important;
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease !important;
        overflow: hidden;
    }

    body.mobile-experience .option-item-new:active {
        transform: scale(0.96);
    }

    body.mobile-experience .option-item-new input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    body.mobile-experience .option-item-new span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 1.45 !important;
        color: var(--mobile-text-body) !important;
        transition: color 0.22s ease !important;
        z-index: 1;
    }

    body.mobile-experience .option-item-new:has(input:checked) {
        border-color: var(--mobile-text-main) !important;
        background: var(--mobile-text-main) !important;
        transform: scale(0.98);
    }

    body.mobile-experience .option-item-new:has(input:checked) span {
        color: #ffffff !important;
    }

    body.mobile-experience .option-item-new:has(input:focus-visible) {
        outline: 2px solid var(--mobile-text-main);
        outline-offset: 2px;
    }

    body.mobile-experience .btn-submit-new {
        min-height: 48px;
        border: none;
        border-radius: 8px;
        background: var(--mobile-accent-strong);
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.02em;
        position: relative;
        overflow: hidden;
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, background 0.22s ease;
    }

    body.mobile-experience .btn-submit-new:focus-visible {
        outline: none;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1), 0 0 0 2px var(--mobile-surface-strong), 0 0 0 4px var(--mobile-accent-strong);
    }

    body.mobile-experience .btn-submit-new::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 42%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
        transform: translateX(-135%);
        pointer-events: none;
    }

    body.mobile-experience .btn-submit-new:active {
        transform: scale(0.96);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    body.mobile-experience .btn-submit-new:active::after {
        animation: mobileShimmer 0.75s ease-out;
    }

    body.mobile-experience #coop-message {
        min-height: 20px;
        font-size: 13px;
    }

    body.mobile-experience .mobile-news-feed {
        padding: 0;
        border-radius: 0;
        overflow: hidden;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    body.mobile-experience .news-grid-new.news-grid-feed {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    body.mobile-experience .news-card-new.news-card-mobile-list {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 104px !important;
        grid-template-areas:
            "content media"
            "link media" !important;
        align-items: start !important;
        gap: 0 16px !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 18px 0 !important;
        border: none !important;
        border-bottom: 1px solid var(--mobile-divider) !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        position: relative;
        transition: background-color 0.22s ease, transform 0.18s ease !important;
    }

    body.mobile-experience .news-card-new.news-card-mobile-list:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    body.mobile-experience .news-card-new.news-card-mobile-list:active {
        transform: scale(0.98) !important;
        background: var(--mobile-surface-soft) !important;
        border-radius: 8px !important;
    }

    body.mobile-experience .news-card-new.news-card-mobile-list:last-child {
        border-bottom: none !important;
    }

    body.mobile-experience .news-card-mobile-list .news-card-content {
        grid-area: content;
        display: flex;
        flex-direction: column;
        min-height: 0 !important;
        padding: 0 !important;
        gap: 8px !important;
        align-items: flex-start;
    }

    body.mobile-experience .news-card-mobile-list .news-media-new {
        grid-area: media;
        width: 104px !important;
        height: 104px !important;
        margin: 0 !important;
        border-radius: 8px !important;
        overflow: hidden;
        border: 1px solid var(--mobile-divider-strong);
        background: var(--mobile-surface-soft);
    }

    body.mobile-experience .news-card-mobile-list .news-media-new img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
    }

    body.mobile-experience .news-card-mobile-list .news-meta-new {
        font-size: 12px !important;
        line-height: 1.5 !important;
        letter-spacing: 0.02em;
        color: var(--mobile-text-muted) !important;
    }

    body.mobile-experience .news-card-mobile-list .news-title-new {
        margin: 0 !important;
        min-height: 0 !important;
        font-size: 17px !important;
        line-height: 1.4 !important;
        font-weight: 700 !important;
        color: var(--mobile-text-main) !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    body.mobile-experience .news-card-mobile-list .news-summary-new {
        margin: 0 !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: var(--mobile-text-body) !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    body.mobile-experience .news-card-mobile-list .news-detail-link {
        grid-area: link;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin: 10px 0 0 !important;
        font-size: 13px !important;
        font-weight: 600;
        color: var(--mobile-text-main) !important;
        line-height: 1.2;
    }

    body.mobile-experience .news-card-mobile-list .news-detail-link::after {
        content: '->';
        font-size: 11px;
        opacity: 0.72;
    }

    body.mobile-experience .news-page-pagination {
        display: flex !important;
        flex-wrap: wrap !important;
        position: static !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        margin-top: 18px !important;
        padding: 14px 0 0 !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
        border-top: 1px solid var(--mobile-divider) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    body.mobile-experience .news-page-pagination .dashboard-pagination-info {
        width: 100%;
        font-size: 12px;
        line-height: 1.5;
        color: #6c83a9;
    }

    body.mobile-experience .dashboard-pagination-btn {
        min-width: 42px !important;
        min-height: 38px;
        border-radius: 0 !important;
        border-color: var(--mobile-divider-strong) !important;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.9)) !important;
        color: #27466f !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    body.mobile-experience .mobile-news-detail-page {
        gap: 18px;
    }

    body.mobile-experience .mobile-news-back {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        width: fit-content;
        margin: 0 !important;
        padding: 0 0 10px !important;
        border-radius: 0 !important;
        background: linear-gradient(90deg, rgba(31, 102, 229, 0.05), rgba(255, 255, 255, 0)) !important;
        box-shadow: none !important;
        color: #1d3560;
        border-bottom: 1px solid var(--mobile-divider);
        text-decoration: none;
        transition: transform 0.18s ease, color 0.22s ease !important;
    }

    body.mobile-experience .mobile-news-back:active {
        transform: translateY(1px);
        color: var(--mobile-accent);
    }

    body.mobile-experience .mobile-news-back:focus-visible {
        outline: none;
        color: var(--mobile-accent);
        border-bottom-color: rgba(31, 102, 229, 0.42);
        box-shadow: inset 0 -1px 0 rgba(31, 102, 229, 0.16);
    }

    body.mobile-experience .mobile-news-article {
        padding: 0 0 24px;
    }

    body.mobile-experience #public-news-title {
        margin: 0 0 12px !important;
        font-size: 28px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.02em;
        color: #1f355e !important;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    body.mobile-experience #public-news-meta {
        margin: 0 0 20px !important;
        display: flex;
        flex-wrap: wrap;
        gap: 8px !important;
    }

    body.mobile-experience #public-news-content {
        font-size: 15px;
        line-height: 1.92;
        color: #334b73;
    }

    body.mobile-experience #public-news-content img,
    body.mobile-experience #public-news-content video,
    body.mobile-experience #public-news-content iframe {
        max-width: 100%;
        height: auto;
        border-radius: 0;
    }

    body.mobile-experience .empty-state-card {
        border-radius: 0 !important;
    }

    body.mobile-experience {
        --mobile-bg-base: #f4f7fb;
        --mobile-bg-soft: #eef3f8;
        --mobile-panel: rgba(255, 255, 255, 0.74);
        --mobile-panel-strong: rgba(255, 255, 255, 0.9);
        --mobile-panel-border: rgba(15, 23, 42, 0.08);
        --mobile-panel-shadow: 0 20px 56px rgba(15, 23, 42, 0.09), 0 6px 22px rgba(15, 23, 42, 0.05);
        --mobile-panel-shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.07), 0 3px 12px rgba(15, 23, 42, 0.04);
        --mobile-highlight: #2563eb;
        --mobile-highlight-soft: rgba(37, 99, 235, 0.14);
        --mobile-title-gradient: linear-gradient(135deg, #0f172a 0%, #1d4ed8 60%, #4f46e5 100%);
        --mobile-surface-soft: rgba(248, 250, 252, 0.78);
        --mobile-surface-strong: rgba(241, 245, 249, 0.92);
        --mobile-divider: rgba(15, 23, 42, 0.08);
        --mobile-divider-strong: rgba(15, 23, 42, 0.12);
        background:
            radial-gradient(circle at 8% 0%, rgba(125, 211, 252, 0.2), transparent 24%),
            radial-gradient(circle at 92% 16%, rgba(129, 140, 248, 0.16), transparent 22%),
            linear-gradient(180deg, #f8fafd 0%, #edf2f7 100%) !important;
    }

    body.mobile-experience .mobile-site-shell {
        background: transparent;
        isolation: isolate;
    }

    body.mobile-experience .mobile-site-shell::before,
    body.mobile-experience .mobile-site-shell::after {
        filter: blur(48px);
        opacity: 0.9;
    }

    body.mobile-experience .mobile-site-shell::before {
        top: 82px;
        right: -26px;
        width: 148px;
        height: 148px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.02) 70%);
    }

    body.mobile-experience .mobile-site-shell::after {
        top: 38%;
        left: -36px;
        width: 172px;
        height: 172px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.02) 72%);
    }

    body.mobile-experience .mobile-site-header {
        min-height: 68px;
        padding: 12px var(--mobile-gutter);
        background: rgba(248, 250, 252, 0.68);
        backdrop-filter: blur(26px) saturate(160%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.65);
        box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
    }

    body.mobile-experience .mobile-brand {
        gap: 0;
        min-width: 0;
    }

    body.mobile-experience .mobile-brand-logo {
        width: 68px;
        height: 44px;
        filter: saturate(1.04) contrast(1.02);
    }

    body.mobile-experience .mobile-brand-copy {
        display: flex;
        flex-direction: column;
        gap: 3px;
        margin-left: -5px;
    }

    body.mobile-experience .mobile-brand-title {
        font-size: 12px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.01em;
        color: #0f172a;
    }

    body.mobile-experience .mobile-brand-subtitle {
        font-size: 10px;
        letter-spacing: 0.08em;
        color: rgba(71, 85, 105, 0.82);
        text-transform: uppercase;
    }

    body.mobile-experience .mobile-header-actions {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    body.mobile-experience .mobile-header-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
        color: #0f172a;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    body.mobile-experience .mobile-menu-button {
        width: 44px;
        height: 44px;
        gap: 4px;
        border-radius: 999px;
        border-color: rgba(15, 23, 42, 0.08);
        background: rgba(255, 255, 255, 0.72);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    body.mobile-experience .mobile-menu-line {
        width: 17px;
        background: linear-gradient(90deg, #0f172a, #2563eb);
    }

    body.mobile-experience .mobile-menu-button.active {
        background: rgba(241, 245, 249, 0.92);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    body.mobile-experience .mobile-drawer-menu {
        top: 76px;
        left: 16px;
        right: 16px;
        padding: 12px;
        border-radius: 28px;
        background: rgba(248, 250, 252, 0.78);
        border: 1px solid rgba(255, 255, 255, 0.72);
        box-shadow: 0 26px 56px rgba(15, 23, 42, 0.16);
    }

    body.mobile-experience .mobile-drawer-menu::before {
        inset: 0;
        width: auto;
        height: auto;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
            linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0));
        border-radius: inherit;
        opacity: 0.9;
        pointer-events: none;
    }

    body.mobile-experience .mobile-drawer-head {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 10px 12px 14px;
        margin-bottom: 4px;
    }

    body.mobile-experience .mobile-drawer-head::after {
        content: '';
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 0;
        height: 1px;
        background: linear-gradient(90deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0));
    }

    body.mobile-experience .mobile-drawer-eyebrow {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(71, 85, 105, 0.78);
    }

    body.mobile-experience .mobile-drawer-title {
        font-size: 24px;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #0f172a;
    }

    body.mobile-experience .mobile-drawer-description {
        margin: 0;
        font-size: 13px;
        line-height: 1.6;
        color: #64748b;
    }

    body.mobile-experience .mobile-drawer-link {
        min-height: 54px;
        margin-top: 6px;
        padding: 0 16px;
        border-radius: 18px;
        border-left: none;
        transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
    }

    body.mobile-experience .mobile-drawer-link::after {
        display: none;
    }

    body.mobile-experience .mobile-drawer-link.active {
        padding-left: 16px;
        color: #0f172a;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 10px 24px rgba(15, 23, 42, 0.06);
    }

    body.mobile-experience .mobile-drawer-link:active {
        padding-left: 16px;
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.64);
    }

    body.mobile-experience .mobile-drawer-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.76);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    body.mobile-experience .mobile-page-shell {
        padding: 44px 0 56px;
    }

    body[data-page="home"].mobile-experience .mobile-page-shell {
        padding-top: 0;
    }

    body.mobile-experience .mobile-page-section {
        gap: 28px;
        padding: 36px var(--mobile-gutter) 40px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
        overflow: clip;
    }

    body.mobile-experience .mobile-page-section::before {
        content: none;
        display: none;
    }

    body.mobile-experience .mobile-page-section::after {
        content: '';
        position: absolute;
        inset: 18px 14px;
        border-radius: 32px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
        opacity: 0.68;
        pointer-events: none;
        z-index: -1;
    }

    body.mobile-experience .mobile-page-section:nth-child(even) {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(244, 247, 251, 0.82));
    }

    body[data-page="home"].mobile-experience .mobile-page-section:first-child {
        padding-top: 96px;
    }

    body.mobile-experience .mobile-section-heading {
        gap: 14px;
        margin-bottom: 2px;
        max-width: 34em;
    }

    body.mobile-experience .mobile-section-title {
        font-size: 30px;
        letter-spacing: -0.04em;
    }

    body.mobile-experience .mobile-section-description {
        font-size: 15px;
        line-height: 1.72;
        color: #5b677a;
    }

    body.mobile-experience .mobile-home-layout {
        gap: 24px;
    }

    body.mobile-experience .mobile-home-stage {
        position: relative;
        display: grid;
        gap: 18px;
    }

    body.mobile-experience .mobile-home-copy {
        position: relative;
        gap: 0;
        padding: 40px 28px 28px;
        border-radius: 34px;
        background:
            radial-gradient(circle at top right, rgba(96, 165, 250, 0.2), transparent 36%),
            radial-gradient(circle at bottom left, rgba(129, 140, 248, 0.14), transparent 32%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.9));
        border: 1px solid rgba(191, 219, 254, 0.72);
        box-shadow: 0 24px 56px rgba(37, 99, 235, 0.14), 0 10px 26px rgba(15, 23, 42, 0.06);
        isolation: isolate;
        overflow: hidden;
    }

    body.mobile-experience .mobile-home-copy::before,
    body.mobile-experience .mobile-home-copy::after {
        content: '';
        position: absolute;
        border-radius: 999px;
        pointer-events: none;
        z-index: -1;
    }

    body.mobile-experience .mobile-home-copy::before {
        width: 150px;
        height: 150px;
        top: -56px;
        right: -30px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0));
    }

    body.mobile-experience .mobile-home-copy::after {
        width: 132px;
        height: 132px;
        bottom: -54px;
        left: -36px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.14), rgba(99, 102, 241, 0));
    }

    body.mobile-experience .mobile-hero-tag {
        margin-bottom: 18px;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid rgba(96, 165, 250, 0.28);
        background: rgba(239, 246, 255, 0.86);
        color: #1d4ed8;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    }

    body.mobile-experience .mobile-hero-overline {
        margin: 0 0 14px;
        font-size: 11px;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: #64748b;
    }

    body.mobile-experience .mobile-hero-title {
        margin-bottom: 20px;
        font-size: 48px;
        line-height: 1;
        letter-spacing: -0.065em;
        color: #0f172a;
        text-shadow: 0 10px 24px rgba(59, 130, 246, 0.08);
    }

    body.mobile-experience .mobile-hero-title span,
    body.mobile-experience .mobile-hero-title strong {
        background: var(--mobile-title-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    body.mobile-experience .mobile-hero-description {
        font-size: 15px;
        line-height: 1.9;
        color: #334155;
        max-width: 31em;
    }

    body.mobile-experience .mobile-hero-description strong.text-blue {
        color: #1f56c2;
        font-weight: 800;
    }

    body.mobile-experience .mobile-hero-points,
    body.mobile-experience .mobile-profile-pills,
    body.mobile-experience .mobile-tag-list {
        gap: 10px;
        margin-top: 18px;
    }

    body.mobile-experience .mobile-hero-point,
    body.mobile-experience .mobile-profile-pill,
    body.mobile-experience .mobile-card-kicker,
    body.mobile-experience .mobile-tag-chip {
        min-height: 30px;
        padding: 0 13px;
        border-radius: 999px;
        border-color: rgba(96, 165, 250, 0.18);
        background: rgba(255, 255, 255, 0.74);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 6px 16px rgba(148, 163, 184, 0.08);
        color: #334155;
        font-weight: 600;
    }

    body.mobile-experience .mobile-hero-metric-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin-top: 16px;
        padding: 12px;
        border-radius: 24px;
        background: #f8fafc;
        border: 1px solid rgba(226, 232, 240, 0.9);
    }

    body.mobile-experience .mobile-hero-metric-item {
        display: grid;
        gap: 4px;
        align-content: start;
        min-height: 72px;
        padding: 10px 8px;
        border-radius: 18px;
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: none;
        text-align: center;
    }

    body.mobile-experience .mobile-hero-metric-value {
        font-size: 24px;
        line-height: 1;
        letter-spacing: -0.04em;
        color: #0f172a;
    }

    body.mobile-experience .mobile-hero-metric-label {
        font-size: 11px;
        line-height: 1.45;
        color: #64748b;
    }

    body.mobile-experience .mobile-hero-actions {
        gap: 10px;
        margin-top: 22px;
    }

    body.mobile-experience .mobile-hero-action {
        min-height: 50px;
        padding: 0 18px;
        border: 1px solid rgba(148, 163, 184, 0.16);
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.88);
        color: #0f172a;
        font-weight: 700;
    }

    body.mobile-experience .mobile-hero-action.primary,
    body.mobile-experience .btn-submit-new {
        background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 42%, #4338ca 100%);
        border-color: transparent;
        box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
    }

    body.mobile-experience .mobile-hero-action:active {
        background: rgba(241, 245, 249, 0.94);
    }

    body.mobile-experience .mobile-hero-action.primary:active,
    body.mobile-experience .btn-submit-new:active {
        background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    }

    body.mobile-experience .mobile-hero-footnote {
        margin: 18px 0 0;
        font-size: 12px;
        line-height: 1.6;
        color: #64748b;
    }

    body.mobile-experience .mobile-home-values {
        display: grid;
        gap: 16px;
    }

    body.mobile-experience .mobile-home-value-card {
        position: relative;
        display: grid;
        align-content: end;
        gap: 12px;
        min-height: 196px;
        padding: 24px 20px 20px;
        border-radius: 28px;
        border: 1px solid rgba(191, 219, 254, 0.56);
        background-color: #eaf1fb;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        box-shadow: 0 18px 38px rgba(37, 99, 235, 0.12), 0 8px 20px rgba(15, 23, 42, 0.08);
        overflow: hidden;
        isolation: isolate;
    }

    body.mobile-experience .mobile-home-value-card::before,
    body.mobile-experience .mobile-home-value-card::after {
        content: '';
        position: absolute;
        pointer-events: none;
        inset: 0;
    }

    body.mobile-experience .mobile-home-value-card::before {
        z-index: -2;
        background:
            linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.14) 42%, rgba(15, 23, 42, 0.56) 100%);
    }

    body.mobile-experience .mobile-home-value-card::after {
        z-index: -1;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 32%),
            linear-gradient(90deg, rgba(59, 130, 246, 0.92), rgba(129, 140, 248, 0.92)) top/100% 4px no-repeat;
    }

    body.mobile-experience .mobile-home-value-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    body.mobile-experience .mobile-home-value-card .mobile-card-kicker {
        margin: 0;
        padding: 0 12px;
        min-height: 28px;
        color: #1d4ed8;
        background: rgba(239, 246, 255, 0.92);
        border-color: rgba(147, 197, 253, 0.36);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    body.mobile-experience .mobile-home-value-accent {
        display: none;
    }

    body.mobile-experience .mobile-home-value-title {
        margin: 0;
        font-size: 28px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #f8fafc;
        text-shadow: 0 10px 22px rgba(15, 23, 42, 0.34);
    }

    body.mobile-experience .mobile-home-value-description {
        margin: 0;
        font-size: 15px;
        line-height: 1.75;
        color: rgba(241, 245, 249, 0.96);
        max-width: 19em;
        text-shadow: 0 8px 18px rgba(15, 23, 42, 0.24);
    }

    body.mobile-experience .mobile-home-value-card.is-mission {
        background-image:
            url('/assets/official/mobile-mission-bg.jpg');
        border-color: rgba(96, 165, 250, 0.4);
    }

    body.mobile-experience .mobile-home-value-card.is-vision {
        background-image:
            url('/assets/official/mobile-vision-bg.jpg');
        border-color: rgba(196, 181, 253, 0.42);
    }

    body.mobile-experience .mobile-home-value-card.is-vision::before {
        background:
            linear-gradient(180deg, rgba(30, 41, 59, 0.02) 0%, rgba(49, 46, 129, 0.18) 42%, rgba(59, 7, 100, 0.58) 100%);
    }

    body.mobile-experience .mobile-home-value-card.is-vision::after {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
            radial-gradient(circle at top right, rgba(216, 180, 254, 0.26), rgba(255, 255, 255, 0) 34%),
            linear-gradient(90deg, rgba(99, 102, 241, 0.92), rgba(168, 85, 247, 0.92)) top/100% 4px no-repeat;
    }

    body.mobile-experience .mobile-home-visual-stage {
        display: grid;
        gap: 0;
    }

    body.mobile-experience .mobile-visual-card,
    body.mobile-experience .mobile-profile-media,
    body.mobile-experience .mobile-feature-media,
    body.mobile-experience .mobile-product-media {
        margin-top: 0;
        border-radius: 30px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 252, 0.72));
        border: 1px solid rgba(255, 255, 255, 0.88);
        box-shadow: var(--mobile-panel-shadow);
        backdrop-filter: blur(24px);
    }

    body.mobile-experience .mobile-visual-card::after,
    body.mobile-experience .mobile-feature-media::after,
    body.mobile-experience .mobile-product-media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
        pointer-events: none;
    }

    body.mobile-experience .mobile-home-page .mobile-visual-card {
        position: relative;
        padding: 12px;
        border-radius: 34px;
        background:
            radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 34%),
            radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.16), transparent 28%),
            linear-gradient(180deg, rgba(239, 246, 255, 0.96), rgba(238, 242, 255, 0.82));
        border-color: rgba(191, 219, 254, 0.82);
        box-shadow: 0 22px 48px rgba(37, 99, 235, 0.14), 0 10px 24px rgba(79, 70, 229, 0.1);
    }

    body.mobile-experience .mobile-home-page .mobile-visual-card::before {
        content: '';
        position: absolute;
        inset: 12px 12px 38px;
        border-radius: 22px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(59, 130, 246, 0.04)),
            linear-gradient(135deg, rgba(96, 165, 250, 0.06), rgba(129, 140, 248, 0.04));
        pointer-events: none;
        z-index: 1;
    }

    body.mobile-experience .mobile-home-page .mobile-visual-card::after {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
            radial-gradient(circle at top right, rgba(191, 219, 254, 0.12), rgba(255, 255, 255, 0) 34%);
        z-index: 2;
    }

    body.mobile-experience .mobile-visual-image,
    body.mobile-experience .mobile-profile-media img,
    body.mobile-experience .mobile-feature-media img,
    body.mobile-experience .mobile-product-media img {
        border-radius: 22px;
    }

    body.mobile-experience .mobile-home-page .mobile-visual-image {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        background: #0b1f5d;
        filter: saturate(1.12) hue-rotate(6deg) contrast(1.02) brightness(1.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
    }

    body.mobile-experience .mobile-visual-caption {
        padding: 16px 12px 4px;
        color: #475569;
        font-size: 13px;
        letter-spacing: 0.01em;
    }

    body.mobile-experience .mobile-stats-grid,
    body.mobile-experience .mobile-research-metrics {
        gap: 14px;
    }

    body.mobile-experience .mobile-stat-card,
    body.mobile-experience .mobile-research-metric {
        min-height: 96px;
        padding: 18px 14px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.82);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.74));
        box-shadow: var(--mobile-panel-shadow-soft);
        backdrop-filter: blur(20px);
    }

    body.mobile-experience .mobile-about-card {
        padding: 18px 20px 20px !important;
        display: grid;
        gap: 12px;
    }

    body.mobile-experience .mobile-feature-card,
    body.mobile-experience .mobile-product-card {
        padding: 18px !important;
    }

    body.mobile-experience .mobile-stat-value,
    body.mobile-experience .mobile-research-metric-value {
        font-size: 28px;
    }

    body.mobile-experience .mobile-stat-label,
    body.mobile-experience .mobile-research-metric-label {
        color: #64748b;
    }

    body.mobile-experience .mobile-info-grid,
    body.mobile-experience .mobile-card-list {
        gap: 20px;
    }

    body.mobile-experience .mobile-profile-card,
    body.mobile-experience .mobile-feature-card,
    body.mobile-experience .mobile-product-card,
    body.mobile-experience .mobile-about-card,
    body.mobile-experience .mobile-contact-card,
    body.mobile-experience .mobile-form-card,
    body.mobile-experience .mobile-news-article,
    body.mobile-experience .mobile-info-card {
        padding: 24px !important;
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.74));
        border: 1px solid rgba(255, 255, 255, 0.84);
        box-shadow: var(--mobile-panel-shadow-soft);
        backdrop-filter: blur(20px);
    }

    body.mobile-experience .mobile-profile-card::before,
    body.mobile-experience .mobile-feature-card::before,
    body.mobile-experience .mobile-product-card::before,
    body.mobile-experience .mobile-about-card::before,
    body.mobile-experience .mobile-news-article::before,
    body.mobile-experience .mobile-contact-card::before,
    body.mobile-experience .mobile-form-card::before {
        content: none;
        display: none;
    }

    body.mobile-experience .mobile-profile-title,
    body.mobile-experience .mobile-feature-title,
    body.mobile-experience .mobile-product-title,
    body.mobile-experience .mobile-about-title {
        margin-bottom: 8px;
        font-size: 22px;
    }

    body.mobile-experience .mobile-about-header {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    body.mobile-experience .mobile-about-header .mobile-about-title {
        margin: 0;
    }

    body.mobile-experience .mobile-profile-intro {
        display: grid;
        gap: 12px;
        margin-bottom: 18px;
    }

    body.mobile-experience .mobile-profile-eyebrow {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        min-height: 28px;
        padding: 0 12px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(129, 140, 248, 0.12));
        border: 1px solid rgba(147, 197, 253, 0.34);
        color: #1d4ed8;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    body.mobile-experience .mobile-profile-card .mobile-profile-title {
        margin: 0;
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.03em;
    }

    body.mobile-experience .mobile-profile-credentials {
        display: grid;
        gap: 10px;
    }

    body.mobile-experience .mobile-profile-credential {
        margin: 0;
        padding: 10px 14px;
        border-radius: 18px;
        border: 1px solid rgba(226, 232, 240, 0.92);
        background: rgba(255, 255, 255, 0.86);
        color: #475569;
        font-size: 14px;
        line-height: 1.65;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    body.mobile-experience .mobile-info-card-header {
        gap: 14px;
        margin-bottom: 14px;
    }

    body.mobile-experience .mobile-info-icon,
    body.mobile-experience .mobile-about-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        border: 1px solid rgba(148, 163, 184, 0.18);
        background: rgba(255, 255, 255, 0.76);
        color: #1d4ed8;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    body.mobile-experience .mobile-about-icon {
        margin-top: 0;
    }

    body.mobile-experience .mobile-info-icon svg,
    body.mobile-experience .mobile-about-icon svg {
        width: 22px;
        height: 22px;
    }

    body.mobile-experience .mobile-info-title {
        font-size: 18px;
    }

    body.mobile-experience .mobile-feature-card-row,
    body.mobile-experience .mobile-product-card-row {
        gap: 18px;
    }

    body.mobile-experience .mobile-research-page .mobile-profile-card {
        padding: 22px !important;
    }

    body.mobile-experience .mobile-research-page .mobile-profile-media {
        margin-top: 0;
        border-radius: 24px;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 246, 255, 0.76));
        border: 1px solid rgba(219, 234, 254, 0.82);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    body.mobile-experience .mobile-research-page .mobile-profile-media img {
        border-radius: 24px;
        aspect-ratio: 1 / 1.18;
        object-fit: cover;
        object-position: center top;
    }

    body.mobile-experience .mobile-feature-card-row .mobile-feature-media,
    body.mobile-experience .mobile-product-card-row .mobile-product-media {
        padding: 6px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.66));
        border: 1px solid rgba(226, 232, 240, 0.72);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    body.mobile-experience .mobile-feature-card-row .mobile-feature-media img,
    body.mobile-experience .mobile-product-card-row .mobile-product-media img {
        border-radius: 16px;
    }

    body.mobile-experience .mobile-feature-card-row .mobile-feature-title,
    body.mobile-experience .mobile-product-card-row .mobile-product-title {
        font-size: 21px;
    }

    body.mobile-experience .mobile-feature-card-row .mobile-feature-description,
    body.mobile-experience .mobile-product-card-row .mobile-product-description,
    body.mobile-experience .mobile-info-body,
    body.mobile-experience .mobile-about-description,
    body.mobile-experience .contact-item-new span {
        color: #475569 !important;
    }

    body.mobile-experience .contact-layout-new {
        gap: 20px !important;
    }

    body.mobile-experience .contact-info-panel-new h3,
    body.mobile-experience .contact-form-panel-new h3 {
        margin-bottom: 20px;
        font-size: 23px;
    }

    body.mobile-experience .contact-item-new {
        padding: 16px 0 !important;
    }

    body.mobile-experience .contact-item-new svg {
        color: #1d4ed8;
    }

    body.mobile-experience .form-group-new label {
        color: #1e293b !important;
    }

    body.mobile-experience .form-group-new input,
    body.mobile-experience .form-group-new textarea {
        padding: 15px 16px;
        border-color: rgba(148, 163, 184, 0.18);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    body.mobile-experience .form-group-new input:focus,
    body.mobile-experience .form-group-new textarea:focus {
        border-color: rgba(37, 99, 235, 0.36);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    body.mobile-experience .option-group-new {
        gap: 10px !important;
    }

    body.mobile-experience .option-item-new {
        min-height: 50px;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.74) !important;
        border-color: rgba(148, 163, 184, 0.18) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    body.mobile-experience .option-item-new span {
        color: #475569 !important;
        font-weight: 600 !important;
    }

    body.mobile-experience .option-item-new:has(input:checked) {
        background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%) !important;
        box-shadow: 0 14px 28px rgba(29, 78, 216, 0.18);
    }

    body.mobile-experience .btn-submit-new {
        min-height: 52px;
        border-radius: 18px;
        font-weight: 700;
        letter-spacing: 0.03em;
    }

    body.mobile-experience .mobile-news-feed {
        overflow: visible;
    }

    body.mobile-experience .news-grid-new.news-grid-feed {
        gap: 14px !important;
    }

    body.mobile-experience .news-card-new.news-card-mobile-list {
        grid-template-areas: "content media" !important;
        grid-template-columns: minmax(0, 1fr) 112px !important;
        gap: 0 18px !important;
        padding: 18px !important;
        border: 1px solid rgba(255, 255, 255, 0.82) !important;
        border-radius: 28px !important;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.74)) !important;
        box-shadow: var(--mobile-panel-shadow-soft) !important;
        backdrop-filter: blur(18px);
        overflow: hidden;
    }

    body.mobile-experience .news-card-mobile-list .news-card-content {
        justify-content: center !important;
        gap: 8px !important;
    }

    body.mobile-experience .news-card-new.news-card-mobile-list:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.82) !important;
    }

    body.mobile-experience .news-card-new.news-card-mobile-list:active {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.88)) !important;
        border-radius: 28px !important;
    }

    body.mobile-experience .news-card-mobile-list .news-media-new {
        width: 112px !important;
        height: 112px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.82);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    body.mobile-experience .news-card-mobile-list .news-title-new {
        order: 1;
    }

    body.mobile-experience .news-card-mobile-list .news-meta-new {
        display: block !important;
        order: 2;
        margin-top: 2px !important;
    }

    body.mobile-experience .news-card-mobile-list .news-title-new {
        display: block !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        font-size: 18px !important;
        line-height: 1.45 !important;
        letter-spacing: -0.02em;
        white-space: normal !important;
        overflow: visible !important;
        -webkit-line-clamp: unset !important;
    }

    body.mobile-experience .news-card-mobile-list .news-summary-new,
    body.mobile-experience .news-card-mobile-list .news-detail-link {
        display: none !important;
    }

    body.mobile-experience .news-card-mobile-list .news-summary-new {
        color: #475569 !important;
    }

    body.mobile-experience .news-card-mobile-list .news-detail-link {
        margin-top: 12px !important;
        color: #1d4ed8 !important;
    }

    body.mobile-experience .news-page-pagination {
        margin-top: 22px !important;
        padding-top: 18px !important;
    }

    body[data-page="home"].mobile-experience .mobile-page-shell {
        background:
            radial-gradient(circle at top center, rgba(96, 165, 250, 0.1), transparent 20%),
            linear-gradient(180deg, #f8fbff 0%, #eef4ff 36%, #f8fbff 100%);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-research {
        --home-section-accent: rgba(96, 165, 250, 0.16);
        --home-section-accent-strong: rgba(125, 211, 252, 0.18);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-advantages {
        --home-section-accent: rgba(59, 130, 246, 0.14);
        --home-section-accent-strong: rgba(129, 140, 248, 0.16);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-products {
        --home-section-accent: rgba(99, 102, 241, 0.14);
        --home-section-accent-strong: rgba(168, 85, 247, 0.16);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-news {
        --home-section-accent: rgba(56, 189, 248, 0.14);
        --home-section-accent-strong: rgba(96, 165, 250, 0.18);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-about {
        --home-section-accent: rgba(129, 140, 248, 0.13);
        --home-section-accent-strong: rgba(167, 139, 250, 0.16);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-contact {
        --home-section-accent: rgba(14, 165, 233, 0.14);
        --home-section-accent-strong: rgba(59, 130, 246, 0.16);
    }

    body[data-page="home"].mobile-experience .mobile-page-shell > .mobile-page-section:not(.mobile-home-page) {
        gap: 22px;
        padding-top: 30px;
        padding-bottom: 36px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
            radial-gradient(circle at top right, var(--home-section-accent-strong, rgba(129, 140, 248, 0.16)), transparent 34%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 247, 255, 0.5));
        border-top: 1px solid rgba(191, 219, 254, 0.22);
    }

    body[data-page="home"].mobile-experience .mobile-page-shell > .mobile-page-section:not(.mobile-home-page)::after {
        inset: 14px 12px;
        border-radius: 30px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
            radial-gradient(circle at top right, var(--home-section-accent, rgba(96, 165, 250, 0.12)), rgba(255, 255, 255, 0) 42%);
        opacity: 0.92;
    }

    body[data-page="home"].mobile-experience .mobile-page-shell > .mobile-page-section:not(.mobile-home-page) .mobile-section-heading {
        gap: 10px;
        margin-bottom: 2px;
    }

    body[data-page="home"].mobile-experience .mobile-page-shell > .mobile-page-section:not(.mobile-home-page) .mobile-section-heading::before {
        content: '';
        width: 54px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, #3b82f6, #818cf8);
        box-shadow: 0 6px 18px rgba(59, 130, 246, 0.22);
    }

    body[data-page="home"].mobile-experience .mobile-page-shell > .mobile-page-section:not(.mobile-home-page) .mobile-section-title {
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    body[data-page="home"].mobile-experience .mobile-page-shell > .mobile-page-section:not(.mobile-home-page) .mobile-section-description {
        max-width: 28em;
        color: #5b6b80;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-research .mobile-profile-card,
    body[data-page="home"].mobile-experience #mobile-home-section-research .mobile-info-card,
    body[data-page="home"].mobile-experience #mobile-home-section-advantages .mobile-feature-card-row,
    body[data-page="home"].mobile-experience #mobile-home-section-products .mobile-product-card-row,
    body[data-page="home"].mobile-experience #mobile-home-section-about .mobile-about-card,
    body[data-page="home"].mobile-experience #mobile-home-section-contact .mobile-contact-card,
    body[data-page="home"].mobile-experience #mobile-home-section-contact .mobile-form-card {
        position: relative;
        padding: 22px !important;
        border: 1px solid rgba(255, 255, 255, 0.82) !important;
        border-radius: 28px !important;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 255, 0.78)) !important;
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06), 0 8px 20px rgba(59, 130, 246, 0.08) !important;
        backdrop-filter: blur(20px);
        overflow: hidden;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-research .mobile-info-card::before,
    body[data-page="home"].mobile-experience #mobile-home-section-advantages .mobile-feature-card-row::before,
    body[data-page="home"].mobile-experience #mobile-home-section-products .mobile-product-card-row::before,
    body[data-page="home"].mobile-experience #mobile-home-section-about .mobile-about-card::before,
    body[data-page="home"].mobile-experience #mobile-home-section-contact .mobile-contact-card::before,
    body[data-page="home"].mobile-experience #mobile-home-section-contact .mobile-form-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top right, var(--home-section-accent, rgba(96, 165, 250, 0.12)), rgba(255, 255, 255, 0) 34%);
        pointer-events: none;
        display: block;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-research .mobile-research-metric {
        min-height: 96px;
        border-radius: 24px;
        border-color: rgba(191, 219, 254, 0.34);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.78));
        box-shadow: 0 14px 30px rgba(37, 99, 235, 0.08);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-research .mobile-profile-pills,
    body[data-page="home"].mobile-experience #mobile-home-section-products .mobile-tag-list {
        gap: 10px;
        margin-top: 16px;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-research .mobile-profile-pill,
    body[data-page="home"].mobile-experience #mobile-home-section-products .mobile-tag-chip {
        border-color: rgba(191, 219, 254, 0.26);
        background: rgba(255, 255, 255, 0.82);
        color: #334155;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 18px rgba(148, 163, 184, 0.08);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-advantages .mobile-feature-card-row,
    body[data-page="home"].mobile-experience #mobile-home-section-products .mobile-product-card-row {
        gap: 16px;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-advantages .mobile-feature-media,
    body[data-page="home"].mobile-experience #mobile-home-section-products .mobile-product-media {
        padding: 6px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(239, 246, 255, 0.64));
        border: 1px solid rgba(219, 234, 254, 0.72);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-about .mobile-about-card,
    body[data-page="home"].mobile-experience #mobile-home-section-research .mobile-info-card {
        gap: 14px;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-news .mobile-news-feed {
        gap: 14px;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-news .news-card-new.news-card-mobile-list {
        border-color: rgba(255, 255, 255, 0.88) !important;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.78)) !important;
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06), 0 8px 20px rgba(56, 189, 248, 0.08) !important;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-news .news-page-pagination {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        padding: 18px 0 0 !important;
        border-top: 1px solid rgba(191, 219, 254, 0.22);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-contact .contact-info-panel-new h3,
    body[data-page="home"].mobile-experience #mobile-home-section-contact .contact-form-panel-new h3 {
        margin-bottom: 16px;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-contact .contact-item-new {
        padding: 16px 0 !important;
        border-bottom: 1px solid rgba(191, 219, 254, 0.2);
    }

    body[data-page="home"].mobile-experience #mobile-home-section-contact .contact-item-new:last-child {
        border-bottom: none;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-contact .option-item-new {
        background: rgba(255, 255, 255, 0.8) !important;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-contact .option-item-new:has(input:checked) {
        background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%) !important;
        border-color: rgba(29, 78, 216, 0.28) !important;
        box-shadow: 0 14px 28px rgba(29, 78, 216, 0.18) !important;
    }

    body[data-page="home"].mobile-experience #mobile-home-section-contact .option-item-new:has(input:checked) span {
        color: #ffffff !important;
    }

    body.mobile-experience .dashboard-pagination-btn {
        min-width: 46px !important;
        min-height: 40px;
        border-radius: 16px !important;
        border-color: rgba(148, 163, 184, 0.18) !important;
        background: rgba(255, 255, 255, 0.82) !important;
        color: #0f172a !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 10px 24px rgba(15, 23, 42, 0.06);
    }

    body.mobile-experience .mobile-news-detail-page {
        gap: 20px;
    }

    body[data-page="news-detail"].mobile-experience .mobile-page-shell {
        padding-top: 44px;
    }

    body[data-page="news-detail"].mobile-experience .mobile-page-section {
        padding-top: 44px;
    }

    body[data-page="news-detail"].mobile-experience .mobile-page-section::before,
    body[data-page="news-detail"].mobile-experience .mobile-page-section::after {
        display: none;
    }

    body.mobile-experience .mobile-news-back {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        width: fit-content;
        margin: 0 0 4px !important;
        padding: 0 0 12px !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(148, 163, 184, 0.26) !important;
        box-shadow: none !important;
        color: #0f172a !important;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        text-decoration: none;
    }

    body.mobile-experience .mobile-news-back svg {
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
    }

    body.mobile-experience .mobile-news-back:active {
        color: #1d4ed8 !important;
        border-bottom-color: rgba(37, 99, 235, 0.32) !important;
    }

    body.mobile-experience .mobile-news-back:focus-visible {
        outline: none;
        color: #1d4ed8 !important;
        border-bottom-color: rgba(37, 99, 235, 0.42) !important;
    }

    body.mobile-experience .mobile-news-article {
        padding: 24px !important;
        border-radius: 30px;
    }

    body.mobile-experience .mobile-news-hero-panel {
        display: grid;
        gap: 14px;
        margin-bottom: 18px;
    }

    body.mobile-experience .mobile-news-eyebrow {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        min-height: 30px;
        padding: 0 13px;
        border-radius: 999px !important;
        background: rgba(37, 99, 235, 0.08);
        border: 1px solid rgba(37, 99, 235, 0.12);
        color: #1d4ed8;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    body.mobile-experience #public-news-title {
        margin: 0 !important;
        font-size: 32px !important;
        line-height: 1.14 !important;
        letter-spacing: -0.05em;
        color: #0f172a !important;
        text-shadow: none;
    }

    body.mobile-experience #public-news-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: none !important;
    }

    body.mobile-experience #public-news-meta > * {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.74);
        border: 1px solid rgba(148, 163, 184, 0.18);
        color: #64748b;
        font-size: 12px;
    }

    body.mobile-experience .mobile-news-summary {
        margin: 0;
        font-size: 16px;
        line-height: 1.84;
        color: #475569;
        max-width: 30em;
    }

    body.mobile-experience .mobile-news-cover {
        position: relative;
        display: grid;
        min-height: 236px;
        overflow: hidden;
        border-radius: 26px;
        background: linear-gradient(180deg, rgba(226, 232, 240, 0.72), rgba(241, 245, 249, 0.92));
        border: 1px solid rgba(255, 255, 255, 0.88);
        box-shadow: var(--mobile-panel-shadow-soft);
    }

    body.mobile-experience .mobile-news-cover img {
        width: 100%;
        height: 100%;
        min-height: 236px;
        object-fit: cover;
    }

    body.mobile-experience .mobile-news-cover::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0) 42%, rgba(15, 23, 42, 0.34) 100%);
        pointer-events: none;
    }

    body.mobile-experience .mobile-news-cover-caption {
        position: absolute;
        left: 16px;
        bottom: 14px;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        min-height: 28px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(16px);
        color: rgba(255, 255, 255, 0.94);
        font-size: 12px;
        font-weight: 600;
    }

    body.mobile-experience .mobile-news-body-panel {
        padding-top: 2px;
    }

    body.mobile-experience #public-news-content {
        color: #334155;
        font-size: 16px;
        line-height: 1.92;
    }

    body.mobile-experience #public-news-content.mobile-news-prose > *:first-child {
        margin-top: 0 !important;
    }

    body.mobile-experience #public-news-content.mobile-news-prose > *:last-child {
        margin-bottom: 0 !important;
    }

    body.mobile-experience #public-news-content.mobile-news-prose > * + * {
        margin-top: 1.05em;
    }

    body.mobile-experience #public-news-content.mobile-news-prose p {
        margin-bottom: 0;
    }

    body.mobile-experience #public-news-content .mobile-news-lead {
        position: relative;
        padding: 18px 18px 18px 22px;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(248, 250, 252, 0.88), rgba(255, 255, 255, 0.8));
        border: 1px solid rgba(226, 232, 240, 0.84);
        color: #334155;
        font-size: 17px;
        line-height: 1.9;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    body.mobile-experience #public-news-content .mobile-news-lead::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18px;
        bottom: 18px;
        width: 3px;
        border-radius: 999px;
        background: linear-gradient(180deg, #2563eb 0%, #4f46e5 100%);
    }

    body.mobile-experience #public-news-content .mobile-news-subheading {
        margin-top: 1.6em !important;
        margin-bottom: 0.55em !important;
        font-size: 24px;
        line-height: 1.28;
        letter-spacing: -0.04em;
        color: #0f172a;
    }

    body.mobile-experience #public-news-content .mobile-news-list {
        padding-left: 1.35em;
        color: #334155;
    }

    body.mobile-experience #public-news-content .mobile-news-list li + li {
        margin-top: 0.5em;
    }

    body.mobile-experience #public-news-content .mobile-news-quote {
        margin: 1.2em 0 0;
        padding: 18px 18px 18px 20px;
        border-radius: 22px;
        background: rgba(241, 245, 249, 0.86);
        border: 1px solid rgba(226, 232, 240, 0.9);
        color: #334155;
        font-size: 16px;
        line-height: 1.8;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    body.mobile-experience #public-news-content .mobile-news-media-frame {
        display: grid;
        gap: 10px;
        margin: 1.3em 0 0;
        padding: 10px;
        border-radius: 26px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.78));
        border: 1px solid rgba(255, 255, 255, 0.88);
        box-shadow: var(--mobile-panel-shadow-soft);
        overflow: hidden;
    }

    body.mobile-experience #public-news-content .mobile-news-media-embed {
        padding: 0;
        aspect-ratio: 16 / 10;
        background: #0f172a;
    }

    body.mobile-experience #public-news-content .mobile-news-media-embed video,
    body.mobile-experience #public-news-content .mobile-news-media-embed iframe {
        width: 100%;
        height: 100%;
        min-height: 220px;
        border: 0;
    }

    body.mobile-experience #public-news-content .mobile-news-media-caption {
        padding: 0 6px 2px;
        color: #64748b;
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
    }

    body.mobile-experience #public-news-content .mobile-news-table-wrap {
        margin-top: 1.1em;
        overflow-x: auto;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(226, 232, 240, 0.84);
        box-shadow: var(--mobile-panel-shadow-soft);
    }

    body.mobile-experience #public-news-content .mobile-news-table {
        width: 100%;
        min-width: 520px;
        border-collapse: collapse;
    }

    body.mobile-experience #public-news-content .mobile-news-table th,
    body.mobile-experience #public-news-content .mobile-news-table td {
        padding: 12px 14px;
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
        text-align: left;
    }

    body.mobile-experience #public-news-content img,
    body.mobile-experience #public-news-content video,
    body.mobile-experience #public-news-content iframe {
        width: 100%;
        border-radius: 18px;
        box-shadow: var(--mobile-panel-shadow-soft);
    }

    body.mobile-experience .mobile-reveal {
        opacity: 0;
        transform: translateY(22px);
        filter: blur(10px);
        transition:
            opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
            filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--mobile-reveal-delay, 0ms);
    }

    body.mobile-experience .mobile-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    @media (prefers-reduced-motion: reduce) {
        body.mobile-experience .mobile-site-shell::before,
        body.mobile-experience .mobile-site-shell::after,
        body.mobile-experience .mobile-stat-card,
        body.mobile-experience .mobile-research-metric,
        body.mobile-experience .mobile-hero-action::after,
        body.mobile-experience .btn-submit-new::after {
            animation: none !important;
        }

        body.mobile-experience .mobile-hero-action,
        body.mobile-experience .btn-submit-new,
        body.mobile-experience .mobile-menu-button,
        body.mobile-experience .option-item-new,
        body.mobile-experience .news-card-new.news-card-mobile-list,
        body.mobile-experience .mobile-reveal {
            transition: none !important;
        }

        body.mobile-experience .mobile-reveal {
            opacity: 1 !important;
            transform: none !important;
            filter: none !important;
        }
    }
}
