/* ============================================================
   湛江 AI·OPC 创业孵化空间 — H5 设计系统
   设计语言：Editorial Warm（暖纸白 × 墨色 × 朱橙点缀）
   字体：Noto Serif SC（标题） / Noto Sans SC（正文）
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
    /* 色彩（OKLCH，感知均匀） */
    --paper:        oklch(0.97 0.012 90);   /* 暖纸白背景 */
    --paper-card:   oklch(0.99 0.008 90);   /* 卡片底 */
    --ink:          oklch(0.25 0.02 90);    /* 主墨色 */
    --ink-2:        oklch(0.45 0.02 90);    /* 次级文字 */
    --ink-3:        oklch(0.58 0.015 90);   /* 辅助文字 */
    --ink-inverse:  oklch(0.97 0.012 90);   /* 深底上的主文字 */
    --accent:       oklch(0.55 0.18 45);    /* 朱橙品牌色 */
    --accent-deep:  oklch(0.45 0.17 45);    /* 深一档橙 */
    --accent-tint:  oklch(0.94 0.04 60);    /* 橙的浅底色 */
    --line:         oklch(0.90 0.012 90);   /* 分隔线 */
    --night:        oklch(0.22 0.02 260);   /* 深墨蓝（页脚/横幅） */

    /* 字阶（1.25 模数比） */
    --fs-xs:   0.75rem;   /* 12px */
    --fs-sm:   0.8125rem; /* 13px */
    --fs-base: 0.875rem;  /* 14px */
    --fs-md:   1rem;      /* 16px */
    --fs-lg:   1.25rem;   /* 20px */
    --fs-xl:   1.5625rem; /* 25px */
    --fs-2xl:  1.953rem;  /* 31px */

    /* 间距（8px 系统） */
    --sp-1: 0.5rem;   /* 8  */
    --sp-2: 1rem;     /* 16 */
    --sp-3: 1.5rem;   /* 24 */
    --sp-4: 2rem;     /* 32 */
    --sp-5: 3rem;     /* 48 */

    /* 圆角 */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;

    /* 阴影（暖调） */
    --shadow-sm: 0 1px 2px oklch(0.25 0.02 90 / 0.06);
    --shadow-md: 0 4px 16px oklch(0.25 0.02 90 / 0.08);
    --shadow-lg: 0 8px 32px oklch(0.25 0.02 90 / 0.12);

    /* 动效 */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 150ms;
    --dur-med:  300ms;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* 衬线标题字体类 */
.rc-serif,
.rc-banner-title,
.rc-section-title,
.rc-detail-title,
.rc-stat-num,
.rc-footer-brand {
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
}

.rc-page {
    max-width: 750px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--paper);
}

