/* roulang page: index */
:root {
            --ink: #332a31;
            --ink-soft: #443840;
            --paper: #f4f0e8;
            --surface: #fbf9f5;
            --surface-muted: #eee8df;
            --moss: #7a8472;
            --moss-light: #dfe4da;
            --accent: #c96d4a;
            --accent-dark: #aa573b;
            --text: #383137;
            --muted: #756d72;
            --line: #d8d0c8;
            --white: #fffdf9;
            --success: #64745d;
            --danger: #a24f45;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-sm: 0 8px 20px rgba(51, 42, 49, .07);
            --shadow-md: 0 16px 38px rgba(51, 42, 49, .11);
            --transition: 200ms ease;
            --container: 1200px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            margin: 0;
            color: var(--text);
            background: var(--paper);
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
            font-size: 16px;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        body, button, input, textarea, select {
            font-family: inherit;
        }

        h1, h2, h3, h4, p, ul, ol {
            margin-top: 0;
        }

        h1, h2, h3, h4 {
            color: var(--ink);
            font-weight: 700;
            letter-spacing: -.025em;
        }

        h1 {
            margin-bottom: 24px;
            font-family: "Source Han Serif SC", "Songti SC", serif;
            font-size: clamp(2.25rem, 4.7vw, 3.55rem);
            line-height: 1.18;
        }

        h2 {
            margin-bottom: 18px;
            font-size: clamp(1.8rem, 3vw, 2.35rem);
            line-height: 1.28;
        }

        h3 {
            margin-bottom: 12px;
            font-size: 1.35rem;
            line-height: 1.4;
        }

        p {
            margin-bottom: 18px;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        button, input, textarea, select {
            border-radius: 0;
        }

        button, a, input, textarea, select {
            -webkit-tap-highlight-color: transparent;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(201, 109, 74, .42);
            outline-offset: 3px;
        }

        ::selection {
            color: var(--white);
            background: var(--accent);
        }

        .grid-container.site-container {
            width: min(100% - 40px, var(--container));
            max-width: var(--container);
            padding-left: 0;
            padding-right: 0;
        }

        .section {
            position: relative;
            padding: 104px 0;
        }

        .section-heading {
            max-width: 700px;
            margin-bottom: 46px;
        }

        .section-heading p {
            margin-bottom: 0;
            color: var(--muted);
            font-size: 1.03rem;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 16px;
            color: var(--accent-dark);
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: .12em;
        }

        .eyebrow::before {
            width: 24px;
            height: 2px;
            background: var(--accent);
            content: "";
        }

        .tag {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 4px 11px;
            color: var(--ink);
            background: var(--moss-light);
            border: 1px solid rgba(122, 132, 114, .25);
            border-radius: 999px;
            font-size: .76rem;
            font-weight: 650;
            line-height: 1.3;
        }

        .tag.accent {
            color: #7b3928;
            background: #f3ddd3;
            border-color: rgba(201, 109, 74, .25);
        }

        .button.site-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 50px;
            margin: 0;
            padding: 13px 24px;
            color: var(--white);
            background: var(--accent);
            border: 1px solid var(--accent);
            border-radius: 999px;
            box-shadow: 0 8px 18px rgba(201, 109, 74, .18);
            font-size: .95rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .button.site-button:hover {
            color: var(--white);
            background: var(--accent-dark);
            border-color: var(--accent-dark);
            box-shadow: 0 12px 25px rgba(170, 87, 59, .22);
            transform: translateY(-2px);
        }

        .button.site-button.secondary {
            color: var(--ink);
            background: transparent;
            border-color: rgba(51, 42, 49, .38);
            box-shadow: none;
        }

        .button.site-button.secondary:hover {
            color: var(--ink);
            background: var(--white);
            border-color: var(--moss);
        }

        .button.site-button.dark {
            color: var(--white);
            background: var(--ink);
            border-color: var(--ink);
            box-shadow: none;
        }

        .button.site-button.dark:hover {
            background: var(--ink-soft);
            border-color: var(--ink-soft);
        }

        .arrow {
            display: inline-block;
            font-size: 1.1em;
            transition: transform var(--transition);
        }

        a:hover .arrow {
            transform: translateX(4px);
        }

        .topbar {
            min-height: 36px;
            color: rgba(255, 253, 249, .78);
            background: var(--ink);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            font-size: .78rem;
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 36px;
            gap: 24px;
        }

        .topbar-left,
        .topbar-right {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .topbar-domain {
            color: var(--white);
            font-weight: 700;
            letter-spacing: .04em;
        }

        .topbar-note {
            position: relative;
            padding-left: 14px;
        }

        .topbar-note::before {
            position: absolute;
            top: 50%;
            left: 0;
            width: 5px;
            height: 5px;
            background: var(--moss);
            border-radius: 50%;
            content: "";
            transform: translateY(-50%);
        }

        .topbar a:hover {
            color: var(--white);
        }

        .site-header {
            position: sticky;
            z-index: 1000;
            top: 0;
            background: rgba(244, 240, 232, .96);
            border-bottom: 1px solid rgba(216, 208, 200, .85);
            backdrop-filter: blur(14px);
        }

        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 78px;
            gap: 34px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            flex: 0 1 auto;
            gap: 12px;
            color: var(--ink);
            font-weight: 800;
            line-height: 1.2;
        }

        .brand-mark {
            position: relative;
            display: grid;
            width: 42px;
            height: 36px;
            flex: 0 0 42px;
            place-items: center;
            overflow: hidden;
            background: var(--ink);
            border-radius: 9px 13px 9px 13px;
        }

        .brand-mark::before {
            width: 0;
            height: 0;
            margin-left: 3px;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            border-left: 11px solid var(--accent);
            content: "";
        }

        .brand-mark::after {
            position: absolute;
            right: 5px;
            bottom: 5px;
            width: 7px;
            height: 7px;
            background: var(--moss);
            border: 2px solid var(--ink);
            border-radius: 50%;
            content: "";
        }

        .brand-text {
            max-width: 210px;
            font-size: .94rem;
        }

        .desktop-nav {
            display: flex;
            align-items: stretch;
            align-self: stretch;
            margin-left: auto;
        }

        .desktop-nav.menu > li {
            display: flex;
        }

        .desktop-nav.menu > li > a {
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 18px;
            color: var(--muted);
            font-size: .94rem;
            font-weight: 650;
        }

        .desktop-nav.menu > li > a::after {
            position: absolute;
            right: 18px;
            bottom: 16px;
            left: 18px;
            height: 2px;
            background: var(--accent);
            content: "";
            opacity: 0;
            transform: scaleX(.3);
            transition: opacity var(--transition), transform var(--transition);
        }

        .desktop-nav.menu > li > a:hover,
        .desktop-nav.menu > li.is-active > a {
            color: var(--ink);
            background: transparent;
            transform: translateY(-1px);
        }

        .desktop-nav.menu > li > a:hover::after,
        .desktop-nav.menu > li.is-active > a::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .nav-cta {
            flex: 0 0 auto;
        }

        .mobile-toggle {
            display: none;
            width: 46px;
            height: 46px;
            margin: 0;
            padding: 12px;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 12px;
            cursor: pointer;
        }

        .mobile-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            margin: 4px 0;
            background: var(--ink);
            border-radius: 2px;
        }

        .mobile-panel {
            display: none;
            padding: 0 0 18px;
        }

        .mobile-panel .vertical.menu a {
            min-height: 48px;
            padding: 13px 8px;
            color: var(--ink);
            border-bottom: 1px solid var(--line);
            font-weight: 650;
        }

        .mobile-panel .vertical.menu .is-active a {
            color: var(--accent-dark);
            background: transparent;
        }

        .hero {
            position: relative;
            min-height: 700px;
            padding: 86px 0 68px;
            overflow: hidden;
            color: var(--white);
            background:
                radial-gradient(circle at 82% 18%, rgba(201, 109, 74, .17), transparent 28%),
                linear-gradient(112deg, #332a31 0%, #3c3138 58%, #443840 100%);
        }

        .hero::before {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
            background-size: 70px 70px;
            content: "";
            mask-image: linear-gradient(to right, transparent, #000 68%, transparent);
        }

        .hero::after {
            position: absolute;
            right: -70px;
            bottom: -130px;
            width: 460px;
            height: 460px;
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 50%;
            content: "";
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-copy {
            padding-right: 34px;
        }

        .hero .eyebrow {
            color: #e3b29e;
        }

        .hero h1 {
            color: var(--white);
        }

        .hero h1 .highlight {
            color: #e58b68;
        }

        .hero-lead {
            max-width: 670px;
            margin-bottom: 30px;
            color: rgba(255, 253, 249, .76);
            font-size: 1.06rem;
            line-height: 1.9;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-bottom: 34px;
        }

        .hero .button.secondary {
            color: var(--white);
            border-color: rgba(255,255,255,.42);
        }

        .hero .button.secondary:hover {
            color: var(--ink);
            background: var(--white);
        }

        .hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            margin: 0;
            padding: 0;
            list-style: none;
            color: rgba(255,253,249,.68);
            font-size: .88rem;
        }

        .hero-points li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-points li::before {
            width: 7px;
            height: 7px;
            background: var(--moss);
            border: 2px solid rgba(255,255,255,.2);
            border-radius: 50%;
            content: "";
        }

        .hero-stage {
            position: relative;
            min-height: 510px;
            margin-left: 20px;
        }

        .stage-window {
            position: absolute;
            inset: 8px 0 46px 45px;
            overflow: hidden;
            background:
                linear-gradient(180deg, rgba(51,42,49,.10), rgba(51,42,49,.64)),
                radial-gradient(circle at 72% 28%, rgba(232,154,118,.72), transparent 10%),
                linear-gradient(135deg, #726359 0 24%, #2f2c31 24% 52%, #7a655a 52% 53%, #42373d 53% 100%);
            border: 1px solid rgba(255,255,255,.14);
            border-radius: 26px 26px 70px 26px;
            box-shadow: 0 32px 70px rgba(0,0,0,.24);
        }

        .stage-window::before {
            position: absolute;
            inset: 28px;
            border: 1px solid rgba(255,255,255,.17);
            border-radius: 16px;
            content: "";
        }

        .stage-window::after {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, transparent 0 47%, rgba(255,255,255,.1) 47% 48%, transparent 48%),
                linear-gradient(transparent 0 68%, rgba(255,255,255,.1) 68% 69%, transparent 69%);
            content: "";
        }

        .stage-caption {
            position: absolute;
            z-index: 2;
            right: 26px;
            bottom: 28px;
            left: 26px;
            padding: 20px;
            background: rgba(51,42,49,.84);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 15px;
            backdrop-filter: blur(9px);
        }

        .stage-caption strong {
            display: block;
            margin-bottom: 4px;
            color: var(--white);
            font-size: 1rem;
        }

        .stage-caption span {
            color: rgba(255,255,255,.62);
            font-size: .82rem;
        }

        .floating-note {
            position: absolute;
            z-index: 3;
            top: 70px;
            left: 0;
            width: 175px;
            padding: 17px;
            color: var(--ink);
            background: var(--surface);
            border: 1px solid rgba(255,255,255,.5);
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .floating-note .note-num {
            display: block;
            margin-bottom: 3px;
            color: var(--accent);
            font-family: Georgia, serif;
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1;
        }

        .floating-note small {
            color: var(--muted);
            font-size: .76rem;
        }

        .stage-ticket {
            position: absolute;
            z-index: 3;
            right: -10px;
            bottom: 0;
            width: 225px;
            padding: 20px;
            color: var(--ink);
            background: #e5e9df;
            border-radius: 14px;
            box-shadow: var(--shadow-md);
        }

        .stage-ticket::before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 15px;
            border-left: 1px dashed rgba(51,42,49,.22);
            content: "";
        }

        .stage-ticket strong,
        .stage-ticket span {
            display: block;
            padding-left: 14px;
        }

        .stage-ticket span {
            margin-top: 5px;
            color: var(--muted);
            font-size: .78rem;
        }

        .hero-anchor {
            position: absolute;
            z-index: 3;
            bottom: 24px;
            left: 50%;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,.58);
            font-size: .78rem;
            transform: translateX(-50%);
        }

        .hero-anchor::after {
            width: 40px;
            height: 1px;
            background: rgba(255,255,255,.34);
            content: "";
        }

        .service-section {
            background: var(--paper);
        }

        .guide-layout {
            align-items: stretch;
        }

        .guide-main,
        .guide-small {
            position: relative;
            overflow: hidden;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }

        .guide-main:hover,
        .guide-small:hover {
            border-color: rgba(122,132,114,.78);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .guide-main {
            min-height: 520px;
            padding: 42px;
        }

        .guide-visual {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 57%;
            height: 64%;
            overflow: hidden;
            background:
                linear-gradient(160deg, transparent, rgba(51,42,49,.34)),
                repeating-linear-gradient(90deg, #75655d 0 34px, #40373d 34px 68px);
            border-radius: 80px 0 0 0;
        }

        .guide-visual::before {
            position: absolute;
            inset: 24px;
            border: 1px solid rgba(255,255,255,.28);
            border-radius: 54px 0 0 0;
            content: "";
        }

        .card-number {
            display: block;
            margin-bottom: 30px;
            color: var(--accent);
            font-family: Georgia, serif;
            font-size: 2.3rem;
            line-height: 1;
        }

        .guide-main h3 {
            max-width: 430px;
            font-size: 1.75rem;
        }

        .guide-main p {
            position: relative;
            z-index: 2;
            max-width: 440px;
            color: var(--muted);
        }

        .card-link {
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            color: var(--ink);
            font-weight: 750;
        }

        .guide-stack {
            display: grid;
            height: 100%;
            gap: 24px;
            grid-template-rows: 1fr 1fr;
        }

        .guide-small {
            min-height: 248px;
            padding: 28px 30px;
        }

        .guide-small:nth-child(2) {
            margin-left: 30px;
            background: var(--ink-soft);
            border-color: var(--ink-soft);
        }

        .guide-small:nth-child(2) h3,
        .guide-small:nth-child(2) .card-link {
            color: var(--white);
        }

        .guide-small:nth-child(2) p {
            color: rgba(255,255,255,.66);
        }

        .guide-small .card-number {
            margin-bottom: 18px;
            font-size: 1.65rem;
        }

        .guide-small p {
            color: var(--muted);
            font-size: .94rem;
        }

        .advantage-section {
            overflow: hidden;
            color: var(--white);
            background: var(--ink);
        }

        .advantage-section::before {
            position: absolute;
            top: -120px;
            right: -50px;
            width: 440px;
            height: 440px;
            border: 1px solid rgba(255,255,255,.06);
            border-radius: 50%;
            content: "";
        }

        .advantage-intro {
            padding-right: 60px;
        }

        .advantage-intro h2 {
            color: var(--white);
        }

        .advantage-intro p {
            color: rgba(255,255,255,.66);
        }

        .feature-grid {
            border-top: 1px solid rgba(255,255,255,.13);
            border-left: 1px solid rgba(255,255,255,.13);
        }

        .feature-unit {
            min-height: 190px;
            padding: 28px;
            border-right: 1px solid rgba(255,255,255,.13);
            border-bottom: 1px solid rgba(255,255,255,.13);
        }

        .feature-unit strong {
            display: block;
            margin-bottom: 10px;
            color: var(--white);
            font-family: Georgia, "Songti SC", serif;
            font-size: 2rem;
            line-height: 1.1;
        }

        .feature-unit span {
            display: block;
            margin-bottom: 8px;
            color: #ddac98;
            font-weight: 700;
        }

        .feature-unit p {
            margin: 0;
            color: rgba(255,255,255,.58);
            font-size: .88rem;
        }

        .cases-section {
            background: var(--surface-muted);
        }

        .media-grid {
            display: grid;
            grid-template-columns: 1.45fr .75fr .75fr;
            gap: 22px;
        }

        .media-card {
            position: relative;
            display: flex;
            min-height: 410px;
            overflow: hidden;
            align-items: flex-end;
            padding: 28px;
            color: var(--white);
            background: var(--ink-soft);
            border: 1px solid rgba(51,42,49,.12);
            border-radius: 22px;
            box-shadow: var(--shadow-sm);
            isolation: isolate;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .media-card:first-child {
            min-height: 510px;
        }

        .media-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .media-card::before {
            position: absolute;
            z-index: -2;
            inset: 0;
            background:
                radial-gradient(circle at 65% 22%, rgba(224,145,107,.65), transparent 9%),
                linear-gradient(145deg, #766057, #332a31 55%, #7a8472);
            content: "";
            transition: transform 500ms ease;
        }

        .media-card:nth-child(2)::before {
            background:
                linear-gradient(90deg, rgba(51,42,49,.22), rgba(51,42,49,.64)),
                repeating-linear-gradient(0deg, #8d796d 0 38px, #443840 38px 76px);
        }

        .media-card:nth-child(3)::before {
            background:
                radial-gradient(circle at 45% 32%, #c58a70, transparent 16%),
                linear-gradient(160deg, #3f343b, #7a8472);
        }

        .media-card::after {
            position: absolute;
            z-index: -1;
            inset: 0;
            background: linear-gradient(transparent 30%, rgba(28,22,26,.92));
            content: "";
        }

        .media-card:hover::before {
            transform: scale(1.025);
        }

        .media-card h3 {
            margin: 10px 0 8px;
            color: var(--white);
        }

        .media-card p {
            margin: 0;
            color: rgba(255,255,255,.7);
            font-size: .9rem;
            line-height: 1.7;
        }

        .media-arrow {
            position: absolute;
            top: 24px;
            right: 24px;
            display: grid;
            width: 44px;
            height: 44px;
            color: var(--white);
            background: rgba(51,42,49,.45);
            border: 1px solid rgba(255,255,255,.24);
            border-radius: 50%;
            place-items: center;
            opacity: .72;
            transition: opacity var(--transition), transform var(--transition);
        }

        .media-card:hover .media-arrow {
            opacity: 1;
            transform: translate(3px, -3px);
        }

        .news-loop {
            display: grid;
            margin-top: 26px;
            overflow: hidden;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            grid-template-columns: 1fr 1fr;
        }

        .news-link {
            display: flex;
            min-height: 84px;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 20px 24px;
            border-bottom: 1px solid var(--line);
        }

        .news-link:nth-child(odd) {
            border-right: 1px solid var(--line);
        }

        .news-link:nth-last-child(-n+2) {
            border-bottom: 0;
        }

        .news-link:hover {
            background: #f0ebe3;
        }

        .news-link strong {
            display: block;
            color: var(--ink);
            font-size: .98rem;
        }

        .news-link small {
            color: var(--muted);
        }

        .solution-section {
            background: var(--paper);
        }

        .timeline {
            position: relative;
            margin: 0;
            padding: 4px 30px 4px 0;
            list-style: none;
        }

        .timeline::before {
            position: absolute;
            top: 18px;
            bottom: 18px;
            left: 23px;
            width: 1px;
            background: var(--line);
            content: "";
        }

        .timeline-item {
            position: relative;
            display: grid;
            min-height: 122px;
            padding-bottom: 26px;
            grid-template-columns: 48px 1fr;
            gap: 22px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-number {
            position: relative;
            z-index: 2;
            display: grid;
            width: 48px;
            height: 48px;
            color: var(--white);
            background: var(--ink);
            border: 5px solid var(--paper);
            border-radius: 50%;
            font-family: Georgia, serif;
            font-size: .82rem;
            place-items: center;
        }

        .timeline-item h3 {
            margin: 2px 0 7px;
            font-size: 1.12rem;
        }

        .timeline-item p {
            margin: 0;
            color: var(--muted);
            font-size: .93rem;
        }

        .solution-panel {
            position: relative;
            min-height: 530px;
            overflow: hidden;
            padding: 42px;
            color: var(--white);
            background: var(--ink-soft);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .solution-panel::before,
        .solution-panel::after {
            position: absolute;
            border: 1px solid rgba(255,255,255,.12);
            content: "";
        }

        .solution-panel::before {
            top: 40px;
            right: -40px;
            width: 270px;
            height: 320px;
            border-radius: 100px 0 0 0;
            transform: rotate(-7deg);
        }

        .solution-panel::after {
            right: 50px;
            bottom: -85px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
        }

        .solution-panel h3 {
            position: relative;
            color: var(--white);
            font-size: 1.75rem;
        }

        .solution-panel > p {
            position: relative;
            max-width: 460px;
            color: rgba(255,255,255,.67);
        }

        .check-list {
            position: relative;
            margin: 30px 0;
            padding: 0;
            list-style: none;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 13px 0;
            color: rgba(255,255,255,.84);
            border-bottom: 1px solid rgba(255,255,255,.1);
        }

        .check-list li::before {
            display: grid;
            width: 22px;
            height: 22px;
            flex: 0 0 22px;
            color: var(--ink);
            background: var(--moss-light);
            border-radius: 50%;
            content: "✓";
            font-size: .7rem;
            font-weight: 800;
            place-items: center;
        }

        .faq-section {
            background: var(--surface-muted);
        }

        .faq-intro {
            position: sticky;
            top: 130px;
            padding-right: 58px;
        }

        .faq-intro p {
            color: var(--muted);
        }

        .faq-contact-link {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: var(--accent-dark);
            font-weight: 700;
        }

        .accordion.faq-accordion {
            margin: 0;
            background: transparent;
        }

        .faq-accordion .accordion-item {
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
        }

        .faq-accordion .accordion-title {
            display: flex;
            min-height: 72px;
            align-items: center;
            padding: 20px 56px 20px 24px;
            color: var(--ink);
            border: 0;
            font-size: 1rem;
            font-weight: 750;
            line-height: 1.5;
        }

        .faq-accordion .accordion-title:hover,
        .faq-accordion .accordion-title:focus {
            color: var(--accent-dark);
            background: #f3eee7;
        }

        .faq-accordion .accordion-title::before {
            top: 50%;
            right: 24px;
            margin-top: -13px;
            color: var(--accent);
            font-size: 1.5rem;
        }

        .faq-number {
            min-width: 42px;
            color: var(--moss);
            font-family: Georgia, serif;
            font-size: .82rem;
        }

        .faq-accordion .accordion-content {
            padding: 0 28px 26px 66px;
            color: var(--muted);
            background: var(--surface);
            border: 0;
            line-height: 1.85;
        }

        .faq-accordion .accordion-content p {
            margin: 0;
        }

        .contact-section {
            overflow: hidden;
            background: var(--ink);
        }

        .contact-card {
            position: relative;
            overflow: hidden;
            padding: 56px;
            background: var(--surface);
            border-radius: var(--radius-lg);
            box-shadow: 0 24px 70px rgba(0,0,0,.2);
        }

        .contact-card::after {
            position: absolute;
            top: -105px;
            right: -100px;
            width: 330px;
            height: 330px;
            background: rgba(122,132,114,.11);
            border-radius: 50%;
            content: "";
        }

        .contact-copy {
            position: relative;
            z-index: 2;
            padding-right: 52px;
        }

        .contact-copy p {
            color: var(--muted);
        }

        .mini-index {
            display: grid;
            margin-top: 30px;
            gap: 10px;
        }

        .mini-index a {
            display: flex;
            min-height: 54px;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: 12px;
            font-weight: 700;
        }

        .mini-index a:hover {
            background: var(--moss-light);
            border-color: var(--moss);
            transform: translateX(3px);
        }

        .feedback-form {
            position: relative;
            z-index: 2;
            padding: 30px;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }

        .feedback-form label {
            margin-bottom: 14px;
            color: var(--ink);
            font-size: .9rem;
            font-weight: 700;
        }

        .feedback-form input,
        .feedback-form select,
        .feedback-form textarea {
            width: 100%;
            min-height: 50px;
            margin: 7px 0 0;
            color: var(--text);
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 10px;
            box-shadow: none;
            font-size: .94rem;
        }

        .feedback-form textarea {
            min-height: 112px;
            resize: vertical;
        }

        .feedback-form input:focus,
        .feedback-form select:focus,
        .feedback-form textarea:focus {
            background: var(--white);
            border-color: var(--moss);
            box-shadow: 0 0 0 3px rgba(122,132,114,.16);
        }

        .form-note {
            margin: 4px 0 18px;
            color: var(--muted);
            font-size: .78rem;
        }

        .form-status {
            display: none;
            margin: 14px 0 0;
            padding: 10px 13px;
            color: #455340;
            background: #e5ebdf;
            border: 1px solid #cad4c2;
            border-radius: 9px;
            font-size: .86rem;
        }

        .form-status.is-visible {
            display: block;
        }

        .site-footer {
            color: rgba(255,255,255,.68);
            background: #2a2328;
            border-top: 1px solid rgba(255,255,255,.08);
        }

        .footer-main {
            padding: 64px 0 42px;
        }

        .footer-brand {
            margin-bottom: 16px;
            color: var(--white);
            font-size: 1.08rem;
            font-weight: 800;
        }

        .footer-summary {
            max-width: 480px;
            margin: 0;
            color: rgba(255,255,255,.56);
            font-size: .9rem;
        }

        .footer-title {
            margin-bottom: 13px;
            color: var(--white);
            font-size: .88rem;
            font-weight: 750;
        }

        .footer-links {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-links li {
            margin: 7px 0;
        }

        .footer-links a {
            color: rgba(255,255,255,.62);
            font-size: .88rem;
        }

        .footer-links a:hover {
            color: #e69a7c;
        }

        .footer-bottom {
            padding: 18px 0 28px;
            border-top: 1px solid rgba(255,255,255,.09);
            font-size: .76rem;
        }

        .footer-bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-notes {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }

        .floating-cta {
            position: fixed;
            z-index: 900;
            right: 24px;
            bottom: 24px;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px 10px 10px 18px;
            color: var(--white);
            background: rgba(51,42,49,.95);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 999px;
            box-shadow: 0 14px 34px rgba(32,25,30,.25);
            backdrop-filter: blur(10px);
        }

        .floating-cta span {
            font-size: .82rem;
        }

        .floating-cta .button {
            min-height: 40px;
            padding: 9px 16px;
            font-size: .82rem;
        }

        @media (max-width: 1024px) {
            .grid-container.site-container {
                width: min(100% - 34px, var(--container));
            }

            .section {
                padding: 82px 0;
            }

            .brand-text {
                max-width: 170px;
                font-size: .84rem;
            }

            .desktop-nav.menu > li > a {
                padding-right: 10px;
                padding-left: 10px;
                font-size: .86rem;
            }

            .desktop-nav.menu > li > a::after {
                right: 10px;
                left: 10px;
            }

            .nav-cta {
                display: none;
            }

            .hero {
                min-height: auto;
                padding-top: 72px;
            }

            .hero-copy {
                padding-right: 10px;
            }

            .hero-stage {
                min-height: 460px;
                margin-left: 0;
            }

            .guide-main {
                min-height: 500px;
                padding: 34px;
            }

            .guide-small:nth-child(2) {
                margin-left: 0;
            }

            .advantage-intro {
                padding-right: 24px;
            }

            .media-grid {
                grid-template-columns: 1.25fr .75fr;
            }

            .media-card:nth-child(3) {
                min-height: 310px;
                grid-column: 1 / -1;
            }

            .contact-card {
                padding: 42px;
            }

            .contact-copy {
                padding-right: 25px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: clamp(2rem, 9vw, 2.55rem);
            }

            h2 {
                font-size: 1.75rem;
            }

            body {
                font-size: 15px;
            }

            .grid-container.site-container {
                width: min(100% - 28px, var(--container));
            }

            .section {
                padding: 66px 0;
            }

            .section-heading {
                margin-bottom: 32px;
            }

            .topbar-note,
            .topbar-right span {
                display: none;
            }

            .topbar-left,
            .topbar-right {
                gap: 8px;
            }

            .main-nav {
                min-height: 68px;
            }

            .brand-text {
                max-width: 190px;
            }

            .desktop-nav,
            .nav-cta {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .mobile-panel {
                display: block;
            }

            .hero {
                padding: 58px 0 72px;
            }

            .hero-copy {
                padding-right: 0;
            }

            .hero-lead {
                font-size: 1rem;
            }

            .hero-stage {
                min-height: 430px;
                margin-top: 42px;
            }

            .stage-window {
                inset: 0 6px 58px 28px;
            }

            .floating-note {
                top: 45px;
                width: 150px;
            }

            .stage-ticket {
                right: 0;
                width: 205px;
            }

            .hero-anchor {
                display: none;
            }

            .guide-main {
                min-height: 450px;
                margin-bottom: 20px;
            }

            .guide-stack {
                gap: 20px;
            }

            .guide-small {
                min-height: 220px;
            }

            .advantage-intro {
                margin-bottom: 38px;
                padding-right: 0;
            }

            .feature-unit {
                min-height: 170px;
                padding: 22px;
            }

            .media-grid {
                grid-template-columns: 1fr 1fr;
            }

            .media-card:first-child {
                min-height: 420px;
                grid-column: 1 / -1;
            }

            .media-card {
                min-height: 360px;
            }

            .news-loop {
                grid-template-columns: 1fr;
            }

            .news-link,
            .news-link:nth-child(odd),
            .news-link:nth-last-child(-n+2) {
                border-right: 0;
                border-bottom: 1px solid var(--line);
            }

            .news-link:last-child {
                border-bottom: 0;
            }

            .timeline {
                margin-bottom: 40px;
                padding-right: 0;
            }

            .solution-panel {
                min-height: auto;
                padding: 34px;
            }

            .faq-intro {
                position: static;
                margin-bottom: 35px;
                padding-right: 0;
            }

            .contact-card {
                padding: 34px 26px;
            }

            .contact-copy {
                margin-bottom: 34px;
                padding-right: 0;
            }

            .footer-main {
                padding: 52px 0 30px;
            }

            .footer-column {
                margin-top: 28px;
            }

            .footer-bottom-inner {
                align-items: flex-start;
                flex-direction: column;
            }

            .floating-cta {
                right: 12px;
                bottom: 12px;
                left: 12px;
                justify-content: space-between;
            }
        }

        @media (max-width: 520px) {
            .grid-container.site-container {
                width: min(100% - 22px, var(--container));
            }

            .brand-mark {
                width: 38px;
                height: 34px;
                flex-basis: 38px;
            }

            .brand-text {
                max-width: 155px;
                font-size: .76rem;
            }

            .hero-actions {
                display: grid;
                grid-template-columns: 1fr;
            }

            .hero-actions .button {
                width: 100%;
            }

            .hero-points {
                display: grid;
                gap: 8px;
            }

            .hero-stage {
                min-height: 365px;
            }

            .stage-window {
                inset: 0 0 48px 12px;
                border-radius: 20px 20px 48px 20px;
            }

            .floating-note {
                top: 28px;
                left: -2px;
                width: 132px;
                padding: 13px;
            }

            .stage-ticket {
                width: 184px;
                padding: 15px;
            }

            .guide-main {
                min-height: 490px;
                padding: 26px;
            }

            .guide-visual {
                width: 82%;
                height: 43%;
            }

            .guide-small {
                padding: 25px;
            }

            .feature-unit {
                min-height: 155px;
                padding: 18px;
            }

            .feature-unit strong {
                font-size: 1.55rem;
            }

            .media-grid {
                grid-template-columns: 1fr;
            }

            .media-card,
            .media-card:first-child,
            .media-card:nth-child(3) {
                min-height: 370px;
                grid-column: auto;
            }

            .news-link {
                align-items: flex-start;
                padding: 17px;
            }

            .solution-panel {
                padding: 28px 23px;
            }

            .faq-accordion .accordion-title {
                padding: 18px 48px 18px 17px;
            }

            .faq-number {
                min-width: 35px;
            }

            .faq-accordion .accordion-content {
                padding: 0 20px 22px 52px;
            }

            .contact-card {
                padding: 25px 17px;
                border-radius: 18px;
            }

            .feedback-form {
                padding: 22px 17px;
            }

            .floating-cta span {
                display: none;
            }

            .floating-cta .button {
                width: 100%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *, *::before, *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
            }
        }

/* roulang page: category1 */
:root {
  --ink: #332a31;
  --ink-soft: #443840;
  --paper: #f4f0e8;
  --surface: #fbf9f5;
  --surface-muted: #eee8df;
  --moss: #7a8472;
  --moss-light: #dfe4da;
  --accent: #c96d4a;
  --accent-dark: #aa573b;
  --text: #383137;
  --muted: #756d72;
  --line: #d8d0c8;
  --white: #fffdf9;
  --success: #64745d;
  --danger: #a24f45;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 20px rgba(51, 42, 49, .07);
  --shadow-md: 0 16px 38px rgba(51, 42, 49, .11);
  --transition: 200ms ease;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -.025em;
}

h1 {
  margin-bottom: 24px;
  font-family: "Source Han Serif SC", "Songti SC", serif;
  font-size: clamp(2.25rem, 4.6vw, 3.55rem);
  line-height: 1.18;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.28;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  border-radius: 0;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(201, 109, 74, .42);
  outline-offset: 3px;
}

.grid-container.site-container {
  width: min(100% - 40px, var(--container));
  max-width: var(--container);
  padding-right: 0;
  padding-left: 0;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  color: var(--ink);
  background: var(--moss-light);
  border: 1px solid rgba(122, 132, 114, .25);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.3;
}

.tag.accent {
  color: #7b3928;
  background: #f3ddd3;
  border-color: rgba(201, 109, 74, .25);
}

.button.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  margin: 0;
  padding: 13px 24px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(201, 109, 74, .18);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
}

.button.site-button:hover {
  color: var(--white);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 12px 25px rgba(170, 87, 59, .22);
  transform: translateY(-2px);
}

.button.site-button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(51, 42, 49, .38);
  box-shadow: none;
}

.button.site-button.secondary:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--moss);
}

.button.site-button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button.site-button.dark:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.arrow {
  display: inline-block;
  font-size: 1.1em;
  transition: transform var(--transition);
}

a:hover .arrow {
  transform: translateX(4px);
}

/* 顶部信息条 */
.topbar {
  min-height: 36px;
  color: rgba(255, 253, 249, .78);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .78rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 24px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-domain {
  color: var(--white);
  font-weight: 700;
  letter-spacing: .04em;
}

.topbar-note {
  position: relative;
  padding-left: 14px;
}

.topbar-note::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--moss);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.topbar a:hover {
  color: var(--white);
}

/* 统一导航 */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(244, 240, 232, .96);
  border-bottom: 1px solid rgba(216, 208, 200, .9);
  box-shadow: 0 5px 18px rgba(51, 42, 49, .035);
  backdrop-filter: blur(12px);
}

.main-nav {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.brand:hover {
  color: var(--accent-dark);
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 31px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.brand-mark::before {
  position: absolute;
  top: 9px;
  left: 14px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--accent);
  content: "";
}

.brand-mark::after {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 9px;
  height: 5px;
  border-right: 1px solid rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  content: "";
}

.brand-text {
  max-width: 210px;
  font-size: .98rem;
}

.desktop-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  justify-content: center;
  background: transparent;
}

.desktop-nav > li > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 0 17px;
  color: var(--muted);
  background: transparent;
  font-size: .94rem;
  font-weight: 650;
}

.desktop-nav > li > a::after {
  position: absolute;
  right: 17px;
  bottom: 0;
  left: 17px;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.desktop-nav > li > a:hover,
.desktop-nav > li.is-active > a {
  color: var(--ink);
  background: transparent;
  transform: translateY(-1px);
}

.desktop-nav > li.is-active > a::after,
.desktop-nav > li > a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  flex: 0 0 auto;
  min-height: 46px !important;
  padding: 11px 20px !important;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 4px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-panel {
  padding: 0 0 18px;
}

.mobile-panel[hidden] {
  display: none !important;
}

.mobile-panel .menu {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.mobile-panel .menu a {
  min-height: 48px;
  padding: 13px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mobile-panel .menu li:last-child a {
  border-bottom: 0;
}

.mobile-panel .menu .is-active > a {
  color: var(--accent-dark);
  background: #f5e5dc;
}

/* 分类首屏 */
.category-hero {
  position: relative;
  padding: 72px 0 78px;
  overflow: hidden;
}

.category-hero::before {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(122, 132, 114, .2);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  margin: 0 0 30px;
  background: transparent;
}

.breadcrumbs li,
.breadcrumbs a {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: 0;
  text-transform: none;
}

.breadcrumbs a:hover {
  color: var(--accent-dark);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 18px 0;
}

.hero-copy h1 span {
  display: block;
  color: var(--accent-dark);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.filter-label {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 750;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 650;
  cursor: pointer;
}

.filter-chip:hover,
.filter-chip.is-selected {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.catalog-poster {
  position: relative;
  max-width: 365px;
  min-height: 490px;
  margin-left: auto;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.catalog-poster::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  content: "";
}

.poster-window {
  position: absolute;
  top: 52px;
  right: -25px;
  width: 245px;
  height: 155px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.12) 49%, rgba(255,255,255,.12) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255,255,255,.12) 49%, rgba(255,255,255,.12) 51%, transparent 52%),
    linear-gradient(145deg, #73554f, #43453e);
  border: 8px solid var(--ink-soft);
  border-radius: 18px 0 0 18px;
  transform: rotate(-4deg);
}

.poster-glow {
  position: absolute;
  top: 138px;
  left: 22px;
  width: 160px;
  height: 160px;
  background: rgba(201, 109, 74, .42);
  border-radius: 50%;
  filter: blur(38px);
}

.poster-content {
  position: absolute;
  right: 28px;
  bottom: 34px;
  left: 28px;
  z-index: 2;
}

.poster-index {
  margin-bottom: 12px;
  color: #efb39b;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .15em;
}

.poster-content strong {
  display: block;
  margin-bottom: 16px;
  font-family: "Source Han Serif SC", "Songti SC", serif;
  font-size: 2rem;
  line-height: 1.32;
}

.poster-rule {
  width: 54px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--accent);
}

.poster-content p {
  margin: 0;
  color: rgba(255, 253, 249, .73);
  font-size: .9rem;
}

/* 目录墙 */
.directory-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.directory-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.directory-toolbar .section-heading {
  margin-bottom: 0;
}

.toolbar-note {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .84rem;
}

.editorial-card,
.list-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.editorial-card:hover,
.list-card:hover {
  border-color: rgba(122, 132, 114, .7);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card {
  min-height: 528px;
}

.visual {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--ink-soft);
}

.feature-card .visual {
  min-height: 310px;
}

.visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(51, 42, 49, .35));
  content: "";
}

.visual-one {
  background:
    linear-gradient(115deg, rgba(201,109,74,.18), transparent 50%),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255,255,255,.06) 59px 60px),
    linear-gradient(145deg, #4d4248, #7c7567);
}

.visual-one::before {
  position: absolute;
  right: 12%;
  bottom: -18%;
  width: 62%;
  height: 95%;
  background: linear-gradient(150deg, rgba(255,236,207,.5), rgba(201,109,74,.08));
  border: 12px solid rgba(51,42,49,.55);
  border-radius: 8px;
  box-shadow: -25px -10px 60px rgba(255, 225, 189, .16);
  content: "";
  transform: rotate(-5deg);
}

.visual-two {
  background:
    radial-gradient(circle at 68% 34%, rgba(201,109,74,.55) 0 4%, transparent 5%),
    linear-gradient(20deg, transparent 45%, rgba(255,255,255,.09) 46% 48%, transparent 49%),
    linear-gradient(145deg, #353036, #666b60);
}

.visual-two::before {
  position: absolute;
  top: 32px;
  left: 35px;
  width: 48%;
  height: 68%;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 18px 18px 0 rgba(201,109,74,.25);
  content: "";
}

.visual-three {
  background:
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(255,255,255,.055) 37px 38px),
    linear-gradient(135deg, #75665e, #3a3438);
}

.visual-three::before {
  position: absolute;
  top: 14%;
  right: 11%;
  width: 45%;
  height: 72%;
  background: rgba(240, 218, 193, .15);
  border: 8px solid rgba(51,42,49,.5);
  border-radius: 80px 80px 8px 8px;
  content: "";
}

.visual-four {
  background:
    radial-gradient(circle at 30% 70%, rgba(223,228,218,.25), transparent 28%),
    linear-gradient(155deg, #39413b, #65504d);
}

.visual-four::before {
  position: absolute;
  inset: 28px 40px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  content: "";
}

.visual-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
}

.card-body {
  padding: 26px;
}

.card-body p {
  color: var(--muted);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: .92rem;
  font-weight: 750;
}

.medium-card {
  min-height: 100%;
}

.medium-card .card-body {
  padding: 23px;
}

.stacked-gap {
  margin-top: 26px;
}

.list-card {
  display: flex;
  align-items: center;
  min-height: 124px;
  margin-top: 26px;
  padding: 20px 22px;
  gap: 20px;
}

.list-number {
  flex: 0 0 52px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.list-card-content {
  flex: 1 1 auto;
}

.list-card-content h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.list-card-content p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.list-card .card-link {
  flex: 0 0 auto;
}

/* 提示条 */
.reading-notice {
  padding: 38px 0;
  background: var(--moss-light);
  border-bottom: 1px solid rgba(122, 132, 114, .24);
}

.notice-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.notice-icon {
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(51, 42, 49, .25);
  border-radius: 50%;
}

.notice-icon::before {
  position: absolute;
  top: 13px;
  left: 27px;
  width: 2px;
  height: 20px;
  background: var(--ink);
  content: "";
}

.notice-icon::after {
  position: absolute;
  bottom: 13px;
  left: 27px;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.notice-copy {
  flex: 1 1 auto;
}

.notice-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.08rem;
}

.notice-copy p {
  margin: 0;
  color: #5e6758;
  font-size: .94rem;
}

.notice-action {
  flex: 0 0 auto;
}

/* 推荐带 */
.recommend-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.recommend-section::before {
  position: absolute;
  top: -130px;
  right: 2%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}

.recommend-section h2,
.recommend-section h3 {
  color: var(--white);
}

.recommend-section .section-heading p {
  color: rgba(255, 253, 249, .68);
}

.path-panel {
  position: relative;
  min-height: 315px;
  padding: 36px;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
}

.path-panel::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  background: rgba(201,109,74,.16);
  border: 1px solid rgba(201,109,74,.28);
  border-radius: 50%;
  content: "";
}

.path-number {
  margin-bottom: 38px;
  color: #dda48d;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
}

.path-panel p {
  max-width: 440px;
  color: rgba(255,253,249,.68);
}

.path-panel .card-link {
  color: #efb199;
}

.quick-index {
  min-height: 315px;
  padding: 30px;
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius-lg);
}

.quick-index-title {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .08em;
}

.quick-index ul {
  margin: 0;
  list-style: none;
}

.quick-index li {
  border-top: 1px solid var(--line);
}

.quick-index a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 18px;
  font-weight: 700;
}

.quick-index a:hover {
  padding-left: 5px;
  color: var(--accent-dark);
}

/* 使用步骤 */
.guide-section {
  background: var(--paper);
}

.step-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 24px;
  width: 1px;
  background: var(--line);
  content: "";
}

.step-item {
  position: relative;
  display: flex;
  padding-bottom: 28px;
  gap: 22px;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-badge {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--ink);
  border: 5px solid var(--paper);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 750;
}

.step-copy {
  padding-top: 5px;
}

.step-copy h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.step-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.guide-card {
  height: 100%;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.guide-card ul {
  margin: 22px 0 28px;
  list-style: none;
}

.guide-card li {
  position: relative;
  padding: 12px 0 12px 25px;
  border-bottom: 1px solid var(--line);
}

.guide-card li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--moss);
  border-radius: 50%;
  content: "";
}

/* FAQ */
.faq-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.faq-intro {
  padding-right: 35px;
}

.faq-intro p {
  color: var(--muted);
}

.accordion {
  margin: 0;
  background: transparent;
}

.accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.accordion-title {
  min-height: 66px;
  padding: 21px 58px 21px 64px;
  color: var(--ink);
  border: 0;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.5;
}

.accordion-title:hover,
.accordion-title:focus {
  color: var(--accent-dark);
  background: #f8f3ed;
}

.accordion-title::before {
  right: 22px;
  margin-top: -.65rem;
  color: var(--accent);
  font-size: 1.35rem;
}

.faq-number {
  position: absolute;
  top: 20px;
  left: 21px;
  color: var(--moss);
  font-family: Georgia, serif;
  font-size: .9rem;
}

.accordion-content {
  padding: 0 28px 24px 64px;
  color: var(--muted);
  background: var(--white);
  border: 0;
  line-height: 1.85;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* CTA */
.feedback-section {
  padding: 82px 0;
  background: var(--paper);
}

.feedback-card {
  position: relative;
  padding: 46px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feedback-card::after {
  position: absolute;
  top: -95px;
  right: -55px;
  width: 310px;
  height: 310px;
  border: 55px solid rgba(201,109,74,.1);
  border-radius: 50%;
  content: "";
}

.feedback-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.feedback-card h2 {
  color: var(--white);
}

.feedback-card p {
  color: rgba(255,253,249,.7);
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.feedback-card .secondary {
  color: var(--white) !important;
  border-color: rgba(255,255,255,.42) !important;
}

.feedback-card .secondary:hover {
  color: var(--ink) !important;
}

/* 页脚 */
.site-footer {
  color: rgba(255,253,249,.7);
  background: var(--ink);
}

.footer-main {
  padding: 70px 0 52px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-summary {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255,253,249,.64);
  font-size: .92rem;
}

.footer-column {
  padding-top: 4px;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 750;
}

.footer-links {
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  display: inline-block;
  color: rgba(255,253,249,.67);
  font-size: .88rem;
}

.footer-links a:hover {
  color: #efad93;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 28px;
}

.footer-bottom p {
  margin: 0;
  font-size: .78rem;
}

.footer-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  font-size: .75rem;
}

.footer-notes span {
  position: relative;
}

.footer-notes span + span::before {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 3px;
  height: 3px;
  background: var(--moss);
  border-radius: 50%;
  content: "";
}

/* 响应式 */
@media screen and (max-width: 1024px) {
  .grid-container.site-container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .desktop-nav > li > a {
    padding: 0 10px;
    font-size: .88rem;
  }

  .desktop-nav > li > a::after {
    right: 10px;
    left: 10px;
  }

  .brand-text {
    max-width: 160px;
    font-size: .88rem;
  }

  .nav-cta {
    padding-right: 16px !important;
    padding-left: 16px !important;
    font-size: .86rem !important;
  }

  .catalog-poster {
    min-height: 445px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card .visual {
    min-height: 270px;
  }

  .path-panel,
  .quick-index {
    min-height: 330px;
  }
}

@media screen and (max-width: 767px) {
  .grid-container.site-container {
    width: min(100% - 28px, var(--container));
  }

  .topbar-note,
  .topbar-right span {
    display: none;
  }

  .desktop-nav,
  .nav-cta {
    display: none !important;
  }

  .main-nav {
    min-height: 70px;
  }

  .brand {
    margin-right: auto;
  }

  .brand-text {
    max-width: none;
    font-size: .9rem;
  }

  .mobile-toggle {
    display: block;
  }

  .section {
    padding: 68px 0;
  }

  .category-hero {
    padding: 48px 0 62px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .catalog-poster {
    max-width: none;
    min-height: 390px;
    margin-top: 38px;
  }

  .directory-toolbar {
    display: block;
  }

  .toolbar-note {
    margin-top: 18px;
  }

  .medium-card {
    margin-top: 24px;
  }

  .stacked-gap {
    margin-top: 24px;
  }

  .list-card {
    align-items: flex-start;
  }

  .list-card .card-link {
    display: none;
  }

  .notice-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .notice-action {
    width: 100%;
    padding-left: 82px;
  }

  .path-panel,
  .quick-index {
    min-height: auto;
  }

  .quick-index {
    margin-top: 24px;
  }

  .guide-card {
    margin-top: 36px;
  }

  .faq-intro {
    margin-bottom: 30px;
    padding-right: 0;
  }

  .feedback-card {
    padding: 34px 28px;
  }

  .cta-actions {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .footer-column {
    margin-top: 38px;
  }

  .footer-bottom-inner {
    display: block;
    padding: 20px 0;
  }

  .footer-bottom p {
    margin-bottom: 10px;
  }

  .footer-notes {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .grid-container.site-container {
    width: min(100% - 22px, var(--container));
  }

  h1 {
    font-size: 2.12rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .topbar-left {
    width: 100%;
    justify-content: space-between;
  }

  .topbar-right {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 29px;
  }

  .brand-text {
    max-width: 210px;
    font-size: .82rem;
  }

  .filter-tags {
    gap: 8px;
  }

  .filter-chip {
    min-height: 44px;
    padding: 8px 13px;
  }

  .catalog-poster {
    min-height: 355px;
    padding: 22px;
  }

  .poster-content strong {
    font-size: 1.65rem;
  }

  .card-body {
    padding: 22px;
  }

  .feature-card .visual {
    min-height: 225px;
  }

  .visual {
    min-height: 190px;
  }

  .list-card {
    padding: 18px;
    gap: 13px;
  }

  .list-number {
    flex-basis: 38px;
    font-size: 1.55rem;
  }

  .notice-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .notice-icon::before {
    top: 10px;
    left: 22px;
    height: 18px;
  }

  .notice-icon::after {
    bottom: 10px;
    left: 22px;
  }

  .notice-action {
    padding-left: 0;
  }

  .button.site-button {
    width: 100%;
  }

  .path-panel,
  .quick-index,
  .guide-card {
    padding: 26px 22px;
  }

  .accordion-title {
    padding: 19px 48px 19px 52px;
    font-size: .94rem;
  }

  .faq-number {
    left: 16px;
  }

  .accordion-content {
    padding: 0 20px 21px 52px;
  }

  .feedback-card {
    padding: 30px 22px;
  }

  .cta-actions {
    display: grid;
    width: 100%;
  }

  .footer-main {
    padding: 54px 0 40px;
  }

  .footer-notes {
    display: block;
  }

  .footer-notes span {
    display: block;
    margin-top: 4px;
  }

  .footer-notes span + span::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* roulang page: category2 */
:root {
  --ink: #332a31;
  --ink-soft: #443840;
  --paper: #f4f0e8;
  --surface: #fbf9f5;
  --surface-muted: #eee8df;
  --moss: #7a8472;
  --moss-light: #dfe4da;
  --accent: #c96d4a;
  --accent-dark: #aa573b;
  --text: #383137;
  --muted: #756d72;
  --line: #d8d0c8;
  --white: #fffdf9;
  --success: #64745d;
  --danger: #a24f45;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 20px rgba(51, 42, 49, .07);
  --shadow-md: 0 16px 38px rgba(51, 42, 49, .11);
  --transition: 200ms ease;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  line-height: 1.2;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.5vw, 2.45rem);
  line-height: 1.3;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  border-radius: 0;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(201, 109, 74, .42);
  outline-offset: 3px;
}

.grid-container.site-container {
  width: min(100% - 40px, var(--container));
  max-width: var(--container);
  padding-left: 0;
  padding-right: 0;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  color: var(--ink);
  background: var(--moss-light);
  border: 1px solid rgba(122, 132, 114, .25);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.3;
}

.tag.accent {
  color: #7b3928;
  background: #f3ddd3;
  border-color: rgba(201, 109, 74, .25);
}

.tag.dark {
  color: var(--white);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .16);
}

.button.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  margin: 0;
  padding: 13px 24px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(201, 109, 74, .18);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
}

.button.site-button:hover {
  color: var(--white);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 12px 25px rgba(170, 87, 59, .22);
  transform: translateY(-2px);
}

.button.site-button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(51, 42, 49, .38);
  box-shadow: none;
}

.button.site-button.secondary:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--moss);
}

.button.site-button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button.site-button.light:hover {
  background: var(--surface-muted);
  border-color: var(--surface-muted);
}

.arrow {
  display: inline-block;
  font-size: 1.1em;
  transition: transform var(--transition);
}

a:hover .arrow {
  transform: translateX(4px);
}

/* 顶部信息条 */
.topbar {
  min-height: 36px;
  color: rgba(255, 253, 249, .78);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .78rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 24px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-domain {
  color: var(--white);
  font-weight: 700;
  letter-spacing: .04em;
}

.topbar-note {
  position: relative;
  padding-left: 14px;
}

.topbar-note::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--moss);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.topbar-link {
  color: var(--white);
  font-weight: 650;
}

.topbar-link:hover {
  color: #efb09a;
}

/* 主导航 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 240, 232, .96);
  border-bottom: 1px solid rgba(216, 208, 200, .88);
  box-shadow: 0 6px 20px rgba(51, 42, 49, .04);
  backdrop-filter: blur(12px);
}

.main-nav {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.brand:hover {
  color: var(--accent-dark);
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 28px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: inset -8px 0 0 var(--moss);
}

.brand-mark::after {
  position: absolute;
  top: 8px;
  left: 11px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--white);
  content: "";
}

.brand-text {
  max-width: 184px;
  font-size: .96rem;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  margin: 0;
  background: transparent;
}

.desktop-nav > li {
  position: relative;
}

.desktop-nav > li > a {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 0 18px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 650;
}

.desktop-nav > li > a::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.desktop-nav > li > a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.desktop-nav > li.is-active > a {
  color: var(--accent-dark);
  background: transparent;
}

.desktop-nav > li.is-active > a::after,
.desktop-nav > li > a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  flex: 0 0 auto;
  min-height: 46px !important;
  padding: 11px 20px !important;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-panel {
  padding: 4px 0 20px;
}

.mobile-panel:not(.is-open) {
  display: none;
}

.mobile-panel .menu {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mobile-panel .menu a {
  min-height: 50px;
  padding: 14px 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mobile-panel .menu li:last-child a {
  border-bottom: 0;
}

.mobile-panel .menu .is-active > a {
  color: var(--accent-dark);
  background: #f3e2d9;
}

/* 深色首屏 */
.guide-hero {
  position: relative;
  padding: 88px 0 92px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.guide-hero::before {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.guide-hero::after {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201,109,74,.28);
  border-radius: 50%;
  content: "";
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 25px;
  list-style: none;
}

.breadcrumbs li,
.breadcrumbs a {
  color: rgba(255, 253, 249, .68);
  font-size: .77rem;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs li:not(:last-child)::after {
  color: rgba(255,255,255,.32);
}

.guide-hero h1 {
  max-width: 740px;
  color: var(--white);
}

.guide-hero h1 em {
  display: block;
  color: #e69a7c;
  font-family: "Source Han Serif SC", "Songti SC", serif;
  font-style: normal;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 253, 249, .76);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 32px;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.window-stage {
  position: relative;
  min-height: 430px;
  margin-left: 30px;
}

.window-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(0,0,0,.25);
  overflow: hidden;
}

.window-card.main {
  top: 18px;
  right: 12px;
  width: 82%;
  height: 330px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(201,109,74,.34), transparent 55%),
    var(--ink-soft);
}

.window-card.side {
  right: 58%;
  bottom: 18px;
  width: 42%;
  height: 185px;
  padding: 20px;
  background: #62685d;
}

.window-card.note {
  right: 0;
  bottom: 2px;
  width: 48%;
  min-height: 142px;
  padding: 20px;
  background: var(--surface);
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.64);
  font-size: .75rem;
}

.visual-dots {
  display: flex;
  gap: 6px;
}

.visual-dots i {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,.45);
  border-radius: 50%;
}

.icon-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.matrix-cell {
  min-height: 90px;
  padding: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
}

.matrix-cell strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.05rem;
}

.matrix-cell span {
  color: rgba(255,255,255,.58);
  font-size: .75rem;
}

.window-card.side strong {
  display: block;
  margin: 26px 0 8px;
  color: var(--white);
  font-size: 1.55rem;
}

.window-card.side span {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
}

.window-card.note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.window-card.note p {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.65;
}

/* 专题路径 */
.path-section {
  background: var(--paper);
}

.path-layout {
  align-items: stretch;
}

.path-list {
  padding-right: 26px;
}

.path-item {
  display: grid;
  grid-template-columns: 58px 1fr 28px;
  align-items: start;
  gap: 18px;
  width: 100%;
  padding: 24px 0;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.path-item:first-child {
  border-top: 1px solid var(--line);
}

.path-item:hover,
.path-item.is-current {
  color: var(--accent-dark);
}

.path-number {
  color: var(--moss);
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.path-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.17rem;
}

.path-copy span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.path-item.is-current .path-copy strong {
  color: var(--accent-dark);
}

.path-arrow {
  color: var(--moss);
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.path-item:hover .path-arrow,
.path-item.is-current .path-arrow {
  transform: translateX(5px);
}

.preview-card {
  position: sticky;
  top: 135px;
  min-height: 535px;
  padding: 36px;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.preview-card::before {
  position: absolute;
  top: -45px;
  right: -55px;
  width: 230px;
  height: 230px;
  background: rgba(201,109,74,.19);
  border-radius: 50%;
  content: "";
}

.preview-frame {
  position: relative;
  height: 260px;
  margin-bottom: 30px;
  background:
    linear-gradient(135deg, rgba(122,132,114,.8), rgba(51,42,49,.18)),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(255,255,255,.06) 31px 32px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  overflow: hidden;
}

.preview-frame::before,
.preview-frame::after {
  position: absolute;
  content: "";
}

.preview-frame::before {
  inset: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
}

.preview-frame::after {
  right: 35px;
  bottom: 34px;
  width: 42%;
  height: 72px;
  background: rgba(51,42,49,.68);
  border-left: 4px solid var(--accent);
}

.preview-card h3 {
  position: relative;
  color: var(--white);
  font-size: 1.55rem;
}

.preview-card p {
  position: relative;
  color: rgba(255,255,255,.7);
}

.preview-points {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

/* 内容索引 */
.index-section {
  background: var(--surface);
}

.index-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 650;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--ink);
  background: var(--moss-light);
  border-color: var(--moss);
}

.index-list {
  border-top: 1px solid var(--line);
}

.index-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 145px 32px;
  align-items: center;
  gap: 28px;
  min-height: 150px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
}

.index-row:hover {
  background: rgba(238,232,223,.62);
}

.index-thumb {
  position: relative;
  height: 104px;
  background: var(--ink-soft);
  border-radius: 14px;
  overflow: hidden;
}

.index-thumb::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(201,109,74,.4), transparent 50%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 32px);
  content: "";
}

.index-thumb.moss {
  background: #626b5d;
}

.index-thumb.warm {
  background: #745448;
}

.index-thumb.paper {
  background: #71676c;
}

.index-thumb span {
  position: absolute;
  right: 13px;
  bottom: 11px;
  color: rgba(255,255,255,.84);
  font-size: .72rem;
}

.index-copy h3 {
  margin-bottom: 7px;
  font-size: 1.13rem;
}

.index-copy p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.index-meta {
  color: var(--muted);
  font-size: .78rem;
}

.index-meta strong {
  display: block;
  margin-bottom: 5px;
  color: var(--moss);
  font-size: .78rem;
}

.index-link {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.index-row:hover .index-link {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(3px);
}

/* 使用提醒 */
.reminder-section {
  background: var(--paper);
}

.reminder-copy {
  padding-right: 54px;
}

.reminder-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.reminder-list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 34px;
  color: var(--muted);
}

.reminder-list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--moss);
  border-radius: 50%;
  content: "✓";
  place-items: center;
  font-size: .7rem;
  font-weight: 800;
}

