/* roulang page: index */
:root {
            --paper: #F6F1EB;
            --surface: #FFFFFF;
            --ink: #1B1917;
            --muted: #6E6660;
            --primary: #A41E2E;
            --primary-hover: #831523;
            --primary-soft: rgba(164, 30, 46, .06);
            --accent: #D4A44C;
            --dark: #1D1917;
            --dark-soft: rgba(29, 25, 23, .8);
            --line: rgba(27, 25, 23, .12);
            --radius-lg: 24px;
            --radius-md: 18px;
            --shadow-base: 0 1px 0 rgba(27, 25, 23, .04);
            --shadow-hover: 0 20px 40px -28px rgba(27, 25, 23, .35);
            --transition: all .3s cubic-bezier(.4, 0, .2, 1);
            --font-sans: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            background-color: var(--paper);
            color: var(--ink);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        ul,
        ol,
        p,
        figure,
        h1,
        h2,
        h3,
        h4,
        h5,
        blockquote {
            margin: 0;
            padding: 0;
        }
        .grid-container {
            max-width: 1280px;
            padding-left: 32px;
            padding-right: 32px;
        }
        .grid-x {
            display: flex;
            flex-flow: row wrap;
        }
        .container-xl {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
        .section {
            padding: 120px 0;
        }
        .section-sm {
            padding: 80px 0;
        }
        .text-muted {
            color: var(--muted);
        }
        .text-center {
            text-align: center;
        }

        .section-head {
            max-width: 680px;
            margin-bottom: 56px;
        }
        .section-head .eyebrow {
            display: inline-block;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: .08em;
            color: var(--primary);
            text-transform: uppercase;
            border: 1px solid rgba(164, 30, 46, .3);
            background: var(--surface);
            border-radius: 999px;
            padding: 5px 16px;
            margin-bottom: 18px;
        }
        .section-head h2 {
            font-size: 44px;
            line-height: 1.15;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: var(--ink);
            margin-bottom: 16px;
        }
        .section-head p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--muted);
            max-width: 620px;
        }
        .section-head.light h2 {
            color: #fff;
        }
        .section-head.light p {
            color: #B9B0A7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 52px;
            padding: 0 30px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .02em;
            border: 1px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            background: var(--surface);
            color: var(--ink);
        }
        .btn svg,
        .btn i {
            font-size: 15px;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border-color: var(--line);
            color: var(--ink);
        }
        .btn-outline:hover {
            border-color: var(--ink);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn-accent {
            background: var(--dark);
            color: #fff;
            border-color: var(--dark);
        }
        .btn-accent:hover {
            background: #000;
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline-light {
            background: transparent;
            border-color: rgba(255, 255, 255, .25);
            color: #fff;
        }
        .btn-outline-light:hover {
            border-color: #fff;
            color: #fff;
            background: rgba(255, 255, 255, .05);
            transform: translateY(-2px);
        }
        .btn-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0;
            background: transparent;
            border: 0;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            color: var(--ink);
        }
        .btn-link:hover {
            color: var(--primary);
        }
        .btn-link .arrow {
            transition: transform .2s ease;
        }
        .btn-link:hover .arrow {
            transform: translateX(4px);
        }
        .btn:focus-visible,
        .btn-link:focus-visible {
            outline: 3px solid rgba(164, 30, 46, .35);
            outline-offset: 2px;
        }
        .btn-lg {
            height: 56px;
            padding: 0 38px;
            font-size: 16px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            height: 28px;
            padding: 0 14px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 999px;
            background: var(--surface);
            border: 1px solid var(--line);
            color: var(--ink);
        }
        .chip-primary {
            background: rgba(164, 30, 46, .08);
            border-color: rgba(164, 30, 46, .15);
            color: var(--primary);
        }
        .chip-accent {
            background: rgba(212, 164, 76, .15);
            border-color: rgba(212, 164, 76, .3);
            color: #7C5A16;
        }
        .chip-dark {
            background: var(--dark);
            color: #fff;
            border: 1px solid var(--dark);
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        /* ----- header / split nav ----- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 66px;
            transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
            border-bottom: 1px solid transparent;
        }
        .site-header.has-scrolled {
            background: rgba(246, 241, 235, .92);
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            border-bottom: 1px solid var(--line);
        }
        .site-header .header-inner {
            max-width: 1280px;
            height: 66px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .nav-left-wrap {
            display: flex;
            align-items: center;
            gap: 48px;
            flex-shrink: 0;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-mark {
            width: 30px;
            height: 30px;
            border-radius: 10px;
            background: var(--primary);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        .logo-mark::before {
            content: "";
            position: absolute;
            top: 6px;
            left: 7px;
            width: 13px;
            height: 9px;
            border: 2px solid #fff;
            border-top: 0;
            border-radius: 0 0 14px 14px;
        }
        .logo-mark::after {
            content: "";
            position: absolute;
            top: 11px;
            left: 10px;
            width: 8px;
            height: 2px;
            background: #fff;
            border-radius: 4px;
            box-shadow: 0 0 0 2px var(--primary), 0 3px 0 0 #fff;
        }
        .logo-text {
            font-size: 20px;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: var(--ink);
            line-height: 1.1;
        }
        .logo-sub {
            display: inline-flex;
            font-size: 11px;
            font-weight: 700;
            color: var(--muted);
            border: 1px solid var(--line);
            border-radius: 4px;
            padding: 2px 6px;
            letter-spacing: .1em;
            writing-mode: vertical-rl;
            line-height: 1.5;
            margin-left: 8px;
        }
        .site-nav-list {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .site-nav-list a {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            position: relative;
            padding: 6px 0;
        }
        .site-nav-list a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform .25s ease;
            transform-origin: left center;
        }
        .site-nav-list a:hover::after,
        .site-nav-list a.active::after {
            transform: scaleX(1);
        }
        .site-nav-list a:hover,
        .site-nav-list a.active {
            color: var(--primary);
            font-weight: 700;
        }
        .nav-right-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }
        .header-search {
            display: flex;
            align-items: center;
            background: transparent;
            border: 1px solid var(--line);
            border-radius: 999px;
            height: 38px;
            padding: 0 14px;
            gap: 6px;
            transition: border-color .2s ease, background .2s ease;
        }
        .header-search input {
            border: 0;
            outline: 0;
            background: transparent;
            width: 72px;
            font-size: 14px;
            color: var(--ink);
        }
        .header-search input::placeholder {
            color: var(--muted);
        }
        .header-search:hover {
            border-color: var(--primary);
        }
        .header-search i {
            color: var(--muted);
            font-size: 14px;
        }
        .header-cta {
            height: 38px;
            padding: 0 20px;
            background: var(--primary);
            color: #fff;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--primary);
            transition: var(--transition);
        }
        .header-cta:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            transform: translateY(-1px);
        }
        .header-search-mobile {
            display: none;
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--line);
            border-radius: 50%;
            color: var(--ink);
            font-size: 15px;
            cursor: pointer;
        }
        .header-cta-mobile {
            display: none;
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            font-size: 14px;
            border: 0;
            cursor: pointer;
        }
        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--line);
            border-radius: 50%;
            cursor: pointer;
            gap: 5px;
            transition: border-color .2s ease;
        }
        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            border-radius: 2px;
            background: var(--ink);
            transition: transform .3s ease, background .3s ease, top .3s ease;
        }
        .nav-toggle:hover {
            border-color: var(--primary);
        }
        @media (max-width:1100px) {
            .site-nav-list {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .nav-left-wrap {
                gap: 12px;
            }
            .mobile-menu-panel {
                display: block;
            }
        }
        @media (max-width:640px) {
            .header-search {
                display: none;
            }
            .header-search-mobile {
                display: inline-flex;
            }
            .header-cta {
                display: none;
            }
            .header-cta-mobile {
                display: inline-flex;
            }
            .header-cta-mobile i {
                font-size: 15px;
                margin-right: 2px;
            }
            .grid-container {
                padding-left: 20px;
                padding-right: 20px;
            }
            .site-header .header-inner {
                padding: 0 20px;
            }
        }

        /* mobile menu drawer */
        .mobile-menu-drawer {
            position: fixed;
            top: 66px;
            left: 0;
            right: 0;
            z-index: 99;
            background: rgba(246, 241, 235, .98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--line);
            padding: 28px 32px 36px;
            display: none;
            transform: translateY(-12px);
            opacity: 0;
            transition: transform .3s ease, opacity .3s ease;
        }
        .mobile-menu-drawer.open {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-menu-drawer nav {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .mobile-menu-drawer nav a {
            font-size: 20px;
            font-weight: 800;
            color: var(--ink);
            padding: 6px 0;
            border-bottom: 1px solid var(--line);
        }
        .mobile-menu-drawer nav a.active {
            color: var(--primary);
        }

        /* =========================== hero split =========================== */
        .hero-section {
            min-height: calc(100svh - 0px);
            position: relative;
            display: flex;
            align-items: stretch;
            background: var(--paper);
            padding-top: 66px;
        }
        .hero-grid {
            width: 100%;
            max-width: 100vw;
            display: grid;
            grid-template-columns: minmax(0, .58fr) minmax(0, .42fr);
            min-height: calc(100svh - 66px);
        }
        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 64px 0 64px max(32px, calc((100vw - 1280px)/2 + 0px));
            padding-left: clamp(20px, calc((100vw - 1280px)/2 + 32px), 300px);
            padding-right: 60px;
            position: relative;
            z-index: 2;
        }
        .hero-badge-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 999px;
            height: 34px;
            padding: 0 16px;
            font-size: 13px;
            font-weight: 700;
            color: var(--ink);
        }
        .pulse-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            display: inline-block;
            animation: pulse 1.8s infinite;
        }
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(164, 30, 46, .4);
            }
            70% {
                box-shadow: 0 0 0 6px rgba(164, 30, 46, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(164, 30, 46, 0);
            }
        }
        .hero-title {
            font-size: clamp(48px, 5vw, 76px);
            line-height: 1.08;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--ink);
            max-width: 700px;
            margin-bottom: 24px;
        }
        .hero-title .primary-underline {
            color: var(--primary);
            position: relative;
            white-space: nowrap;
        }
        .hero-title .primary-underline::after {
            content: "";
            position: absolute;
            left: 0;
            right: 8px;
            bottom: 4px;
            height: 10px;
            background: rgba(212, 164, 76, .28);
            z-index: -1;
            border-radius: 2px;
        }
        .hero-lead {
            font-size: 18px;
            line-height: 1.9;
            color: var(--muted);
            max-width: 620px;
            margin-bottom: 32px;
        }
        .hero-meta {
            display: flex;
            align-items: center;
            gap: 22px;
            margin-bottom: 38px;
            flex-wrap: wrap;
        }
        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--muted);
            font-weight: 500;
        }
        .hero-meta-item i {
            color: var(--primary);
            font-size: 14px;
            width: 16px;
        }
        .hero-meta-item strong {
            color: var(--ink);
            font-weight: 700;
        }
        .hero-cta-row {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-visual {
            position: relative;
            min-height: 500px;
            overflow: hidden;
            padding-left: 16px;
        }
        .hero-visual .cover-container {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
        }
        .hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1);
            transition: transform .8s cubic-bezier(.2, .6, .3, 1);
        }
        .hero-visual:hover img {
            transform: scale(1.02);
        }
        .hero-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, var(--paper) 0%, rgba(246, 241, 235, 0.2) 18%, transparent 60%);
            pointer-events: none;
        }
        .hero-info-slab {
            position: absolute;
            left: 32px;
            bottom: 32px;
            z-index: 3;
            background: rgba(29, 25, 23, .78);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 18px;
            padding: 18px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 440px;
            transform: translateZ(0);
        }
        .hero-info-slab .slab-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }
        .hero-info-slab .slab-text {
            color: #fff;
            font-size: 13px;
            line-height: 1.5;
        }
        .hero-info-slab .slab-text strong {
            display: block;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 2px;
        }
        .hero-vertical {
            position: absolute;
            right: 16px;
            bottom: 90px;
            z-index: 4;
            writing-mode: vertical-rl;
            font-size: 12px;
            color: rgba(255, 255, 255, .6);
            letter-spacing: .3em;
            font-weight: 500;
            pointer-events: none;
        }

        @media (max-width: 980px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }
            .hero-content {
                padding: 80px 32px 40px;
            }
            .hero-visual {
                min-height: 420px;
                padding: 0 20px 20px;
                grid-row: 2;
            }
            .hero-visual .cover-container {
                position: relative;
                border-radius: 24px;
                overflow: hidden;
                height: 420px;
                width: 100%;
            }
            .hero-visual::after {
                display: none;
            }
            .hero-info-slab {
                left: 36px;
                bottom: 40px;
            }
            .hero-vertical {
                right: 30px;
                bottom: 60px;
            }
        }
        @media (max-width:640px) {
            .hero-section {
                padding-top: 66px;
            }
            .hero-content {
                padding: 56px 20px 36px;
            }
            .hero-title {
                font-size: clamp(40px, 10vw, 48px);
            }
            .hero-lead {
                font-size: 17px;
            }
            .hero-meta {
                gap: 14px;
                flex-direction: column;
                align-items: flex-start;
            }
            .hero-visual {
                min-height: 340px;
                padding: 0 20px 20px;
            }
            .hero-visual .cover-container {
                height: 340px;
                width: 100%;
                border-radius: 20px;
            }
            .hero-info-slab {
                left: 30px;
                right: 30px;
                padding: 16px 18px;
                bottom: 30px;
            }
            .hero-cta-row {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }
            .hero-cta-row .btn {
                width: 100%;
            }
        }

        /* section background variations */
        .bg-white {
            background: var(--surface);
        }
        .bg-paper {
            background: var(--paper);
        }
        .bg-dark {
            background: var(--dark);
            color: #fff;
        }
        .bg-dark p {
            color: #B9B0A7;
        }

        /* ================== timeline ============= */
        .timeline-section {
            background: var(--surface);
            padding: 120px 0;
        }
        .timeline-wrap {
            display: grid;
            grid-template-columns: minmax(0, 380px) 1fr;
            gap: 40px;
        }
        .timeline-sticky-wrap {
            position: relative;
        }
        .timeline-sticky {
            position: sticky;
            top: 120px;
            padding-right: 32px;
        }
        .timeline-sticky h2 {
            font-size: 46px;
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.14;
            margin: 16px 0 16px;
        }
        .timeline-sticky .section-desc {
            color: var(--muted);
            line-height: 1.8;
            font-size: 17px;
            margin-bottom: 28px;
            max-width: 340px;
        }
        .timeline-control-chip {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 24px;
            border-radius: 999px;
            background: var(--dark);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            width: max-content;
        }
        .timeline-list {
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
        }
        .timeline-list::before {
            content: "";
            position: absolute;
            top: 20px;
            bottom: 20px;
            left: 50%;
            width: 2px;
            background: repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 14px);
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            width: 50%;
            padding: 0 40px 40px 0;
            margin-bottom: 16px;
        }
        .timeline-item:nth-child(even) {
            margin-left: 50%;
            padding: 0 0 40px 40px;
        }
        .timeline-dot {
            position: absolute;
            top: 24px;
            right: -8px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--surface);
            border: 3px solid var(--primary);
            z-index: 2;
        }
        .timeline-item:nth-child(even) .timeline-dot {
            right: auto;
            left: -8px;
        }
        .timeline-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            transition: var(--transition);
            border-top: 3px solid transparent;
        }
        .timeline-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .timeline-item.current .timeline-card {
            border-left: 3px solid var(--primary);
            transform: translateX(8px);
            box-shadow: var(--shadow-hover);
        }
        .timeline-item.current .timeline-card .timeline-time {
            color: var(--primary);
        }
        .timeline-time {
            font-size: 14px;
            font-weight: 800;
            letter-spacing: .08em;
            color: var(--muted);
            text-transform: uppercase;
        }
        .timeline-title {
            font-size: 20px;
            font-weight: 800;
            line-height: 1.3;
            margin: 10px 0 8px;
        }
        .timeline-desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }
        .timeline-item:nth-child(odd) {
            text-align: right;
        }
        @media (max-width: 1024px) {
            .timeline-wrap {
                grid-template-columns: 1fr;
            }
            .timeline-sticky {
                position: static;
                margin-bottom: 48px;
            }
            .timeline-list::before {
                left: 8px;
                transform: none;
            }
            .timeline-item,
            .timeline-item:nth-child(even),
            .timeline-item:nth-child(odd) {
                width: 100%;
                margin-left: 0;
                padding: 0 0 24px 32px;
                text-align: left;
            }
            .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                right: auto;
                left: 0;
            }
            .timeline-item.current .timeline-card {
                transform: translateX(0);
            }
        }
        @media (max-width:640px) {
            .timeline-section {
                padding: 80px 0;
            }
            .timeline-sticky h2 {
                font-size: 34px;
            }
        }

        /* ====================== guest / highlight ========================= */
        .highlights-section {
            background: var(--paper);
            padding: 110px 0;
        }
        .guest-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 80px;
        }
        .guest-card {
            background: var(--surface);
            border-radius: 20px;
            padding: 28px;
            display: flex;
            gap: 28px;
            border: 1px solid var(--line);
            transition: var(--transition);
        }
        .guest-card:hover {
            box-shadow: var(--shadow-hover);
        }
        .guest-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #EDE5DB;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            border: 4px solid #F6F1EB;
            box-shadow: 0 4px 12px rgba(27, 25, 23, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(164, 30, 46, .3);
            font-size: 46px;
            font-weight: 900;
        }
        .guest-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .guest-info {
            flex: 1;
            padding-right: 8px;
        }
        .guest-role {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: .05em;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .guest-name {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 4px;
        }
        .guest-company {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 12px;
        }
        .guest-bio {
            font-size: 14px;
            line-height: 1.7;
            color: var(--muted);
        }
        .guest-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            font-weight: 700;
            font-size: 14px;
        }
        .guest-link .arrow {
            transform: translateX(0);
            transition: transform .2s ease;
        }
        .guest-card:hover .guest-link .arrow {
            transform: translateX(5px);
        }
        .three-feature-row {
            display: grid;
            grid-template-columns: 1fr 0.92fr 1fr;
            gap: 28px;
            margin-top: 40px;
            align-items: start;
        }
        .feature-card {
            background: var(--surface);
            padding: 34px 32px 32px;
            border-radius: var(--radius-md);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-base);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .feature-card:nth-child(2) {
            transform: translateY(24px);
        }
        .feature-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .feature-card:nth-child(2):hover {
            transform: translateY(14px);
        }
        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: var(--primary-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
        }
        .feature-sub {
            font-size: 14px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: .06em;
            margin-bottom: 8px;
        }
        .feature-card h3 {
            font-size: 22px;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 12px;
        }
        .feature-card p {
            color: var(--muted);
            line-height: 1.7;
            font-size: 15px;
        }
        .feature-list {
            margin-top: 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .feature-list li {
            list-style: none;
            display: flex;
            gap: 8px;
            font-size: 14px;
            color: var(--ink);
        }
        .feature-list li i {
            color: var(--primary);
            font-size: 12px;
            margin-top: 5px;
        }
        @media (max-width: 1024px) {
            .guest-grid {
                grid-template-columns: 1fr;
            }
            .three-feature-row {
                grid-template-columns: 1fr;
            }
            .feature-card:nth-child(2) {
                transform: none;
            }
        }
        @media (max-width: 640px) {
            .guest-card {
                flex-direction: column;
                gap: 18px;
            }
            .guest-avatar {
                width: 88px;
                height: 88px;
            }
            .three-feature-row {
                gap: 16px;
            }
        }

        /* ========================= ticket ========================== */
        .ticket-section {
            background: var(--surface);
            padding: 120px 0;
        }
        .ticket-section .section-intro {
            max-width: 500px;
            margin: 0 auto 72px;
            text-align: center;
        }
        .ticket-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            padding: 40px 0 20px;
            flex-wrap: wrap;
        }
        .ticket-card {
            width: calc(33.333% - 16px);
            max-width: 380px;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 40px 30px 32px;
            position: relative;
            transition: var(--transition);
            box-shadow: var(--shadow-base);
            display: flex;
            flex-direction: column;
        }
        .ticket-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-6px);
        }
        .ticket-card.recommended {
            transform: translateY(-16px) scale(1.03);
            border-color: rgba(164, 30, 46, .2);
            box-shadow: 0 24px 50px -24px rgba(164, 30, 46, .3);
            padding-top: 44px;
        }
        .ticket-card.recommended:hover {
            transform: translateY(-20px) scale(1.03);
        }
        .ticket-ribbon {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            padding: 4px 18px;
            border-radius: 999px;
            letter-spacing: .04em;
            white-space: nowrap;
        }
        .ticket-type {
            font-size: 14px;
            letter-spacing: .08em;
            text-transform: uppercase;
            font-weight: 800;
            color: var(--muted);
            margin-bottom: 16px;
        }
        .ticket-price-wrap {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 24px;
        }
        .ticket-price {
            font-size: 64px;
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1;
            color: var(--ink);
        }
        .ticket-price small {
            font-size: 16px;
            font-weight: 600;
            color: var(--muted);
            margin-left: 4px;
        }
        .ticket-benefits {
            list-style: none;
            padding: 0;
            margin: 0 0 32px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 14px;
            flex: 1;
        }
        .ticket-benefits li {
            font-size: 14px;
            display: flex;
            gap: 8px;
            align-items: flex-start;
            color: var(--ink);
        }
        .ticket-benefits i {
            color: var(--primary);
            font-size: 12px;
            margin-top: 6px;
            width: 14px;
            flex-shrink: 0;
        }
        .ticket-benefits li.disabled {
            opacity: .35;
        }
        .ticket-benefits li.disabled i {
            color: var(--muted);
        }
        .ticket-btn {
            width: 100%;
            height: 54px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--line);
            background: var(--surface);
            font-weight: 700;
            font-size: 15px;
            transition: var(--transition);
            cursor: pointer;
            color: var(--ink);
        }
        .ticket-card.recommended .ticket-btn {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .ticket-card.recommended .ticket-btn:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            transform: translateY(-2px);
        }
        .ticket-card.vip-card .ticket-btn {
            background: var(--dark);
            border-color: var(--dark);
            color: #fff;
        }
        .ticket-card.vip-card .ticket-btn:hover {
            background: #000;
            transform: translateY(-2px);
        }
        .ticket-card:not(.recommended):not(.vip-card) .ticket-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }
        @media (max-width: 1024px) {
            .ticket-grid {
                gap: 48px;
            }
            .ticket-card {
                width: calc(50% - 12px);
                max-width: 340px;
            }
            .ticket-card.recommended {
                order: -1;
                transform: none;
            }
            .ticket-card.recommended:hover {
                transform: translateY(-6px);
            }
        }
        @media (max-width: 640px) {
            .ticket-card {
                width: 100%;
                max-width: 100%;
            }
            .ticket-card.recommended {
                order: 0;
            }
            .ticket-price {
                font-size: 56px;
            }
        }

        /* ========================== CMS latest news =========================== */
        .news-section {
            background: var(--paper);
            padding: 120px 0 130px;
        }
        .news-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 48px;
        }
        .news-head-left {
            max-width: 560px;
        }
        .news-head-left .eyebrow {
            color: var(--primary);
            font-weight: 800;
            font-size: 14px;
            letter-spacing: .1em;
            text-transform: uppercase;
        }
        .news-head-left h2 {
            font-size: 44px;
            font-weight: 900;
            margin: 12px 0 8px;
            letter-spacing: -0.02em;
        }
        .news-head-left p {
            color: var(--muted);
            font-size: 16px;
        }
        .news-more-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            color: var(--ink);
            font-weight: 800;
            font-size: 14px;
        }
        .news-more-link:hover {
            color: var(--primary);
        }

        .cms-news-list {
            list-style: none;
        }
        .cms-feature-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: grid;
            grid-template-columns: 2fr 1.1fr;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-base);
            transition: var(--transition);
            margin-bottom: 28px;
        }
        .cms-feature-card:hover {
            box-shadow: var(--shadow-hover);
        }
        .cms-feature-media {
            position: relative;
            background: #EDE5DB;
            min-height: 280px;
            overflow: hidden;
        }
        .cms-feature-media img,
        .cms-feature-media .img-fallback {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }
        .cms-feature-media .img-fallback {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
            font-weight: 900;
            color: rgba(27, 25, 23, .12);
            background: #F0EAE2;
        }
        .cms-feature-body {
            padding: 38px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .cms-feature-body .cms-cat {
            margin-bottom: 18px;
        }
        .cms-feature-body h3 {
            font-size: 28px;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 12px;
        }
        .cms-feature-body p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .cms-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--muted);
        }
        .cms-meta .meta-sep {
            width: 3px;
            height: 3px;
            background: var(--muted);
            border-radius: 50%;
        }
        .cms-meta a {
            font-weight: 700;
            color: var(--ink);
        }
        .cms-meta a:hover {
            color: var(--primary);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .cms-news-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-base);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .cms-news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-6px);
        }
        .cms-news-media {
            aspect-ratio: 16/10;
            background: #EDE5DB;
            position: relative;
            overflow: hidden;
        }
        .cms-news-media img,
        .cms-news-media .img-fallback {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
            transition: transform .4s ease;
        }
        .cms-news-card:hover .cms-news-media img {
            transform: scale(1.03);
        }
        .cms-news-media .img-fallback {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 44px;
            font-weight: 900;
            color: rgba(27, 25, 23, .12);
        }
        .cms-news-cat {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
        }
        .cms-news-body {
            padding: 22px 24px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .cms-news-body h4 {
            font-size: 18px;
            font-weight: 800;
            line-height: 1.45;
            margin-bottom: 10px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .cms-news-body p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            margin-bottom: 18px;
            flex: 1;
        }
        .cms-news-body .cms-meta {
            margin-top: auto;
        }
        .news-empty-state {
            border: 2px dashed var(--line);
            border-radius: var(--radius-lg);
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 15px;
            letter-spacing: .05em;
            background: rgba(255,255,255,.4);
        }
        @media (max-width: 1100px) {
            .cms-feature-card {
                grid-template-columns: 1.4fr 1fr;
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 680px) {
            .cms-feature-card {
                grid-template-columns: 1fr;
            }
            .cms-feature-media {
                min-height: 200px;
                aspect-ratio: 16/10;
            }
            .cms-feature-body {
                padding: 28px 24px;
            }
            .cms-feature-body h3 {
                font-size: 22px;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .news-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
        }

        /* ========================== FAQ =========================== */
        .faq-section {
            background: var(--surface);
            padding: 120px 0;
        }
        .faq-wrap {
            display: grid;
            grid-template-columns: minmax(0, 420px) 1fr;
            gap: 64px;
        }
        .faq-sticky {
            position: sticky;
            top: 120px;
            align-self: flex-start;
        }
        .faq-sticky .eyebrow {
            color: var(--primary);
            font-weight: 800;
            font-size: 14px;
            letter-spacing: .1em;
        }
        .faq-sticky h2 {
            font-size: 44px;
            font-weight: 900;
            line-height: 1.16;
            margin: 14px 0 16px;
        }
        .faq-sticky p {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.8;
        }
        .faq-accordion {
            list-style: none;
        }
        .faq-item {
            border-bottom: 1px solid var(--line);
        }
        .faq-item:first-child {
            border-top: 1px solid var(--line);
        }
        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: 0;
            padding: 22px 8px 22px 0;
            cursor: pointer;
            font-size: 17px;
            font-weight: 700;
            text-align: left;
            color: var(--ink);
            min-height: 66px;
            transition: color .15s ease;
        }
        .faq-q:hover {
            color: var(--primary);
        }
        .faq-q .faq-icon {
            position: relative;
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            border-radius: 50%;
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .faq-q .faq-icon::before,
        .faq-q .faq-icon::after {
            content: "";
            position: absolute;
            background: var(--ink);
            transition: background .2s ease, transform .2s ease;
        }
        .faq-q .faq-icon::before {
            width: 10px;
            height: 1.5px;
        }
        .faq-q .faq-icon::after {
            width: 1.5px;
            height: 10px;
        }
        .faq-q:hover .faq-icon {
            border-color: var(--primary);
        }
        .faq-item.open .faq-q .faq-icon::after {
            transform: scaleY(0);
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .45s ease, padding .3s ease;
            padding: 0 32px 0 0;
        }
        .faq-a-inner {
            padding: 0 0 24px;
            max-width: 680px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
        }
        .faq-a-inner strong {
            color: var(--primary);
        }
        @media (max-width: 1024px) {
            .faq-wrap {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .faq-sticky {
                position: static;
            }
        }
        @media (max-width: 640px) {
            .faq-sticky h2 {
                font-size: 32px;
            }
        }

        /* ========================= CTA with form =========================== */
        .cta-section {
            background: var(--dark);
            padding: 110px 0;
            color: #fff;
        }
        .cta-inner {
            display: grid;
            grid-template-columns: minmax(0, .95fr) minmax(0, 1.2fr);
            gap: 64px;
            align-items: center;
        }
        .cta-copy .eyebrow {
            color: #D4A44C;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: .1em;
            margin-bottom: 18px;
        }
        .cta-copy h2 {
            font-size: 42px;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        .cta-copy > p {
            color: #B9B0A7;
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 460px;
        }
        .cta-contact {
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(255, 255, 255, .06);
            border-radius: 16px;
            padding: 20px 24px;
            width: max-content;
            min-width: 320px;
        }
        .cta-contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .cta-contact strong {
            display: block;
            font-size: 18px;
            margin-bottom: 2px;
            color: #fff;
        }
        .cta-contact span {
            color: #B9B0A7;
            font-size: 14px;
        }
        .cta-form-card {
            background: var(--surface);
            border-radius: 20px;
            padding: 44px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
            color: var(--ink);
        }
        .cta-form-title {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 6px;
        }
        .cta-form-sub {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 30px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }
        .form-group.full {
            grid-column: 1 / -1;
        }
        .form-label {
            font-size: 14px;
            font-weight: 700;
            display: block;
            margin-bottom: 6px;
            color: var(--ink);
        }
        .form-control {
            width: 100%;
            height: 48px;
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 0 16px;
            font-size: 15px;
            background: #FCFAF7;
            color: var(--ink);
            transition: border-color .2s ease, box-shadow .2s ease;
            outline: none;
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(164, 30, 46, .12);
            background: #fff;
        }
        textarea.form-control {
            height: 92px;
            padding: 14px 16px;
            resize: vertical;
        }
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231B1917' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }
        .btn-block {
            width: 100%;
        }
        .form-submit-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 8px;
        }
        .form-security {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
        }
        .form-security i {
            font-size: 15px;
            color: #3A9A4D;
        }
        @media (max-width: 1024px) {
            .cta-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }
        @media (max-width: 640px) {
            .cta-section {
                padding: 80px 0;
            }
            .cta-copy .cta-contact {
                flex-direction: column;
                align-items: flex-start;
                min-width: 0;
                width: 100%;
            }
            .cta-form-card {
                padding: 28px 20px;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .cta-copy h2 {
                font-size: 32px;
            }
            .hero-section {
                min-height: 100vh;
            }
        }

        /* mobile CTA / countdown preview */
        .mini-countdown-strip {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(164, 30, 46, .05);
            border: 1px dashed rgba(164, 30, 46, .2);
            padding: 14px 20px;
            border-radius: 14px;
            margin: 28px 0 10px;
            flex-wrap: wrap;
        }
        .mini-countdown-strip .cd-label {
            font-size: 14px;
            font-weight: 700;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cd-clock {
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            color: var(--primary);
            font-size: 18px;
        }
        .cd-clock .cd-sep {
            opacity: .5;
            margin: 0 2px;
            font-weight: 400;
        }
        @media (max-width: 480px) {
            .mini-countdown-strip {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        /* ======================== footer ============================== */
        .site-footer {
            background: var(--dark);
            color: #fff;
        }
        .footer-top-line {
            width: 24px;
            height: 2px;
            background: var(--primary);
            margin-bottom: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 0.8fr 18%;
            gap: 48px;
            padding: 72px 0 64px;
        }
        .footer-brand .logo-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }
        .footer-brand .logo-text {
            color: #fff;
            font-size: 24px;
        }
        .footer-brand p {
            color: #B9B0A7;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #B9B0A7;
            font-size: 14px;
            transition: all .25s ease;
        }
        .footer-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .footer-col h5 {
            font-size: 15px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: .02em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-col ul a {
            color: #B9B0A7;
            font-size: 14px;
            transition: color .2s ease;
        }
        .footer-col ul a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 22px 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            font-size: 14px;
            color: rgba(255, 255, 255, .5);
        }
        .footer-legal-links {
            display: flex;
            gap: 20px;
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 28px;
            }
        }
        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px 16px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        /* reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .65s ease-out, transform .65s ease-out;
        }
        .reveal.visible {
            opacity: 1;
            transform: none;
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
            }
            .reveal {
                opacity: 1;
                transform: none;
            }
        }

/* roulang page: article */
:root {
    --paper: #F6F1EB;
    --surface: #FFFFFF;
    --ink: #1B1917;
    --muted: #6E6660;
    --primary: #A41E2E;
    --primary-hover: #831523;
    --primary-soft: rgba(164, 30, 46, .06);
    --accent: #D4A44C;
    --dark: #1D1917;
    --dark-soft: rgba(29, 25, 23, .8);
    --line: rgba(27, 25, 23, .12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 0 rgba(27, 25, 23, .04);
    --shadow-md: 0 18px 45px -30px rgba(27, 25, 23, .35);
    --space-section-lg: clamp(72px, 9vw, 128px);
    --space-section-sm: clamp(48px, 6vw, 76px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul,
ol,
p,
figure,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
button,
input,
select,
textarea {
    font: inherit;
}
button {
    cursor: pointer;
    border: 0;
    background: none;
}
html,
body {
    width: 100%;
    overflow-x: hidden;
}
.container-xl {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
}
.container-narrow {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
}
:focus-visible {
    outline: 3px solid rgba(164, 30, 46, .38);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 66px;
    z-index: 1000;
    background: rgba(246, 241, 235, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}
.brand-main {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}
.brand-lockup {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
    padding-right: 10px;
}
.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--dark);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 10px 20px -12px rgba(29, 25, 23, .7);
}
.logo-mark::before {
    content: "爱";
}
.logo-text {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.logo-sub {
    font-size: 10px;
    line-height: 1;
    letter-spacing: .22em;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 5px 7px 4px;
    border-radius: 999px;
    background: var(--surface);
    white-space: nowrap;
}
.site-nav-list {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.3vw, 34px);
    min-width: 0;
    flex-wrap: nowrap;
}
.site-nav-list a {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    padding: 8px 0;
    white-space: nowrap;
    transition: color .25s ease;
}
.site-nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .28s ease;
}
.site-nav-list a:hover {
    color: var(--primary);
}
.site-nav-list a:hover::after {
    transform: scaleX(1);
}
.site-nav-list a.active {
    color: var(--primary);
}
.site-nav-list a.active::after {
    transform: scaleX(1);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
}
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 26px -16px rgba(164, 30, 46, .8);
}
.header-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 16px 30px -18px rgba(164, 30, 46, .8);
}
.menu-state {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 99px;
    transition: all .25s ease;
}
.nav-toggle span {
    position: relative;
    background: transparent;
}
.nav-toggle span::before {
    transform: translateY(-4px);
}
.nav-toggle span::after {
    transform: translateY(3px);
}
.mobile-menu {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 28px;
    height: 48px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    transition: all .25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 16px 30px -20px rgba(164, 30, 46, .75);
}
.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 34px -22px rgba(164, 30, 46, .8);
}
.btn-outline {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-soft {
    background: var(--primary-soft);
    color: var(--primary);
}
.btn-soft:hover {
    background: rgba(164, 30, 46, .12);
    color: var(--primary-hover);
    transform: translateY(-2px);
}
.btn-sm {
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
}

/* Main article page */
.article-page-main {
    padding-top: 66px;
}

/* Article heading */
.article-top {
    padding: 64px 0 36px;
    background: var(--paper);
}
.article-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 26px;
}
.breadcrumb a {
    color: var(--muted);
    transition: color .2s ease;
}
.breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb .separator {
    opacity: .4;
}
.article-title {
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -0.045em;
    max-width: 820px;
    margin: 0 0 28px;
    text-wrap: balance;
}
.article-meta-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    font-size: 13px;
    color: var(--muted);
}
.meta-category {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.meta-item i {
    font-size: 12px;
    opacity: .65;
}
.article-hero-aside {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.aside-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .14em;
    color: var(--accent);
    border: 1px solid rgba(212, 164, 76, .4);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-weight: 700;
    background: rgba(212, 164, 76, .08);
}
.article-hero-aside h2 {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 800;
    margin-bottom: 10px;
}
.article-hero-aside p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 22px;
}
.aside-actions {
    display: grid;
    gap: 10px;
}
.aside-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Article content card */
.article-entry-section {
    padding: 0 0 var(--space-section-sm);
    position: relative;
}
.article-entry-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.article-content-inner {
    padding: clamp(28px, 5.2vw, 68px) clamp(22px, 6vw, 80px);
    max-width: 900px;
    margin: 0 auto;
}
.article-prose {
    font-size: 17px;
    line-height: 1.9;
    color: var(--ink);
}
.article-prose > * + * {
    margin-top: 1.3em;
}
.article-prose h2 {
    font-size: clamp(25px, 3vw, 32px);
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-top: 1.8em;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.article-prose h3 {
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.4;
    font-weight: 800;
    margin-top: 1.6em;
}
.article-prose h4 {
    font-size: 18px;
    font-weight: 800;
    margin-top: 1.5em;
}
.article-prose p {
    margin-top: 0;
}
.article-prose a {
    color: var(--primary);
    border-bottom: 1px solid rgba(164, 30, 46, .3);
    transition: all .2s ease;
}
.article-prose a:hover {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
}
.article-prose blockquote {
    border-left: 3px solid var(--accent);
    background: rgba(212, 164, 76, .08);
    padding: 18px 24px;
    border-radius: 0 16px 16px 0;
    color: var(--muted);
}
.article-prose ul,
.article-prose ol {
    padding-left: 1.25em;
}
.article-prose li {
    margin-top: .45em;
}
.article-prose img {
    border-radius: var(--radius-md);
    margin: 34px 0 28px;
    background: var(--paper);
}
.article-prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    margin-top: 1.5em;
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
}
.article-prose th {
    background: var(--paper);
    font-weight: 700;
    text-align: left;
    padding: 12px 14px;
    border: 1px solid var(--line);
}
.article-prose td {
    padding: 11px 14px;
    border: 1px solid var(--line);
    vertical-align: top;
}
.article-prose hr {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: 40px 0;
}
.article-signature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 26px 0 0;
    border-top: 1px solid var(--line);
    margin-top: 52px;
    font-size: 13px;
    color: var(--muted);
}
.signature-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.signature-source {
    color: var(--primary);
    font-weight: 600;
}
.signature-updated i {
    margin-right: 6px;
}

/* Not found */
.not-found-state {
    text-align: center;
    padding: 48px 12px 16px;
    max-width: 560px;
    margin: 0 auto;
}
.not-found-state .not-found-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 28px;
    border-radius: 28px;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--muted);
    border: 1px dashed var(--line);
}
.not-found-state h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.not-found-state p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 28px;
}