/* ---------- 顶部导航 ---------- */
.rc-header {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    height: 52px; padding: 0 var(--sp-2);
    background: oklch(0.99 0.008 90 / 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.rc-header-back {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; line-height: 1; color: var(--ink);
    border-radius: var(--r-sm);
    transition: background var(--dur-fast) var(--ease-out);
}
.rc-header-back:active { background: var(--accent-tint); }
.rc-header-title {
    font-family: "Noto Serif SC", serif;
    font-size: var(--fs-md); font-weight: 600; color: var(--ink);
    letter-spacing: 0.02em;
}
.rc-header-placeholder { width: 36px; }

/* 主题切换按钮 */
.rc-theme-toggle {
    position: relative;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; padding: 0;
    color: var(--ink); border-radius: var(--r-sm);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: background var(--dur-fast) var(--ease-out);
}
.rc-theme-toggle:active { background: var(--accent-tint); }
.rc-theme-toggle svg {
    width: 24px; height: 24px;
    position: absolute;
    top: 50%; left: 50%;
    margin-top: -12px; margin-left: -12px;
    transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.rc-theme-toggle .rc-icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
.rc-theme-toggle .rc-icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.5); }
/* 暗色主题时显示月亮 */
.rc-theme-dark .rc-theme-toggle .rc-icon-sun { opacity: 0; transform: rotate(90deg) scale(0.5); }
.rc-theme-dark .rc-theme-toggle .rc-icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
/* 暗色主题下按钮颜色 */
.rc-theme-dark .rc-theme-toggle { color: var(--accent); }
.rc-theme-dark .rc-theme-toggle:active { background: var(--accent-tint); }

/* ---------- 首页 Banner ---------- */
.rc-banner {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--night);
}
.rc-banner-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .45;
    transform: scale(1.02);
}
.rc-banner-mask {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        oklch(0.22 0.02 260 / 0.1) 0%,
        oklch(0.22 0.02 260 / 0.65) 100%
    );
}
.rc-banner-text {
    position: absolute;
    left: var(--sp-3); right: var(--sp-3); bottom: var(--sp-3);
    color: var(--ink-inverse);
}
.rc-banner-title {
    font-size: var(--fs-xl);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 12px oklch(0 0 0 / 0.3);
}
.rc-banner-slogan {
    margin-top: var(--sp-1);
    font-size: var(--fs-base);
    color: oklch(0.97 0.012 90 / 0.85);
    letter-spacing: 0.06em;
}

/* ---------- 数据条 ---------- */
.rc-stats {
    display: flex;
    background: var(--paper-card);
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--line);
}
.rc-stat-item { flex: 1; text-align: center; }
.rc-stat-num {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}
.rc-stat-label {
    font-size: var(--fs-xs);
    color: var(--ink-3);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* ---------- 宫格入口 ---------- */
.rc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--paper-card);
    padding: var(--sp-2) 0;
}
.rc-grid-item {
    display: flex; flex-direction: column; align-items: center;
    padding: var(--sp-2) 0;
    border-radius: var(--r-md);
    transition: background var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
}
.rc-grid-item:active {
    background: var(--accent-tint);
    transform: scale(0.96);
}
.rc-grid-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-md);
    background: var(--accent-tint);
    color: var(--accent);
}
.rc-grid-icon svg { width: 22px; height: 22px; }
.rc-grid-name {
    font-size: var(--fs-sm);
    color: var(--ink-2);
    margin-top: var(--sp-1);
    font-weight: 500;
}

/* ---------- 通用区块 ---------- */
.rc-section {
    padding: var(--sp-4) var(--sp-3);
}
.rc-section-first { padding-top: var(--sp-3); }
.rc-section-head {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: var(--sp-3);
}
.rc-section-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
    display: flex; align-items: center; gap: var(--sp-1);
}
.rc-section-title::before {
    content: "";
    display: inline-block;
    width: 4px; height: var(--fs-lg);
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}
.rc-section-more {
    font-size: var(--fs-sm);
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity var(--dur-fast) var(--ease-out);
}
.rc-section-more:active { opacity: 0.6; }

