/* roulang page: index */
:root {
            --primary: #e55672;
            --primary-dark: #bd3653;
            --primary-soft: #fff0f3;
            --secondary: #6d4aa5;
            --secondary-soft: #f3edff;
            --accent: #2f927c;
            --accent-soft: #e9f8f3;
            --orange: #ed8d46;
            --orange-soft: #fff3e7;
            --background: #fffaf3;
            --surface: #ffffff;
            --surface-muted: #f8f3eb;
            --text: #29232d;
            --muted: #706875;
            --border: #e9dfd5;
            --focus: #6d4aa5;
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 30px;
            --radius-xl: 42px;
            --shadow-sm: 0 8px 22px rgba(74, 51, 65, .07);
            --shadow-md: 0 18px 45px rgba(74, 51, 65, .11);
            --shadow-lg: 0 30px 70px rgba(74, 51, 65, .15);
            --container: 1180px;
            --section-space: 96px;
            --button-height: 50px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 96px;
        }

        body {
            margin: 0;
            color: var(--text);
            background:
                radial-gradient(circle at 5% 8%, rgba(229, 86, 114, .09), transparent 22rem),
                radial-gradient(circle at 96% 26%, rgba(47, 146, 124, .08), transparent 25rem),
                var(--background);
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            line-height: 1.75;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        body.menu-open {
            overflow: hidden;
        }

        h1, h2, h3, p, ul, ol {
            margin-top: 0;
        }

        h1, h2, h3 {
            color: var(--text);
            line-height: 1.2;
            letter-spacing: -.025em;
        }

        p {
            margin-bottom: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img, svg {
            display: block;
            max-width: 100%;
        }

        button, input, textarea, select {
            color: inherit;
            font: inherit;
        }

        button {
            border: 0;
            cursor: pointer;
        }

        a, button, summary {
            -webkit-tap-highlight-color: transparent;
        }

        :focus-visible {
            outline: 3px solid rgba(109, 74, 165, .42);
            outline-offset: 4px;
        }

        ::selection {
            color: #fff;
            background: var(--primary);
        }

        .site-container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }

        .section {
            position: relative;
            padding-block: var(--section-space);
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: var(--primary-dark);
            font-size: 14px;
            font-weight: 800;
            letter-spacing: .08em;
        }

        .section-kicker::before {
            width: 24px;
            height: 4px;
            border-radius: 99px;
            background: var(--primary);
            content: "";
        }

        .section-title {
            max-width: 760px;
            margin-bottom: 18px;
            font-size: clamp(30px, 4vw, 48px);
            font-weight: 900;
        }

        .section-copy {
            max-width: 760px;
            color: var(--muted);
            font-size: 17px;
        }

        .site-header {
            position: sticky;
            z-index: 50;
            top: 0;
            border-bottom: 1px solid rgba(233, 223, 213, .9);
            background: rgba(255, 250, 243, .92);
            box-shadow: 0 8px 28px rgba(71, 49, 61, .04);
            backdrop-filter: blur(16px);
        }

        .nav-shell {
            display: flex;
            min-height: 78px;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }

        .brand {
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -.03em;
        }

        .brand-mark {
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            border-radius: 14px 14px 18px 14px;
            color: #fff;
            background: var(--primary);
            box-shadow: 0 9px 0 rgba(229, 86, 114, .15);
        }

        .brand-mark svg {
            width: 23px;
            height: 23px;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-link {
            position: relative;
            padding: 10px 14px;
            border-radius: 12px;
            color: var(--muted);
            font-size: 15px;
            font-weight: 700;
            transition: color .2s ease, background .2s ease, transform .2s ease;
        }

        .nav-link:hover {
            color: var(--primary-dark);
            background: var(--primary-soft);
            transform: translateY(-1px);
        }

        .nav-link.active {
            color: var(--primary-dark);
            background: var(--primary-soft);
        }

        .nav-link.active::after {
            position: absolute;
            right: 14px;
            bottom: 5px;
            left: 14px;
            height: 2px;
            border-radius: 99px;
            background: var(--primary);
            content: "";
        }

        .nav-action, .btn {
            display: inline-flex;
            min-height: var(--button-height);
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 1px solid transparent;
            border-radius: 15px;
            padding: 0 22px;
            font-weight: 800;
            line-height: 1.2;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
        }

        .nav-action, .btn-primary {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 10px 22px rgba(229, 86, 114, .24);
        }

        .nav-action:hover, .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 14px 28px rgba(189, 54, 83, .28);
            transform: translateY(-2px);
        }

        .btn-secondary {
            border-color: var(--border);
            background: rgba(255, 255, 255, .8);
        }

        .btn-secondary:hover {
            border-color: rgba(109, 74, 165, .35);
            background: var(--secondary-soft);
            transform: translateY(-2px);
        }

        .btn svg {
            width: 18px;
            height: 18px;
            transition: transform .2s ease;
        }

        .btn:hover svg {
            transform: translateX(3px);
        }

        .menu-toggle {
            display: none;
            width: 46px;
            height: 46px;
            place-items: center;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: #fff;
        }

        .menu-toggle svg {
            width: 22px;
            height: 22px;
        }

        .mobile-menu {
            display: none;
        }

        .hero-section {
            padding: 42px 0 64px;
        }

        .hero-stage {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            min-height: 630px;
            border: 1px solid rgba(229, 86, 114, .13);
            border-radius: var(--radius-xl);
            padding: clamp(40px, 6vw, 78px);
            background:
                linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,240,243,.93)),
                var(--surface);
            box-shadow: var(--shadow-lg);
        }

        .hero-stage::before {
            position: absolute;
            z-index: -1;
            top: -140px;
            right: -100px;
            width: 430px;
            height: 430px;
            border: 70px solid rgba(109, 74, 165, .08);
            border-radius: 50%;
            content: "";
        }

        .hero-stage::after {
            position: absolute;
            z-index: -1;
            right: 24%;
            bottom: -105px;
            width: 230px;
            height: 230px;
            border-radius: 35% 65% 62% 38%;
            background: rgba(47, 146, 124, .1);
            content: "";
            transform: rotate(18deg);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 22px;
            border: 1px solid rgba(229, 86, 114, .2);
            border-radius: 999px;
            padding: 8px 14px;
            color: var(--primary-dark);
            background: rgba(255,255,255,.8);
            font-size: 14px;
            font-weight: 800;
        }

        .hero-badge-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 0 5px rgba(47, 146, 124, .12);
        }

        .hero-title {
            max-width: 920px;
            margin-bottom: 24px;
            font-size: clamp(44px, 7.5vw, 84px);
            font-weight: 950;
            letter-spacing: -.065em;
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-copy {
            max-width: 760px;
            color: #5e5662;
            font-size: clamp(17px, 2vw, 20px);
            line-height: 1.9;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 30px;
        }

        .hero-feature-row {
            display: grid;
            grid-template-columns: 1.35fr .85fr .85fr;
            gap: 14px;
            margin-top: 54px;
        }

        .hero-feature {
            position: relative;
            overflow: hidden;
            min-height: 142px;
            border: 1px solid rgba(233, 223, 213, .9);
            border-radius: 22px;
            padding: 22px;
            background: rgba(255,255,255,.82);
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
        }

        .hero-feature:hover {
            border-color: rgba(229, 86, 114, .3);
            box-shadow: var(--shadow-sm);
            transform: translateY(-4px);
        }

        .hero-feature:first-child {
            color: #fff;
            border-color: transparent;
            background: var(--secondary);
        }

        .hero-feature:first-child h2,
        .hero-feature:first-child p {
            color: #fff;
        }

        .hero-feature-icon {
            display: grid;
            width: 39px;
            height: 39px;
            margin-bottom: 16px;
            place-items: center;
            border-radius: 12px;
            color: var(--primary-dark);
            background: var(--primary-soft);
        }

        .hero-feature:first-child .hero-feature-icon {
            color: #fff;
            background: rgba(255,255,255,.17);
        }

        .hero-feature-icon svg {
            width: 20px;
            height: 20px;
        }

        .hero-feature h2 {
            margin-bottom: 7px;
            font-size: 18px;
            font-weight: 900;
        }

        .hero-feature p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
        }

        .trust-strip {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 26px;
            margin-top: 22px;
            color: var(--muted);
            font-size: 14px;
            font-weight: 700;
        }

        .trust-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .trust-item svg {
            width: 18px;
            height: 18px;
            color: var(--accent);
        }

        .tier-section {
            padding-top: 72px;
        }

        .tier-layout {
            display: grid;
            grid-template-columns: .78fr 1.22fr;
            gap: 52px;
            align-items: center;
        }

        .tier-steps {
            display: grid;
            gap: 14px;
        }

        .tier-card {
            display: grid;
            grid-template-columns: 54px 1fr auto;
            gap: 18px;
            align-items: center;
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 20px;
            background: var(--surface);
            box-shadow: var(--shadow-sm);
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
        }

        .tier-card:nth-child(2) {
            margin-left: 36px;
            border-color: rgba(47, 146, 124, .24);
        }

        .tier-card:nth-child(3) {
            margin-left: 72px;
            border-color: rgba(109, 74, 165, .25);
        }

        .tier-card:hover {
            border-color: rgba(229, 86, 114, .38);
            box-shadow: var(--shadow-md);
            transform: translateX(5px);
        }

        .tier-number {
            display: grid;
            width: 50px;
            height: 50px;
            place-items: center;
            border-radius: 16px;
            color: var(--primary-dark);
            background: var(--primary-soft);
            font-size: 16px;
            font-weight: 950;
        }

        .tier-card:nth-child(2) .tier-number {
            color: #207561;
            background: var(--accent-soft);
        }

        .tier-card:nth-child(3) .tier-number {
            color: var(--secondary);
            background: var(--secondary-soft);
        }

        .tier-card h3 {
            margin-bottom: 4px;
            font-size: 18px;
            font-weight: 900;
        }

        .tier-card p {
            color: var(--muted);
            font-size: 14px;
        }

        .tier-status {
            border-radius: 999px;
            padding: 6px 10px;
            color: var(--accent);
            background: var(--accent-soft);
            font-size: 12px;
            font-weight: 850;
            white-space: nowrap;
        }

        .compare-section {
            overflow: hidden;
            background: #2f2933;
        }

        .compare-section .section-title,
        .compare-section .section-copy {
            color: #fff;
        }

        .compare-section .section-copy {
            color: #cfc5d1;
        }

        .compare-grid {
            display: grid;
            grid-template-columns: .72fr 1fr 1fr;
            gap: 16px;
            margin-top: 42px;
        }

        .compare-labels,
        .compare-card {
            border-radius: 25px;
            padding: 28px;
        }

        .compare-labels {
            display: grid;
            align-content: end;
            gap: 0;
            color: #d8ceda;
            background: rgba(255,255,255,.06);
        }

        .compare-labels div,
        .compare-row {
            min-height: 62px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }

        .compare-labels div:last-child,
        .compare-row:last-child {
            border-bottom: 0;
        }

        .compare-card {
            color: var(--text);
            background: #fff;
            transition: transform .22s ease, box-shadow .22s ease;
        }

        .compare-card.featured {
            background: #fff1f4;
            box-shadow: 0 22px 50px rgba(0,0,0,.18);
            transform: translateY(-10px);
        }

        .compare-card:hover {
            transform: translateY(-5px);
        }

        .compare-card.featured:hover {
            transform: translateY(-14px);
        }

        .compare-card h3 {
            margin-bottom: 8px;
            font-size: 24px;
            font-weight: 950;
        }

        .compare-card > p {
            min-height: 58px;
            color: var(--muted);
            font-size: 14px;
        }

        .compare-row {
            gap: 10px;
            font-size: 15px;
            font-weight: 750;
        }

        .compare-row svg {
            width: 19px;
            height: 19px;
            flex: 0 0 auto;
            color: var(--accent);
        }

        .assurance-section {
            padding-block: 48px;
            background: var(--accent-soft);
        }

        .assurance-grid {
            display: grid;
            grid-template-columns: 1.35fr repeat(3, 1fr);
            gap: 12px;
            align-items: stretch;
        }

        .assurance-heading,
        .assurance-item {
            border-radius: 20px;
            padding: 22px;
        }

        .assurance-heading {
            color: #fff;
            background: var(--accent);
        }

        .assurance-heading h2 {
            margin-bottom: 8px;
            color: #fff;
            font-size: 25px;
            font-weight: 950;
        }

        .assurance-heading p {
            color: rgba(255,255,255,.82);
            font-size: 14px;
        }

        .assurance-item {
            border: 1px solid rgba(47, 146, 124, .16);
            background: rgba(255,255,255,.78);
        }

        .assurance-item svg {
            width: 28px;
            height: 28px;
            margin-bottom: 14px;
            color: var(--accent);
        }

        .assurance-item h3 {
            margin-bottom: 6px;
            font-size: 17px;
            font-weight: 900;
        }

        .assurance-item p {
            color: var(--muted);
            font-size: 13px;
        }

        .scene-grid {
            display: grid;
            grid-template-columns: 1fr .92fr;
            gap: 42px;
            align-items: stretch;
            margin-top: 42px;
        }

        .scene-preview {
            position: relative;
            overflow: hidden;
            min-height: 500px;
            border-radius: 32px;
            padding: 32px;
            color: #fff;
            background:
                radial-gradient(circle at 78% 22%, rgba(255,255,255,.18), transparent 12rem),
                var(--secondary);
            box-shadow: var(--shadow-md);
        }

        .scene-preview h3 {
            max-width: 520px;
            margin-bottom: 12px;
            color: #fff;
            font-size: clamp(27px, 4vw, 42px);
            font-weight: 950;
        }

        .scene-preview > p {
            max-width: 530px;
            color: rgba(255,255,255,.78);
        }

        .preview-canvas {
            position: absolute;
            right: 28px;
            bottom: 28px;
            left: 28px;
            display: grid;
            grid-template-columns: 1.25fr .75fr;
            gap: 12px;
        }

        .preview-large,
        .preview-small {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.18);
            border-radius: 22px;
            background: rgba(255,255,255,.12);
            backdrop-filter: blur(8px);
        }

        .preview-large {
            min-height: 225px;
            padding: 22px;
        }

        .preview-small-wrap {
            display: grid;
            gap: 12px;
        }

        .preview-small {
            min-height: 106px;
            padding: 17px;
        }

        .preview-shape {
            width: 76px;
            height: 76px;
            margin-bottom: 30px;
            border-radius: 22px 35px 20px 36px;
            background: #f3b16d;
            transform: rotate(-8deg);
        }

        .preview-line {
            width: 88%;
            height: 8px;
            margin-top: 9px;
            border-radius: 99px;
            background: rgba(255,255,255,.68);
        }

        .preview-line.short {
            width: 58%;
            background: rgba(255,255,255,.35);
        }

        .scene-steps {
            display: grid;
            gap: 14px;
        }

        .scene-step {
            display: grid;
            grid-template-columns: 48px 1fr;
            gap: 18px;
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 23px;
            background: var(--surface);
            transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        .scene-step:hover {
            border-color: rgba(109, 74, 165, .35);
            box-shadow: var(--shadow-sm);
            transform: translateY(-3px);
        }

        .step-dot {
            display: grid;
            width: 44px;
            height: 44px;
            place-items: center;
            border-radius: 15px;
            color: var(--secondary);
            background: var(--secondary-soft);
            font-weight: 950;
        }

        .scene-step h3 {
            margin-bottom: 5px;
            font-size: 18px;
            font-weight: 900;
        }

        .scene-step p {
            color: var(--muted);
            font-size: 14px;
        }

        .news-section {
            background: var(--surface-muted);
        }

        .news-layout {
            display: grid;
            grid-template-columns: 1.22fr .78fr;
            gap: 26px;
            margin-top: 40px;
        }

        .news-list {
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 28px;
            background: var(--surface);
            box-shadow: var(--shadow-sm);
        }

        .news-item {
            display: grid;
            grid-template-columns: 98px 1fr auto;
            gap: 20px;
            align-items: center;
            padding: 24px;
            border-bottom: 1px solid var(--border);
            transition: background .2s ease, padding-left .2s ease;
        }

        .news-item:last-child {
            border-bottom: 0;
        }

        .news-item:hover {
            padding-left: 29px;
            background: var(--primary-soft);
        }

        .news-tag {
            justify-self: start;
            border-radius: 10px;
            padding: 6px 9px;
            color: var(--primary-dark);
            background: var(--primary-soft);
            font-size: 12px;
            font-weight: 850;
        }

        .news-item:hover .news-tag {
            background: #fff;
        }

        .news-item h3 {
            margin-bottom: 5px;
            font-size: 17px;
            font-weight: 900;
        }

        .news-item p {
            color: var(--muted);
            font-size: 13px;
        }

        .news-arrow {
            display: grid;
            width: 38px;
            height: 38px;
            place-items: center;
            border-radius: 12px;
            color: var(--secondary);
            background: var(--secondary-soft);
        }

        .news-arrow svg {
            width: 18px;
            height: 18px;
        }

        .recommend-panel {
            display: flex;
            min-height: 100%;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 28px;
            padding: 30px;
            color: #fff;
            background: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .recommend-panel .mini-label {
            display: inline-flex;
            align-self: flex-start;
            border-radius: 999px;
            padding: 7px 11px;
            color: var(--primary-dark);
            background: #fff;
            font-size: 12px;
            font-weight: 900;
        }

        .recommend-panel h3 {
            margin: 22px 0 12px;
            color: #fff;
            font-size: 29px;
            font-weight: 950;
        }

        .recommend-panel p {
            color: rgba(255,255,255,.82);
        }

        .recommend-links {
            display: grid;
            gap: 9px;
            margin-top: 28px;
        }

        .recommend-links a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(255,255,255,.2);
            border-radius: 14px;
            padding: 12px 14px;
            background: rgba(255,255,255,.1);
            font-weight: 800;
            transition: background .2s ease, transform .2s ease;
        }

        .recommend-links a:hover {
            background: rgba(255,255,255,.2);
            transform: translateX(3px);
        }

        .voices-grid {
            display: grid;
            grid-template-columns: 1.16fr .84fr;
            gap: 18px;
            margin-top: 40px;
        }

        .voice-main,
        .voice-side {
            border: 1px solid var(--border);
            border-radius: 28px;
            background: var(--surface);
        }

        .voice-main {
            padding: 36px;
            box-shadow: var(--shadow-sm);
        }

        .quote-mark {
            color: var(--primary);
            font-size: 54px;
            font-weight: 950;
            line-height: .7;
        }

        .voice-main blockquote {
            margin: 20px 0 26px;
            font-size: clamp(20px, 3vw, 28px);
            font-weight: 800;
            line-height: 1.65;
        }

        .voice-source {
            color: var(--muted);
            font-size: 14px;
        }

        .voice-side {
            display: grid;
            gap: 0;
            overflow: hidden;
        }

        .voice-note {
            padding: 24px;
            border-bottom: 1px solid var(--border);
        }

        .voice-note:last-child {
            border-bottom: 0;
        }

        .voice-note strong {
            display: block;
            margin-bottom: 5px;
            font-size: 17px;
        }

        .voice-note p {
            color: var(--muted);
            font-size: 14px;
        }

        .faq-wrap {
            display: grid;
            grid-template-columns: .7fr 1.3fr;
            gap: 54px;
            align-items: start;
        }

        .faq-intro {
            position: sticky;
            top: 116px;
        }

        .faq-list {
            display: grid;
            gap: 12px;
        }

        .faq-item {
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 20px;
            background: var(--surface);
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .faq-item:hover {
            border-color: rgba(229, 86, 114, .28);
        }

        .faq-item[open] {
            border-color: rgba(229, 86, 114, .34);
            background: var(--primary-soft);
            box-shadow: var(--shadow-sm);
        }

        .faq-item summary {
            position: relative;
            display: flex;
            min-height: 70px;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 19px 22px;
            font-weight: 900;
            list-style: none;
            cursor: pointer;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-plus {
            position: relative;
            width: 30px;
            height: 30px;
            flex: 0 0 auto;
            border-radius: 10px;
            background: #fff;
        }

        .faq-plus::before,
        .faq-plus::after {
            position: absolute;
            top: 14px;
            left: 8px;
            width: 14px;
            height: 2px;
            border-radius: 99px;
            background: var(--primary);
            content: "";
            transition: transform .2s ease;
        }

        .faq-plus::after {
            transform: rotate(90deg);
        }

        .faq-item[open] .faq-plus::after {
            transform: rotate(0);
        }

        .faq-answer {
            max-width: 760px;
            padding: 0 22px 23px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.9;
        }

        .entry-section {
            padding-top: 50px;
            padding-bottom: 110px;
        }

        .entry-banner {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 30px;
            align-items: center;
            border-radius: 34px;
            padding: 46px;
            color: #fff;
            background: var(--secondary);
            box-shadow: var(--shadow-lg);
        }

        .entry-banner::after {
            position: absolute;
            right: -60px;
            bottom: -100px;
            width: 260px;
            height: 260px;
            border: 48px solid rgba(255,255,255,.1);
            border-radius: 50%;
            content: "";
        }

        .entry-banner h2 {
            position: relative;
            z-index: 1;
            margin-bottom: 10px;
            color: #fff;
            font-size: clamp(29px, 4vw, 44px);
            font-weight: 950;
        }

        .entry-banner p {
            position: relative;
            z-index: 1;
            max-width: 690px;
            color: rgba(255,255,255,.78);
        }

        .entry-actions {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 10px;
        }

        .entry-actions .btn-primary {
            color: var(--primary-dark);
            background: #fff;
            box-shadow: none;
        }

        .entry-actions .btn-primary:hover {
            background: var(--primary-soft);
        }

        .entry-actions .btn-secondary {
            color: #fff;
            border-color: rgba(255,255,255,.25);
            background: rgba(255,255,255,.08);
        }

        .entry-actions .btn-secondary:hover {
            background: rgba(255,255,255,.16);
        }

        .site-footer {
            color: #e8dfe9;
            background: #27212a;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.3fr .7fr .7fr;
            gap: 56px;
            padding-block: 62px 42px;
        }

        .footer-brand .brand {
            color: #fff;
        }

        .footer-brand p {
            max-width: 460px;
            margin-top: 20px;
            color: #bdb2c0;
            font-size: 14px;
        }

        .footer-group h2 {
            margin-bottom: 16px;
            color: #fff;
            font-size: 16px;
            font-weight: 900;
        }

        .footer-links {
            display: grid;
            gap: 10px;
        }

        .footer-links a {
            color: #bdb2c0;
            font-size: 14px;
            transition: color .2s ease, transform .2s ease;
        }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(3px);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border-top: 1px solid rgba(255,255,255,.09);
            padding: 22px 0 30px;
            color: #9e939f;
            font-size: 13px;
        }

        .mobile-conversion {
            display: none;
        }

        @media (max-width: 1279px) {
            :root {
                --container: 1080px;
                --section-space: 84px;
            }

            .site-container {
                width: min(calc(100% - 48px), var(--container));
            }

            .nav-shell {
                gap: 18px;
            }

            .nav-link {
                padding-inline: 11px;
            }

            .hero-stage {
                min-height: auto;
            }
        }

        @media (max-width: 1023px) {
            :root {
                --section-space: 74px;
            }

            .desktop-nav,
            .nav-action {
                display: none;
            }

            .menu-toggle {
                display: grid;
            }

            .mobile-menu {
                position: fixed;
                z-index: 60;
                top: 78px;
                right: 0;
                left: 0;
                display: block;
                visibility: hidden;
                padding: 16px 24px 24px;
                border-bottom: 1px solid var(--border);
                background: var(--background);
                box-shadow: var(--shadow-md);
                opacity: 0;
                transform: translateY(-12px);
                transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
            }

            .mobile-menu.open {
                visibility: visible;
                opacity: 1;
                transform: translateY(0);
            }

            .mobile-menu-inner {
                display: grid;
                gap: 8px;
            }

            .mobile-menu .nav-link,
            .mobile-menu .nav-action {
                display: flex;
                width: 100%;
                justify-content: center;
            }

            .hero-feature-row {
                grid-template-columns: 1fr 1fr;
            }

            .hero-feature:first-child {
                grid-column: 1 / -1;
            }

            .tier-layout,
            .scene-grid,
            .faq-wrap {
                grid-template-columns: 1fr;
            }

            .tier-layout {
                gap: 34px;
            }

            .compare-grid {
                grid-template-columns: 1fr 1fr;
            }

            .compare-labels {
                display: none;
            }

            .assurance-grid {
                grid-template-columns: 1fr 1fr;
            }

            .assurance-heading {
                grid-column: 1 / -1;
            }

            .news-layout,
            .voices-grid {
                grid-template-columns: 1fr;
            }

            .faq-intro {
                position: static;
            }

            .entry-banner {
                grid-template-columns: 1fr;
            }

            .entry-actions {
                justify-content: flex-start;
            }
        }

        @media (max-width: 767px) {
            :root {
                --section-space: 62px;
                --radius-xl: 28px;
            }

            body {
                padding-bottom: calc(76px + env(safe-area-inset-bottom));
            }

            .site-container {
                width: min(calc(100% - 28px), var(--container));
            }

            .nav-shell {
                min-height: 70px;
            }

            .brand {
                font-size: 16px;
            }

            .brand-mark {
                width: 38px;
                height: 38px;
            }

            .mobile-menu {
                top: 70px;
                padding-inline: 14px;
            }

            .hero-section {
                padding-top: 18px;
            }

            .hero-stage {
                padding: 32px 22px;
            }

            .hero-stage::before {
                top: -170px;
                right: -180px;
            }

            .hero-title {
                font-size: clamp(39px, 13vw, 60px);
                letter-spacing: -.055em;
            }

            .hero-copy {
                font-size: 16px;
            }

            .hero-actions {
                display: grid;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .hero-feature-row {
                grid-template-columns: 1fr;
                margin-top: 38px;
            }

            .hero-feature:first-child {
                grid-column: auto;
            }

            .trust-strip {
                display: grid;
                gap: 10px;
            }

            .tier-card,
            .tier-card:nth-child(2),
            .tier-card:nth-child(3) {
                grid-template-columns: 47px 1fr;
                margin-left: 0;
                padding: 17px;
            }

            .tier-status {
                grid-column: 2;
                justify-self: start;
            }

            .compare-grid {
                grid-template-columns: 1fr;
            }

            .compare-card.featured,
            .compare-card.featured:hover {
                transform: none;
            }

            .assurance-grid {
                grid-template-columns: 1fr;
            }

            .assurance-heading {
                grid-column: auto;
            }

            .scene-preview {
                min-height: 570px;
                padding: 24px;
            }

            .preview-canvas {
                right: 20px;
                bottom: 20px;
                left: 20px;
                grid-template-columns: 1fr;
            }

            .preview-small-wrap {
                grid-template-columns: 1fr 1fr;
            }

            .preview-small {
                min-height: 100px;
            }

            .news-item {
                grid-template-columns: 1fr auto;
                gap: 10px;
                padding: 20px;
            }

            .news-tag {
                grid-column: 1 / -1;
            }

            .news-item p {
                display: none;
            }

            .voice-main {
                padding: 26px;
            }

            .entry-banner {
                padding: 32px 24px;
            }

            .entry-actions {
                display: grid;
            }

            .entry-actions .btn {
                width: 100%;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .mobile-conversion {
                position: fixed;
                z-index: 80;
                right: 0;
                bottom: 0;
                left: 0;
                display: grid;
                grid-template-columns: .74fr 1.26fr;
                gap: 9px;
                border-top: 1px solid var(--border);
                padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
                background: rgba(255,255,255,.96);
                box-shadow: 0 -10px 30px rgba(66, 43, 56, .12);
                backdrop-filter: blur(14px);
            }

            .mobile-conversion .btn {
                min-height: 48px;
                padding-inline: 13px;
                font-size: 14px;
            }
        }

        @media (max-width: 520px) {
            .section-title {
                font-size: 31px;
            }

            .hero-badge {
                align-items: flex-start;
                border-radius: 14px;
            }

            .hero-feature {
                min-height: auto;
            }

            .scene-step {
                grid-template-columns: 42px 1fr;
                padding: 19px;
            }

            .compare-card {
                padding: 23px;
            }

            .faq-item summary {
                padding-inline: 18px;
            }

            .faq-answer {
                padding-inline: 18px;
            }
        }

        @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: category1 */
:root {
      --primary: #e55672;
      --primary-dark: #bd3653;
      --primary-soft: #fff0f3;
      --secondary: #6d4aa5;
      --secondary-soft: #f3edff;
      --accent: #2f927c;
      --accent-soft: #e9f8f3;
      --orange: #ed8d46;
      --orange-soft: #fff3e7;
      --background: #fffaf3;
      --surface: #ffffff;
      --surface-muted: #f8f3eb;
      --text: #29232d;
      --muted: #706875;
      --border: #e9dfd5;
      --focus: #6d4aa5;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --radius-xl: 42px;
      --shadow-sm: 0 8px 22px rgba(74, 51, 65, .07);
      --shadow-md: 0 18px 45px rgba(74, 51, 65, .11);
      --shadow-lg: 0 30px 70px rgba(74, 51, 65, .15);
      --container: 1180px;
      --section-space: 84px;
      --button-height: 50px;
    }

    *, *::before, *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 5% 8%, rgba(229, 86, 114, .09), transparent 22rem),
        radial-gradient(circle at 96% 26%, rgba(47, 146, 124, .08), transparent 25rem),
        var(--background);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open {
      overflow: hidden;
    }

    h1, h2, h3, p, ul, ol {
      margin-top: 0;
    }

    h1, h2, h3 {
      line-height: 1.2;
      letter-spacing: -.035em;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    button, input, textarea, select {
      color: inherit;
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    a, button, summary {
      -webkit-tap-highlight-color: transparent;
    }

    :focus-visible {
      outline: 3px solid rgba(109, 74, 165, .34);
      outline-offset: 3px;
    }

    .site-container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .section {
      position: relative;
      padding-block: var(--section-space);
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--primary-dark);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .section-kicker::before {
      width: 24px;
      height: 4px;
      border-radius: 99px;
      background: var(--primary);
      content: "";
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 18px;
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 900;
    }

    .section-copy {
      max-width: 760px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .site-header {
      position: sticky;
      z-index: 50;
      top: 0;
      border-bottom: 1px solid rgba(233, 223, 213, .9);
      background: rgba(255, 250, 243, .92);
      box-shadow: 0 8px 28px rgba(71, 49, 61, .04);
      backdrop-filter: blur(16px);
    }

    .nav-shell {
      display: flex;
      min-height: 78px;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      gap: 12px;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .brand-mark {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 14px 14px 18px 14px;
      color: #fff;
      background: var(--primary);
      box-shadow: 0 9px 0 rgba(229, 86, 114, .15);
    }

    .brand-mark svg {
      width: 23px;
      height: 23px;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-link {
      position: relative;
      padding: 10px 14px;
      border-radius: 12px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, transform .2s ease;
    }

    .nav-link:hover {
      color: var(--primary-dark);
      background: var(--primary-soft);
      transform: translateY(-1px);
    }

    .nav-link.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }

    .nav-link.active::after {
      position: absolute;
      right: 14px;
      bottom: 5px;
      left: 14px;
      height: 2px;
      border-radius: 99px;
      background: var(--primary);
      content: "";
    }

    .nav-action, .btn {
      display: inline-flex;
      min-height: var(--button-height);
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 15px;
      padding: 0 22px;
      font-weight: 800;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .nav-action, .btn-primary {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 10px 22px rgba(229, 86, 114, .24);
    }

    .nav-action:hover, .btn-primary:hover {
      color: #fff;
      background: var(--primary-dark);
      box-shadow: 0 14px 30px rgba(189, 54, 83, .25);
      transform: translateY(-2px);
    }

    .nav-action svg, .btn svg {
      width: 19px;
      height: 19px;
    }

    .btn-secondary {
      color: var(--secondary);
      border-color: rgba(109, 74, 165, .22);
      background: var(--secondary-soft);
    }

    .btn-secondary:hover {
      border-color: rgba(109, 74, 165, .42);
      background: #ebe0ff;
      transform: translateY(-2px);
    }

    .btn-light {
      color: var(--primary-dark);
      border-color: var(--border);
      background: #fff;
    }

    .btn-light:hover {
      border-color: rgba(229, 86, 114, .34);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--surface);
      transition: border-color .2s ease, background .2s ease;
    }

    .menu-toggle:hover {
      border-color: var(--primary);
      background: var(--primary-soft);
    }

    .menu-toggle svg {
      width: 24px;
      height: 24px;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--border);
      background: var(--surface);
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu-inner {
      display: grid;
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
      gap: 8px;
      padding: 16px 0 22px;
    }

    .page-intro {
      padding: 40px 0 22px;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .breadcrumb a:hover {
      color: var(--primary-dark);
    }

    .intro-line {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 30px;
    }

    .page-intro h1 {
      max-width: 820px;
      margin-bottom: 14px;
      font-size: clamp(38px, 6vw, 68px);
      font-weight: 950;
    }

    .page-intro h1 span {
      color: var(--primary-dark);
    }

    .intro-copy {
      max-width: 750px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 18px;
    }

    .intro-stamp {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(47, 146, 124, .22);
      border-radius: 16px;
      padding: 12px 16px;
      color: #236f5f;
      background: var(--accent-soft);
      font-weight: 800;
      white-space: nowrap;
    }

    .intro-stamp::before {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(47, 146, 124, .12);
      content: "";
    }

    .feature-banner {
      padding: 24px 0 46px;
    }

    .feature-shell {
      position: relative;
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 24px;
      overflow: hidden;
      border: 1px solid rgba(109, 74, 165, .14);
      border-radius: var(--radius-xl);
      padding: 26px;
      background: var(--secondary-soft);
      box-shadow: var(--shadow-md);
    }

    .feature-shell::before {
      position: absolute;
      top: -90px;
      left: 34%;
      width: 240px;
      height: 240px;
      border: 38px solid rgba(229, 86, 114, .09);
      border-radius: 50%;
      content: "";
    }

    .feature-note {
      position: relative;
      z-index: 1;
      display: flex;
      min-height: 360px;
      flex-direction: column;
      justify-content: space-between;
      border-radius: var(--radius-lg);
      padding: 28px;
      color: #fff;
      background: var(--secondary);
    }

    .feature-note .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 7px 12px;
      color: #34214e;
      background: #fff5ca;
      font-size: 13px;
      font-weight: 900;
    }

    .feature-note h2 {
      max-width: 470px;
      margin: 26px 0 12px;
      font-size: clamp(30px, 4vw, 47px);
      font-weight: 900;
    }

    .feature-note p {
      margin-bottom: 22px;
      color: rgba(255, 255, 255, .83);
    }

    .countdown-label {
      margin-bottom: 8px;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      font-weight: 700;
    }

    .countdown {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .time-cell {
      min-width: 64px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 13px;
      padding: 9px 10px;
      background: rgba(255,255,255,.11);
      text-align: center;
    }

    .time-cell strong {
      display: block;
      font-size: 21px;
      line-height: 1.1;
    }

    .time-cell span {
      color: rgba(255,255,255,.68);
      font-size: 11px;
    }

    .feature-card {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      overflow: hidden;
      border: 1px solid rgba(229, 86, 114, .13);
      border-radius: var(--radius-lg);
      background: var(--surface);
      box-shadow: var(--shadow-sm);
    }

    .visual-cover {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(255,255,255,.14), transparent 45%),
        linear-gradient(135deg, #f3a28d 0 30%, #d85f7d 30% 54%, #f4d8aa 54% 73%, #5aa995 73%);
    }

    .visual-cover::before,
    .visual-cover::after {
      position: absolute;
      border-radius: 50%;
      content: "";
    }

    .visual-cover::before {
      top: 50px;
      left: 42px;
      width: 145px;
      height: 145px;
      border: 24px solid rgba(255,255,255,.45);
    }

    .visual-cover::after {
      right: -42px;
      bottom: 28px;
      width: 180px;
      height: 180px;
      background: rgba(109,74,165,.38);
    }

    .cover-caption {
      position: absolute;
      right: 20px;
      bottom: 20px;
      left: 20px;
      border-radius: 16px;
      padding: 14px 16px;
      color: #fff;
      background: rgba(41,35,45,.78);
      backdrop-filter: blur(10px);
    }

    .cover-caption strong {
      display: block;
      font-size: 16px;
    }

    .cover-caption span {
      color: rgba(255,255,255,.75);
      font-size: 13px;
    }

    .feature-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 28px;
    }

    .badge-row, .filter-row, .item-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .badge, .filter-chip {
      display: inline-flex;
      min-height: 31px;
      align-items: center;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 5px 11px;
      color: var(--muted);
      background: var(--surface-muted);
      font-size: 13px;
      font-weight: 800;
    }

    .badge.primary {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }

    .badge.accent {
      color: #236f5f;
      background: var(--accent-soft);
    }

    .badge.orange {
      color: #9a531e;
      background: var(--orange-soft);
    }

    .feature-content h3 {
      margin: 17px 0 12px;
      font-size: clamp(26px, 3.2vw, 38px);
      font-weight: 900;
    }

    .feature-content p {
      color: var(--muted);
    }

    .feature-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
    }

    .content-index {
      border-top: 1px solid var(--border);
      background: rgba(255,255,255,.4);
    }

    .index-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 34px;
    }

    .filter-row {
      max-width: 100%;
      overflow-x: auto;
      padding: 3px 3px 7px;
      scrollbar-width: thin;
    }

    .filter-chip {
      flex: 0 0 auto;
      border-color: var(--border);
      background: var(--surface);
      cursor: pointer;
      transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
    }

    .filter-chip:hover {
      color: var(--primary-dark);
      border-color: rgba(229,86,114,.35);
      transform: translateY(-1px);
    }

    .filter-chip.active {
      color: #fff;
      border-color: var(--primary);
      background: var(--primary);
    }

    .index-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      align-items: start;
      gap: 34px;
    }

    .topic-sidebar {
      position: sticky;
      top: 105px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px;
      background: var(--surface);
      box-shadow: var(--shadow-sm);
    }

    .topic-sidebar h3 {
      margin-bottom: 14px;
      font-size: 18px;
      font-weight: 900;
    }

    .topic-nav {
      display: grid;
      gap: 7px;
    }

    .topic-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 12px;
      padding: 11px 12px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 750;
      transition: color .2s ease, background .2s ease, transform .2s ease;
    }

    .topic-nav a::after {
      color: var(--primary);
      content: "→";
    }

    .topic-nav a:hover, .topic-nav a.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
      transform: translateX(2px);
    }

    .sidebar-tip {
      margin-top: 18px;
      border-radius: 14px;
      padding: 14px;
      color: #236f5f;
      background: var(--accent-soft);
      font-size: 13px;
    }

    .index-main {
      min-width: 0;
    }

    .large-entry {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: var(--surface);
      box-shadow: var(--shadow-sm);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .large-entry:hover {
      border-color: rgba(229,86,114,.3);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .entry-visual {
      min-height: 295px;
      padding: 28px;
      background:
        linear-gradient(150deg, rgba(255,255,255,.36), transparent 48%),
        var(--orange-soft);
    }

    .abstract-layout {
      position: relative;
      height: 100%;
      min-height: 235px;
      overflow: hidden;
      border-radius: 20px;
      background: #f2bd83;
    }

    .abstract-layout span {
      position: absolute;
      display: block;
    }

    .abstract-layout .shape-one {
      top: 22px;
      right: 26px;
      width: 46%;
      height: 72%;
      border-radius: 90px 20px 70px 20px;
      background: var(--primary);
    }

    .abstract-layout .shape-two {
      bottom: 20px;
      left: 24px;
      width: 44%;
      height: 48%;
      border-radius: 18px;
      background: var(--accent);
      transform: rotate(-5deg);
    }

    .abstract-layout .shape-three {
      top: 25px;
      left: 32px;
      width: 88px;
      height: 88px;
      border: 18px solid rgba(255,255,255,.76);
      border-radius: 50%;
    }

    .entry-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 32px;
    }

    .entry-body h3 {
      margin: 16px 0 12px;
      font-size: 30px;
      font-weight: 900;
    }

    .entry-body p {
      color: var(--muted);
    }

    .text-link {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 7px;
      margin-top: 5px;
      color: var(--primary-dark);
      font-weight: 900;
    }

    .text-link:hover {
      gap: 11px;
      color: var(--secondary);
    }

    .entry-list {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .list-entry {
      display: grid;
      grid-template-columns: 76px minmax(0, 1fr) auto;
      align-items: center;
      gap: 18px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 16px;
      background: var(--surface);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .list-entry:hover {
      border-color: rgba(47,146,124,.34);
      box-shadow: var(--shadow-sm);
      transform: translateX(3px);
    }

    .list-entry[hidden] {
      display: none;
    }

    .entry-thumb {
      display: grid;
      width: 76px;
      height: 76px;
      place-items: center;
      overflow: hidden;
      border-radius: 17px;
      color: #fff;
      background: var(--primary);
      font-size: 24px;
      font-weight: 900;
    }

    .entry-thumb.green {
      background: var(--accent);
    }

    .entry-thumb.purple {
      background: var(--secondary);
    }

    .entry-thumb.orange {
      background: var(--orange);
    }

    .entry-thumb.soft {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }

    .list-entry h3 {
      margin: 0 0 5px;
      font-size: 20px;
      font-weight: 900;
    }

    .list-entry p {
      margin-bottom: 8px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .entry-status {
      min-width: 74px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      text-align: right;
    }

    .load-area {
      display: flex;
      justify-content: center;
      margin-top: 26px;
    }

    .browse-path {
      overflow: hidden;
      background: var(--accent-soft);
    }

    .path-grid {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      align-items: center;
      gap: 60px;
    }

    .path-steps {
      position: relative;
      display: grid;
      gap: 12px;
    }

    .path-step {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 16px;
      border: 1px solid rgba(47,146,124,.16);
      border-radius: var(--radius-md);
      padding: 18px;
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, background .2s ease;
    }

    .path-step:hover {
      background: #fff;
      transform: translateX(4px);
    }

    .step-number {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border-radius: 15px;
      color: #fff;
      background: var(--accent);
      font-weight: 900;
    }

    .path-step:nth-child(2) .step-number {
      background: var(--primary);
    }

    .path-step:nth-child(3) .step-number {
      background: var(--secondary);
    }

    .path-step h3 {
      margin: 0 0 4px;
      font-size: 19px;
      font-weight: 900;
    }

    .path-step p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .voices-layout {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
      margin-top: 34px;
    }

    .quote-card {
      position: relative;
      min-height: 300px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 34px;
      background: var(--surface);
      box-shadow: var(--shadow-sm);
    }

    .quote-mark {
      color: var(--primary);
      font-size: 64px;
      font-weight: 900;
      line-height: .8;
    }

    .quote-card blockquote {
      margin: 24px 0;
      font-size: clamp(22px, 3vw, 31px);
      font-weight: 850;
      line-height: 1.55;
    }

    .quote-card cite {
      color: var(--muted);
      font-size: 14px;
      font-style: normal;
    }

    .trust-stack {
      display: grid;
      gap: 14px;
    }

    .trust-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 21px;
      background: var(--surface);
    }

    .trust-item strong {
      display: block;
      margin-bottom: 6px;
      font-size: 18px;
    }

    .trust-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .related-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 24px;
      margin-top: 28px;
      border: 1px solid rgba(109,74,165,.17);
      border-radius: var(--radius-lg);
      padding: 28px;
      background: var(--secondary-soft);
    }

    .related-card h3 {
      margin: 0 0 8px;
      font-size: 25px;
      font-weight: 900;
    }

    .related-card p {
      margin: 0;
      color: var(--muted);
    }

    .faq-section {
      background: rgba(255,255,255,.55);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: .7fr 1.3fr;
      align-items: start;
      gap: 54px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface);
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .faq-item:hover {
      border-color: rgba(229,86,114,.28);
    }

    .faq-item[open] {
      border-color: rgba(229,86,114,.34);
      box-shadow: var(--shadow-sm);
    }

    .faq-item summary {
      position: relative;
      display: flex;
      min-height: 68px;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 54px 18px 20px;
      cursor: pointer;
      font-weight: 900;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      position: absolute;
      right: 20px;
      display: grid;
      width: 27px;
      height: 27px;
      place-items: center;
      border-radius: 9px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      content: "+";
      transition: transform .2s ease;
    }

    .faq-item[open] summary::after {
      content: "−";
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 20px 20px;
      color: var(--muted);
    }

    .faq-answer p {
      margin: 0;
    }

    .closing-cta {
      padding: 34px 0 76px;
    }

    .cta-shell {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 30px;
      overflow: hidden;
      border-radius: var(--radius-xl);
      padding: 42px;
      color: #fff;
      background: var(--primary);
      box-shadow: var(--shadow-lg);
    }

    .cta-shell::after {
      position: absolute;
      right: 20%;
      bottom: -110px;
      width: 260px;
      height: 260px;
      border: 46px solid rgba(255,255,255,.1);
      border-radius: 50%;
      content: "";
    }

    .cta-shell h2 {
      position: relative;
      z-index: 1;
      margin-bottom: 10px;
      font-size: clamp(29px, 4vw, 43px);
      font-weight: 900;
    }

    .cta-shell p {
      position: relative;
      z-index: 1;
      max-width: 660px;
      margin: 0;
      color: rgba(255,255,255,.82);
    }

    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .cta-shell .btn-light {
      color: var(--primary-dark);
      border-color: #fff;
    }

    .cta-shell .btn-secondary {
      color: #fff;
      border-color: rgba(255,255,255,.35);
      background: rgba(255,255,255,.12);
    }

    .cta-shell .btn-secondary:hover {
      background: rgba(255,255,255,.2);
    }

    .site-footer {
      border-top: 1px solid var(--border);
      background: #2d2631;
      color: #fff;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.5fr .7fr .7fr;
      gap: 60px;
      padding: 62px 0 44px;
    }

    .footer-brand p {
      max-width: 500px;
      margin: 22px 0 0;
      color: rgba(255,255,255,.64);
      font-size: 14px;
    }

    .footer-group h2 {
      margin-bottom: 17px;
      font-size: 16px;
      font-weight: 900;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      width: fit-content;
      color: rgba(255,255,255,.66);
      font-size: 14px;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .footer-bottom {
      display: flex;
      min-height: 66px;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.52);
      font-size: 13px;
    }

    .mobile-conversion {
      display: none;
    }

    @media (max-width: 1100px) {
      :root {
        --container: 1040px;
        --section-space: 74px;
      }

      .nav-shell {
        gap: 18px;
      }

      .desktop-nav .nav-link {
        padding-inline: 10px;
      }

      .feature-card {
        grid-template-columns: 1fr;
      }

      .visual-cover {
        min-height: 220px;
      }

      .path-grid {
        gap: 36px;
      }
    }

    @media (max-width: 900px) {
      .desktop-nav, .nav-shell > .nav-action {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .intro-line, .feature-shell, .path-grid,
      .voices-layout, .faq-layout {
        grid-template-columns: 1fr;
      }

      .intro-stamp {
        width: fit-content;
      }

      .feature-note {
        min-height: 310px;
      }

      .index-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 22px;
      }

      .large-entry {
        grid-template-columns: 1fr;
      }

      .entry-visual {
        min-height: 240px;
      }

      .footer-main {
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 30px;
      }
    }

    @media (max-width: 767px) {
      :root {
        --section-space: 62px;
        --radius-xl: 28px;
      }

      body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
      }

      .site-container {
        width: min(calc(100% - 28px), var(--container));
      }

      .nav-shell {
        min-height: 70px;
      }

      .brand {
        max-width: calc(100% - 62px);
        font-size: 16px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
      }

      .page-intro {
        padding-top: 28px;
      }

      .page-intro h1 {
        font-size: clamp(35px, 12vw, 51px);
      }

      .intro-copy {
        font-size: 16px;
      }

      .feature-shell {
        padding: 14px;
        border-radius: 27px;
      }

      .feature-note, .feature-content {
        padding: 22px;
      }

      .feature-note h2 {
        font-size: 31px;
      }

      .feature-card {
        grid-template-columns: 1fr;
      }

      .visual-cover {
        min-height: 250px;
      }

      .index-heading {
        display: block;
      }

      .filter-row {
        margin-top: 20px;
      }

      .index-layout {
        grid-template-columns: 1fr;
      }

      .topic-sidebar {
        position: static;
        overflow-x: auto;
        padding: 14px;
      }

      .topic-sidebar h3, .sidebar-tip {
        display: none;
      }

      .topic-nav {
        display: flex;
        width: max-content;
      }

      .topic-nav a {
        border: 1px solid var(--border);
        white-space: nowrap;
      }

      .topic-nav a::after {
        display: none;
      }

      .large-entry {
        grid-template-columns: 1fr;
      }

      .entry-body {
        padding: 24px;
      }

      .list-entry {
        grid-template-columns: 60px minmax(0, 1fr);
        align-items: start;
        padding: 14px;
      }

      .entry-thumb {
        width: 60px;
        height: 60px;
        border-radius: 14px;
      }

      .entry-status {
        grid-column: 2;
        text-align: left;
      }

      .related-card, .cta-shell {
        grid-template-columns: 1fr;
      }

      .cta-shell {
        padding: 30px 24px;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .cta-actions .btn {
        width: 100%;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px 0 32px;
      }

      .footer-bottom {
        min-height: 86px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 3px;
      }

      .mobile-conversion {
        position: fixed;
        z-index: 60;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: .72fr 1.28fr;
        gap: 9px;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--border);
        background: rgba(255,255,255,.95);
        box-shadow: 0 -10px 30px rgba(41,35,45,.11);
        backdrop-filter: blur(14px);
      }

      .mobile-conversion .btn {
        min-height: 48px;
        padding-inline: 12px;
        font-size: 14px;
      }
    }

    @media (max-width: 520px) {
      .breadcrumb {
        font-size: 12px;
      }

      .intro-stamp {
        white-space: normal;
      }

      .countdown {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }

      .time-cell {
        min-width: 0;
      }

      .feature-actions {
        display: grid;
      }

      .feature-actions .btn {
        width: 100%;
      }

      .section-title {
        font-size: 31px;
      }

      .quote-card {
        min-height: 0;
        padding: 25px;
      }

      .related-card {
        padding: 22px;
      }
    }

    @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 {
 --primary: #e55672;
 --primary-dark: #bd3653;
 --primary-soft: #fff0f3;
 --secondary: #6d4aa5;
 --secondary-soft: #f3edff;
 --accent: #2f927c;
 --accent-soft: #e9f8f3;
 --orange: #ed8d46;
 --orange-soft: #fff3e7;
 --background: #fffaf3;
 --surface: #ffffff;
 --surface-muted: #f8f3eb;
 --text: #29232d;
 --muted: #706875;
 --border: #e9dfd5;
 --focus: #6d4aa5;
 --danger: #b4233e;
 --success: #217864;
 --radius-sm: 12px;
 --radius-md: 20px;
 --radius-lg: 30px;
 --radius-xl: 42px;
 --shadow-sm: 0 8px 22px rgba(74, 51, 65, .07);
 --shadow-md: 0 18px 45px rgba(74, 51, 65, .11);
 --shadow-lg: 0 30px 70px rgba(74, 51, 65, .15);
 --container: 1180px;
 --section-space: 96px;
 --button-height: 50px;
}
*, *::before, *::after {
 box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
 scroll-padding-top: 98px;
}
body {
 margin: 0;
 color: var(--text);
 background:
  radial-gradient(circle at 5% 8%, rgba(229, 86, 114, .09), transparent 22rem),
  radial-gradient(circle at 96% 26%, rgba(47, 146, 124, .08), transparent 25rem),
  var(--background);
 font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
 line-height: 1.75;
 overflow-x: hidden;
 -webkit-font-smoothing: antialiased;
}
body.menu-open {
 overflow: hidden;
}
h1, h2, h3, p, ul, ol, figure, blockquote {
 margin: 0;
}
ul, ol {
 padding: 0;
 list-style: none;
}
a {
 color: inherit;
 text-decoration: none;
}
img, svg {
 display: block;
 max-width: 100%;
}
button, input, textarea, select {
 color: inherit;
 font: inherit;
}
button {
 border: 0;
 cursor: pointer;
}
input, textarea, select {
 width: 100%;
}
a, button, summary, input, textarea, select {
 -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
 outline: 3px solid rgba(109, 74, 165, .35);
 outline-offset: 3px;
}
::selection {
 color: var(--text);
 background: #ffd8df;
}
.site-container {
 width: min(calc(100% - 40px), var(--container));
 margin-inline: auto;
}
.section {
 position: relative;
 padding-block: var(--section-space);
}
.section-kicker {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 margin-bottom: 14px;
 color: var(--primary-dark);
 font-size: 14px;
 font-weight: 800;
 letter-spacing: .08em;
}
.section-kicker::before {
 width: 24px;
 height: 4px;
 border-radius: 99px;
 background: var(--primary);
 content: "";
}
.section-title {
 max-width: 760px;
 margin-bottom: 18px;
 font-size: clamp(30px, 4vw, 48px);
 font-weight: 900;
 line-height: 1.18;
 letter-spacing: -.045em;
}
.section-copy {
 max-width: 760px;
 color: var(--muted);
 font-size: 17px;
}
.site-header {
 position: sticky;
 z-index: 50;
 top: 0;
 border-bottom: 1px solid rgba(233, 223, 213, .9);
 background: rgba(255, 250, 243, .92);
 box-shadow: 0 8px 28px rgba(71, 49, 61, .04);
 backdrop-filter: blur(16px);
}
.nav-shell {
 display: flex;
 min-height: 78px;
 align-items: center;
 justify-content: space-between;
 gap: 28px;
}
.brand {
 display: inline-flex;
 flex: 0 0 auto;
 align-items: center;
 gap: 12px;
 font-size: 18px;
 font-weight: 900;
 letter-spacing: -.03em;
}
.brand-mark {
 display: grid;
 width: 42px;
 height: 42px;
 flex: 0 0 auto;
 place-items: center;
 border-radius: 14px 14px 18px 14px;
 color: #fff;
 background: var(--primary);
 box-shadow: 0 9px 0 rgba(229, 86, 114, .15);
}
.brand-mark svg {
 width: 23px;
 height: 23px;
}
.desktop-nav {
 display: flex;
 align-items: center;
 gap: 5px;
}
.nav-link {
 position: relative;
 padding: 10px 14px;
 border-radius: 12px;
 color: var(--muted);
 font-size: 15px;
 font-weight: 700;
 transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-link:hover {
 color: var(--primary-dark);
 background: var(--primary-soft);
 transform: translateY(-1px);
}
.nav-link.active {
 color: var(--primary-dark);
 background: var(--primary-soft);
}
.nav-link.active::after {
 position: absolute;
 right: 14px;
 bottom: 5px;
 left: 14px;
 height: 2px;
 border-radius: 99px;
 background: var(--primary);
 content: "";
}
.nav-action, .btn {
 display: inline-flex;
 min-height: var(--button-height);
 align-items: center;
 justify-content: center;
 gap: 10px;
 border: 1px solid transparent;
 border-radius: 15px;
 padding: 0 22px;
 font-weight: 800;
 line-height: 1.2;
 transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.nav-action, .btn-primary {
 color: #fff;
 background: var(--primary);
 box-shadow: 0 10px 22px rgba(229, 86, 114, .24);
}
.nav-action:hover, .btn-primary:hover {
 color: #fff;
 background: var(--primary-dark);
 box-shadow: 0 14px 28px rgba(189, 54, 83, .26);
 transform: translateY(-2px);
}
.nav-action svg {
 width: 18px;
 height: 18px;
}
.btn-secondary {
 color: var(--secondary);
 border-color: rgba(109, 74, 165, .22);
 background: var(--secondary-soft);
}
.btn-secondary:hover {
 border-color: var(--secondary);
 background: #ebe1ff;
 transform: translateY(-2px);
}
.btn-light {
 color: var(--text);
 border-color: rgba(255, 255, 255, .55);
 background: rgba(255, 255, 255, .92);
 box-shadow: var(--shadow-sm);
}
.btn-light:hover {
 background: #fff;
 transform: translateY(-2px);
}
.menu-toggle {
 display: none;
 width: 46px;
 height: 46px;
 align-items: center;
 justify-content: center;
 border: 1px solid var(--border);
 border-radius: 14px;
 background: var(--surface);
 transition: background .2s ease, border-color .2s ease;
}
.menu-toggle:hover {
 border-color: var(--primary);
 background: var(--primary-soft);
}
.menu-toggle svg {
 width: 23px;
 height: 23px;
}
.mobile-menu {
 display: none;
 border-top: 1px solid var(--border);
 background: var(--background);
}
.mobile-menu-inner {
 display: grid;
 width: min(calc(100% - 40px), var(--container));
 margin-inline: auto;
 gap: 8px;
 padding: 14px 0 20px;
}
.mobile-menu .nav-link,
.mobile-menu .nav-action {
 width: 100%;
 justify-content: flex-start;
}
.page-banner {
 position: relative;
 padding: 54px 0 46px;
 overflow: hidden;
}
.page-banner::before {
 position: absolute;
 top: 22px;
 right: max(2vw, 18px);
 width: 220px;
 height: 220px;
 border: 2px dashed rgba(109, 74, 165, .16);
 border-radius: 46% 54% 56% 44%;
 content: "";
 transform: rotate(12deg);
}
.banner-shell {
 position: relative;
 display: grid;
 grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr);
 gap: 34px;
 align-items: stretch;
 padding: 44px;
 border: 1px solid rgba(233, 223, 213, .9);
 border-radius: var(--radius-xl);
 background:
  linear-gradient(120deg, rgba(255, 255, 255, .96), rgba(255, 240, 243, .86)),
  var(--surface);
 box-shadow: var(--shadow-md);
 overflow: hidden;
}
.banner-shell::after {
 position: absolute;
 right: 37%;
 bottom: -90px;
 width: 180px;
 height: 180px;
 border-radius: 50%;
 background: rgba(47, 146, 124, .08);
 content: "";
}
.eyebrow-row {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 10px;
 margin-bottom: 20px;
}
.badge {
 display: inline-flex;
 min-height: 32px;
 align-items: center;
 gap: 7px;
 border: 1px solid transparent;
 border-radius: 999px;
 padding: 5px 12px;
 font-size: 13px;
 font-weight: 800;
 line-height: 1.2;
}
.badge-primary {
 color: var(--primary-dark);
 border-color: #ffd5dd;
 background: var(--primary-soft);
}
.badge-accent {
 color: #247260;
 border-color: #ccece3;
 background: var(--accent-soft);
}
.badge-secondary {
 color: var(--secondary);
 border-color: #ddd0f5;
 background: var(--secondary-soft);
}
.badge-orange {
 color: #a65b24;
 border-color: #f4d9bf;
 background: var(--orange-soft);
}
.breadcrumbs {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 8px;
 color: var(--muted);
 font-size: 14px;
}
.breadcrumbs a:hover {
 color: var(--primary-dark);
}
.banner-title {
 max-width: 760px;
 margin: 10px 0 18px;
 font-size: clamp(38px, 5.6vw, 68px);
 font-weight: 950;
 line-height: 1.08;
 letter-spacing: -.06em;
}
.banner-title em {
 color: var(--primary);
 font-style: normal;
}
.banner-copy {
 max-width: 760px;
 color: var(--muted);
 font-size: 18px;
}
.banner-tags {
 display: flex;
 flex-wrap: wrap;
 gap: 9px;
 margin-top: 24px;
}
.banner-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 margin-top: 28px;
}
.access-card {
 position: relative;
 z-index: 1;
 align-self: center;
 padding: 28px;
 border: 1px solid #ded2f2;
 border-radius: 26px;
 background: var(--secondary-soft);
 box-shadow: 0 16px 36px rgba(91, 63, 132, .12);
}
.access-icon {
 display: grid;
 width: 52px;
 height: 52px;
 margin-bottom: 18px;
 place-items: center;
 border-radius: 17px;
 color: #fff;
 background: var(--secondary);
 box-shadow: 0 10px 20px rgba(109, 74, 165, .22);
}
.access-icon svg {
 width: 26px;
 height: 26px;
}
.access-card h2 {
 margin-bottom: 8px;
 font-size: 23px;
 font-weight: 900;
 line-height: 1.3;
}
.access-card > p {
 color: var(--muted);
 font-size: 14px;
}
.benefit-list {
 display: grid;
 gap: 10px;
 margin: 20px 0;
}
.benefit-list li {
 display: flex;
 align-items: flex-start;
 gap: 9px;
 font-size: 14px;
 font-weight: 700;
}
.check {
 display: grid;
 width: 21px;
 height: 21px;
 flex: 0 0 auto;
 margin-top: 2px;
 place-items: center;
 border-radius: 50%;
 color: #fff;
 background: var(--accent);
}
.check svg {
 width: 13px;
 height: 13px;
}
.access-card .btn {
 width: 100%;
}
.access-note {
 margin-top: 12px;
 text-align: center;
 font-size: 12px !important;
}
.topic-strip {
 padding: 20px 0 0;
}
.topic-scroll {
 display: flex;
 gap: 10px;
 overflow-x: auto;
 padding: 3px 0 12px;
 scrollbar-width: thin;
 scrollbar-color: rgba(109, 74, 165, .24) transparent;
}
.topic-chip {
 display: inline-flex;
 min-height: 44px;
 flex: 0 0 auto;
 align-items: center;
 gap: 8px;
 border: 1px solid var(--border);
 border-radius: 14px;
 padding: 0 16px;
 color: var(--muted);
 background: rgba(255, 255, 255, .8);
 font-size: 14px;
 font-weight: 800;
 transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.topic-chip:hover,
.topic-chip.active {
 color: var(--primary-dark);
 border-color: #f0a7b5;
 background: var(--primary-soft);
 transform: translateY(-2px);
}
.topic-dot {
 width: 8px;
 height: 8px;
 border-radius: 50%;
 background: currentColor;
}
.feature-layout {
 display: grid;
 grid-template-columns: minmax(0, 1.7fr) minmax(270px, .7fr);
 gap: 26px;
 margin-top: 38px;
}
.feature-card {
 position: relative;
 min-height: 550px;
 padding: 42px;
 border-radius: var(--radius-xl);
 color: #fff;
 background: #473455;
 box-shadow: var(--shadow-lg);
 overflow: hidden;
}
.feature-card::before {
 position: absolute;
 inset: 0;
 background:
  radial-gradient(circle at 78% 18%, rgba(255, 190, 201, .32), transparent 18%),
  radial-gradient(circle at 83% 67%, rgba(95, 203, 178, .23), transparent 24%),
  linear-gradient(135deg, transparent 20%, rgba(255,255,255,.04));
 content: "";
}
.feature-visual {
 position: absolute;
 right: 34px;
 bottom: 30px;
 width: 45%;
 aspect-ratio: 4 / 5;
}
.visual-paper {
 position: absolute;
 inset: 0;
 border: 1px solid rgba(255,255,255,.32);
 border-radius: 28px 28px 58px 28px;
 background: #fff8ed;
 box-shadow: 0 24px 45px rgba(19, 11, 25, .24);
 transform: rotate(5deg);
}
.visual-paper::before {
 position: absolute;
 top: 9%;
 left: 10%;
 width: 55%;
 height: 13%;
 border-radius: 12px;
 background: #e55672;
 content: "";
}
.visual-paper::after {
 position: absolute;
 right: 9%;
 bottom: 9%;
 width: 48%;
 height: 38%;
 border-radius: 50% 50% 18px 50%;
 background: #8bc8b8;
 content: "";
}
.visual-line {
 position: absolute;
 z-index: 2;
 left: 15%;
 height: 8px;
 border-radius: 99px;
 background: #d8cfc5;
 transform: rotate(5deg);
}
.visual-line.one {
 top: 33%;
 width: 58%;
}
.visual-line.two {
 top: 39%;
 width: 42%;
}
.visual-line.three {
 top: 48%;
 width: 52%;
}
.feature-content {
 position: relative;
 z-index: 2;
 display: flex;
 min-height: 460px;
 max-width: 52%;
 flex-direction: column;
 align-items: flex-start;
 justify-content: flex-end;
}
.feature-content h3 {
 margin: 17px 0 14px;
 font-size: clamp(32px, 4vw, 52px);
 font-weight: 900;
 line-height: 1.12;
 letter-spacing: -.05em;
}
.feature-content p {
 color: rgba(255,255,255,.76);
 font-size: 16px;
}
.feature-meta {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 margin-top: 20px;
}
.feature-meta span {
 border: 1px solid rgba(255,255,255,.22);
 border-radius: 999px;
 padding: 5px 11px;
 color: rgba(255,255,255,.86);
 background: rgba(255,255,255,.08);
 font-size: 12px;
 font-weight: 700;
}
.feature-content .btn {
 margin-top: 24px;
}
.side-directory {
 display: flex;
 flex-direction: column;
 gap: 14px;
}
.directory-head {
 padding: 24px;
 border: 1px solid var(--border);
 border-radius: var(--radius-md);
 background: var(--surface);
 box-shadow: var(--shadow-sm);
}
.directory-head h3 {
 margin-bottom: 8px;
 font-size: 22px;
 font-weight: 900;
}
.directory-head p {
 color: var(--muted);
 font-size: 14px;
}
.directory-item {
 display: grid;
 grid-template-columns: 46px minmax(0, 1fr) 24px;
 gap: 13px;
 align-items: center;
 padding: 17px;
 border: 1px solid var(--border);
 border-radius: 17px;
 background: rgba(255,255,255,.84);
 transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.directory-item:hover {
 border-color: #daa9b4;
 background: #fff;
 box-shadow: var(--shadow-sm);
 transform: translateX(4px);
}
.directory-number {
 display: grid;
 width: 46px;
 height: 46px;
 place-items: center;
 border-radius: 14px;
 color: var(--secondary);
 background: var(--secondary-soft);
 font-weight: 900;
}
.directory-item:nth-child(3) .directory-number {
 color: var(--accent);
 background: var(--accent-soft);
}
.directory-item:nth-child(4) .directory-number {
 color: var(--primary-dark);
 background: var(--primary-soft);
}
.directory-item:nth-child(5) .directory-number {
 color: #a65b24;
 background: var(--orange-soft);
}
.directory-item h4 {
 font-size: 16px;
 font-weight: 900;
 line-height: 1.35;
}
.directory-item p {
 margin-top: 3px;
 color: var(--muted);
 font-size: 12px;
 line-height: 1.5;
}
.directory-arrow {
 color: var(--muted);
}
.directory-arrow svg {
 width: 20px;
 height: 20px;
}
.content-section {
 background: rgba(248, 243, 235, .72);
}
.magazine-grid {
 display: grid;
 grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
 gap: 28px;
 margin-top: 38px;
}
.preview-stack {
 display: grid;
 gap: 18px;
}
.preview-card {
 display: grid;
 grid-template-columns: 190px minmax(0, 1fr);
 gap: 22px;
 align-items: stretch;
 padding: 18px;
 border: 1px solid var(--border);
 border-radius: 24px;
 background: var(--surface);
 box-shadow: var(--shadow-sm);
 transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.preview-card:hover {
 border-color: #e6a6b3;
 box-shadow: var(--shadow-md);
 transform: translateY(-3px);
}
.preview-cover {
 position: relative;
 min-height: 180px;
 border-radius: 18px;
 background: var(--primary-soft);
 overflow: hidden;
}
.preview-cover::before,
.preview-cover::after {
 position: absolute;
 content: "";
}
.preview-cover.design::before {
 width: 110px;
 height: 110px;
 top: 24px;
 left: 28px;
 border: 15px solid var(--primary);
 border-radius: 48% 52% 35% 65%;
 transform: rotate(-14deg);
}
.preview-cover.design::after {
 width: 75px;
 height: 75px;
 right: 20px;
 bottom: 16px;
 border-radius: 15px;
 background: var(--secondary);
 transform: rotate(11deg);
}
.preview-cover.craft {
 background: var(--accent-soft);
}
.preview-cover.craft::before {
 width: 88px;
 height: 130px;
 top: 23px;
 left: 47px;
 border-radius: 50% 50% 20px 20px;
 background: var(--accent);
}
.preview-cover.craft::after {
 width: 70px;
 height: 9px;
 right: 18px;
 bottom: 35px;
 border-radius: 99px;
 background: var(--orange);
 box-shadow: 0 -20px 0 #d9b18a, 0 -40px 0 var(--secondary);
}
.preview-card-content {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 justify-content: center;
}
.preview-card h3 {
 margin: 10px 0 8px;
 font-size: 24px;
 font-weight: 900;
 line-height: 1.3;
}
.preview-card p {
 color: var(--muted);
 font-size: 14px;
}
.text-link {
 display: inline-flex;
 align-items: center;
 gap: 7px;
 margin-top: 16px;
 color: var(--primary-dark);
 font-size: 14px;
 font-weight: 900;
}
.text-link svg {
 width: 17px;
 height: 17px;
 transition: transform .2s ease;
}
.text-link:hover svg {
 transform: translateX(4px);
}
.compact-panel {
 padding: 26px;
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 background: var(--surface);
 box-shadow: var(--shadow-sm);
}
.compact-panel h3 {
 font-size: 24px;
 font-weight: 900;
}
.compact-panel > p {
 margin-top: 6px;
 color: var(--muted);
 font-size: 14px;
}
.compact-list {
 display: grid;
 margin-top: 18px;
}
.compact-item {
 display: grid;
 grid-template-columns: 10px minmax(0, 1fr);
 gap: 13px;
 padding: 17px 0;
 border-top: 1px solid var(--border);
}
.compact-item:first-child {
 border-top: 0;
}
.compact-bar {
 width: 6px;
 height: 38px;
 margin-top: 3px;
 border-radius: 99px;
 background: var(--primary);
}
.compact-item:nth-child(2) .compact-bar {
 background: var(--accent);
}
.compact-item:nth-child(3) .compact-bar {
 background: var(--secondary);
}
.compact-item:nth-child(4) .compact-bar {
 background: var(--orange);
}
.compact-item h4 {
 font-size: 16px;
 font-weight: 900;
 line-height: 1.45;
}
.compact-item p {
 margin-top: 5px;
 color: var(--muted);
 font-size: 13px;
 line-height: 1.6;
}
.item-status {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 margin-top: 8px;
 color: var(--accent);
 font-size: 12px;
 font-weight: 800;
}
.item-status::before {
 width: 7px;
 height: 7px;
 border-radius: 50%;
 background: currentColor;
 content: "";
}
.browse-path {
 overflow: hidden;
}
.path-layout {
 display: grid;
 grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
 gap: 42px;
 align-items: center;
}
.path-note {
 margin-top: 26px;
 padding: 20px;
 border-left: 5px solid var(--accent);
 border-radius: 0 18px 18px 0;
 color: var(--muted);
 background: var(--accent-soft);
 font-size: 14px;
}
.path-board {
 position: relative;
 display: grid;
 gap: 14px;
 padding: 30px;
 border: 1px solid var(--border);
 border-radius: var(--radius-xl);
 background: var(--surface);
 box-shadow: var(--shadow-md);
}
.path-row {
 display: grid;
 grid-template-columns: 52px minmax(0, 1fr) auto;
 gap: 16px;
 align-items: center;
 padding: 18px;
 border: 1px solid var(--border);
 border-radius: 19px;
 background: #fff;
 transition: transform .2s ease, border-color .2s ease;
}
.path-row:hover {
 border-color: #c8b5e3;
 transform: translateX(5px);
}
.path-icon {
 display: grid;
 width: 52px;
 height: 52px;
 place-items: center;
 border-radius: 16px;
 color: var(--primary-dark);
 background: var(--primary-soft);
}
.path-row:nth-child(2) .path-icon {
 color: var(--accent);
 background: var(--accent-soft);
}
.path-row:nth-child(3) .path-icon {
 color: var(--secondary);
 background: var(--secondary-soft);
}
.path-icon svg {
 width: 25px;
 height: 25px;
}
.path-row h3 {
 font-size: 18px;
 font-weight: 900;
}
.path-row p {
 color: var(--muted);
 font-size: 13px;
}
.path-step {
 color: var(--muted);
 font-size: 12px;
 font-weight: 800;
}
.voice-section {
 padding-top: 0;
}
.voice-shell {
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
 gap: 24px;
}
.voice-lead {
 position: relative;
 padding: 36px;
 border-radius: var(--radius-lg);
 color: #fff;
 background: var(--accent);
 overflow: hidden;
}
.voice-lead::after {
 position: absolute;
 right: -45px;
 bottom: -55px;
 width: 180px;
 height: 180px;
 border: 22px solid rgba(255,255,255,.12);
 border-radius: 50%;
 content: "";
}
.voice-lead .section-kicker {
 color: #fff;
}
.voice-lead .section-kicker::before {
 background: #fff;
}
.voice-lead h2 {
 max-width: 500px;
 font-size: clamp(28px, 3.8vw, 44px);
 font-weight: 900;
 line-height: 1.2;
}
.voice-lead p {
 max-width: 550px;
 margin-top: 16px;
 color: rgba(255,255,255,.8);
}
.trust-tags {
 display: flex;
 flex-wrap: wrap;
 gap: 9px;
 margin-top: 26px;
}
.trust-tags span {
 border: 1px solid rgba(255,255,255,.25);
 border-radius: 999px;
 padding: 6px 11px;
 background: rgba(255,255,255,.1);
 font-size: 12px;
 font-weight: 800;
}
.quote-list {
 display: grid;
 gap: 14px;
}
.quote-card {
 position: relative;
 padding: 25px 25px 25px 58px;
 border: 1px solid var(--border);
 border-radius: 22px;
 background: var(--surface);
 box-shadow: var(--shadow-sm);
}
.quote-mark {
 position: absolute;
 top: 19px;
 left: 22px;
 color: var(--primary);
 font-size: 38px;
 font-weight: 900;
 line-height: 1;
}
.quote-card blockquote {
 color: var(--text);
 font-size: 15px;
 font-weight: 700;
}
.quote-card footer {
 margin-top: 11px;
 color: var(--muted);
 font-size: 12px;
}
.faq-wrap {
 display: grid;
 grid-template-columns: minmax(250px, .6fr) minmax(0, 1.4fr);
 gap: 50px;
 align-items: start;
}
.faq-intro {
 position: sticky;
 top: 112px;
}
.faq-list {
 display: grid;
 gap: 12px;
}
.faq-item {
 border: 1px solid var(--border);
 border-radius: 20px;
 background: var(--surface);
 box-shadow: var(--shadow-sm);
 overflow: hidden;
 transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.faq-item:hover {
 border-color: #d9bdc4;
}
.faq-item[open] {
 border-color: #eba8b5;
 background: #fffdfd;
 box-shadow: var(--shadow-md);
}
.faq-item summary {
 display: flex;
 min-height: 74px;
 align-items: center;
 justify-content: space-between;
 gap: 18px;
 padding: 18px 22px;
 font-weight: 900;
 list-style: none;
 cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
 display: none;
}
.faq-plus {
 position: relative;
 width: 28px;
 height: 28px;
 flex: 0 0 auto;
 border-radius: 9px;
 background: var(--primary-soft);
}
.faq-plus::before,
.faq-plus::after {
 position: absolute;
 top: 50%;
 left: 50%;
 width: 12px;
 height: 2px;
 border-radius: 99px;
 background: var(--primary-dark);
 content: "";
 transform: translate(-50%, -50%);
 transition: transform .2s ease;
}
.faq-plus::after {
 transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-plus::after {
 transform: translate(-50%, -50%) rotate(0);
}
.faq-answer {
 padding: 0 22px 22px;
 color: var(--muted);
 font-size: 15px;
}
.guide-section {
 padding-top: 0;
}
.guide-shell {
 display: grid;
 grid-template-columns: minmax(0, .88fr) minmax(340px, 1.12fr);
 gap: 28px;
 padding: 34px;
 border: 1px solid #d9ccef;
 border-radius: var(--radius-xl);
 background: var(--secondary-soft);
 box-shadow: var(--shadow-md);
}
.guide-copy {
 align-self: center;
}
.guide-copy h2 {
 margin: 12px 0 14px;
 font-size: clamp(30px, 4vw, 46px);
 font-weight: 900;
 line-height: 1.18;
 letter-spacing: -.04em;
}
.guide-copy p {
 max-width: 520px;
 color: var(--muted);
}
.guide-points {
 display: flex;
 flex-wrap: wrap;
 gap: 9px;
 margin-top: 22px;
}
.guide-form {
 display: grid;
 gap: 15px;
 padding: 26px;
 border: 1px solid rgba(109, 74, 165, .17);
 border-radius: 24px;
 background: rgba(255,255,255,.9);
}
.form-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 14px;
}
.form-field {
 display: grid;
 gap: 7px;
}
.form-field.full {
 grid-column: 1 / -1;
}
.form-field label {
 font-size: 13px;
 font-weight: 900;
}
.required {
 color: var(--danger);
}
.form-field input,
.form-field select,
.form-field textarea {
 min-height: 48px;
 border: 1px solid var(--border);
 border-radius: 13px;
 padding: 11px 13px;
 background: #fff;
 transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field textarea {
 min-height: 96px;
 resize: vertical;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
 border-color: #cbb9df;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
 border-color: var(--focus);
 box-shadow: 0 0 0 4px rgba(109, 74, 165, .1);
 outline: 0;
}
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
 border-color: var(--danger);
 background: #fff7f8;
}
.form-hint {
 color: var(--muted);
 font-size: 12px;
}
.form-message {
 display: none;
 border-radius: 12px;
 padding: 10px 12px;
 font-size: 13px;
 font-weight: 800;
}
.form-message.success {
 display: block;
 color: var(--success);
 background: var(--accent-soft);
}
.form-message.error {
 display: block;
 color: var(--danger);
 background: var(--primary-soft);
}
.guide-form .btn {
 width: 100%;
}
.site-footer {
 border-top: 1px solid var(--border);
 background: #302a34;
 color: #fff;
}
.footer-main {
 display: grid;
 grid-template-columns: minmax(0, 1.4fr) minmax(160px, .55fr) minmax(160px, .55fr);
 gap: 54px;
 padding-block: 60px 46px;
}
.footer-brand .brand {
 margin-bottom: 18px;
}
.footer-brand p {
 max-width: 520px;
 color: rgba(255,255,255,.66);
 font-size: 14px;
}
.footer-group h2 {
 margin-bottom: 15px;
 color: #fff;
 font-size: 15px;
 font-weight: 900;
}
.footer-links {
 display: grid;
 gap: 9px;
}
.footer-links a {
 width: fit-content;
 color: rgba(255,255,255,.66);
 font-size: 14px;
 transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover {
 color: #fff;
 transform: translateX(3px);
}
.footer-bottom {
 display: flex;
 min-height: 68px;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 border-top: 1px solid rgba(255,255,255,.1);
 color: rgba(255,255,255,.52);
 font-size: 12px;
}
.mobile-conversion {
 display: none;
}
@media (max-width: 1279px) {
 :root {
  --container: 1080px;
  --section-space: 84px;
 }
 .nav-shell {
  gap: 16px;
 }
 .nav-link {
  padding-inline: 11px;
 }
 .feature-card {
  min-height: 520px;
 }
}
@media (max-width: 1023px) {
 :root {
  --section-space: 74px;
 }
 .desktop-nav,
 .nav-shell > .nav-action {
  display: none;
 }
 .menu-toggle {
  display: inline-flex;
 }
 .mobile-menu.open {
  display: block;
 }
 .banner-shell {
  grid-template-columns: 1fr;
 }
 .access-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
 }
 .access-icon {
  grid-row: span 2;
 }
 .benefit-list,
 .access-card .btn,
 .access-note {
  grid-column: 1 / -1;
 }
 .feature-layout,
 .magazine-grid,
 .path-layout,
 .faq-wrap,
 .guide-shell {
  grid-template-columns: 1fr;
 }
 .side-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
 }
 .directory-head {
  grid-column: 1 / -1;
 }
 .faq-intro {
  position: static;
 }
 .voice-shell {
  grid-template-columns: 1fr;
 }
 .footer-main {
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 28px;
 }
}
@media (max-width: 767px) {
 :root {
  --section-space: 62px;
  --radius-xl: 28px;
 }
 body {
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
 }
 .site-container {
  width: min(calc(100% - 28px), var(--container));
 }
 .nav-shell {
  min-height: 68px;
 }
 .brand {
  gap: 9px;
  font-size: 16px;
 }
 .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px 12px 16px 12px;
 }
 .page-banner {
  padding-top: 28px;
 }
 .banner-shell {
  gap: 28px;
  padding: 26px 20px;
 }
 .banner-title {
  font-size: clamp(36px, 12vw, 52px);
 }
 .banner-copy {
  font-size: 16px;
 }
 .banner-actions {
  display: grid;
 }
 .banner-actions .btn {
  width: 100%;
 }
 .access-card {
  display: block;
  padding: 22px;
 }
 .access-icon {
  margin-bottom: 16px;
 }
 .feature-card {
  min-height: 640px;
  padding: 28px 24px;
 }
 .feature-content {
  min-height: auto;
  max-width: none;
 }
 .feature-visual {
  right: 18%;
  bottom: 25px;
  width: 64%;
 }
 .feature-content .btn {
  position: absolute;
  top: 280px;
 }
 .side-directory {
  display: flex;
 }
 .preview-card {
  grid-template-columns: 1fr;
 }
 .preview-cover {
  min-height: 220px;
 }
 .path-board {
  padding: 18px;
 }
 .path-row {
  grid-template-columns: 46px minmax(0, 1fr);
 }
 .path-icon {
  width: 46px;
  height: 46px;
 }
 .path-step {
  grid-column: 2;
 }
 .voice-lead {
  padding: 28px 23px;
 }
 .faq-item summary {
  min-height: 68px;
  padding: 17px;
 }
 .faq-answer {
  padding: 0 17px 18px;
 }
 .guide-shell {
  padding: 24px 18px;
 }
 .guide-form {
  padding: 20px 16px;
 }
 .form-grid {
  grid-template-columns: 1fr;
 }
 .form-field.full {
  grid-column: auto;
 }
 .footer-main {
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 35px;
 }
 .footer-bottom {
  min-height: 90px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
 }
 .mobile-conversion {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: rgba(255,250,243,.96);
  box-shadow: 0 -12px 32px rgba(74, 51, 65, .12);
  backdrop-filter: blur(14px);
 }
 .mobile-conversion .mini-link {
  display: grid;
  min-width: 56px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: var(--secondary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
 }
 .mobile-conversion .btn {
  min-height: 50px;
 }
}
@media (max-width: 520px) {
 .page-banner::before {
  display: none;
 }
 .eyebrow-row {
  align-items: flex-start;
  flex-direction: column;
 }
 .banner-tags {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 5px;
 }
 .feature-card {
  min-height: 610px;
 }
 .feature-visual {
  right: 13%;
  width: 72%;
 }
 .preview-cover {
  min-height: 190px;
 }
 .compact-panel {
  padding: 21px 18px;
 }
 .quote-card {
  padding: 22px 18px 22px 48px;
 }
}
@media (prefers-reduced-motion: reduce) {
 html {
  scroll-behavior: auto;
 }
 *, *::before, *::after {
  scroll-behavior: auto !important;
  transition-duration: .01ms !important;
  animation-duration: .01ms !important;
 }
}
