/* OpenClaw Pro 服务网站样式 - 红黑主题 */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1f1f1f;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-primary: #ef4444;
    --accent-secondary: #f87171;
    --accent-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --success: #22c55e;
    --warning: #eab308;
    --border-color: rgba(255, 255, 255, 0.08);
    --glow-color: rgba(239, 68, 68, 0.12);
    --card-bg: rgba(20, 20, 20, 0.8);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Consolas', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 背景效果 */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, var(--glow-color) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* 导航 */
.nav {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 100;
    padding: 12px 24px;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-primary);
    object-fit: contain;
    border-radius: 6px;
}

.logo-badge {
    background: var(--accent-gradient);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Hero 区域 */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-secondary);
    margin-bottom: 24px;
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.75;
}

.hero-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 24px rgba(239, 68, 68, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.45);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* 终端视觉效果 */
.terminal {
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #eab308;
}

.dot.green {
    background: #22c55e;
}

.terminal-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.terminal-body {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.terminal-line {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terminal-line .prompt {
    color: var(--accent-primary);
}

.terminal-line .command {
    color: var(--text-primary);
}

.terminal-line.output {
    color: var(--text-secondary);
}

.terminal-line .success {
    color: var(--success);
    font-weight: 600;
}

.terminal-line .info {
    color: var(--warning);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* 通用 section 样式 */
section {
    padding: 96px 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* 功能特性 */
.features {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 16px 48px rgba(239, 68, 68, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--accent-secondary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* 服务内容 */
.services {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 48px rgba(239, 68, 68, 0.15);
}

.service-card.featured:hover {
    box-shadow: 0 0 64px rgba(239, 68, 68, 0.25);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.service-icon-wrap {
    width: 40px;
    height: 40px;
    color: var(--accent-secondary);
}

.service-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.service-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.service-price {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.service-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-price .price-unit {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Skills 展示 */
.skills-section {
    max-width: 1000px;
    margin: 0 auto;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.skill-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-mono);
    transition: all 0.2s;
    cursor: pointer;
}

.skill-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.skill-item.highlight {
    background: var(--accent-gradient);
    border: none;
    font-weight: 600;
    font-family: var(--font-sans);
}

/* 联系方式 */
.contact {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.contact-item {
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-qr {
    width: 100px;
    height: 100px;
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-tertiary);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* 简化版联系卡片 */
.contact-card.simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* 页脚 */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 48px 24px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-logo .logo-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* 更新日志 */
.changelog {
    max-width: 800px;
    margin: 0 auto;
}

.changelog-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.changelog-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
}

.changelog-item:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.changelog-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.changelog-badge.new {
    background: var(--accent-gradient);
    color: white;
}

.changelog-badge.opt {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.changelog-badge.sync {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.changelog-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.changelog-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 响应式 */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid,
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        top: 8px;
        left: 8px;
        right: 8px;
        padding: 10px 16px;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 32px;
    }

    .features-grid,
    .services-container {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: column;
        gap: 24px;
    }

    .contact-item {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* 焦点状态 */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* 服务网格 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.4);
}

.service-item .service-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

.service-item .service-icon svg {
    width: 100%;
    height: 100%;
}

.service-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* 自研 Skills */
.custom-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-skill-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.2s;
    flex: 0 1 380px;
    max-width: 420px;
}

.custom-skill-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

.custom-skill-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 48px rgba(239, 68, 68, 0.15);
}

.new-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--success);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.skill-icon-wrap {
    width: 44px;
    height: 44px;
    color: var(--accent-secondary);
}

.skill-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.skill-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-mono);
}

.skill-tag {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.custom-skill-card>p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.skill-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-keywords span {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--accent-secondary);
}

/* 价格方案 */
.pricing {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.2s;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.price-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 48px rgba(239, 68, 68, 0.15);
}

.recommend-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-header {
    text-align: center;
    margin-bottom: 24px;
}

.price-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.price-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.price-amount {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.price-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-secondary);
    vertical-align: top;
}

.price-amount .number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-amount .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: -16px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.price-features {
    list-style: none;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.price-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* 内置 Skills 列表 */
.builtin-skills {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skills-list span {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    transition: all 0.2s;
    cursor: pointer;
}

.skills-list span:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.skills-list span.more {
    background: var(--accent-gradient);
    border: none;
    color: white;
    font-weight: 600;
    font-family: var(--font-sans);
}

/* 响应式补充 */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-skills {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison {
        grid-template-columns: 1fr;
    }

    .caps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .services-grid,
    .custom-skills,
    .pricing-container,
    .caps-grid {
        grid-template-columns: 1fr;
    }

    .hot-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 对比区域 */
.why-section {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.compare-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.compare-card.normal {
    opacity: 0.7;
}

.compare-card.ours {
    border-color: var(--accent-primary);
    box-shadow: 0 0 48px rgba(239, 68, 68, 0.15);
}

.compare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.compare-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.compare-tag {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.compare-tag.featured {
    background: var(--accent-gradient);
    color: white;
}

.compare-list {
    list-style: none;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
}

.compare-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-list li.negative {
    color: var(--text-muted);
}

.compare-list li.negative svg {
    color: #ef4444;
}

.compare-list li.positive {
    color: var(--text-secondary);
}

.compare-list li.positive svg {
    color: var(--success);
}

/* 能力卡片 */
.capabilities {
    max-width: 1200px;
    margin: 0 auto;
}

.caps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cap-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s;
}

.cap-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-4px);
}

.cap-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.cap-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cap-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* 热门 Skills */
.hot-skills {
    max-width: 1000px;
    margin: 0 auto;
}

.hot-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hot-skill {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
    cursor: pointer;
}

.hot-skill:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

.hot-skill h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-mono);
    margin-bottom: 6px;
}

.hot-skill p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hot-skill.more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border: none;
}

.hot-skill.more span {
    font-size: 1rem;
    font-weight: 600;
}

/* 价格卡片 muted 项 */
.price-features li.muted {
    color: var(--text-muted);
    opacity: 0.6;
}

.price-features li.muted svg {
    color: var(--text-muted);
}