/* Post footer nav */
.post-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    padding: 4px 0 32px;
}
.post-bottom-actions .btn {
    height: 44px;
    padding: 0 22px;
}

/* Official guide section */
.guide-section {
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: var(--space-section-sm) 0;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    color: var(--primary);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--accent);
}
.section-heading {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 14px;
}
.section-desc {
    font-size: 17px;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.8;
}
.guide-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 52px;
}
.guide-heading-row .btn-outline {
    flex-shrink: 0;
}
.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.guide-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    box-shadow: var(--shadow-sm);
}
.guide-card:hover {
    transform: translateY(-6px);
    border-color: rgba(164, 30, 46, .3);
    box-shadow: 0 24px 44px -30px rgba(27, 25, 23, .35);
}
.guide-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper);
}
.guide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.guide-card:hover .guide-media img {
    transform: scale(1.03);
}
.guide-info {
    padding: 22px 22px 24px;
}
.guide-cat {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}
.guide-info h3 {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
}
.guide-info p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}
.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}
.guide-link i {
    transition: transform .25s ease;
}
.guide-card:hover .guide-link {
    color: var(--primary);
}
.guide-card:hover .guide-link i {
    transform: translateX(4px);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: #B9B0A7;
    padding: 76px 0 32px;
}
.footer-top-line {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 99px;
    margin-bottom: 48px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr .8fr .9fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand .logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .72);
    max-width: 330px;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    transition: all .25s ease;
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-col h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: .04em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.footer-col a {
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.6;
    transition: color .2s ease;
}
.footer-col a:hover {
    color: #fff;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}
.footer-legal-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-legal-links a {
    color: rgba(255, 255, 255, .6);
    transition: color .2s ease;
}
.footer-legal-links a:hover {
    color: #fff;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive */
@media (max-width: 1180px) {
    .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .site-nav-list {
        gap: 18px;
    }
    .article-top {
        padding-top: 48px;
    }
}
@media (max-width: 1024px) {
    .article-top-grid {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 28px;
    }
}
@media (max-width: 960px) {
    .site-nav-list,
    .header-search {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .menu-state:checked ~ .mobile-menu {
        display: block;
    }
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }
    .article-top-grid {
        grid-template-columns: 1fr;
    }
    .article-hero-aside {
        max-width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 40px;
    }
}
@media (max-width: 760px) {
    .article-content-inner {
        padding: 32px 22px 40px;
    }
    .article-title {
        font-size: 34px;
        margin-bottom: 22px;
    }
    .article-prose {
        font-size: 16px;
    }
    .article-top {
        padding-top: 38px;
    }
    .guide-grid {
        grid-template-columns: 1fr;
    }
    .guide-heading-row {
        margin-bottom: 32px;
    }
    .logo-sub {
        display: none;
    }
    .brand-lockup {
        gap: 12px;
    }
    .header-cta {
        padding: 0 17px;
        font-size: 14px;
        height: 40px;
    }
    .logo-text {
        font-size: 20px;
    }
    .mobile-menu {
        position: fixed;
        top: 66px;
        left: 12px;
        right: 12px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: 0 28px 60px -28px rgba(27, 25, 23, .4);
        padding: 16px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 6px;
        z-index: 1001;
    }
    .mobile-menu a {
        padding: 13px 14px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        color: var(--ink);
        background: transparent;
        transition: all .2s ease;
    }
    .mobile-menu a:hover {
        background: var(--paper);
        color: var(--primary);
    }
    .post-bottom-actions .btn {
        flex: 1 1 100%;
    }
}
@media (max-width: 520px) {
    .brand-lockup {
        gap: 0;
    }
    .logo-mark {
        width: 38px;
        height: 38px;
        font-size: 19px;
        border-radius: 13px;
    }
    .container-xl {
        padding: 0 20px;
    }
    .article-meta-list {
        gap: 10px 14px;
    }
    .guide-grid {
        gap: 16px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .header-cta {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
}

/* roulang page: category1 */
:root {
            --paper: #F6F1EB;
            --surface: #FFFFFF;
            --ink: #1B1917;
            --muted: #6E6660;
            --primary: #A41E2E;
            --primary-hover: #831523;
            --primary-soft: rgba(164, 30, 46, .06);
            --accent: #D4A44C;
            --dark: #1D1917;
            --dark-soft: rgba(29, 25, 23, .8);
            --line: rgba(27, 25, 23, .12);
            --radius-lg: 24px;
            --radius-md: 18px;
            --radius-sm: 12px;
            --shadow-1: 0 1px 0 rgba(27, 25, 23, .04);
            --shadow-2: 0 20px 40px -28px rgba(27, 25, 23, .35);
            --ease: cubic-bezier(.2, .7, .2, 1);
            --header-h: 66px;
            --container-w: 1280px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
            background: var(--paper);
            color: var(--ink);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        body.inner-page {
            padding-top: var(--header-h);
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .25s var(--ease), background-color .25s var(--ease);
        }

        button,
        input,
        select,
        textarea {
            font: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: 0;
        }

        .container-xl {
            max-width: var(--container-w);
            margin: 0 auto;
            padding-left: 32px;
            padding-right: 32px;
        }

        .section {
            padding: 112px 0;
        }

        .section-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 32px;
            margin-bottom: 48px;
        }

        .section-head .eyebrow {
            margin-bottom: 8px;
        }

        .section-head h2 {
            font-size: 44px;
            line-height: 1.15;
            margin: 0;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .12em;
            color: var(--primary);
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 18px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .muted-text {
            color: var(--muted);
        }

        .link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--ink);
            border-bottom: 1px solid transparent;
            padding-bottom: 2px;
            transition: gap .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
        }

        .link-arrow i {
            color: var(--primary);
            transition: transform .25s var(--ease);
        }

        .link-arrow:hover {
            color: var(--primary);
            border-color: var(--primary);
            gap: 12px;
        }

        .link-arrow:hover i {
            transform: translateX(3px);
        }

        /* Foundation 网格宽度修正 */
        .grid-container {
            max-width: var(--container-w);
            padding-left: 32px;
            padding-right: 32px;
        }

        .grid-x {
            display: flex;
            flex-flow: row wrap;
        }

        /* 按钮 */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 999px;
            padding: 14px 30px;
            font-weight: 700;
            font-size: 15px;
            line-height: 1.4;
            border: 1px solid transparent;
            transition: transform .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 18px -12px rgba(164, 30, 46, .5);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            box-shadow: 0 14px 26px -14px rgba(164, 30, 46, .45);
        }

        .btn-outline {
            border-color: var(--line);
            background: transparent;
            color: var(--ink);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-soft);
        }

        .btn-dark {
            background: var(--dark);
            color: #fff;
        }

        .btn-dark:hover {
            background: #2c2522;
        }

        .btn-lg {
            padding: 18px 40px;
            font-size: 16px;
        }

        .btn-sm {
            padding: 9px 20px;
            font-size: 14px;
        }

        .btn-block {
            width: 100%;
        }

        .btn-text {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--ink);
        }

        .btn-text i {
            color: var(--primary);
            transition: transform .25s var(--ease);
        }

        .btn-text:hover {
            color: var(--primary);
        }

        .btn-text:hover i {
            transform: translateX(4px);
        }

        /* 页头导航 */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-h);
            z-index: 90;
            background: var(--paper);
            border-bottom: 1px solid transparent;
            transition: background-color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
        }

        .site-header.is-scrolled {
            background: rgba(246, 241, 235, .92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom-color: var(--line);
            box-shadow: 0 4px 24px -20px rgba(27, 25, 23, .2);
        }

        .home-template .site-header:not(.is-scrolled) {
            background: transparent;
            border-bottom-color: transparent;
        }

        .header-inner {
            max-width: var(--container-w);
            margin: 0 auto;
            height: var(--header-h);
            padding: 0 32px;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .brand-mark {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            border: 1.5px solid var(--primary);
            position: relative;
            background: transparent;
            flex-shrink: 0;
        }

        .brand-mark::before,
        .brand-mark::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 3px;
        }

        .brand-mark::before {
            width: 10px;
            height: 10px;
            background: var(--primary);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
        }

        .brand-mark::after {
            width: 12px;
            height: 2px;
            background: var(--ink);
            left: 30%;
            transform: translateY(8px);
        }

        .brand-text {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.05;
        }

        .brand-name {
            font-size: 22px;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: var(--ink);
        }

        .brand-tag {
            font-size: 10px;
            font-weight: 500;
            color: var(--muted);
            border: 1px solid var(--line);
            border-radius: 99px;
            padding: 1px 6px;
            letter-spacing: .12em;
            margin-left: 2px;
            white-space: nowrap;
        }

        .site-nav-list {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-left: 42px;
        }

        .site-nav-list a {
            position: relative;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            padding: 10px 0 8px;
            white-space: nowrap;
        }

        .site-nav-list a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 2px;
            width: 0;
            height: 2px;
            border-radius: 2px;
            background: var(--primary);
            transition: width .25s var(--ease);
        }

        .site-nav-list a:hover {
            color: var(--primary);
        }

        .site-nav-list a:hover::after,
        .site-nav-list a.active::after {
            width: 100%;
        }

        .site-nav-list a.active {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: auto;
            flex-shrink: 0;
        }

        .icon-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--surface);
            color: var(--ink);
            border: 1px solid var(--line);
            transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
        }

        .icon-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            margin-left: 8px;
        }

        /* 分类横幅 */
        .cat-hero {
            background: var(--paper);
            border-bottom: 1px solid var(--line);
            padding: 82px 0 72px;
            position: relative;
            overflow: hidden;
        }

        .cat-hero::before {
            content: "";
            position: absolute;
            right: -180px;
            top: -180px;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(212, 164, 76, .08), transparent 68%);
            pointer-events: none;
        }

        .cat-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, .58fr) minmax(0, .42fr);
            gap: 64px;
            align-items: center;
        }

        .cat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
            letter-spacing: .06em;
            margin-bottom: 20px;
        }

        .cat-badge i {
            color: var(--primary);
        }

        .cat-hero__copy h1 {
            font-size: 58px;
            line-height: 1.08;
            font-weight: 900;
            letter-spacing: -0.035em;
            margin: 0 0 18px;
        }

        .cat-hero__copy h1 .accent {
            color: var(--primary);
            position: relative;
        }

        .cat-description {
            font-size: 19px;
            line-height: 1.8;
            color: var(--muted);
            max-width: 560px;
            margin: 0 0 28px;
        }

        .cat-hero__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 22px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 30px;
            border-top: 1px solid var(--line);
            padding-top: 18px;
            width: fit-content;
        }

        .cat-hero__meta i {
            color: var(--primary);
            margin-right: 6px;
        }

        .cat-hero__actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 22px;
        }

        .cat-hero__visual {
            position: relative;
            min-height: 380px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-2);
            background: #efe5db;
        }

        .cat-hero__visual-bg {
            position: absolute;
            inset: 0;
            background-image: url("/assets/images/backpic/back-1.webp");
            background-size: cover;
            background-position: center;
            transform: scale(1.01);
            transition: transform 1.2s var(--ease);
        }

        .cat-hero__visual:hover .cat-hero__visual-bg {
            transform: scale(1.02);
        }

        .cat-hero__visual-card {
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 20px;
            background: rgba(29, 25, 23, .82);
            border: 1px solid rgba(255, 255, 255, .14);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 18px;
            padding: 18px 22px;
            color: #fff;
        }

        .cat-hero__visual-card .status-line {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #d9d3cd;
            margin-bottom: 6px;
        }

        .cat-hero__visual-card .status-line i {
            color: var(--accent);
        }

        .cat-hero__visual-card strong {
            display: block;
            font-size: 19px;
            font-weight: 800;
            letter-spacing: .01em;
        }

        .cat-hero__visual-card small {
            display: block;
            margin-top: 4px;
            font-size: 13px;
            color: rgba(255, 255, 255, .68);
        }

        /* 信息说明板块 */
        .info-panels {
            background: var(--surface);
            padding: 104px 0;
        }

        .main-info-card {
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 44px;
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-1);
        }

        .main-info-card::after {
            content: "";
            position: absolute;
            right: -60px;
            bottom: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(164, 30, 46, .05), transparent 70%);
            pointer-events: none;
        }

        .main-info-card h2 {
            font-size: 34px;
            line-height: 1.2;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin: 10px 0 16px;
            max-width: 540px;
        }

        .main-info-card>p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--muted);
            margin: 0 0 30px;
            max-width: 620px;
        }

        .check-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px 20px;
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 1px dashed var(--line);
        }

        .check-list li i {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--primary-soft);
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            flex-shrink: 0;
        }

        .mini-info-stack {
            display: grid;
            gap: 20px;
            height: 100%;
        }

        .mini-info-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 20px;
            padding: 28px 30px;
            height: 100%;
            box-shadow: var(--shadow-1);
            transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
        }

        .mini-info-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-2);
            border-color: rgba(27, 25, 23, .18);
        }

        .mini-info-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: var(--primary-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 14px;
        }

        .mini-info-card h3 {
            font-size: 19px;
            font-weight: 800;
            margin: 0 0 6px;
        }

        .mini-info-card p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--muted);
            margin: 0;
        }

        .time-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            background: var(--paper);
            border-radius: 999px;
            padding: 4px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--ink);
            border: 1px solid var(--line);
        }

        .time-chip i {
            color: var(--accent);
        }

        /* 版本要闻 */
        .news-spotlight {
            padding: 112px 0;
            background: var(--paper);
        }

        .main-feature-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--line);
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-1);
            transition: box-shadow .3s var(--ease), transform .3s var(--ease);
        }

        .main-feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-2);
        }

        .main-feature-card__media {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            position: relative;
        }

        .main-feature-card__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s var(--ease);
        }

        .main-feature-card:hover .main-feature-card__media img {
            transform: scale(1.03);
        }

        .main-feature-card__body {
            padding: 28px 32px 32px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .card-tag-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 999px;
            border: 1px solid rgba(164, 30, 46, .12);
            letter-spacing: .04em;
        }

        .badge--accent {
            background: rgba(212, 164, 76, .12);
            color: #7a5e24;
            border-color: rgba(212, 164, 76, .2);
        }

        .badge--dark {
            background: var(--dark);
            color: #fff;
            border-color: var(--dark);
        }

        .main-feature-card__body h3 {
            font-size: 25px;
            line-height: 1.32;
            font-weight: 900;
            letter-spacing: -0.01em;
            margin: 0 0 12px;
            max-width: 520px;
        }

        .main-feature-card__body p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--muted);
            margin: 0 0 16px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .media-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            color: var(--muted);
            margin-top: auto;
        }

        .media-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .media-meta i {
            color: var(--primary);
            opacity: .55;
        }

        .side-feature-stack {
            display: grid;
            gap: 20px;
            height: 100%;
        }

        .side-feature-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--line);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 18px;
            height: 100%;
            box-shadow: var(--shadow-1);
            transition: transform .25s var(--ease), box-shadow .25s var(--ease);
        }

        .side-feature-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-2);
        }

        .side-feature-card__img {
            width: 120px;
            height: 96px;
            border-radius: 14px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .side-feature-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .side-feature-card__body {
            flex: 1;
            min-width: 0;
        }

        .side-feature-card__body .badge {
            margin-bottom: 8px;
            padding: 3px 10px;
            font-size: 11px;
        }

        .side-feature-card__body h4 {
            font-size: 16px;
            line-height: 1.4;
            font-weight: 800;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .side-feature-card__body time {
            display: block;
            margin-top: 6px;
            font-size: 12px;
            color: var(--muted);
        }

        /* 流程与数据 */
        .process-section {
            background: var(--surface);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .process-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
            gap: 64px;
            align-items: start;
        }

        .process-title {
            margin-bottom: 28px;
        }

        .process-title h2 {
            font-size: 40px;
            color: #fff;
            margin: 10px 0 0;
            font-weight: 900;
        }

        .process-steps {
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
        }

        .process-steps::before {
            content: "";
            position: absolute;
            left: 25px;
            top: 18px;
            bottom: 18px;
            width: 1px;
            background: var(--line);
        }

        .step-item {
            position: relative;
            padding-left: 72px;
            padding-bottom: 34px;
        }

        .step-item:last-child {
            padding-bottom: 0;
        }

        .step-num {
            position: absolute;
            left: 11px;
            top: 8px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--surface);
            border: 2px solid var(--primary);
            color: var(--primary);
            font-size: 13px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            box-shadow: 0 0 0 5px rgba(246, 241, 235, .8);
        }

        .step-item h4 {
            font-size: 17px;
            font-weight: 800;
            margin: 0 0 4px;
        }

        .step-item p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--muted);
            margin: 0;
            max-width: 490px;
        }

        .stats-panel {
            background: var(--paper);
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            padding: 44px 36px;
            box-shadow: var(--shadow-1);
        }

        .stats-panel .eyebrow {
            color: var(--primary);
        }

        .stats-panel h3 {
            font-size: 26px;
            font-weight: 900;
            margin: 8px 0 20px;
            letter-spacing: -0.01em;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 12px;
        }

        .stat-item {
            border-top: 1px solid var(--line);
            padding-top: 16px;
        }

        .stat-number {
            font-size: 40px;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--ink);
        }

        .stat-number em {
            font-style: normal;
            color: var(--primary);
        }

        .stat-label {
            font-size: 13px;
            color: var(--muted);
            margin-top: 4px;
        }

        .process-note {
            display: flex;
            gap: 12px;
            background: var(--primary-soft);
            border-radius: 14px;
            margin-top: 30px;
            padding: 14px 16px;
            border: 1px solid rgba(164, 30, 46, .08);
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
        }

        .process-note i {
            color: var(--primary);
            font-size: 18px;
            margin-top: 2px;
        }

        /* 轻量报名引导条 */
        .guide-wrap {
            padding: 36px 0 0;
            background: var(--surface);
        }

        .guide-bar {
            border: 1px solid rgba(164, 30, 46, .22);
            border-radius: 22px;
            background: linear-gradient(100deg, rgba(164, 30, 46, .04), rgba(212, 164, 76, .05));
            padding: 24px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .guide-bar__icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .guide-bar__text {
            display: flex;
            align-items: center;
            gap: 18px;
            flex: 1;
            min-width: 260px;
        }

        .guide-bar__text h3 {
            font-size: 18px;
            font-weight: 800;
            margin: 0 0 2px;
        }

        .guide-bar__text p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted);
            margin: 0;
        }

        /* FAQ */
        .faq-section {
            background: var(--paper);
            padding: 110px 0;
        }

        .faq-head {
            position: sticky;
            top: 110px;
        }

        .faq-head h2 {
            font-size: 42px;
            line-height: 1.2;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin: 8px 0 14px;
        }

        .faq-head p {
            color: var(--muted);
            margin: 0 0 24px;
            font-size: 16px;
            line-height: 1.8;
        }

        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--surface);
            border-radius: 18px;
            border: 1px solid var(--line);
            overflow: hidden;
            transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
        }

        .faq-item[open] {
            border-color: rgba(164, 30, 46, .25);
            box-shadow: var(--shadow-1);
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 22px 24px;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.45;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-icon {
            width: 22px;
            height: 22px;
            position: relative;
            flex-shrink: 0;
            border-radius: 50%;
            border: 1px solid var(--line);
            transition: border-color .3s var(--ease), transform .3s var(--ease), background-color .3s var(--ease);
        }

        .faq-icon::before,
        .faq-icon::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: var(--muted);
            border-radius: 2px;
            transition: background-color .3s;
        }

        .faq-icon::before {
            width: 10px;
            height: 2px;
        }

        .faq-icon::after {
            width: 2px;
            height: 10px;
        }

        .faq-item[open] .faq-icon {
            border-color: var(--primary);
            background: var(--primary);
        }

        .faq-item[open] .faq-icon::before,
        .faq-item[open] .faq-icon::after {
            background: #fff;
        }

        .faq-item[open] .faq-icon::after {
            opacity: 0;
        }

        .faq-item .faq-answer {
            padding: 0 26px 24px;
            font-size: 15px;
            line-height: 1.85;
            color: var(--muted);
            max-width: 760px;
        }

        .faq-item .faq-answer p {
            margin: 0 0 10px;
        }

        .faq-item .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer strong {
            color: var(--primary);
        }

        /* 底部 CTA */
        .cta-dark {
            background: var(--dark);
            color: #fff;
            padding: 100px 0;
            position: relative;
        }

        .cta-dark::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 2px;
            width: 100%;
            background: transparent;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
            gap: 72px;
            align-items: center;
        }

        .cta-copy h2 {
            font-size: 42px;
            line-height: 1.2;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin: 0 0 18px;
            color: #fff;
        }

        .cta-copy h2 em {
            font-style: normal;
            color: var(--accent);
        }

        .cta-copy p {
            color: #B9B0A7;
            font-size: 16px;
            line-height: 1.85;
            margin: 0 0 24px;
            max-width: 520px;
        }

        .cta-contact {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cta-contact-row {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #d9d3cd;
            font-size: 14px;
        }

        .cta-contact-row i {
            color: var(--accent);
            width: 18px;
            text-align: center;
        }

        .cta-form-card {
            background: var(--surface);
            color: var(--ink);
            border-radius: 24px;
            padding: 42px;
            box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .55);
        }

        .cta-form-card h3 {
            font-size: 22px;
            font-weight: 900;
            margin: 0 0 8px;
        }

        .cta-form-card p {
            font-size: 14px;
            color: var(--muted);
            margin: 0 0 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .cta-form ::placeholder {
            color: #aaa09a;
        }

        .cta-form input[type="text"],
        .cta-form input[type="tel"],
        .cta-form input[type="email"],
        .cta-form select,
        .cta-form textarea {
            width: 100%;
            height: 50px;
            padding: 0 16px;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: var(--paper);
            font-size: 15px;
            transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
            appearance: none;
            -webkit-appearance: none;
        }

        .cta-form select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236E6660' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 40px;
        }

        .cta-form input:focus,
        .cta-form select:focus,
        .cta-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(164, 30, 46, .12);
            background: #fff;
        }

        .cta-form textarea {
            height: 100px;
            padding: 14px 16px;
            resize: vertical;
        }

        .cta-form .btn {
            margin-top: 8px;
        }

        .form-success {
            display: none;
            background: #EFF7F0;
            border: 1px solid #CEE5D0;
            color: #2E6B3A;
            font-size: 14px;
            border-radius: 12px;
            padding: 14px 16px;
            margin-bottom: 16px;
        }

        .form-success.show {
            display: block;
        }

        .form-legal {
            font-size: 12px;
            color: var(--muted);
            margin-top: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* 页脚 */
        .site-footer {
            background: var(--dark);
            padding: 76px 0 28px;
            color: #B9B0A7;
            position: relative;
        }

        .footer-top-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 56px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.85;
            color: #B9B0A7;
            max-width: 360px;
            margin: 22px 0 20px;
        }

        .logo-row {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-mark {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            border: 1.5px solid var(--primary);
            position: relative;
        }

        .logo-mark::before,
        .logo-mark::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 3px;
        }

        .logo-mark::before {
            width: 10px;
            height: 10px;
            background: var(--primary);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
        }

        .logo-mark::after {
            width: 12px;
            height: 2px;
            background: #fff;
            left: 30%;
            transform: translateY(8px);
        }

        .logo-text {
            font-size: 22px;
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.02em;
        }

        .logo-sub {
            font-size: 10px;
            color: #B9B0A7;
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 99px;
            padding: 1px 6px;
            letter-spacing: .1em;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .14);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #B9B0A7;
            font-size: 16px;
            transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
        }

        .footer-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .footer-col h5 {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            margin: 0 0 18px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col li {
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-col a {
            color: #B9B0A7;
            position: relative;
            padding-bottom: 1px;
            transition: color .2s var(--ease);
        }

        .footer-col a:hover {
            color: #fff;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding-top: 28px;
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
            flex-wrap: wrap;
        }

        .footer-legal-links {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-legal-links a {
            color: rgba(255, 255, 255, .4);
        }

        .footer-legal-links a:hover {
            color: #fff;
        }

        /* 移动端导航 */
        .nav-toggle {
            display: none;
        }

        /* 响应式 */
        @media (max-width: 1080px) {
            .header-inner {
                gap: 16px;
            }

            .site-nav-list {
                gap: 20px;
                margin-left: 18px;
            }

            .site-nav-list a {
                font-size: 14px;
            }

            .cat-hero-grid {
                gap: 40px;
            }

            .process-grid {
                gap: 40px;
            }

            .cta-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .cta-form-card {
                max-width: 680px;
            }

            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr;
            }

            .footer-grid .footer-brand {
                grid-column: 1 / -1;
                margin-bottom: 8px;
            }
        }

        @media (max-width: 900px) {
            .section {
                padding: 84px 0;
            }

            .info-panels {
                padding: 80px 0;
            }

            .news-spotlight {
                padding: 80px 0;
            }

            .home-template .header-left {
                display: none;
            }

            .site-nav-list {
                position: fixed;
                top: var(--header-h);
                left: 0;
                right: 0;
                background: var(--paper);
                border-bottom: 1px solid var(--line);
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                padding: 18px 32px;
                margin: 0;
                transform: translateY(-8px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: .25s var(--ease);
                box-shadow: 0 20px 30px -20px rgba(27, 25, 23, .2);
            }

            .site-nav-list.is-open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .site-nav-list a {
                width: 100%;
                padding: 8px 0;
            }

            .site-nav-list a::after {
                width: 0;
            }

            .nav-toggle {
                display: inline-flex;
                margin-left: auto;
                order: 3;
            }

            .header-actions {
                margin-left: auto;
            }

            .cat-hero {
                padding: 60px 0 64px;
            }

            .cat-hero-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .cat-hero__visual {
                min-height: 320px;
            }

            .main-info-card h2 {
                font-size: 30px;
            }

            .check-list {
                grid-template-columns: 1fr;
            }

            .section-head h2 {
                font-size: 34px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .faq-head {
                position: static;
                margin-bottom: 30px;
            }

            .mini-info-stack {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 28px;
            }

            .footer-grid .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .container-xl {
                padding-left: 20px;
                padding-right: 20px;
            }

            .grid-container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .header-inner {
                padding: 0 20px;
                gap: 12px;
            }

            .brand-tag {
                display: none;
            }

            .brand-name {
                font-size: 20px;
            }

            .site-nav-list {
                padding-left: 20px;
                padding-right: 20px;
            }

            .section {
                padding: 64px 0;
            }

            .info-panels {
                padding: 64px 0;
            }

            .news-spotlight {
                padding: 64px 0;
            }

            .section-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                margin-bottom: 28px;
            }

            .cat-hero {
                padding: 44px 0 52px;
            }

            .cat-hero__copy h1 {
                font-size: 42px;
                letter-spacing: -0.03em;
            }

            .cat-description {
                font-size: 16px;
                line-height: 1.75;
            }

            .cat-hero__meta {
                gap: 6px 14px;
                font-size: 12px;
            }

            .cat-hero__visual {
                min-height: 260px;
                border-radius: 18px;
            }

            .cat-hero__visual-card {
                left: 14px;
                right: 14px;
                bottom: 14px;
                padding: 14px 18px;
            }

            .cat-hero__visual-card strong {
                font-size: 16px;
            }

            .main-info-card {
                padding: 28px 22px;
                border-radius: 18px;
            }

            .main-info-card h2 {
                font-size: 26px;
            }

            .main-info-card>p {
                font-size: 15px;
            }

            .mini-info-stack {
                grid-template-columns: 1fr;
            }

            .section-head h2 {
                font-size: 30px;
            }

            .section-head .link-arrow {
                font-size: 14px;
            }

            .main-feature-card__body {
                padding: 22px 18px 24px;
            }

            .main-feature-card__body h3 {
                font-size: 21px;
            }

            .side-feature-card {
                flex-direction: column;
                align-items: flex-start;
            }

            .side-feature-card__img {
                width: 100%;
                height: 160px;
            }

            .process-grid {
                gap: 36px;
            }

            .process-title h2 {
                font-size: 30px;
            }

            .step-item {
                padding-left: 60px;
            }

            .stats-panel {
                padding: 28px 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }

            .stat-number {
                font-size: 32px;
            }

            .guide-bar {
                padding: 22px;
            }

            .guide-bar__text {
                align-items: flex-start;
                flex-direction: column;
            }

            .guide-bar__icon {
                display: none;
            }

            .faq-section {
                padding: 64px 0;
            }

            .faq-head h2 {
                font-size: 32px;
            }

            .faq-item summary {
                font-size: 15px;
                padding: 18px 18px;
            }

            .faq-item .faq-answer {
                padding: 0 18px 18px;
            }

            .cta-dark {
                padding: 64px 0;
            }

            .cta-form-card {
                padding: 26px 20px;
                border-radius: 18px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .cta-copy h2 {
                font-size: 32px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-grid .footer-brand {
                grid-column: auto;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        @media (max-width: 420px) {
            .header-cta {
                display: none;
            }

            .brand-name {
                font-size: 19px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: .01ms !important;
            }
        }

/* roulang page: category2 */
:root {
    --paper: #F6F1EB;
    --surface: #FFFFFF;
    --ink: #1B1917;
    --muted: #6E6660;
    --primary: #A41E2E;
    --primary-hover: #831523;
    --primary-soft: rgba(164, 30, 46, .06);
    --accent: #D4A44C;
    --dark: #1D1917;
    --dark-soft: rgba(29, 25, 23, .8);
    --line: rgba(27, 25, 23, .12);
    --shadow-sm: 0 1px 0 rgba(27, 25, 23, .04);
    --shadow-lg: 0 20px 40px -28px rgba(27, 25, 23, .35);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1280px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 1rem;
    border: none;
    outline: none;
    background: none;
}

.container-xl {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 66px;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(246, 241, 235, .92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27, 25, 23, .08);
}

.header-inner {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-left-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 1;
    min-width: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--primary);
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.logo-mark::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 4px;
    background: var(--surface);
    clip-path: polygon(0 20%, 70% 20%, 70% 0, 100% 35%, 70% 70%, 70% 50%, 0 50%);
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.5px;
    color: var(--ink);
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .1em;
    padding: 3px 6px;
    border: 1px solid rgba(27, 25, 23, .3);
    border-radius: 4px;
    color: var(--muted);
    white-space: nowrap;
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.site-nav-list::-webkit-scrollbar {
    display: none;
}

.site-nav-list a {
    font-size: 15px;
    font-weight: 500;
    color: #5A514A;
    padding: 6px 2px;
    position: relative;
    white-space: nowrap;
    transition: color .2s ease;
}

.site-nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.site-nav-list a:hover {
    color: var(--ink);
}

.site-nav-list a:hover::after {
    transform: scaleX(1);
}

.site-nav-list a.active {
    color: var(--primary);
}

.site-nav-list a.active::after {
    transform: scaleX(1);
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.header-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(27, 25, 23, .12);
    border-radius: 999px;
    height: 38px;
    padding: 0 14px;
    gap: 8px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.header-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(164, 30, 46, .15);
}

.header-search i {
    color: var(--muted);
    font-size: 14px;
}

.header-search input {
    border: none;
    background: transparent;
    width: 140px;
    font-size: 13px;
    color: var(--ink);
}

.header-search input::placeholder {
    color: #9B9289;
}

.header-search input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--primary);
    border-radius: 999px;
    padding: 0 22px;
    height: 40px;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: #fff;
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(164, 30, 46, .4);
    outline-offset: 2px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(27, 25, 23, .12);
    background: var(--surface);
    cursor: pointer;
    color: var(--ink);
    font-size: 20px;
    transition: all .2s ease;
}

.menu-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 20px;
    z-index: 998;
    box-shadow: var(--shadow-lg);
}

.mobile-nav-panel.open {
    display: block;
    animation: fadeIn .25s ease;
}

.mobile-nav-panel a {
    display: block;
    padding: 10px 4px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid rgba(27, 25, 23, .06);
}

.mobile-nav-panel a.active {
    color: var(--primary);
}

.mobile-nav-panel a:last-child {
    border-bottom: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Page Hero ==================== */
.page-hero {
    padding: 150px 0 60px;
    background: var(--paper);
    position: relative;
    overflow: hidden;
}

.page-hero .category-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid rgba(164, 30, 46, .2);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 12px;
    max-width: 760px;
}

.page-hero .category-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 24px;
}

.page-hero .hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 14px;
    color: var(--muted);
    margin-top: 18px;
    letter-spacing: .02em;
}

.page-hero .meta-sep {
    margin: 0 12px;
    color: rgba(27, 25, 23, .25);
}

.page-hero .hero-deco {
    position: absolute;
    right: -20px;
    bottom: -40px;
    width: 460px;
    height: 320px;
    background-image: radial-gradient(rgba(164, 30, 46, .1) 1px, transparent 1px);
    background-size: 16px 16px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.page-hero .container-xl {
    position: relative;
    z-index: 1;
}

/* ==================== Section ==================== */
.section-block {
    padding: 100px 0;
}

.section-block.alt-bg {
    background: var(--surface);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -.5px;
    color: var(--ink);
    margin: 0;
}

.section-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 640px;
}

.text-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: color .2s ease;
}

.text-link-arrow i {
    transition: transform .25s ease;
}

.text-link-arrow:hover {
    color: var(--primary-hover);
}

.text-link-arrow:hover i {
    transform: translateX(4px);
}

/* ==================== Hero Stats ==================== */
.stats-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 100px;
    box-shadow: var(--shadow-sm);
}