/* ---------- 活动卡片 ---------- */
.rc-card {
    display: flex; gap: var(--sp-2);
    padding: var(--sp-2) 0;
    border-bottom: 1px solid var(--line);
    transition: opacity var(--dur-fast) var(--ease-out);
}
.rc-card:last-child { border-bottom: none; }
.rc-card:active { opacity: 0.7; }
.rc-card-date {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    background: var(--accent-tint);
    color: var(--accent-deep);
    font-size: var(--fs-xs);
    font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    line-height: 1.3;
    padding: 4px;
}
.rc-card-body { flex: 1; min-width: 0; }
.rc-card-title {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.rc-card-meta {
    font-size: var(--fs-xs);
    color: var(--ink-3);
    margin-top: 4px;
}
.rc-card-tags {
    font-size: var(--fs-xs);
    color: var(--accent);
    margin-top: 4px;
    font-weight: 500;
}

/* ---------- 团队卡片 ---------- */
.rc-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
}
.rc-team-card {
    position: relative;
    background: var(--paper-card);
    border-radius: var(--r-md);
    padding: var(--sp-2);
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur-fast) var(--ease-out),
                box-shadow var(--dur-fast) var(--ease-out);
}
.rc-team-card:active {
    transform: translateY(2px);
    box-shadow: var(--shadow-md);
}
.rc-team-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-deep);
    background: var(--accent-tint);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: var(--sp-1);
    letter-spacing: 0.03em;
}
.rc-team-name {
    font-size: var(--fs-base);
    font-weight: 700;
    font-family: "Noto Serif SC", serif;
    color: var(--ink);
}
.rc-team-desc {
    font-size: var(--fs-xs);
    color: var(--ink-3);
    margin-top: 4px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ---------- 详情页 ---------- */
.rc-detail-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    margin: var(--sp-1) 0 var(--sp-2);
}
.rc-detail-meta {
    font-size: var(--fs-sm);
    color: var(--ink-2);
}
.rc-detail-meta > div {
    margin-bottom: var(--sp-1);
    display: flex; align-items: baseline; gap: var(--sp-1);
}
.rc-detail-label {
    flex-shrink: 0;
    font-size: var(--fs-xs);
    color: var(--ink-3);
    letter-spacing: 0.06em;
    width: 32px;
}
.rc-detail-summary {
    margin-top: var(--sp-3);
    font-size: var(--fs-base);
    color: var(--ink-2);
    line-height: 1.75;
    padding: var(--sp-2) var(--sp-3);
    background: var(--paper-card);
    border-radius: var(--r-md);
    border-left: 3px solid var(--accent);
    box-shadow: var(--shadow-sm);
}
.rc-detail-photos-title,
.rc-detail-block-title {
    font-family: "Noto Serif SC", serif;
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--ink);
    margin: var(--sp-3) 0 var(--sp-2);
}
.rc-detail-block { margin-top: var(--sp-2); }
.rc-detail-block p {
    font-size: var(--fs-base);
    color: var(--ink-2);
    line-height: 1.75;
}
.rc-detail-cta { margin-top: var(--sp-4); }

/* ---------- 照片墙 ---------- */
.rc-photo-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-1);
}
.rc-photo-wall img {
    border-radius: var(--r-sm);
    aspect-ratio: 1;
    object-fit: cover;
}

/* ---------- 楼层导览 ---------- */
.rc-floor-item {
    display: flex; gap: var(--sp-2); align-items: flex-start;
    padding: var(--sp-2) 0;
    border-bottom: 1px solid var(--line);
}
.rc-floor-item:last-child { border-bottom: none; }
.rc-floor-badge {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: var(--r-md);
    background: var(--night);
    color: var(--ink-inverse);
    font-family: "Noto Serif SC", serif;
    font-weight: 700;
    font-size: var(--fs-md);
    display: flex; align-items: center; justify-content: center;
}
.rc-floor-name {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--ink);
}
.rc-floor-desc {
    font-size: var(--fs-xs);
    color: var(--ink-3);
    margin-top: 2px;
}

/* ---------- 相册分区 ---------- */
.rc-zone { margin-bottom: var(--sp-3); }
.rc-zone-name {
    font-family: "Noto Serif SC", serif;
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--sp-1);
}
.rc-zone-photos { min-height: 72px; }
.rc-empty {
    font-size: var(--fs-sm);
    color: var(--ink-3);
    text-align: center;
    padding: var(--sp-3) 0;
    background: var(--paper-card);
    border-radius: var(--r-md);
    border: 1px dashed var(--line);
}

/* ---------- 导航卡片 ---------- */
.rc-nav-card {
    background: var(--paper-card);
    border-radius: var(--r-md);
    padding: var(--sp-3);
    box-shadow: var(--shadow-sm);
}
.rc-nav-address {
    font-size: var(--fs-base);
    color: var(--ink);
    font-weight: 500;
    margin-bottom: var(--sp-2);
    line-height: 1.6;
}

