/* ============================================================
   research.css — 网络安全研究总览页专属样式
   与 style.css 全局变量完全兼容，不修改全局样式
   ============================================================ */

/* ===== RESEARCH HERO ===== */
.research-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
    padding-top: 72px;
}
#researchCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.research-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(240,245,255,0.2) 50%, rgba(255,255,255,0.5) 100%);
    pointer-events: none;
}
.research-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    padding: 48px 24px;
}
.research-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 110, 255, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(26, 110, 255, 0.15);
    animation: fadeInDown 0.8s ease-out;
}
.research-hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.research-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}
.research-hero h1 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.research-hero-content > p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.research-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 36px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}
.research-hero-stats .stat-item { text-align: center; }
.research-hero-stats .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.research-hero-stats .stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== PHILOSOPHY ===== */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.philosophy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}
.philosophy-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.phi-icon {
    width: 48px; height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.phi-icon svg {
    width: 24px; height: 24px;
    color: var(--primary);
}
.philosophy-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.philosophy-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== DIRECTION GRID ===== */
.direction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.direction-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.direction-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.direction-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.direction-card:hover::before { transform: scaleX(1); }
.direction-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}
.direction-card .icon-wrap {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.direction-card .icon-wrap svg {
    width: 26px; height: 26px;
    color: var(--primary);
}
.direction-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.dir-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px;
}
.dir-count {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}
.direction-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.direction-card > p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}
.direction-card .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.direction-card .tag-list span {
    font-size: 11px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 500;
}
.direction-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.dir-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}
.dir-status.active {
    background: #e6f7ed;
    color: #2ea043;
}
.dir-status.planned {
    background: #f0f0f5;
    color: var(--text-light);
}
.direction-card .arrow {
    width: 28px; height: 28px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}
.direction-card .arrow svg {
    width: 14px; height: 14px;
    color: var(--primary);
}
.direction-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== ARCHITECTURE ===== */
.architecture-wrap {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 32px;
    position: relative;
    overflow-x: auto;
}
.arch-level {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.arch-node {
    background: var(--bg-warm);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    text-align: center;
    min-width: 120px;
    transition: var(--transition);
}
.arch-node:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.arch-root {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(26, 110, 255, 0.3);
    padding: 18px 32px;
}
.arch-root small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
    font-weight: 400;
}
.arch-node span {
    font-size: 13px;
    font-weight: 700;
    display: block;
}
.arch-leaf {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
    border-color: rgba(26, 110, 255, 0.2);
    padding: 10px 14px;
    min-width: auto;
}
.arch-leaf span {
    font-size: 12px;
    white-space: nowrap;
}
.arch-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    position: relative;
}
.arch-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
}
.arch-branch-wrap {
    display: flex;
    justify-content: center;
    gap: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}
.arch-branch {
    width: 1px;
    height: 20px;
    background: var(--border);
    position: relative;
}
.arch-branch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 120px;
    height: 1px;
    background: var(--border);
}
.arch-connector-2 .arch-line {
    height: 32px;
}
.arch-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 18px;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-light);
}
.arch-hint svg {
    width: 18px; height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== ACHIEVEMENT TABS ===== */
.achieve-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.achieve-tab {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: white;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.achieve-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.achieve-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(26, 110, 255, 0.3);
}
.achieve-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}
.achieve-panel.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== PAPERS ===== */
.paper-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.paper-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.paper-item:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.paper-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}
.paper-badge.ccf {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4338ca;
}
.paper-badge.core {
    background: #f0fdf4;
    color: #16a34a;
}
.paper-badge.book {
    background: #fff7ed;
    color: #ea580c;
}
.paper-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}
.paper-authors {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.paper-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.paper-abs {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}
.paper-link {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.paper-link:hover { text-decoration: underline; }

/* ===== REPORTS IN ACHIEVEMENTS ===== */
.report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.report-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.report-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.report-icon {
    width: 44px; height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.report-icon svg {
    width: 22px; height: 22px;
    color: var(--primary);
}
.report-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}
.report-card > p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}
.report-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}
.report-date, .report-tag {
    color: var(--text-light);
    font-weight: 500;
}
.report-tag {
    background: var(--bg-warm);
    padding: 2px 10px;
    border-radius: 100px;
}
.report-meta a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.report-meta a:hover { text-decoration: underline; }