.stat-item {
    position: relative;
    padding-right: 24px;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--line);
}

.stat-value {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -1px;
}

.stat-value .stat-unit {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    margin-left: 4px;
    letter-spacing: 0;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
}

/* ==================== Live Match Strip ==================== */
.live-strip-wrapper {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 80px;
    position: relative;
}

.live-strip-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #E64C3D;
    border-radius: 50%;
    animation: pulse-dot 1.6s ease-in-out infinite;
}

.live-strip-header h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.live-strip-header .live-time {
    color: #B9B0A7;
    font-size: 13px;
    margin-left: auto;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(230, 76, 61, .5);
    }
    50% {
        opacity: .75;
        box-shadow: 0 0 0 6px rgba(230, 76, 61, 0);
    }
}

.upcoming-matches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.match-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .25s ease;
}

.match-card:nth-child(1),
.match-card:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.match-card:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, .06);
}

.match-card:hover {
    background: rgba(255, 255, 255, .04);
}

.match-time {
    flex-shrink: 0;
    width: 52px;
    text-align: center;
}

.match-time .match-day {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.match-time .match-week {
    display: block;
    font-size: 12px;
    color: #B9B0A7;
    margin-top: 4px;
}

.match-info {
    flex: 1;
    min-width: 0;
}

.match-teams {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-teams .vs-sep {
    color: #B9B0A7;
    margin: 0 6px;
    font-weight: 400;
    font-size: 14px;
}

.match-round {
    font-size: 13px;
    color: #B9B0A7;
}

.match-action-btn {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease;
    font-weight: 500;
}

.match-action-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

/* ==================== Match Schedule ==================== */
.schedule-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.schedule-date-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.date-tab-btn {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.date-tab-btn .tab-dot {
    display: none;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.date-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.date-tab-btn.active .tab-dot {
    display: inline-block;
    background: #fff;
}

.schedule-note-text {
    font-size: 14px;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.schedule-note-text i {
    color: var(--accent);
}

.schedule-table {
    width: 100%;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.schedule-table-row {
    display: grid;
    grid-template-columns: 90px 1fr 1.2fr 90px;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(27, 25, 23, .06);
}

.schedule-table-row:last-child {
    border-bottom: none;
}

.schedule-table-row.header-row {
    background: var(--primary-soft);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .05em;
    padding: 12px 28px;
}

.schedule-table-row .sch-time {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.schedule-table-row .sch-team {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.schedule-table-row .sch-team .schedule-tag {
    display: inline-block;
    font-size: 12px;
    background: rgba(212, 164, 76, .15);
    color: #926B24;
    padding: 2px 10px;
    border-radius: 999px;
    margin-left: 8px;
    font-weight: 500;
    vertical-align: middle;
}

.schedule-table-row .sch-round {
    font-size: 14px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.schedule-table-row .sch-btn {
    justify-self: end;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 999px;
    transition: all .2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.schedule-table-row .sch-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ==================== Watch Channel Cards ==================== */
.watch-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.watch-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
    box-shadow: var(--shadow-sm);
}

.watch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(164, 30, 46, .3);
}

.watch-card .card-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.watch-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.watch-card .channel-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.channel-feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.channel-feature-list li {
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.channel-feature-list li i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.channel-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap .2s ease;
}

.channel-link-btn i {
    transition: transform .2s ease;
}

.channel-link-btn:hover {
    gap: 10px;
}

/* ==================== Highlights Section ==================== */
.highlight-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.highlight-visual {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-color: #EAE4DE;
    position: relative;
}

.highlight-visual .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    background: rgba(164, 30, 46, .92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all .25s ease;
    border: 2px solid rgba(255, 255, 255, .5);
}

.highlight-visual .play-button-overlay:hover {
    background: var(--primary-hover);
    transform: translate(-50%, -50%) scale(1.06);
    border-color: rgba(255, 255, 255, .8);
    box-shadow: 0 10px 30px rgba(164, 30, 46, .4);
}

.highlight-visual .badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, .55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    letter-spacing: .05em;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .2);
}

.highlight-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-content .tag-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.highlight-content .mini-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid rgba(164, 30, 46, .15);
    border-radius: 999px;
    padding: 3px 10px;
}

.highlight-content h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 12px;
}

.highlight-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.highlight-meta-line {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}

.highlight-meta-line i {
    margin-right: 4px;
    color: var(--accent);
}

/* ==================== Game Intro ==================== */
.game-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .25s ease, box-shadow .3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.game-card-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.game-card-cover .game-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.game-card:hover .game-cover-img {
    transform: scale(1.04);
}

.game-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.game-card-tags .game-tag {
    font-size: 12px;
    font-weight: 500;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 6px;
    padding: 3px 8px;
}

.game-card-tags .game-tag.tag-gray {
    background: rgba(27, 25, 23, .05);
    color: var(--muted);
}

.game-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 8px;
}

.game-card-body .game-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.game-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: auto;
}

.game-date {
    font-size: 13px;
    color: var(--muted);
}

.game-status-badge {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==================== Commentator Section ==================== */
.commentator-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.commentator-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all .25s ease;
}

.commentator-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.commentator-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #B08040);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.commentator-avatar.alt-avatar {
    background: linear-gradient(135deg, var(--primary), #6A0F1A);
}

.commentator-avatar.alt-avatar2 {
    background: linear-gradient(135deg, #4A3B32, var(--dark));
}

.commentator-info {
    flex: 1;
    min-width: 0;
}

.commentator-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.commentator-info .comment-role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.commentator-info .comment-bio {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 8px;
}

.commentator-stats {
    display: flex;
    gap: 16px;
    margin-top: 14px;
}

.commentator-stats .mini-stat {
    font-size: 13px;
    color: var(--muted);
}

.commentator-stats .mini-stat b {
    color: var(--ink);
    font-weight: 600;
}

/* ==================== Rule & Notice ==================== */
.rule-info-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
}

.rule-panel,
.notice-panel {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.rule-panel h3,
.notice-panel h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--ink);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.rule-list-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.rule-item .rule-step {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.rule-item p {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.7;
    padding-top: 2px;
}

.rule-item .rule-desc {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.65;
}

.notice-panel ul {
    display: flex;
    flex-direction: column;
}

.notice-panel ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(27, 25, 23, .1);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.6;
}

.notice-panel ul li:last-child {
    border-bottom: none;
}

.notice-panel ul li i {
    color: var(--accent);
    font-size: 12px;
    margin-top: 7px;
}

/* ==================== FAQ ==================== */
.faq-section {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.faq-split-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 48px;
}

.faq-title-pane,
.faq-trigger-list {
    padding: 0 0;
}

.faq-title-pane h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--ink);
}