.reminder-collage {
  position: relative;
  min-height: 450px;
}

.reminder-panel {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.reminder-panel.large {
  top: 0;
  right: 0;
  width: 78%;
  height: 340px;
  background:
    linear-gradient(140deg, rgba(51,42,49,.08), rgba(51,42,49,.72)),
    #8b776b;
}

.reminder-panel.large::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  content: "";
}

.reminder-panel.small {
  bottom: 0;
  left: 0;
  width: 55%;
  min-height: 190px;
  padding: 25px;
  color: var(--white);
  background: var(--ink);
}

.reminder-panel.small strong {
  display: block;
  margin: 34px 0 8px;
  font-size: 1.18rem;
}

.reminder-panel.small p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: .84rem;
}

/* FAQ */
.faq-section {
  background: var(--surface-muted);
}

.faq-intro {
  padding-right: 42px;
}

.faq-intro p {
  color: var(--muted);
}

.accordion {
  margin: 0;
  background: transparent;
}

.accordion-item {
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:hover,
.accordion-item.is-active {
  border-color: rgba(122,132,114,.72);
  box-shadow: var(--shadow-sm);
}

.accordion-title {
  min-height: 66px;
  padding: 20px 58px 20px 24px;
  color: var(--ink);
  border: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.accordion-title:hover,
.accordion-title:focus {
  color: var(--accent-dark);
  background: var(--surface);
}

.accordion-title::before {
  right: 23px;
  color: var(--accent);
  font-size: 1.5rem;
}

.faq-number {
  margin-right: 12px;
  color: var(--moss);
  font-family: Georgia, serif;
  font-size: .82rem;
}

.accordion-content {
  padding: 0 24px 23px 60px;
  color: var(--muted);
  background: var(--surface);
  border: 0;
  line-height: 1.85;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* CTA */
.cta-section {
  padding: 0 0 104px;
  background: var(--surface-muted);
}

.cta-band {
  position: relative;
  padding: 58px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.cta-band::before {
  position: absolute;
  top: -110px;
  right: -70px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(201,109,74,.35);
  border-radius: 50%;
  content: "";
}

.cta-band::after {
  position: absolute;
  right: 85px;
  bottom: -160px;
  width: 260px;
  height: 260px;
  background: rgba(122,132,114,.16);
  border-radius: 50%;
  content: "";
}

.cta-content,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* 页脚 */
.site-footer {
  color: rgba(255,253,249,.72);
  background: var(--ink);
}

.footer-main {
  padding: 72px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 800;
}

.footer-summary {
  max-width: 570px;
  margin: 0;
  color: rgba(255,253,249,.62);
  font-size: .92rem;
}

.footer-column {
  padding-top: 4px;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 750;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255,253,249,.64);
  font-size: .88rem;
}

.footer-links a:hover {
  color: #e69a7c;
  padding-left: 3px;
}

.footer-bottom {
  padding: 22px 0;
  font-size: .76rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
}

.footer-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-notes span {
  position: relative;
}

.footer-notes span + span::before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 3px;
  height: 3px;
  background: var(--moss);
  border-radius: 50%;
  content: "";
}

/* 平板与移动端 */
@media screen and (max-width: 1024px) {
  .grid-container.site-container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .desktop-nav > li > a {
    padding: 0 10px;
    font-size: .84rem;
  }

  .desktop-nav > li > a::after {
    right: 10px;
    left: 10px;
  }

  .brand-text {
    max-width: 150px;
    font-size: .84rem;
  }

  .nav-cta {
    display: none !important;
  }

  .guide-hero {
    padding: 72px 0 78px;
  }

  .window-stage {
    min-height: 390px;
    margin-left: 0;
  }

  .window-card.main {
    width: 88%;
  }

  .preview-card {
    min-height: 500px;
    padding: 28px;
  }

  .index-row {
    grid-template-columns: 150px minmax(0, 1fr) 120px 32px;
    gap: 20px;
  }

  .reminder-copy {
    padding-right: 25px;
  }

  .cta-band {
    padding: 48px;
  }
}

@media screen and (max-width: 768px) {
  .topbar-note {
    display: none;
  }

  .desktop-nav,
  .nav-cta {
    display: none !important;
  }

  .main-nav {
    min-height: 68px;
  }

  .brand {
    flex: 1;
  }

  .brand-text {
    max-width: none;
    font-size: .92rem;
  }

  .mobile-toggle {
    display: block;
  }

  .guide-hero {
    padding: 60px 0 65px;
  }

  .hero-content {
    margin-bottom: 45px;
  }

  .window-stage {
    min-height: 360px;
    max-width: 560px;
  }

  .window-card.main {
    right: 0;
    width: 88%;
    height: 285px;
  }

  .window-card.side {
    right: auto;
    left: 0;
    width: 42%;
  }

  .section {
    padding: 68px 0;
  }

  .path-list {
    padding-right: 0;
    margin-bottom: 38px;
  }

  .preview-card {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .index-toolbar {
    display: block;
  }

  .index-toolbar .section-heading {
    margin-bottom: 26px;
  }

  .index-row {
    grid-template-columns: 132px minmax(0, 1fr) 32px;
  }

  .index-meta {
    display: none;
  }

  .reminder-copy {
    padding-right: 0;
    margin-bottom: 44px;
  }

  .faq-intro {
    padding-right: 0;
    margin-bottom: 35px;
  }

  .cta-band {
    padding: 40px 32px;
  }

  .cta-actions {
    justify-content: flex-start;
    margin-top: 28px;
  }

  .footer-summary {
    margin-bottom: 35px;
  }

  .footer-bottom-inner {
    display: block;
  }

  .footer-bottom p {
    margin-bottom: 10px;
  }

  .footer-notes {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .grid-container.site-container {
    width: min(100% - 24px, var(--container));
  }

  .topbar-left,
  .topbar-right {
    gap: 10px;
  }

  .topbar-right span {
    display: none;
  }

  .brand-text {
    max-width: 205px;
    font-size: .83rem;
  }

  .brand-mark {
    width: 31px;
    height: 26px;
  }

  .guide-hero {
    padding: 48px 0 55px;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-actions .site-button {
    width: 100%;
  }

  .window-stage {
    min-height: 330px;
  }

  .window-card.main {
    width: 94%;
    height: 250px;
    padding: 18px;
  }

  .icon-matrix {
    gap: 8px;
    margin-top: 25px;
  }

  .matrix-cell {
    min-height: 76px;
    padding: 11px;
  }

  .window-card.side {
    width: 47%;
    height: 145px;
    padding: 14px;
  }

  .window-card.side strong {
    margin: 18px 0 5px;
    font-size: 1.22rem;
  }

  .window-card.note {
    width: 54%;
    min-height: 124px;
    padding: 15px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .path-item {
    grid-template-columns: 42px 1fr 20px;
    gap: 10px;
    padding: 20px 0;
  }

  .preview-card {
    padding: 22px;
    border-radius: var(--radius-md);
  }

  .preview-frame {
    height: 210px;
  }

  .index-row {
    grid-template-columns: 96px minmax(0, 1fr) 28px;
    gap: 13px;
    min-height: 126px;
    padding: 17px 0;
  }

  .index-thumb {
    height: 84px;
    border-radius: 11px;
  }

  .index-copy h3 {
    display: -webkit-box;
    margin-bottom: 5px;
    overflow: hidden;
    font-size: 1rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .index-copy p {
    display: -webkit-box;
    overflow: hidden;
    font-size: .8rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .reminder-collage {
    min-height: 370px;
  }

  .reminder-panel.large {
    width: 90%;
    height: 280px;
  }

  .reminder-panel.small {
    width: 70%;
    min-height: 155px;
    padding: 18px;
  }

  .reminder-panel.small strong {
    margin-top: 22px;
  }

  .accordion-title {
    padding: 18px 48px 18px 17px;
  }

  .faq-number {
    display: block;
    margin-bottom: 3px;
  }

  .accordion-content {
    padding: 0 17px 20px;
  }

  .cta-section {
    padding-bottom: 58px;
  }

  .cta-band {
    padding: 34px 22px;
    border-radius: var(--radius-md);
  }

  .cta-actions .site-button {
    width: 100%;
  }

  .footer-main {
    padding: 55px 0 38px;
  }

  .footer-column {
    margin-top: 20px;
  }

  .footer-notes {
    display: block;
  }

  .footer-notes span {
    display: block;
    margin-bottom: 4px;
  }

  .footer-notes span + span::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
