/* roulang page: index */
:root {
            --color-accent: oklch(0.52 0.18 240);
            --color-accent-hover: oklch(0.44 0.18 240);
            --color-accent-light: oklch(0.72 0.12 240);
            --color-bg: oklch(0.97 0.005 240);
            --color-card: oklch(1 0 0);
            --color-text: oklch(0.18 0.02 240);
            --color-text-muted: oklch(0.45 0.03 240);
            --color-border: oklch(0.88 0.01 240);
            --color-cta-bg: oklch(0.94 0.04 240);
            --color-footer: oklch(0.18 0.02 240);
            --radius-sm: 8px;
            --radius-md: 12px;
            --shadow-card: 0 2px 8px oklch(0.52 0.18 240 / 0.08);
            --shadow-card-hover: 0 4px 16px oklch(0.52 0.18 240 / 0.14);
            --spacing: 8px;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: system-ui, "PingFang SC", "Microsoft YaHei", sans-serif;
            font-size: 1rem;
            line-height: 1.75;
            color: var(--color-text);
            background: var(--color-bg);
            -webkit-font-smoothing: antialiased;
        }
        
        a {
            color: inherit;
            text-decoration: none;
            transition: color 150ms ease;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        
        input {
            font-family: inherit;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        header {
            position: sticky;
            top: 0;
            background: var(--color-card);
            border-bottom: 1px solid var(--color-border);
            z-index: 1000;
        }
        
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 32px;
        }
        
        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
            flex: 1;
        }
        
        .nav-left {
            justify-content: flex-start;
        }
        
        .nav-right {
            justify-content: flex-end;
        }
        
        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-accent);
            white-space: nowrap;
            letter-spacing: -0.02em;
        }
        
        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }
        
        .nav-links a {
            font-size: 0.9375rem;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            min-height: 44px;
            display: flex;
            align-items: center;
            transition: color 150ms ease;
        }
        
        .nav-links a:hover {
            color: var(--color-accent);
        }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-accent);
        }
        
        .search-icon {
            width: 20px;
            height: 20px;
            cursor: pointer;
            transition: opacity 150ms ease;
        }
        
        .search-icon:hover {
            opacity: 0.7;
        }
        
        .mobile-menu-btn {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-nav {
            display: none;
            position: fixed;
            top: 65px;
            left: 0;
            right: 0;
            background: var(--color-card);
            border-bottom: 1px solid var(--color-border);
            padding: 16px 24px;
            box-shadow: var(--shadow-card);
        }
        
        .mobile-nav.active {
            display: block;
        }
        
        .mobile-nav ul {
            list-style: none;
        }
        
        .mobile-nav li {
            margin-bottom: 12px;
        }
        
        .mobile-nav a {
            display: block;
            padding: 12px;
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: background 150ms ease;
        }
        
        .mobile-nav a:hover, .mobile-nav a.active {
            background: var(--color-cta-bg);
            color: var(--color-accent);
        }
        
        h1 {
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        
        h2 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 12px;
        }
        
        h3 {
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 8px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 160px;
            min-height: 44px;
            padding: 12px 32px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: all 150ms ease;
            cursor: pointer;
        }
        
        .btn-primary {
            background: var(--color-accent);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--color-accent-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-card-hover);
        }
        
        .btn-secondary {
            background: var(--color-card);
            color: var(--color-accent);
            border: 2px solid var(--color-accent);
        }
        
        .btn-secondary:hover {
            background: var(--color-accent);
            color: white;
        }
        
        .hero {
            padding: 80px 0;
            background: var(--color-card);
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }
        
        .hero-text p {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            margin-bottom: 32px;
            max-width: 68ch;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .hero-visual {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        
        .entrance-card {
            background: var(--color-cta-bg);
            padding: 24px 16px;
            border-radius: var(--radius-md);
            text-align: center;
            transition: all 150ms ease;
            cursor: pointer;
            border: 1px solid var(--color-border);
        }
        
        .entrance-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--color-accent);
        }
        
        .entrance-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            background: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .entrance-card h4 {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--color-text);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 48px;
        }
        
        .section-header h2 {
            font-size: 1.875rem;
            margin-bottom: 16px;
        }
        
        .section-header p {
            font-size: 1.0625rem;
            color: var(--color-text-muted);
        }
        
        .progress-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }
        
        .progress-card {
            background: var(--color-card);
            padding: 32px 24px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            text-align: center;
        }
        
        .progress-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-accent);
            margin-bottom: 8px;
        }
        
        .progress-label {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }
        
        .tier-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .tier-card {
            background: var(--color-card);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: var(--shadow-card);
            transition: all 200ms ease;
            border: 2px solid transparent;
        }
        
        .tier-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--color-accent);
        }
        
        .tier-card.featured {
            border-color: var(--color-accent);
            position: relative;
        }
        
        .tier-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: var(--color-accent);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .tier-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .tier-desc {
            font-size: 0.9375rem;
            color: var(--color-text-muted);
            margin-bottom: 24px;
            min-height: 60px;
        }
        
        .tier-features {
            list-style: none;
            margin-bottom: 24px;
        }
        
        .tier-features li {
            padding: 8px 0;
            font-size: 0.9375rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .tier-features li::before {
            content: '✓';
            color: var(--color-accent);
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .supporter-wall {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }
        
        .supporter-card {
            background: var(--color-card);
            padding: 20px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-card);
            border-left: 4px solid var(--color-accent);
            transition: all 150ms ease;
        }
        
        .supporter-card:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-card-hover);
        }
        
        .supporter-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .supporter-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--color-cta-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--color-accent);
        }
        
        .supporter-info {
            flex: 1;
        }
        
        .supporter-name {
            font-weight: 600;
            font-size: 0.9375rem;
        }
        
        .supporter-tier {
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }
        
        .supporter-message {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }
        
        .news-section {
            background: var(--color-card);
        }
        
        .news-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
        }
        
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .news-item {
            padding: 20px 0;
            border-bottom: 1px solid var(--color-border);
            transition: all 150ms ease;
        }
        
        .news-item:hover {
            padding-left: 12px;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }
        
        .news-tag {
            display: inline-block;
            padding: 4px 12px;
            background: var(--color-cta-bg);
            color: var(--color-accent);
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .news-date {
            font-size: 0.875rem;
            color: var(--color-text-muted);
        }
        
        .news-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--color-text);
            transition: color 150ms ease;
        }
        
        .news-item:hover .news-title {
            color: var(--color-accent);
        }
        
        .news-excerpt {
            font-size: 0.9375rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }
        
        .news-sidebar {
            position: sticky;
            top: 88px;
            align-self: flex-start;
        }
        
        .sidebar-card {
            background: var(--color-cta-bg);
            padding: 24px;
            border-radius: var(--radius-md);
            margin-bottom: 24px;
        }
        
        .sidebar-card h3 {
            font-size: 1.125rem;
            margin-bottom: 16px;
        }
        
        .sidebar-list {
            list-style: none;
        }
        
        .sidebar-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--color-border);
        }
        
        .sidebar-list li:last-child {
            border-bottom: none;
        }
        
        .sidebar-list a {
            font-size: 0.9375rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 150ms ease;
        }
        
        .sidebar-list a:hover {
            color: var(--color-accent);
        }
        
        .sidebar-count {
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }
        
        .cta-section {
            background: var(--color-cta-bg);
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 16px;
        }
        
        .cta-content p {
            font-size: 1.0625rem;
            color: var(--color-text-muted);
            margin-bottom: 32px;
            max-width: 68ch;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        
        .cta-note {
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }
        
        .faq-section {
            background: var(--color-card);
        }
        
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--color-bg);
            margin-bottom: 16px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 1px solid var(--color-border);
        }
        
        .faq-question {
            width: 100%;
            padding: 20px 24px;
            text-align: left;
            font-size: 1.0625rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 150ms ease;
        }
        
        .faq-question:hover {
            background: var(--color-card);
        }
        
        .faq-icon {
            font-size: 1.25rem;
            color: var(--color-accent);
            transition: transform 200ms ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 200ms ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 0 24px 20px;
            font-size: 0.9375rem;
            color: var(--color-text-muted);
            line-height: 1.7;
        }
        
        footer {
            background: var(--color-footer);
            color: white;
            padding: 64px 0 32px;
        }
        
        .footer-content {display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--color-accent-light);
        }
        
        .footer-brand p {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        
        .footer-links h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.7);
            transition: color 150ms ease;
        }
        
        .footer-links a:hover {
            color: var(--color-accent-light);
        }
        
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            
            .hero-visual {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .progress-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tier-grid {
                grid-template-columns: 1fr;
            }
            
            .news-layout {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                height: 56px;
            }
            
            h1 {
                font-size: 1.75rem;
            }
            
            .hero {
                padding: 48px 0;
            }
            
            .hero-text h1 {
                font-size: 1.875rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            section {
                padding: 48px 0;
            }
            
            .section-header h2 {
                font-size: 1.5rem;
            }
            
            .progress-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .supporter-wall {
                grid-template-columns: 1fr;
            }
            
            .cta-content h2 {
                font-size: 1.5rem;
            }
            
            .btn {
                min-width: 140px;
                padding: 10px 24px;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

/* roulang page: category1 */
:root {
            --color-primary: oklch(0.52 0.18 240);
            --color-primary-hover: oklch(0.44 0.18 240);
            --color-secondary: oklch(0.72 0.12 240);
            --color-bg: oklch(0.97 0.005 240);
            --color-card: oklch(1 0 0);
            --color-text: oklch(0.18 0.02 240);
            --color-text-muted: oklch(0.45 0.03 240);
            --color-border: oklch(0.88 0.01 240);
            --color-cta-bg: oklch(0.94 0.04 240);
            --color-footer-bg: oklch(0.18 0.02 240);
            --shadow-default: 0 2px 8px oklch(0.52 0.18 240 / 0.08);
            --shadow-hover: 0 4px 16px oklch(0.52 0.18 240 / 0.14);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --spacing-unit: 8px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: system-ui, "PingFang SC", "Microsoft YaHei", sans-serif;
            font-size: 1rem;
            line-height: 1.75;
            color: var(--color-text);
            background: var(--color-bg);
            -webkit-font-smoothing: antialiased;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            color: inherit;
            text-decoration: none;
            transition: color 150ms ease;
        }
        
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header & Navigation */
        header {
            background: var(--color-card);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        header nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 32px;
        }
        
        .nav-left, .nav-right {
            flex: 1;
        }
        
        .nav-left {
            display: flex;
            justify-content: flex-start;
        }
        
        .nav-right {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 16px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }
        
        .nav-links a {
            font-size: 0.9375rem;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            min-height: 44px;
            display: flex;
            align-items: center;
        }
        
        .nav-links a:hover {
            color: var(--color-primary);
        }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-primary);
        }
        
        .logo {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--color-primary);
            white-space: nowrap;
            letter-spacing: 0.5px;
        }
        
        .search-icon {
            width: 20px;
            height: 20px;
            color: var(--color-text-muted);
            cursor: pointer;
            transition: color 150ms ease;
        }
        
        .search-icon:hover {
            color: var(--color-primary);
        }
        
        .mobile-menu-btn {
            display: none;
            padding: 8px;
            color: var(--color-text);
        }
        
        .mobile-nav {
            display: none;
            background: var(--color-card);
            border-top: 1px solid var(--color-border);
        }
        
        .mobile-nav ul {
            list-style: none;
            padding: 16px 0;
        }
        
        .mobile-nav a {
            display: block;
            padding: 12px 24px;
            font-weight: 500;
        }
        
        .mobile-nav a.active {
            color: var(--color-primary);
            background: var(--color-cta-bg);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 24px 0;
            font-size: 0.875rem;
            color: var(--color-text-muted);
        }
        
        .breadcrumb a {
            color: var(--color-text-muted);
        }
        
        .breadcrumb a:hover {
            color: var(--color-primary);
        }
        
        .breadcrumb span {
            margin: 0 8px;
        }
        
        /* Hero Section */
        .hero {
            padding: 64px 0 80px;
            background: linear-gradient(180deg, var(--color-card) 0%, var(--color-bg) 100%);
        }
        
        .hero-content {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--color-text);
        }
        
        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            margin-bottom: 32px;
            line-height: 1.6;
        }
        
        .filter-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 32px;
        }
        
        .filter-btn {
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            font-size: 0.9375rem;
            font-weight: 500;
            background: var(--color-card);
            border: 1px solid var(--color-border);
            color: var(--color-text);
            transition: all 150ms ease;
            min-height: 44px;
        }
        
        .filter-btn:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
        }
        
        .filter-btn.active {
            background: var(--color-primary);
            color: white;
            border-color: var(--color-primary);
        }
        
        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            padding: 14px 32px;
            background: var(--color-primary);
            color: white;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            transition: all 150ms ease;
            min-width: 160px;
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-primary:hover {
            background: var(--color-primary-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-secondary {
            padding: 14px 32px;
            background: var(--color-card);
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            transition: all 150ms ease;
            min-width: 160px;
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-secondary:hover {
            background: var(--color-primary);
            color: white;
        }
        
        /* Resource Grid */
        .resource-section {
            padding: 64px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        
        .section-header h2 {
            font-size: 1.875rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--color-text);
        }
        
        .section-header p {
            font-size: 1rem;
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .resource-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .resource-card {
            background: var(--color-card);
            border-radius: var(--radius-md);
            padding: 24px;
            box-shadow: var(--shadow-default);
            transition: all 150ms ease;
            border: 1px solid var(--color-border);
        }
        
        .resource-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        .resource-icon {
            width: 48px;
            height: 48px;
            background: var(--color-cta-bg);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: var(--color-primary);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .resource-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--color-text);
        }
        
        .resource-card p {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            margin-bottom: 16px;
            line-height: 1.6;
        }
        
        .resource-meta {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        
        .badge {
            padding: 4px 10px;
            background: var(--color-cta-bg);
            color: var(--color-primary);
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .badge.hot {
            background: oklch(0.95 0.08 30);
            color: oklch(0.45 0.18 30);
        }
        
        .resource-btn {
            width: 100%;
            padding: 10px 20px;
            background: var(--color-primary);
            color: white;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-size: 0.9375rem;
            transition: all 150ms ease;
            min-height: 44px;
        }
        
        .resource-btn:hover {
            background: var(--color-primary-hover);
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: var(--color-card);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .feature-card {
            padding: 32px 24px;
            text-align: center;
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            background: var(--color-cta-bg);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--color-primary);
            font-size: 2rem;
        }
        
        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--color-text);
        }
        
        .feature-card p {
            font-size: 0.9375rem;
            color: var(--color-text-muted);
            line-height: 1.7;
        }
        
        /* Process Section */
        .process-section {
            padding: 80px 0;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-step::after {
            content: '→';
            position: absolute;
            right: -16px;
            top: 24px;
            color: var(--color-primary);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .step-number {
            width: 56px;
            height: 56px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .process-step h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--color-text);
        }
        
        .process-step p {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--color-card);
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .review-card {
            background: var(--color-bg);
            border-left: 4px solid var(--color-primary);
            border-radius: var(--radius-sm);
            padding: 24px;
            box-shadow: var(--shadow-default);
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .review-user {
            font-weight: 600;
            font-size: 0.9375rem;
            color: var(--color-text);
        }
        
        .review-stars {
            color: oklch(0.65 0.18 60);
            font-size: 0.875rem;
        }
        
        .review-text {
            font-size: 0.9375rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        
        .review-date {
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--color-card);
            border-radius: var(--radius-sm);
            margin-bottom: 16px;
            box-shadow: var(--shadow-default);
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 20px 24px;
            text-align: left;
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--color-text);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 150ms ease;
            min-height: 64px;
        }
        
        .faq-question:hover {
            background: var(--color-bg);
        }
        
        .faq-icon {
            font-size: 1.25rem;
            color: var(--color-primary);
            transition: transform 200ms ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 200ms ease;
        }
        
        .faq-answer-content {
            padding: 0 24px 20px;
            font-size: 0.9375rem;
            color: var(--color-text-muted);
            line-height: 1.7;
        }
        
        @media (prefers-reduced-motion: reduce) {
            .faq-answer {
                transition: none;
            }
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--color-cta-bg);
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--color-text);
        }
        
        .cta-section p {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            margin-bottom: 32px;
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-note {
            margin-top: 24px;
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }
        
        /* Footer */
        footer {
            background: var(--color-footer-bg);
            color: rgba(255, 255, 255, 0.8);
            padding: 64px 0 24px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand h3 {
            font-size: 1.375rem;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }
        
        .footer-brand p {
            font-size: 0.9375rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-links h4 {
            font-size: 1.0625rem;
            font-weight: 600;
            color: white;
            margin-bottom: 16px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.7);
            transition: color 150ms ease;
        }
        
        .footer-links a:hover {
            color: var(--color-secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 48px;
            flex-wrap: wrap;
        }
        
        .page-btn {
            min-width: 44px;
            height: 44px;
            padding: 0 16px;
            background: var(--color-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-text);
            transition: all 150ms ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .page-btn:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
        }
        
        .page-btn.active {
            background: var(--color-primary);
            color: white;
            border-color: var(--color-primary);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .resource-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-step::after {
                display: none;
            }
            
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            header nav {
                height: 56px;
            }
            
            .nav-left, .nav-right {
                display: none;
            }
            
            .logo {
                font-size: 1.25rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-nav.active {
                display: block;
            }
            
            .hero h1 {
                font-size: 1.75rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .resource-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .cta-section h2 {
                font-size: 1.5rem;
            }
            
            .section-header h2 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            
            .hero {
                padding: 48px 0 56px;
            }
            
            .resource-section {
                padding: 48px 0;
            }
            
            .features-section, .process-section, .reviews-section, .faq-section, .cta-section {
                padding: 56px 0;
            }
            
            .resource-grid {
                grid-template-columns: 1fr;
            }
            
            .filter-tabs {
                gap: 8px;
            }
            
            .filter-btn {
                padding: 8px 16px;
                font-size: 0.875rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
            }
        }