/* ---------- 服务包 ---------- */
.rc-service-item {
    display: flex; gap: var(--sp-2); align-items: flex-start;
    padding: var(--sp-2) 0;
    border-bottom: 1px solid var(--line);
}
.rc-service-item:last-child { border-bottom: none; }
.rc-service-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: var(--r-md);
    background: var(--accent-tint);
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: center;
}
.rc-service-robot   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M12 2a2 2 0 0 1 2 2v1h3a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h3V4a2 2 0 0 1 2-2zm-4 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm8 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM8 16h8v1.5H8V16z'/%3E%3C/svg%3E"); }
.rc-service-photo   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M9 3h6l1 2h3a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h3l1-2zm3 6a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm0 2a2 2 0 1 1 0 4 2 2 0 0 1 0-4z'/%3E%3C/svg%3E"); }
.rc-service-image   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M4 4h16a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm4.5 6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM7 16.5l3.5-4 2.5 3 2-2.5L19 17H7v-.5z'/%3E%3C/svg%3E"); }
.rc-service-human   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M12 3a4 4 0 1 1 0 8 4 4 0 0 1 0-8zm0 10c3.9 0 7 1.8 7 4v2H5v-2c0-2.2 3.1-4 7-4z'/%3E%3C/svg%3E"); }
.rc-service-media   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M4 5h16a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm8 3v8l6-4-6-4z'/%3E%3C/svg%3E"); }
.rc-service-training{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M12 3 1 8l11 5 9-4.1V15h2V8L12 3zm-7 9.5V16c0 1.7 3.1 3 7 3s7-1.3 7-3v-3.5l-7 3.2-7-3.2z'/%3E%3C/svg%3E"); }
.rc-service-subsidy { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20zm1 5h-2v1.1c-.6.2-1.1.6-1.4 1.1-.4.7-.3 1.5.2 2.1.5.7 1.3 1 2.2 1.2.5.1 1 .3 1.2.7.2.4.1.8-.2 1.1-.3.3-.7.4-1.1.4-.5 0-1-.2-1.3-.6l-.2-.3-1.6.9.2.4c.5.8 1.4 1.3 2.4 1.4V17h2v-1.1c.6-.2 1.1-.6 1.4-1.1.4-.7.3-1.5-.2-2.1-.5-.7-1.3-1-2.2-1.2-.5-.1-1-.3-1.2-.7-.2-.4-.1-.8.2-1.1.3-.3.7-.4 1.1-.4.5 0 1 .2 1.3.6l.2.3 1.6-.9-.2-.4c-.5-.8-1.4-1.3-2.4-1.4V7z'/%3E%3C/svg%3E"); }
.rc-service-supply   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2a3 3 0 0 0 6 0h6a3 3 0 0 0 6 0h2v-5l-3-4zM6 18.5A1.5 1.5 0 1 1 7.5 17 1.5 1.5 0 0 1 6 18.5zm13.5-9 1.96 2.5H17V9.5zM18 18.5A1.5 1.5 0 1 1 19.5 17 1.5 1.5 0 0 1 18 18.5z'/%3E%3C/svg%3E"); }
.rc-service-legal    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M12 2 4 5v6c0 5.55 3.84 10.74 8 12 4.16-1.26 8-6.45 8-12V5l-8-3zm-1 15-4-4 1.41-1.41L11 14.17l5.59-5.59L18 10l-7 7z'/%3E%3C/svg%3E"); }
.rc-service-salon    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2410c'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E"); }
.rc-service-title {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--ink);
}
.rc-service-desc {
    font-size: var(--fs-sm);
    color: var(--ink-3);
    margin-top: 2px;
    line-height: 1.55;
}

/* ---------- 三档孵化体系 ---------- */
.rc-plan-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.rc-plan-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--sp-3);
    box-shadow: var(--shadow-sm);
}
.rc-plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-1);
}
.rc-plan-name {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--ink);
}
.rc-plan-tag {
    font-size: var(--fs-xs);
    color: var(--accent);
    background: var(--accent-tint);
    padding: 2px 8px;
    border-radius: var(--r-sm);
    font-weight: 500;
}
.rc-plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: var(--sp-1);
}
.rc-plan-currency {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--accent);
}
.rc-plan-amount {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.rc-plan-unit {
    font-size: var(--fs-sm);
    color: var(--ink-3);
    margin-left: 2px;
}
.rc-plan-desc {
    font-size: var(--fs-sm);
    color: var(--ink-2);
    line-height: 1.6;
    margin-bottom: var(--sp-2);
}
.rc-plan-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.rc-plan-feature {
    font-size: var(--fs-xs);
    color: var(--ink-3);
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 3px 8px;
    border-radius: var(--r-sm);
}

/* ---------- 合作说明 ---------- */
.rc-cooperate p {
    font-size: var(--fs-base);
    color: var(--ink-2);
    line-height: 1.8;
    margin-bottom: var(--sp-1);
}

/* ---------- 按钮 ---------- */
.rc-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 12px 28px;
    border-radius: var(--r-sm);
    font-size: var(--fs-base);
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.03em;
    transition: background var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out),
                box-shadow var(--dur-fast) var(--ease-out);
}
.rc-btn:active { transform: translateY(1px); }
.rc-btn-primary {
    background: var(--accent);
    color: var(--ink-inverse);
    box-shadow: 0 2px 8px oklch(0.55 0.18 45 / 0.3);
}
.rc-btn-primary:active {
    background: var(--accent-deep);
    box-shadow: 0 1px 4px oklch(0.55 0.18 45 / 0.2);
}
.rc-btn-plain {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}
.rc-btn-plain:active { background: var(--accent-tint); }
.rc-btn-block { display: flex; width: 100%; }
.rc-mt { margin-top: var(--sp-2); }