.faq-title-pane p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(164, 30, 46, .3);
    padding: 8px 20px;
    border-radius: 999px;
    transition: all .2s ease;
}

.faq-contact-link:hover {
    background: var(--primary);
    color: #fff;
}

.faq-trigger-list details {
    border-bottom: 1px solid var(--line);
    transition: padding .3s ease;
}

.faq-trigger-list details summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    transition: color .2s ease;
    user-select: none;
}

.faq-trigger-list details summary::-webkit-details-marker {
    display: none;
}

.faq-trigger-list details summary:hover {
    color: var(--primary);
}

.faq-trigger-list details .detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    flex-shrink: 0;
    transition: all .3s ease;
}

.faq-trigger-list details[open] .detail-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.faq-trigger-list details[open] summary {
    color: var(--primary);
}

.faq-answer {
    padding: 0 40px 24px 4px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 720px;
}

.faq-answer .answer-lead {
    color: var(--primary);
    font-weight: 600;
    margin-right: 6px;
}

/* ==================== CTA ==================== */
.cta-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 340px;
    background-image: radial-gradient(circle, rgba(212, 164, 76, .2) 1px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: .4;
    pointer-events: none;
}

.cta-panel {
    background: transparent;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-info-side h2 {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.cta-info-side h2 .accent-text {
    color: var(--accent);
}

.cta-info-side p {
    color: #B9B0A7;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 480px;
}

.cta-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #B9B0A7;
}

.cta-contact-line i {
    color: var(--accent);
}

.cta-contact-line .phone-text {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.cta-form-wrap {
    background: var(--surface);
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
}

.cta-form-wrap h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
}

.cta-form-wrap .form-description {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(27, 25, 23, .18);
    background: transparent;
    border-radius: var(--radius-sm);
    padding: 0 16px;
    font-size: 15px;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
    appearance: auto;
    -webkit-appearance: auto;
}

.form-group textarea {
    height: 72px;
    padding: 12px 16px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A39A91;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(164, 30, 46, .15);
}

.form-group .error-message {
    color: #C2472A;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.form-group.has-error input {
    border-color: #C2472A;
    box-shadow: 0 0 0 3px rgba(192, 62, 39, .12);
}

.form-group.has-error .error-message {
    display: block;
}

.cta-submit-btn {
    display: block;
    width: 100%;
    height: 56px;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    transition: all .25s ease;
    margin-top: 6px;
    border: 1px solid var(--primary);
}

.cta-submit-btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(164, 30, 46, .4);
}

