        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }
        :root {
            --bg: #07070a;
            --ink: #e8e6e1;
            --muted: #5a5766;
            --cyan: #00e5ff;
            --violet: #8b5cf6;
            --lime: #a3e635;
            --rose: #fb7185;
            --amber: #fbbf24;
            --glass: rgba(255, 255, 255, .03);
            --line: rgba(255, 255, 255, .06);
            --card-hover: rgba(255, 255, 255, .06)
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden
        }
        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            cursor: default
        }
        ::selection {
            background: var(--cyan);
            color: var(--bg)
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s cubic-bezier(.22, 1, .36, 1)
        }
        ul {
            list-style: none
        }
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px)
        }
        h1,
        h2,
        h3 {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            letter-spacing: -.02em
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 70% 50% at 20% 80%, rgba(139, 92, 246, .04), transparent), radial-gradient(ellipse 50% 60% at 80% 30%, rgba(0, 229, 255, .04), transparent)
        }

        /* ===== 导航栏（与首页一致） ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(24px) saturate(1.5);
            -webkit-backdrop-filter: blur(24px) saturate(1.5);
            border-bottom: 1px solid var(--line);
            background: rgba(7, 7, 10, .6)
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px
        }
        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: .06em;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 28px
        }
        .nav-right a {
            font-size: .82rem;
            font-weight: 500;
            color: var(--muted);
            position: relative;
            letter-spacing: .02em
        }
        .nav-right a:hover {
            color: var(--ink)
        }
        .nav-right a.active {
            color: var(--cyan)
        }
        .nav-download {
            padding: 8px 20px;
            border-radius: 6px;
            border: 1px solid rgba(0, 229, 255, .3);
            color: var(--cyan) !important;
            font-weight: 600;
            font-size: .82rem;
            transition: all .3s ease
        }
        .nav-download:hover {
            background: rgba(0, 229, 255, .1);
            box-shadow: 0 0 20px rgba(0, 229, 255, .1)
        }
        .mobile-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ink);
            font-size: 1.4rem;
            cursor: pointer
        }

        /* ===== 面包屑 ===== */
        .breadcrumb {
            position: relative;
            z-index: 1;
            padding: 84px 0 0;
            font-family: 'DM Mono', monospace;
            font-size: .78rem;
            color: var(--muted)
        }
        .breadcrumb a {
            color: var(--muted)
        }
        .breadcrumb a:hover {
            color: var(--cyan)
        }
        .breadcrumb .sep {
            margin: 0 8px;
            opacity: .4
        }

        /* ===== 下载Hero ===== */
        .dl-hero {
            position: relative;
            z-index: 1;
            padding: clamp(32px, 5vh, 60px) 0 clamp(60px, 10vh, 120px)
        }
        .dl-hero-inner {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: clamp(40px, 6vw, 100px);
            align-items: center
        }
        .dl-hero-text .overline {
            font-family: 'DM Mono', monospace;
            font-size: .78rem;
            font-weight: 400;
            color: var(--cyan);
            letter-spacing: .2em;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px
        }
        .dl-hero-text .overline::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--cyan)
        }
        .dl-hero-text h1 {
            font-size: clamp(2.4rem, 5vw, 4.2rem);
            line-height: 1.05;
            margin-bottom: 20px
        }
        .dl-hero-text h1 .grad {
            background: linear-gradient(90deg, var(--cyan), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }
        .dl-hero-text p {
            color: var(--muted);
            font-size: 1rem;
            max-width: 440px;
            line-height: 1.8;
            margin-bottom: 36px
        }
        .dl-meta {
            display: flex;
            gap: 32px;
            flex-wrap: wrap
        }
        .dl-meta-item {
            font-family: 'DM Mono', monospace;
            font-size: .78rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 8px
        }
        .dl-meta-item .val {
            color: var(--ink);
            font-weight: 500
        }
        .dl-meta-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--cyan)
        }
        .dl-hero-visual {
            position: relative
        }
        .dl-quad {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px
        }
        .dl-quad-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid var(--line);
            background: var(--glass);
            backdrop-filter: blur(12px);
            padding: clamp(20px, 2.5vw, 30px);
            transition: all .4s cubic-bezier(.22, 1, .36, 1);
            display: flex;
            flex-direction: column
        }
        .dl-quad-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .04), transparent 50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity .3s ease
        }
        .dl-quad-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            opacity: 0;
            transition: opacity .4s ease
        }
        .dl-quad-card.c-win::after {
            background: linear-gradient(90deg, var(--cyan), rgba(0, 229, 255, .3))
        }
        .dl-quad-card.c-mac::after {
            background: linear-gradient(90deg, var(--violet), rgba(139, 92, 246, .3))
        }
        .dl-quad-card.c-ios::after {
            background: linear-gradient(90deg, var(--lime), rgba(163, 230, 53, .3))
        }
        .dl-quad-card.c-and::after {
            background: linear-gradient(90deg, var(--rose), rgba(251, 113, 133, .3))
        }
        .dl-quad-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, .1);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .35)
        }
        .dl-quad-card:hover::before {
            opacity: 1
        }
        .dl-quad-card:hover::after {
            opacity: 1
        }
        .qc-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px
        }
        .qc-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, .06);
            flex-shrink: 0;
            font-size: 1.2rem
        }
        .qc-icon.i-win {
            background: rgba(0, 229, 255, .08)
        }
        .qc-icon.i-mac {
            background: rgba(139, 92, 246, .08)
        }
        .qc-icon.i-ios {
            background: rgba(163, 230, 53, .08)
        }
        .qc-icon.i-and {
            background: rgba(251, 113, 133, .08)
        }
        .qc-name {
            font-family: 'Syne', sans-serif;
            font-size: 1.05rem;
            font-weight: 700
        }
        .qc-ver {
            font-family: 'DM Mono', monospace;
            font-size: .72rem;
            color: var(--muted);
            margin-top: 2px
        }
        .qc-desc {
            color: var(--muted);
            font-size: .82rem;
            line-height: 1.6;
            margin-bottom: 18px;
            flex: 1
        }
        .qc-meta {
            font-family: 'DM Mono', monospace;
            font-size: .72rem;
            color: var(--muted);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 6px
        }
        .qc-meta .dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--muted)
        }
        .qc-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 11px;
            border-radius: 8px;
            font-weight: 600;
            font-size: .85rem;
            font-family: 'Space Grotesk', sans-serif;
            cursor: pointer;
            border: none;
            transition: all .3s ease
        }
        .qc-btn svg {
            flex-shrink: 0
        }
        .qc-btn.b-win {
            background: rgba(0, 229, 255, .08);
            border: 1px solid rgba(0, 229, 255, .2);
            color: var(--cyan)
        }
        .qc-btn.b-win:hover {
            background: rgba(0, 229, 255, .16);
            box-shadow: 0 0 24px rgba(0, 229, 255, .12)
        }
        .qc-btn.b-mac {
            background: rgba(139, 92, 246, .08);
            border: 1px solid rgba(139, 92, 246, .2);
            color: var(--violet)
        }
        .qc-btn.b-mac:hover {
            background: rgba(139, 92, 246, .16);
            box-shadow: 0 0 24px rgba(139, 92, 246, .12)
        }
        .qc-btn.b-ios {
            background: rgba(163, 230, 53, .08);
            border: 1px solid rgba(163, 230, 53, .2);
            color: var(--lime)
        }
        .qc-btn.b-ios:hover {
            background: rgba(163, 230, 53, .16);
            box-shadow: 0 0 24px rgba(163, 230, 53, .12)
        }
        .qc-btn.b-and {
            background: rgba(251, 113, 133, .08);
            border: 1px solid rgba(251, 113, 133, .2);
            color: var(--rose)
        }
        .qc-btn.b-and:hover {
            background: rgba(251, 113, 133, .16);
            box-shadow: 0 0 24px rgba(251, 113, 133, .12)
        }
        .dl-quad-glow {
            position: absolute;
            inset: -80px;
            z-index: -1;
            background: radial-gradient(ellipse at center, rgba(0, 229, 255, .04), rgba(139, 92, 246, .02), transparent 60%);
            filter: blur(50px);
            animation: orbFloat 8s ease-in-out infinite;
            pointer-events: none
        }
        @keyframes orbFloat {
            0%,
            100% {
                transform: scale(1)
            }
            50% {
                transform: scale(1.12)
            }
        }

        /* ===== 平台详细区域 ===== */
        .platforms {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 120px) 0
        }
        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: clamp(36px, 4vw, 56px);
            flex-wrap: wrap;
            gap: 16px
        }
        .section-head h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            line-height: 1.1
        }
        .section-head .mono {
            font-family: 'DM Mono', monospace;
            font-size: .82rem;
            color: var(--muted)
        }
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px
        }
        .plat-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            border: 1px solid var(--line);
            background: var(--glass);
            padding: clamp(24px, 2.5vw, 36px);
            transition: all .4s cubic-bezier(.22, 1, .36, 1);
            cursor: pointer;
            display: flex;
            flex-direction: column
        }
        .plat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .04), transparent 50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity .3s ease
        }
        .plat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--cyan), var(--violet));
            opacity: 0;
            transition: opacity .4s ease
        }
        .plat-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 229, 255, .2);
            box-shadow: 0 24px 64px rgba(0, 0, 0, .4), 0 0 40px rgba(0, 229, 255, .04)
        }
        .plat-card:hover::before {
            opacity: 1
        }
        .plat-card:hover::after {
            opacity: 1
        }
        .plat-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, .06);
            transition: all .4s ease;
            font-size: 1.5rem
        }
        .plat-card:hover .plat-icon {
            box-shadow: 0 0 20px rgba(0, 229, 255, .12)
        }
        .plat-icon.win {
            background: rgba(0, 229, 255, .08)
        }
        .plat-icon.mac {
            background: rgba(139, 92, 246, .08)
        }
        .plat-icon.ios {
            background: rgba(163, 230, 53, .08)
        }
        .plat-icon.and {
            background: rgba(251, 113, 133, .08)
        }
        .plat-name {
            font-family: 'Syne', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 6px
        }
        .plat-ver {
            font-family: 'DM Mono', monospace;
            font-size: .75rem;
            color: var(--muted);
            margin-bottom: 16px
        }
        .plat-desc {
            color: var(--muted);
            font-size: .88rem;
            line-height: 1.6;
            margin-bottom: 24px;
            flex: 1
        }
        .plat-size {
            font-family: 'DM Mono', monospace;
            font-size: .75rem;
            color: var(--muted);
            margin-bottom: 16px
        }
        .plat-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            background: rgba(0, 229, 255, .06);
            border: 1px solid rgba(0, 229, 255, .15);
            color: var(--cyan);
            font-weight: 600;
            font-size: .88rem;
            font-family: 'Space Grotesk', sans-serif;
            cursor: pointer;
            transition: all .3s ease
        }
        .plat-btn:hover {
            background: rgba(0, 229, 255, .12);
            box-shadow: 0 0 24px rgba(0, 229, 255, .1)
        }
        .plat-btn svg {
            flex-shrink: 0
        }

        /* ===== 版本历史 ===== */
        .history {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 100px) 0
        }
        .version-timeline {
            position: relative;
            padding-left: 40px
        }
        .version-timeline::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, var(--cyan), var(--violet), transparent);
            opacity: .2
        }
        .version-item {
            position: relative;
            padding: 0 0 40px
        }
        .version-item:last-child {
            padding-bottom: 0
        }
        .version-item::before {
            content: '';
            position: absolute;
            left: -32px;
            top: 6px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            border: 2px solid var(--cyan);
            background: var(--bg);
            transition: all .3s ease
        }
        .version-item:hover::before {
            background: var(--cyan);
            box-shadow: 0 0 12px rgba(0, 229, 255, .4)
        }
        .version-head {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 10px
        }
        .version-tag {
            font-family: 'Syne', sans-serif;
            font-size: 1.05rem;
            font-weight: 700
        }
        .version-date {
            font-family: 'DM Mono', monospace;
            font-size: .75rem;
            color: var(--muted)
        }
        .version-badge {
            font-family: 'DM Mono', monospace;
            font-size: .68rem;
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: .06em
        }
        .version-badge.latest {
            background: rgba(0, 229, 255, .1);
            border: 1px solid rgba(0, 229, 255, .2);
            color: var(--cyan)
        }
        .version-badge.stable {
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--line);
            color: var(--muted)
        }
        .version-content {
            color: var(--muted);
            font-size: .9rem;
            line-height: 1.8
        }
        .version-content li {
            position: relative;
            padding-left: 16px;
            margin-bottom: 4px
        }
        .version-content li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--cyan);
            opacity: .6
        }

        /* ===== 下载统计横幅 ===== */
        .dl-stats-strip {
            position: relative;
            z-index: 1;
            padding: clamp(30px, 4vh, 50px) 0
        }
        .dl-stats-inner {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center
        }
        .dl-stat-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 24px;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: var(--glass);
            font-family: 'DM Mono', monospace;
            font-size: .8rem;
            color: var(--muted);
            letter-spacing: .03em;
            transition: all .3s ease
        }
        .dl-stat-badge:hover {
            border-color: rgba(0, 229, 255, .15);
            background: rgba(0, 229, 255, .02)
        }
        .dl-stat-badge .num {
            font-family: 'Syne', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -.02em
        }
        .dl-stat-badge .num.c {
            color: var(--cyan)
        }
        .dl-stat-badge .num.v {
            color: var(--violet)
        }
        .dl-stat-badge .num.l {
            color: var(--lime)
        }
        .dl-stat-badge .num.r {
            color: var(--rose)
        }

        /* ===== FAQ CTA ===== */
        .faq-cta {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 100px) 0
        }
        .faq-cta-inner {
            border-radius: 20px;
            border: 1px solid var(--line);
            background: var(--glass);
            padding: clamp(40px, 5vw, 64px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden
        }
        .faq-cta-inner::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(139, 92, 246, .06), transparent 60%);
            pointer-events: none
        }
        .faq-cta-inner h3 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            line-height: 1.2
        }
        .faq-cta-inner p {
            color: var(--muted);
            font-size: .92rem;
            margin-top: 8px
        }
        .faq-cta-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0
        }
        .btn-glow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 8px;
            background: var(--cyan);
            color: var(--bg);
            font-weight: 700;
            font-size: .9rem;
            font-family: 'Space Grotesk', sans-serif;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all .3s ease
        }
        .btn-glow::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            border-radius: 10px;
            z-index: -1;
            opacity: 0;
            filter: blur(12px);
            transition: opacity .4s ease
        }
        .btn-glow:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 229, 255, .25)
        }
        .btn-glow:hover::before {
            opacity: 1
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 8px;
            background: transparent;
            border: 1px solid var(--line);
            color: var(--ink);
            font-weight: 600;
            font-size: .9rem;
            font-family: 'Space Grotesk', sans-serif;
            cursor: pointer;
            transition: all .3s ease
        }
        .btn-ghost:hover {
            border-color: rgba(255, 255, 255, .15);
            background: rgba(255, 255, 255, .03);
            transform: translateY(-2px)
        }

        /* ===== 页脚（与首页一致） ===== */
        .footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--line);
            padding: 60px 0 28px
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr;
            gap: clamp(24px, 4vw, 60px);
            margin-bottom: 48px
        }
        .footer-brand p {
            color: var(--muted);
            font-size: .88rem;
            max-width: 280px;
            line-height: 1.7;
            margin-top: 14px
        }
        .footer-col h4 {
            font-family: 'DM Mono', monospace;
            font-size: .75rem;
            font-weight: 500;
            color: var(--ink);
            margin-bottom: 18px;
            letter-spacing: .1em;
            text-transform: uppercase
        }
        .footer-col li {
            margin-bottom: 10px
        }
        .footer-col a {
            color: var(--muted);
            font-size: .88rem;
            transition: all .3s ease
        }
        .footer-col a:hover {
            color: var(--cyan);
            padding-left: 4px
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, .04);
            font-size: .78rem;
            color: var(--muted);
            font-family: 'DM Mono', monospace
        }

        /* ===== 滚动动画 ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all .8s cubic-bezier(.22, 1, .36, 1)
        }
        .reveal.show {
            opacity: 1;
            transform: translateY(0)
        }
        .reveal-d1 {
            transition-delay: .1s
        }
        .reveal-d2 {
            transition-delay: .2s
        }
        .reveal-d3 {
            transition-delay: .3s
        }
        .reveal-d4 {
            transition-delay: .4s
        }
        .reveal-d5 {
            transition-delay: .5s
        }

        /* ===== 响应式 ===== */
        @media(max-width:1024px) {
            .dl-hero-inner {
                grid-template-columns: 1fr
            }
            .dl-quad {
                max-width: 100%
            }
            .platform-grid {
                grid-template-columns: 1fr 1fr
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr
            }
            .version-timeline {
                padding-left: 32px
            }
        }
        @media(max-width:768px) {
            .nav-right a:not(.nav-download) {
                display: none
            }
            .mobile-btn {
                display: block
            }
            .dl-quad {
                grid-template-columns: 1fr
            }
            .platform-grid {
                grid-template-columns: 1fr
            }
            .footer-grid {
                grid-template-columns: 1fr
            }
            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center
            }
            .faq-cta-inner {
                flex-direction: column;
                text-align: center
            }
            .faq-cta-actions {
                justify-content: center
            }
            .dl-stats-inner {
                flex-direction: column;
                align-items: center
            }
            .version-timeline {
                padding-left: 28px
            }
            .version-item::before {
                left: -24px;
                width: 7px;
                height: 7px
            }
        }
        @media(max-width:480px) {
            .dl-meta {
                flex-direction: column;
                gap: 12px
            }
            .dl-stat-badge {
                padding: 12px 16px;
                font-size: .72rem
            }
            .dl-stat-badge .num {
                font-size: 1.3rem
            }
            .section-head {
                flex-direction: column;
                align-items: flex-start
            }
        }