/* roulang page: index */
:root {
            --brand-primary: #1D4ED8;
            --brand-accent: #059669;
            --bg-base: #F8FAFC;
            --text-main: #0F172A;
            --text-muted: #64748B;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--bg-base);
            color: var(--text-main);
        }
        .hero-diagonal {
            clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
        }
        @media (max-width: 768px) {
            .hero-diagonal {
                clip-path: none;
            }
        }