.cta-guide-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
}

.cta-guide-links a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(27, 25, 23, .3);
    transition: color .2s ease;
}

.cta-guide-links a:hover {
    color: var(--primary);
}

/* ==================== Newsletter ==================== */
.newsletter-panel {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 24px 36px;
    gap: 30px;
    box-shadow: var(--shadow-sm);
    margin-top: -1px;
}

.newsletter-left p {
    margin-bottom: 0;
}

.newsletter-left p:first-child {
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 4px;
}

.newsletter-left p:last-child {
    font-size: 14px;
    color: var(--muted);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    min-width: 340px;
}

.newsletter-form input {
    flex: 1;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 18px;
    font-size: 14px;
    background: var(--paper);
    transition: all .2s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(164, 30, 46, .15);
    background: var(--surface);
}

.newsletter-form .subscribe-btn {
    background: var(--ink);
    color: #fff;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    height: 44px;
    cursor: pointer;
    border: 1px solid var(--ink);
    transition: all .25s ease;
}

.newsletter-form .subscribe-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* ==================== Footer ==================== */
.site-footer {
    background: var(--dark);
    color: #B9B0A7;
    padding: 70px 0 24px;
}

.footer-top-line {
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #B9B0A7;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B9B0A7;
    transition: all .25s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul li a {
    color: #B9B0A7;
    transition: color .25s ease;
    position: relative;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, .45);
    transition: color .2s ease;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* ==================== Reveal Animation ==================== */
.js-scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.js-scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.no-anim,
.no-anim * {
    animation: none !important;
    transition: none !important;
}

/* ==================== Custom Scrollbar ==================== */
::selection {
    background: rgba(164, 30, 46, .12);
    color: var(--ink);
}

::-webkit-scrollbar {
    width: 10px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--paper);
}