/* ---------- 底部 ---------- */
.rc-footer {
    margin-top: var(--sp-4);
    background: var(--night);
    color: oklch(0.82 0.015 260);
}
.rc-footer-inner { padding: var(--sp-4) var(--sp-3) var(--sp-3); text-align: center; }
.rc-footer-brand {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--ink-inverse);
    letter-spacing: 0.03em;
}
.rc-footer-slogan {
    font-size: var(--fs-xs);
    color: oklch(0.82 0.015 260 / 0.65);
    margin-top: 4px;
    letter-spacing: 0.05em;
}
.rc-footer-actions {
    display: flex; gap: var(--sp-1); justify-content: center;
    margin-top: var(--sp-3);
}
.rc-footer-actions .rc-btn-plain {
    background: transparent;
    color: oklch(0.82 0.015 260);
    border-color: oklch(0.82 0.015 260 / 0.3);
}
.rc-footer-actions .rc-btn-plain:active {
    background: oklch(0.82 0.015 260 / 0.1);
}
.rc-footer-contact {
    margin-top: var(--sp-3);
    font-size: var(--fs-xs);
    color: oklch(0.82 0.015 260 / 0.55);
    line-height: 2;
}
.rc-footer-copy {
    padding: var(--sp-2);
    text-align: center;
    font-size: 11px;
    color: oklch(0.82 0.015 260 / 0.35);
    border-top: 1px solid oklch(0.82 0.015 260 / 0.1);
}
.rc-footer-copy a { color: oklch(0.82 0.015 260 / 0.35); }

/* ---------- 窄屏适配 ---------- */
@media (max-width: 360px) {
    .rc-banner-title { font-size: var(--fs-lg); }
    .rc-stat-num     { font-size: var(--fs-lg); }
    .rc-team-grid    { grid-template-columns: 1fr; }
    .rc-grid         { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 减少动画偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