/* ===== STANDARDS ===== */
.standard-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.standard-item {
    display: flex;
    gap: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.standard-item:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow);
}
.std-icon {
    width: 44px; height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.std-icon svg {
    width: 22px; height: 22px;
    color: var(--primary);
}
.std-content { flex: 1; }
.std-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.std-content > p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}
.std-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.std-status, .std-scope {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}
.std-status.draft {
    background: #fff7ed;
    color: #ea580c;
}
.std-status.planned {
    background: #f0f0f5;
    color: var(--text-light);
}
.std-scope {
    background: var(--primary-light);
    color: var(--primary);
}

/* ===== TOOLS ===== */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tool-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
}
.tool-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.tool-icon {
    width: 44px; height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.tool-icon svg {
    width: 22px; height: 22px;
    color: var(--primary);
}
.tool-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.tool-card > p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}
.tool-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px;
}

/* ===== ROADMAP ===== */
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 50%, var(--border) 100%);
}
.roadmap-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 40px;
}
.roadmap-item:last-child { padding-bottom: 0; }
.roadmap-dot {
    position: absolute;
    left: 11px;
    top: 4px;
    width: 18px; height: 18px;
    background: white;
    border: 3px solid var(--border);
    border-radius: 50%;
    transition: var(--transition);
}
.roadmap-item.done .roadmap-dot {
    border-color: var(--primary);
    background: var(--primary);
}
.roadmap-item.active .roadmap-dot {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(26, 110, 255, 0.15);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 5px rgba(26, 110, 255, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(26, 110, 255, 0.08); }
}
.roadmap-content {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.roadmap-content:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow);
}
.roadmap-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.phase {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 100px;
}
.status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}
.status.done {
    background: #e6f7ed;
    color: #2ea043;
}
.status.ongoing {
    background: #fff7ed;
    color: #f57c00;
}
.status.planned {
    background: #f0f0f5;
    color: var(--text-light);
}
.time {
    font-size: 12px;
    color: var(--text-light);
    margin-left: auto;
    font-weight: 500;
}
.roadmap-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.roadmap-content > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.roadmap-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.roadmap-topics span {
    font-size: 12px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 500;
}

/* ===== EXTEND ===== */
.extend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.extend-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}
.extend-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.extend-icon {
    width: 48px; height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.extend-icon svg {
    width: 24px; height: 24px;
    color: var(--primary);
}
.extend-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.extend-card > p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}
.extend-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.extend-tags span {
    font-size: 11px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 500;
}
.extend-hint {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(26,110,255,0.05) 100%);
    border: 1px dashed rgba(26,110,255,0.3);
    border-radius: var(--radius);
    padding: 28px;
}
.extend-hint svg {
    width: 24px; height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.extend-hint h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.extend-hint p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CONTACT BOX ===== */
.contact-box {
    background: var(--primary-gradient);
    border-radius: var(--radius);
    padding: 60px 48px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-bg {
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}
.contact-content {
    position: relative;
    z-index: 1;
}
.contact-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}
.contact-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.8;
}
.contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.contact-btn-primary {
    background: white;
    color: var(--primary);
}
.contact-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.contact-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.contact-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
    .direction-grid { grid-template-columns: repeat(2, 1fr); }
    .paper-list { grid-template-columns: 1fr; }
    .report-grid { grid-template-columns: repeat(2, 1fr); }
    .tool-grid { grid-template-columns: repeat(2, 1fr); }
    .extend-grid { grid-template-columns: repeat(2, 1fr); }
    .arch-level-3 { display: none; }
    .arch-connector-2 { display: none; }
    .arch-hint { margin-top: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: flex; }
    .research-hero { min-height: 420px; padding-top: 96px; }
    .research-hero h1 { font-size: clamp(26px, 7vw, 36px); }
    .research-hero-stats { gap: 24px; margin-top: 28px; }
    .research-hero-stats .stat-number { font-size: 28px; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .direction-grid { grid-template-columns: 1fr; }
    .report-grid { grid-template-columns: 1fr; }
    .tool-grid { grid-template-columns: 1fr; }
    .extend-grid { grid-template-columns: 1fr; }
    .standard-item { flex-direction: column; gap: 12px; }
    .contact-box { padding: 40px 24px; }
    .contact-box h3 { font-size: 22px; }
    .contact-actions { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .section { padding: 48px 0; }
    .arch-level-2 { gap: 8px; }
    .arch-node { padding: 10px 14px; min-width: auto; }
    .arch-node span { font-size: 12px; }
}