::-webkit-scrollbar-thumb {
    background: rgba(27, 25, 23, .22);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(27, 25, 23, .35);
}

/* ==================== Responsive Breakpoints ==================== */
@media (max-width: 1100px) {
    .schedule-table-row {
        grid-template-columns: 80px 1fr 1fr 80px;
        padding: 16px 20px;
    }

    .commentator-layout {
        grid-template-columns: 1fr;
    }

    .game-intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-panel {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .header-search {
        display: none;
    }

    .upcoming-matches {
        grid-template-columns: 1fr;
    }

    .match-card:nth-child(even) {
        border-left: none;
    }

    .watch-channel-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .highlight-layout {
        grid-template-columns: 1fr;
    }

    .highlight-visual {
        min-height: 260px;
    }

    .stats-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid var(--line);
        padding-top: 20px;
    }

    .rule-info-grid {
        grid-template-columns: 1fr;
    }

    .faq-split-layout {
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 24px;
    }

    .faq-title-pane {
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .cta-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-info-side {
        text-align: left;
    }

    .cta-form-wrap {
        padding: 32px 24px;
    }

    .newsletter-panel {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .newsletter-form {
        min-width: 0;
        flex-direction: column;
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .page-hero {
        padding: 150px 0 40px;
    }

    .page-hero .container-xl {
        text-align: center;
    }

    .page-hero h1 {
        font-size: 40px;
        max-width: 100%;
    }

    .page-hero .hero-deco {
        display: none;
    }

    .section-block {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .menu-toggle {
        display: flex;
    }

    .site-nav-list {
        display: none;
    }

    /* Mobile nav panel trigger */
    .mobile-nav-panel {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        padding: 16px 24px;
        display: none;
        z-index: 998;
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-panel.open {
        display: block;
    }

    .mobile-nav-panel a {
        display: block;
        padding: 12px 4px;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid rgba(27, 25, 23, .08);
        color: var(--ink);
    }

    .mobile-nav-panel a.active {
        color: var(--primary);
    }

    .mobile-nav-panel a:last-child {
        border: none;
    }
}

@media (max-width: 640px) {
    .container-xl {
        padding: 0 20px;
    }

    .page-hero {
        padding: 130px 0 40px;
    }

    .page-hero h1 {
        font-size: 34px;
        line-height: 1.22;
    }

    .page-hero .category-lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .section-block {
        padding: 56px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 28px;
    }

    .stats-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
        margin-bottom: 56px;
    }

    .stat-item {
        border-top: 1px solid var(--line);
        border-bottom: none;
        padding: 14px 0;
    }

    .stat-item:first-child {
        border-top: none;
        padding-top: 0;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item:nth-child(2)::after,
    .stat-item:nth-child(3)::after {
        display: none;
    }

    .live-strip-header {
        padding: 16px 20px;
    }

    .upcoming-matches {
        display: flex;
        flex-direction: column;
    }

    .match-card {
        padding: 20px;
        flex-wrap: wrap;
        gap: 14px;
    }

    .match-time {
        width: 60px;
    }

    .match-teams {
        font-size: 15px;
        white-space: normal;
        line-height: 1.5;
    }

    .match-action-btn {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .schedule-filter-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .date-tab-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .schedule-table-row,
    .schedule-table-row.header-row {
        grid-template-columns: 70px 1fr;
        padding: 14px 16px;
        gap: 10px;
    }

    .schedule-table-row .sch-team,
    .schedule-table-row .sch-round {
        grid-column: 1 / 2;
    }

    .schedule-table-row .sch-round {
        font-size: 12px;
    }

    .schedule-table-row .sch-btn {
        grid-column: 2;
        justify-self: end;
    }

    .schedule-table-row.header-row {
        display: none;
    }

    .schedule-table-row .sch-team {
        white-space: normal;
    }

    .game-intro-grid {
        grid-template-columns: 1fr;
    }

    .highlight-content {
        padding: 24px;
    }

    .highlight-content h2 {
        font-size: 22px;
    }

    .commentator-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .commentator-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .rule-panel,
    .notice-panel {
        padding: 24px;
    }

    .faq-trigger-list summary {
        padding: 16px 0;
        gap: 16px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 4px 20px;
        font-size: 14px;
    }

    .cta-info-side h2 {
        font-size: 28px;
    }

    .cta-form-wrap {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .cta-submit-btn {
        height: 50px;
    }

    .newsletter-panel {
        padding: 20px 16px;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-col h5 {
        margin-bottom: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-legal-links {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* roulang page: category3 */
:root {
            --paper: #F6F1EB;
            --surface: #FFFFFF;
            --ink: #1B1917;
            --muted: #6E6660;
            --primary: #A41E2E;
            --primary-hover: #831523;
            --primary-soft: rgba(164, 30, 46, .06);
            --accent: #D4A44C;
            --dark: #1D1917;
            --dark-soft: rgba(29, 25, 23, .8);
            --line: rgba(27, 25, 23, .12);
            --white-40: rgba(255, 255, 255, .4);
            --white-70: rgba(255, 255, 255, .7);
            --radius-lg: 24px;
            --radius-md: 18px;
            --radius-sm: 12px;
            --shadow-sm: 0 1px 0 rgba(27, 25, 23, .04);
            --shadow-md: 0 20px 40px -28px rgba(27, 25, 23, .35);
            --transition: all .25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
            background: var(--paper);
            color: var(--ink);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        button,
        input,
        select,
        textarea,
        label {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible,
        a:focus-visible {
            outline: 3px solid rgba(164, 30, 46, .35);
            outline-offset: 2px;
            border-radius: 6px;
        }

        .container-xl {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 32px;
            padding-right: 32px;
        }

        .section {
            padding: 110px 0;
        }

        .section-white {
            background: var(--surface);
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 14px;
            background: var(--primary-soft);
            color: var(--primary);
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .02em;
        }

        .eyebrow {
            font-size: 13px;
            letter-spacing: .08em;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .section-head h2 {
            font-size: clamp(30px, 3.2vw, 44px);
            line-height: 1.15;
            margin: 8px 0 0;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .section-intro {
            max-width: 420px;
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.8;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 999px;
            font-weight: 600;
            padding: 16px 30px;
            font-size: 15px;
            line-height: 1;
            border: 1px solid transparent;
            transition: var(--transition);
            cursor: pointer;
            background: none;
        }

        .btn i {
            font-size: 14px;
            transition: transform .25s ease;
        }

        .btn:hover i {
            transform: translateX(4px);
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            border-color: var(--line);
            color: var(--ink);
            background: var(--surface);
        }

        .btn-outline:hover {
            border-color: var(--ink);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-dark {
            background: var(--dark);
            color: #fff;
        }

        .btn-dark:hover {
            background: #000;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-sm {
            padding: 11px 22px;
            font-size: 14px;
        }

        .btn-ghost-white {
            border-color: rgba(255, 255, 255, .25);
            color: #fff;
        }

        .btn-ghost-white:hover {
            border-color: rgba(255, 255, 255, .6);
            color: #fff;
            transform: translateY(-2px);
        }

        .text-accent {
            color: var(--primary);
        }

        .text-muted {
            color: var(--muted);
        }

        .badge,
        .tag-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            padding: 5px 12px;
            font-size: 13px;
            font-weight: 500;
            border: 1px solid var(--line);
            background: var(--surface);
        }

        .badge-accent,
        .tag-badge.accent {
            background: var(--accent);
            color: #1D1917;
            border-color: transparent;
            font-weight: 600;
        }

        .badge-primary {
            background: var(--primary);
            color: #fff;
            border-color: transparent;
        }

        /* ============ Header ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(246, 241, 235, .94);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--line);
        }

        .header-inner {
            display: flex;
            align-items: center;
            min-height: 66px;
            gap: 12px;
        }

        .header-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: var(--primary);
            position: relative;
            display: block;
            flex-shrink: 0;
            overflow: hidden;
        }

        .logo-mark::after {
            content: "";
            position: absolute;
            left: 8px;
            top: 8px;
            width: 7px;
            height: 18px;
            border-radius: 5px;
            background: #fff;
            transform: rotate(14deg);
        }

        .logo-mark::before {
            content: "";
            position: absolute;
            right: 6px;
            top: 13px;
            width: 15px;
            height: 8px;
            border: 2px solid #fff;
            border-left: none;
            border-radius: 0 99px 99px 0;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: .01em;
            line-height: 1;
            color: var(--ink);
        }

        .logo-sub {
            font-size: 11px;
            color: var(--primary);
            border: 1px solid rgba(164, 30, 46, .35);
            padding: 3px 7px;
            border-radius: 6px;
            line-height: 1.2;
            font-weight: 600;
            white-space: nowrap;
        }

        .site-nav-list {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .site-nav-list a {
            font-size: 15px;
            font-weight: 500;
            padding: 10px 10px 12px;
            color: var(--ink);
            border-radius: 8px;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
            line-height: 1;
        }

        .site-nav-list a:hover {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .site-nav-list a.active {
            color: var(--primary);
            font-weight: 600;
            border-bottom-color: var(--primary);
        }

        .site-nav {
            margin-left: clamp(20px, 2vw, 36px);
        }

        .header-actions {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-toggle-input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .nav-burger {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid var(--line);
            background: var(--surface);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            margin-right: 2px;
        }

        .nav-burger span {
            width: 16px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
        }

        /* ============ Breadcrumb / Page Hero ============ */
        .page-hero {
            padding: 74px 0 40px;
            background: var(--paper);
            border-bottom: 1px solid var(--line);
        }

        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 28px;
        }

        .breadcrumb a {
            color: var(--muted);
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .page-hero h1 {
            font-size: clamp(38px, 5vw, 62px);
            line-height: 1.12;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin: 14px 0 24px;
            max-width: 900px;
        }

        .page-hero .title-line-strong {
            color: var(--primary);
        }

        .hero-lead {
            font-size: 17px;
            line-height: 1.85;
            color: var(--muted);
            max-width: 720px;
            margin: 0 0 30px;
        }

        .hero-info {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 28px;
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 34px;
        }

        .hero-info span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-info i {
            color: var(--primary);
            width: 18px;
            text-align: center;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* ============ Live Banner ============ */
        .live-banner {
            background: var(--dark);
        }

        .live-bar {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 16px 0;
            color: #fff;
        }

        .live-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #F2B134;
            display: block;
            box-shadow: 0 0 0 4px rgba(242, 177, 52, .18);
            flex-shrink: 0;
            animation: dotPulse 1.8s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: .55;
            }
        }

        .live-bar p {
            flex: 1;
            margin: 0;
            font-size: 14px;
            color: var(--white-70);
        }

        .live-bar p strong {
            color: #fff;
            font-weight: 600;
        }

        .live-bar a {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            border-bottom: 1px solid rgba(255, 255, 255, .4);
            padding-bottom: 3px;
            transition: var(--transition);
        }

        .live-bar a:hover {
            color: var(--accent);
            border-color: var(--accent);
        }

        /* ============ Feature Cards ============ */
        .feature-section {
            background: var(--paper);
        }

        .feat-grid {
            margin-top: 10px;
        }

        .card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: rgba(27, 25, 23, .18);
        }

        .card-cover {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #EAE4DC;
            flex-shrink: 0;
        }

        .card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .card:hover .card-cover img {
            transform: scale(1.03);
        }

        .card-body {
            padding: 26px 28px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex: 1;
        }

        .card-body h3 {
            font-size: 21px;
            line-height: 1.4;
            margin: 12px 0 12px;
            font-weight: 800;
        }

        .card-body p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.8;
            margin: 0 0 22px;
        }

        .card-link {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
        }

        .card-link i {
            transition: transform .25s ease;
        }

        .card-link:hover i {
            transform: translateX(4px);
        }

        .side-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .side-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: rgba(27, 25, 23, .18);
        }

        .side-card .side-icon {
            width: 44px;
            height: 44px;
            border-radius: 13px;
            background: var(--primary-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .side-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 22px 0 10px;
            line-height: 1.4;
        }

        .side-card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
            margin: 0;
        }

        .side-card .mini-note {
            margin-top: 20px;
            font-size: 13px;
            color: var(--ink);
            background: var(--paper);
            padding: 10px 12px;
            border-radius: 8px;
            line-height: 1.6;
        }

        /* ============ Official Guide ============ */
        .guide-section {
            background: var(--surface);
        }

        .guide-media {
            background: #EAE4DC;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 100%;
            min-height: 360px;
            border: 1px solid var(--line);
        }

        .guide-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 360px;
        }

        .guide-panel {
            padding: 12px 8px 12px 28px;
        }

        .guide-panel h3 {
            font-size: 28px;
            font-weight: 800;
            line-height: 1.3;
            margin: 12px 0 18px;
        }

        .guide-panel>p {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .info-list {
            border-top: 1px solid var(--line);
            margin-top: 4px;
        }

        .info-list li {
            display: flex;
            gap: 22px;
            padding: 17px 2px;
            border-bottom: 1px solid var(--line);
            font-size: 15px;
            line-height: 1.7;
        }

        .info-list li strong {
            flex: 0 0 92px;
            font-size: 13px;
            color: var(--muted);
            font-weight: 500;
            letter-spacing: .02em;
            line-height: 1.8;
        }

        .info-list li span {
            color: var(--ink);
        }

        .notice-grid {
            margin-top: 40px;
        }

        .notice-card {
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 28px;
            height: 100%;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: var(--transition);
        }

        .notice-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .notice-card .notice-icon {
            width: 42px;
            height: 42px;
            flex: 0 0 42px;
            color: var(--accent);
            background: rgba(212, 164, 76, .14);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notice-card h4 {
            font-size: 16px;
            margin: 0 0 6px;
            font-weight: 700;
        }

        .notice-card p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
            margin: 0;
        }

        /* ============ Flow Steps ============ */
        .flow-section {
            background: var(--paper);
            border-top: 1px solid var(--line);
        }

        .steps-wrap {
            margin-top: 16px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .step-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 28px;
            border: 1px solid var(--line);
            position: relative;
            transition: var(--transition);
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        .step-num {
            font-size: 40px;
            font-weight: 900;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 1px var(--primary);
            display: block;
            margin-bottom: 24px;
        }

        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .step-card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .flow-tip {
            margin-top: 36px;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: var(--primary-soft);
            color: var(--primary);
            border-radius: 14px;
            font-size: 14px;
        }

        /* ============ FAQ ============ */
        .faq-section {
            background: var(--surface);
        }

        .faq-layout {
            display: grid;
            grid-template-columns: .38fr 1fr;
            gap: 60px;
        }

        .faq-title-sticky {
            position: sticky;
            top: 120px;
            align-self: start;
        }

        .faq-title-sticky h2 {
            font-size: clamp(30px, 3.2vw, 44px);
            line-height: 1.2;
            margin: 10px 0 18px;
            font-weight: 800;
        }

        .faq-title-sticky p {
            color: var(--muted);
            line-height: 1.9;
            margin-bottom: 24px;
        }

        .faq-accordion {
            border-top: 1px solid var(--line);
        }

        details.faq-item {
            border-bottom: 1px solid var(--line);
            padding: 8px 14px;
            transition: background .3s;
        }

        details.faq-item summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 66px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.45;
            gap: 22px;
            color: var(--ink);
            transition: color .25s ease;
        }

        details.faq-item summary::-webkit-details-marker {
            display: none;
        }

        details.faq-item summary:hover {
            color: var(--primary);
        }

        .faq-item .faq-icon {
            width: 26px;
            height: 26px;
            flex: 0 0 26px;
            border-radius: 50%;
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: var(--transition);
        }

        details[open] .faq-icon {
            transform: rotate(45deg);
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .faq-item .faq-answer {
            max-width: 680px;
            padding: 4px 0 24px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.9;
        }

        .faq-item .faq-answer strong {
            color: var(--primary);
            font-weight: 600;
        }

        /* ============ CTA Signup ============ */
        .cta-section {
            background: var(--paper);
            padding: 90px 0;
        }

        .cta-panel {
            background: var(--dark);
            border-radius: 32px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            box-shadow: var(--shadow-md);
            color: #fff;
        }

        .cta-copy {
            padding: 70px 54px;
        }

        .cta-copy .tag-badge {
            background: rgba(212, 164, 76, .15);
            color: var(--accent);
            border-color: transparent;
        }

        .cta-copy h2 {
            font-size: clamp(28px, 3vw, 42px);
            line-height: 1.3;
            margin: 20px 0 18px;
            font-weight: 800;
        }

        .cta-copy p {
            color: #B9B0A7;
            max-width: 420px;
            font-size: 15px;
            line-height: 1.9;
        }

        .cta-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 24px;
            font-size: 13px;
            color: var(--white-40);
        }

        .cta-form-wrap {
            padding: 40px;
            background: var(--surface);
            color: var(--ink);
            border-radius: 24px 24px 0 0;
            display: flex;
            align-items: center;
        }

        .signup-form {
            width: 100%;
        }

        .signup-form .field {
            margin-bottom: 18px;
        }

        .signup-form label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 7px;
            color: var(--ink);
        }

        .signup-form label span {
            color: var(--primary);
        }

        .signup-form input,
        .signup-form select,
        .signup-form textarea {
            width: 100%;
            height: 48px;
            border: 1px solid rgba(27, 25, 23, .16);
            background: #fff;
            border-radius: 12px;
            padding: 0 16px;
            font-size: 15px;
            color: var(--ink);
            appearance: auto;
            transition: border-color .25s ease, box-shadow .25s ease;
        }

        .signup-form textarea {
            height: auto;
            padding: 12px 16px;
            resize: vertical;
        }

        .signup-form input:focus,
        .signup-form select:focus,
        .signup-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(164, 30, 46, .14);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .submit-btn {
            width: 100%;
            height: 56px;
            border: none;
            border-radius: 14px;
            background: var(--primary);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            transition: var(--transition);
            cursor: pointer;
        }

        .submit-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        .form-agree {
            font-size: 12px;
            color: var(--muted);
            margin-top: 14px;
            line-height: 1.7;
        }

        /* ============ Footer ============ */
        .site-footer {
            background: var(--dark);
            color: #B9B0A7;
        }

        .site-footer .container-xl {
            padding-top: 70px;
            padding-bottom: 32px;
        }

        .footer-top-line {
            width: 24px;
            height: 2px;
            background: var(--primary);
            margin-bottom: 50px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr .8fr .8fr .9fr;
            gap: 48px;
            margin-bottom: 60px;
        }

        .footer-brand .logo-row {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 18px;
        }

        .logo-row .logo-mark {
            background: var(--primary);
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.9;
            color: #B9B0A7;
            max-width: 330px;
            margin: 0 0 26px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-col h5 {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin: 0 0 18px;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col a {
            color: #B9B0A7;
            font-size: 14px;
            transition: color .25s ease;
        }

        .footer-col a:hover {
            color: #fff;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 28px;
            color: var(--white-40);
            font-size: 13px;
        }

        .footer-bottom a {
            color: var(--white-40);
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        .footer-legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* ============ Motion / Reduced ============ */
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation: none !important;
                transition: none !important;
            }
        }

        /* ============ Responsive ============ */
        @media (max-width: 1024px) {
            .section {
                padding: 84px 0;
            }

            .container-xl {
                padding-left: 24px;
                padding-right: 24px;
            }

            .site-nav-list {
                gap: 2px;
            }

            .site-nav-list a {
                font-size: 14px;
                padding-left: 8px;
                padding-right: 8px;
            }

            .cta-panel {
                grid-template-columns: 1fr;
            }

            .cta-form-wrap {
                border-radius: 24px;
                margin: 0 36px 36px;
                padding: 28px;
            }

            .footer-grid {
                grid-template-columns: 1.1fr .8fr .8fr;
            }

            .footer-col:last-child {
                display: none;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .faq-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .faq-title-sticky {
                position: static;
            }
        }

        @media (max-width: 900px) {
            .header-inner {
                flex-wrap: wrap;
            }

            .nav-burger {
                display: inline-flex;
                order: -1;
            }

            .header-brand {
                margin-right: auto;
            }

            .header-actions .btn {
                margin-left: auto;
            }

            .site-nav {
                display: none;
                position: absolute;
                top: calc(100% + 0px);
                left: 0;
                right: 0;
                background: #FDFAF6;
                border-bottom: 1px solid var(--line);
                padding: 12px 24px 22px;
                box-shadow: 0 40px 60px -40px rgba(27, 25, 23, .4);
                margin-left: 0;
                z-index: 1000;
            }

            .site-nav-list {
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }

            .site-nav-list a {
                display: block;
                padding: 13px 4px;
                border-bottom: 1px solid var(--line);
                border-radius: 0;
            }

            .site-nav-list a.active {
                border-color: transparent;
            }

            .site-nav-list a.active::before {
                content: "";
                display: inline-block;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--primary);
                margin-right: 10px;
                vertical-align: middle;
            }

            .nav-toggle-input:checked~.header-inner .site-nav {
                display: block;
            }
        }

        @media (max-width: 767px) {
            .container-xl {
                padding-left: 20px;
                padding-right: 20px;
            }

            .section {
                padding: 64px 0;
            }

            .section-head {
                margin-bottom: 34px;
            }

            .page-hero {
                padding: 52px 0 28px;
            }

            .page-hero h1 {
                font-size: 38px;
            }

            .hero-lead {
                font-size: 16px;
                line-height: 1.85;
            }

            .live-bar {
                align-items: flex-start;
                flex-direction: column;
                gap: 10px;
                padding: 16px 0;
            }

            .live-bar p {
                line-height: 1.75;
            }

            .live-bar .live-dot {
                position: absolute;
                margin-top: 7px;
            }

            .live-bar p {
                padding-left: 22px;
            }

            .official-guide .grid-x>.cell {
                margin-bottom: 24px;
            }

            .guide-panel {
                padding: 4px 0 0;
            }

            .guide-panel h3 {
                font-size: 22px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px 24px;
                margin-bottom: 44px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cta-copy {
                padding: 40px 24px 28px;
            }

            .cta-form-wrap {
                margin: 0 16px 16px;
                padding: 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .hero-actions .btn {
                padding: 14px 22px;
            }

            .info-list li {
                flex-direction: column;
                gap: 4px;
                padding: 16px 0;
            }

            .info-list li strong {
                flex-basis: auto;
                font-size: 12px;
                color: var(--muted);
            }

            .card-body {
                padding: 22px 20px;
            }

            .notice-card {
                flex-direction: column;
            }
        }

        @media (max-width: 520px) {
            .header-actions .btn {
                padding: 11px 14px;
                font-size: 13px;
            }

            .header-brand .logo-sub {
                display: none;
            }

            .logo-text {
                font-size: 20px;
            }

            .button-header-text {
                display: none;
            }

            .page-hero h1 {
                font-size: 32px;
            }

            .hero-info {
                flex-direction: column;
                gap: 8px;
            }

            .footer-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 28px 0;
            }

            .footer-brand,
            .footer-col {
                width: 100%;
                flex: 0 0 100%;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

/* roulang page: category4 */
:root {
        --paper: #F6F1EB;
        --surface: #FFFFFF;
        --ink: #1B1917;
        --muted: #6E6660;
        --primary: #A41E2E;
        --primary-hover: #831523;
        --primary-soft: rgba(164, 30, 46, .06);
        --accent: #D4A44C;
        --dark: #1D1917;
        --dark-soft: rgba(29, 25, 23, .8);
        --line: rgba(27, 25, 23, .12);
        --radius-lg: 24px;
        --radius-md: 18px;
        --radius-sm: 12px;
        --shadow-1: 0 1px 0 rgba(27, 25, 23, .04);
        --shadow-2: 0 20px 40px -28px rgba(27, 25, 23, .35);
        --container: 1280px;
        --gutter: 32px;
        --space-section: 128px;
        --font-cn: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-cn);
        background: var(--paper);
        color: var(--ink);
        line-height: 1.75;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
        font-family: inherit;
        font-size: inherit;
    }

    ul,
    ol {
        list-style: none;
    }

    .container-xl {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 var(--gutter);
        width: 100%;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 66px;
        background: transparent;
        transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
        border-bottom: 1px solid transparent;
    }

    .site-header.scrolled {
        background: rgba(246, 241, 235, .94);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-bottom-color: var(--line);
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 66px;
        gap: 20px;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 32px;
        flex: 1;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .logo-row {
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .logo-mark {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        background: var(--primary);
        position: relative;
        display: inline-block;
        flex-shrink: 0;
    }

    .logo-mark::after {
        content: "";
        position: absolute;
        left: 8px;
        top: 6px;
        width: 14px;
        height: 18px;
        border: 2px solid #fff;
        border-radius: 6px;
        border-left-width: 3px;
        transform: skewX(-8deg);
    }

    .logo-mark::before {
        content: "";
        position: absolute;
        right: 7px;
        top: 11px;
        width: 0;
        height: 0;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 6px solid var(--accent);
        z-index: 2;
    }

    .logo-text {
        font-size: 22px;
        font-weight: 900;
        letter-spacing: -.01em;
        line-height: 1;
        color: var(--ink);
    }

    .logo-sub {
        font-size: 10px;
        font-weight: 500;
        padding: 3px 7px;
        border: 1px solid var(--line);
        border-radius: 999px;
        color: var(--muted);
        letter-spacing: .08em;
        white-space: nowrap;
    }

    .site-nav-list {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .site-nav-list a {
        font-size: 15px;
        font-weight: 500;
        color: var(--ink);
        position: relative;
        padding: 8px 2px;
        transition: color .2s;
    }

    .site-nav-list a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 0;
        height: 1.5px;
        background: var(--primary);
        transition: width .25s;
    }

    .site-nav-list a:hover {
        color: var(--primary);
    }

    .site-nav-list a:hover::after,
    .site-nav-list a.active::after {
        width: 100%;
    }

    .site-nav-list a.active {
        color: var(--primary);
        font-weight: 600;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        border: 1px solid transparent;
        padding: 12px 26px;
        line-height: 1.2;
        transition: all .25s ease;
        white-space: nowrap;
    }

    .btn-primary {
        background: var(--primary);
        color: #fff;
    }

    .btn-primary:hover {
        background: var(--primary-hover);
        transform: translateY(-2px);
        box-shadow: 0 12px 24px -12px rgba(164, 30, 46, .45);
    }

    .btn-outline {
        background: transparent;
        border-color: var(--line);
        color: var(--ink);
    }

    .btn-outline:hover {
        border-color: var(--ink);
        background: var(--surface);
    }

    .btn-dark {
        background: var(--dark);
        color: #fff;
    }

    .btn-dark:hover {
        background: #000;
        transform: translateY(-2px);
        box-shadow: 0 16px 32px -16px rgba(29, 25, 23, .6);
    }

    .btn-sm {
        padding: 8px 18px;
        font-size: 14px;
    }

    .btn-arrow {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--ink);
        font-weight: 600;
        font-size: 15px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px 0;
        transition: gap .25s;
    }

    .btn-arrow:hover {
        gap: 10px;
        color: var(--primary);
    }

    .btn-arrow i {
        transition: transform .25s;
    }

    .btn-arrow:hover i {
        transform: translateX(3px);
    }

    .page-hero {
        padding: 166px 0 70px;
        background: var(--paper);
        position: relative;
        overflow: hidden;
    }

    .page-hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: -5%;
        width: 46%;
        height: 100%;
        background: linear-gradient(115deg, transparent 20%, rgba(164, 30, 46, .045) 100%);
        pointer-events: none;
        z-index: 0;
    }

    .page-hero .container-xl {
        position: relative;
        z-index: 1;
    }

    .crumb-line {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 21px;
        flex-wrap: wrap;
    }

    .crumb-line a:hover {
        color: var(--primary);
    }

    .crumb-sep {
        opacity: .5;
    }

    .page-hero h1 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: -.02em;
        max-width: 760px;
    }

    .page-hero h1 .accent-word {
        color: var(--primary);
    }

    .page-hero .lead {
        max-width: 680px;
        font-size: 18px;
        line-height: 1.8;
        color: var(--muted);
        margin-top: 22px;
    }

    .hero-meta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 28px;
        font-size: 14px;
        color: var(--muted);
    }

    .hero-meta-row .meta-item {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .hero-meta-row .meta-item i {
        color: var(--primary);
    }

    .page-hero-actions {
        display: flex;
        gap: 20px;
        margin-top: 38px;
        align-items: center;
        flex-wrap: wrap;
    }

    .section {
        padding: var(--space-section) 0;
    }

    .section-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 48px;
        gap: 24px;
        flex-wrap: wrap;
    }

    .section-head h2 {
        font-size: 38px;
        font-weight: 800;
        letter-spacing: -.01em;
        line-height: 1.2;
    }

    .section-head .en-label {
        font-size: 13px;
        color: var(--muted);
        letter-spacing: .08em;
        text-transform: uppercase;
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .section-leading {
        max-width: 620px;
        color: var(--muted);
        font-size: 16px;
    }

    .section-sub-dark {
        max-width: 600px;
        color: #B9B0A7;
    }

    .cards-grid {
        display: grid;
        gap: 24px;
    }

    .cards-grid.feature-a {
        grid-template-columns: 1.15fr .85fr;
        grid-template-rows: repeat(2, auto);
    }

    .card {
        background: var(--surface);
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        overflow: hidden;
        box-shadow: var(--shadow-1);
        transition: transform .3s, box-shadow .3s, border-color .3s;
    }

    .card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-2);
        border-color: rgba(164, 30, 46, .18);
    }

    .feature-wide-card {
        grid-row: span 2;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .feature-wide-card .feature-img {
        height: 220px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .feature-wide-card .feature-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s;
    }

    .feature-wide-card:hover .feature-img img {
        transform: scale(1.03);
    }

    .card-body {
        padding: 30px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .card-body h3 {
        font-size: 23px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.35;
    }

    .card-body p {
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 16px;
        flex: 1;
    }

    .card-tag {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--primary-soft);
        border-radius: 999px;
        padding: 5px 14px;
        font-size: 13px;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 16px;
    }

    .medium-card .card-body {
        padding: 26px 28px;
    }

    .medium-card .card-body h3 {
        font-size: 21px;
    }

    .card-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--primary);
        font-size: 14px;
        font-weight: 600;
        margin-top: auto;
        transition: gap .25s;
    }

    .card-link:hover {
        gap: 10px;
    }

    .card-icon-list {
        list-style: none;
        margin-top: 14px;
        display: grid;
        gap: 10px;
    }

    .card-icon-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
    }

    .card-icon-list li i {
        color: var(--accent);
        font-size: 13px;
        margin-top: 4px;
        width: 16px;
        flex-shrink: 0;
    }

    .section-alt {
        background: var(--surface);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .scene-wrap {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 0;
        background: var(--surface);
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        overflow: hidden;
    }

    .scene-item {
        padding: 48px 42px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        display: flex;
        flex-direction: column;
        position: relative;
        transition: background .3s;
    }

    .scene-item:hover {
        background: var(--primary-soft);
    }

    .scene-item.difer {
        transform: translateY(12px);
    }

    .scene-item:nth-child(3n) {
        border-right: none;
    }

    .scene-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    .scene-index {
        font-size: 13px;
        font-weight: 700;
        color: var(--accent);
        letter-spacing: .1em;
        margin-bottom: 16px;
    }

    .scene-item h3 {
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .scene-item p {
        font-size: 15px;
        color: var(--muted);
        margin-bottom: 0;
    }

    .flow-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        counter-reset: flow;
    }

    .flow-step {
        position: relative;
        background: var(--surface);
        border-radius: var(--radius-md);
        padding: 40px 24px 30px;
        border: 1px solid var(--line);
        transition: transform .3s, box-shadow .3s;
        box-shadow: var(--shadow-1);
    }

    .flow-step:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-2);
    }

    .flow-step::before {
        counter-increment: flow;
        content: counter(flow, decimal-leading-zero);
        font-size: 15px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: .04em;
        display: block;
        margin-bottom: 22px;
    }

    .flow-step h3 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .flow-step p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
    }

    .flow-line {
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
        margin-top: 44px;
        border-radius: 2px;
    }

    .faq-wrap {
        display: grid;
        grid-template-columns: .9fr 1.4fr;
        gap: 64px;
        align-items: start;
    }

    .faq-left-sticky {
        position: sticky;
        top: 100px;
    }

    .faq-left-sticky h2 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .faq-left-sticky p {
        color: var(--muted);
        margin-bottom: 24px;
    }

    .faq-list details {
        border-bottom: 1px solid var(--line);
        padding: 0;
    }

    .faq-list details summary {
        list-style: none;
        cursor: pointer;
        padding: 24px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        font-size: 17px;
        font-weight: 600;
        transition: background .2s;
        position: relative;
    }

    .faq-list details summary::-webkit-details-marker {
        display: none;
    }

    .faq-list details summary .faq-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--primary);
        font-size: 14px;
        transition: transform .3s, background .3s;
    }

    .faq-list details summary:hover {
        background: rgba(246, 241, 235, .7);
    }

    .faq-list details[open] summary {
        color: var(--primary);
        padding-bottom: 14px;
    }

    .faq-list details[open] summary .faq-icon {
        background: var(--primary);
        color: #fff;
        transform: rotate(45deg);
        border-color: var(--primary);
    }

    .faq-answer {
        padding: 0 30px 26px;
        color: var(--muted);
        line-height: 1.85;
        max-width: 680px;
    }

    .faq-answer strong {
        color: var(--primary);
        font-weight: 600;
    }

    .faq-cta-link {
        margin-top: 16px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: var(--primary);
        font-weight: 600;
    }

    .cta-guide {
        background: var(--surface);
        border: 1px dashed var(--primary);
        border-radius: var(--radius-lg);
        padding: 44px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-guide h3 {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .cta-guide p {
        color: var(--muted);
        font-size: 15px;
        max-width: 560px;
    }

    .cta-guide-btn-group {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .signup-strip {
        background: var(--dark);
        padding: 0;
    }

    .signup-panel {
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        gap: 60px;
        padding: 94px 0;
        align-items: center;
        color: #fff;
    }

    .signup-panel h2 {
        font-size: 42px;
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 20px;
        color: #fff;
    }

    .signup-panel p {
        color: #B9B0A7;
        line-height: 1.8;
        margin-bottom: 24px;
        max-width: 520px;
    }

    .hot-line {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, .06);
        border-radius: 16px;
        padding: 14px 20px;
        width: fit-content;
        color: #B9B0A7;
        font-size: 15px;
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .hot-line i {
        color: var(--accent);
        font-size: 15px;
    }

    .hot-line a {
        color: #fff;
        font-weight: 700;
        margin-left: 4px;
    }

    .cta-right-card {
        background: #fff;
        border-radius: 22px;
        padding: 38px 36px;
        box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
        color: var(--ink);
    }

    .cta-right-card h4 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .cta-right-card .form-tip {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 26px;
    }

    .form-grid-wrap {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .form-row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .form-group input,
    .form-group select {
        height: 48px;
        border-radius: 12px;
        border: 1px solid var(--line);
        background: #F6F4F1;
        padding: 0 15px;
        font-size: 15px;
        transition: border-color .2s, box-shadow .2s;
        outline: none;
        width: 100%;
    }

    .form-group textarea {
        border-radius: 12px;
        border: 1px solid var(--line);
        background: #F6F4F1;
        padding: 12px 15px;
        font-size: 15px;
        min-height: 88px;
        transition: border-color .2s, box-shadow .2s;
        outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(164, 30, 46, .1);
    }

    .form-group label {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 2px;
    }

    .submit-btn {
        margin-top: 6px;
    }

    .btn-block {
        width: 100%;
        height: 54px;
        border-radius: 999px;
        background: var(--primary);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all .25s;
    }

    .btn-block:hover {
        background: var(--primary-hover);
        transform: translateY(-2px);
    }

    .site-footer {
        background: var(--dark);
        color: #B9B0A7;
        padding-top: 70px;
    }

    .footer-top-line {
        width: 24px;
        height: 2px;
        background: var(--primary);
        margin-bottom: 50px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 46px;
    }

    .footer-brand p {
        font-size: 14px;
        margin-top: 20px;
        line-height: 1.9;
        color: #B9B0A7;
        max-width: 360px;
    }

    .footer-col h5 {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer-col ul li {
        font-size: 14px;
        margin-bottom: 13px;
        line-height: 1.5;
    }

    .footer-col ul a {
        color: #B9B0A7;
        transition: color .2s;
    }

    .footer-col ul a:hover {
        color: #fff;
    }

    .footer-social {
        display: flex;
        gap: 14px;
        margin-top: 22px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .08);
        color: #fff;
        font-size: 14px;
        transition: background .2s, transform .2s;
    }

    .footer-social a:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .1);
        padding: 28px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        font-size: 13px;
        color: rgba(255, 255, 255, .5);
        flex-wrap: wrap;
    }

    .footer-legal-links {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .footer-legal-links a:hover {
        color: #fff;
    }

    .reveal-item {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .6s, transform .6s;
    }

    .reveal-item.visible {
        opacity: 1;
        transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }
        *,
        *::before,
        *::after {
            animation-duration: 0s !important;
            transition-duration: 0s !important;
        }
        .reveal-item {
            opacity: 1;
            transform: none;
        }
    }

    @media (max-width: 1024px) {
        .site-nav-list {
            display: none;
        }
        .header-left {
            gap: 16px;
        }
        .header-nav-btn {
            display: inline-flex;
        }
        .hero-title {
            font-size: 42px;
        }
        .page-hero h1 {
            font-size: 38px;
        }
        .section {
            --space-section: 80px;
        }
        .faq-wrap {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        .faq-left-sticky {
            position: static;
            margin-bottom: 30px;
        }
        .signup-panel {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 60px 0;
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 36px;
        }
        .footer-brand {
            grid-column: span 2;
        }
        .flow-steps {
            grid-template-columns: repeat(2, 1fr);
        }
        .cards-grid.feature-a {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
        }
        .feature-wide-card {
            grid-row: auto;
        }
        .feature-wide-card .feature-img {
            height: 200px;
        }
        .scene-wrap {
            grid-template-columns: repeat(2, 1fr);
        }
        .scene-item:nth-child(odd) {
            border-right: 1px solid var(--line);
        }
        .scene-item:nth-child(even) {
            border-right: none;
        }
        .scene-item:nth-child(2) {
            border-bottom: 1px solid var(--line);
        }
    }

    @media (max-width: 768px) {
        :root {
            --gutter: 24px;
        }
        .logo-text {
            font-size: 19px;
        }
        .logo-sub {
            font-size: 9px;
            display: none;
        }
        .header-right .btn-outline {
            display: none;
        }
        .page-hero {
            padding: 130px 0 55px;
        }
        .page-hero h1 {
            font-size: 34px;
        }
        .page-hero .lead {
            font-size: 16px;
        }
        .section-head h2 {
            font-size: 28px;
        }
        .scene-wrap {
            grid-template-columns: 1fr;
        }
        .scene-item {
            padding: 32px 28px;
            border-right: none;
            border-bottom: 1px solid var(--line);
        }
        .scene-item:nth-child(3n) {
            border-right: none;
        }
        .scene-item {
            border-right: none;
        }
        .scene-item.difer {
            transform: none;
        }
        .scene-item:last-child {
            border-bottom: none;
        }
        .faq-list details summary {
            padding: 18px 12px;
            font-size: 16px;
        }
        .faq-answer {
            padding: 0 12px 20px;
        }
        .flow-steps {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .cta-guide {
            padding: 30px 24px;
            flex-direction: column;
            align-items: flex-start;
        }
        .cards-grid.feature-a {
            grid-template-columns: 1fr;
        }
        .card-icon-list {
            grid-template-columns: 1fr;
        }
        .form-row-2 {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 520px) {
        :root {
            --gutter: 20px;
        }
        .header-nav-btn {
            display: none;
        }
        .header-right .btn-sm {
            padding: 8px 12px;
            font-size: 13px;
        }
        .flow-steps {
            grid-template-columns: 1fr;
        }
        .footer-grid {
            grid-template-columns: 1fr;
        }
        .footer-brand {
            grid-column: auto;
        }
        .page-hero {
            padding: 122px 0 50px;
        }
        .page-hero h1 {
            font-size: 29px;
            line-height: 1.3;
        }
        .hero-meta-row {
            gap: 12px;
            flex-direction: column;
        }
        .hero-meta-row .meta-item {
            font-size: 13px;
        }
        .section-head h2 {
            font-size: 24px;
        }
        .faq-left-sticky h2 {
            font-size: 30px;
        }
        .signup-panel h2 {
            font-size: 30px;
        }
        .cta-right-card {
            padding: 24px 18px;
        }
        .page-hero-actions {
            flex-direction: column;
            align-items: flex-start;
        }
        .btn {
            width: 100%;
            justify-content: center;
        }
        .btn-arrow {
            padding-left: 20px;
        }
    }
