/* roulang page: index */
:root {
            --primary: #f6c85f;
            --primary-dark: #dba73b;
            --secondary: #ff6b6b;
            --accent: #7c8cff;
            --background: #070a12;
            --background-soft: #0b101b;
            --surface: #101522;
            --surface-light: #171e2e;
            --surface-hover: #1d2639;
            --text: #f8fafc;
            --text-soft: #a8b1c7;
            --text-faint: #707b92;
            --border: rgba(255, 255, 255, 0.1);
            --border-strong: rgba(246, 200, 95, 0.34);
            --success: #5bd6a2;
            --radius-sm: 12px;
            --radius-md: 18px;
            --radius-lg: 28px;
            --radius-xl: 38px;
            --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.18);
            --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.3);
            --shadow-gold: 0 18px 50px rgba(246, 200, 95, 0.16);
            --transition: 220ms cubic-bezier(.2, .7, .2, 1);
            --container: 1200px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            background: var(--background);
        }

        body {
            margin: 0;
            min-width: 320px;
            color: var(--text);
            background:
                radial-gradient(circle at 12% 12%, rgba(124, 140, 255, 0.12), transparent 30rem),
                radial-gradient(circle at 88% 26%, rgba(246, 200, 95, 0.09), transparent 28rem),
                var(--background);
            font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body.menu-open {
            overflow: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font: inherit;
        }

        button {
            border: 0;
        }

        img {
            display: block;
            max-width: 100%;
        }

        ::selection {
            color: #080b12;
            background: var(--primary);
        }

        :focus-visible {
            outline: 3px solid rgba(246, 200, 95, 0.72);
            outline-offset: 4px;
        }

        .container-shell {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }

        .skip-link {
            position: fixed;
            top: 14px;
            left: 14px;
            z-index: 200;
            padding: 10px 16px;
            color: #0a0c12;
            background: var(--primary);
            border-radius: 10px;
            font-weight: 800;
            transform: translateY(-160%);
            transition: transform var(--transition);
        }

        .skip-link:focus {
            transform: translateY(0);
        }

        .site-header {
            position: fixed;
            inset: 0 0 auto;
            z-index: 100;
            padding: 18px 0;
            transition:
                padding var(--transition),
                background-color var(--transition),
                border-color var(--transition),
                box-shadow var(--transition);
        }

        .site-header.is-scrolled {
            padding: 10px 0;
            background: rgba(7, 10, 18, 0.9);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(20px);
        }

        .header-inner {
            display: grid;
            grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
            gap: 24px;
            align-items: center;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            width: fit-content;
        }

        .brand-mark {
            position: relative;
            display: grid;
            width: 44px;
            height: 44px;
            place-items: center;
            color: #0b0d12;
            background: linear-gradient(135deg, #fff0b8, var(--primary) 55%, #d98e35);
            border-radius: 14px;
            box-shadow: 0 12px 32px rgba(246, 200, 95, 0.24);
            overflow: hidden;
        }

        .brand-mark::after {
            position: absolute;
            right: -5px;
            bottom: -8px;
            width: 24px;
            height: 24px;
            content: "";
            background: rgba(255, 255, 255, 0.42);
            border-radius: 50%;
        }

        .brand-mark svg {
            position: relative;
            z-index: 1;
            width: 23px;
            height: 23px;
        }

        .brand-copy {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-name {
            font-size: 1.08rem;
            font-weight: 900;
            letter-spacing: .04em;
        }

        .brand-note {
            margin-top: 5px;
            color: var(--text-faint);
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .08em;
        }

        .segment-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border);
            border-radius: 999px;
            backdrop-filter: blur(14px);
        }

        .segment-link {
            display: inline-flex;
            min-width: 92px;
            min-height: 40px;
            align-items: center;
            justify-content: center;
            padding: 8px 20px;
            color: var(--text-soft);
            border-radius: 999px;
            font-size: .92rem;
            font-weight: 800;
            transition:
                color var(--transition),
                background-color var(--transition),
                transform var(--transition);
        }

        .segment-link:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.07);
        }

        .segment-link.active {
            color: #10121a;
            background: var(--primary);
            box-shadow: 0 8px 24px rgba(246, 200, 95, 0.2);
        }

        .header-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
        }

        .header-search {
            position: relative;
            width: min(100%, 242px);
        }

        .header-search input {
            width: 100%;
            height: 44px;
            padding: 0 48px 0 17px;
            color: var(--text);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border);
            border-radius: 999px;
            outline: 0;
            transition:
                border-color var(--transition),
                background-color var(--transition),
                box-shadow var(--transition);
        }

        .header-search input::placeholder {
            color: var(--text-faint);
        }

        .header-search input:hover,
        .header-search input:focus {
            background: rgba(255, 255, 255, 0.09);
            border-color: var(--border-strong);
            box-shadow: 0 0 0 4px rgba(246, 200, 95, 0.08);
        }

        .search-submit {
            position: absolute;
            top: 5px;
            right: 5px;
            display: grid;
            width: 34px;
            height: 34px;
            place-items: center;
            color: #0a0d13;
            background: var(--primary);
            border-radius: 50%;
            cursor: pointer;
            transition:
                transform var(--transition),
                background-color var(--transition);
        }

        .search-submit:hover {
            background: #ffe099;
            transform: scale(1.05);
        }

        .menu-button {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            color: var(--text);
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid var(--border);
            border-radius: 13px;
            cursor: pointer;
        }

        .menu-button svg {
            width: 22px;
            height: 22px;
        }

        .mobile-panel {
            position: fixed;
            inset: 0;
            z-index: 90;
            display: none;
            padding: 96px 20px 30px;
            background: rgba(7, 10, 18, 0.97);
            backdrop-filter: blur(24px);
        }

        .mobile-panel.is-open {
            display: block;
        }

        .mobile-panel-card {
            max-width: 520px;
            margin: 0 auto;
            padding: 22px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .mobile-home-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 18px;
            color: #10121a;
            background: var(--primary);
            border-radius: 15px;
            font-weight: 900;
        }

        .mobile-search {
            position: relative;
            margin-top: 14px;
        }

        .mobile-search input {
            width: 100%;
            height: 50px;
            padding: 0 52px 0 17px;
            color: var(--text);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border);
            border-radius: 15px;
            outline: none;
        }

        .hero {
            position: relative;
            min-height: 880px;
            display: flex;
            align-items: center;
            padding: 150px 0 94px;
            overflow: hidden;
        }

        .hero::before {
            position: absolute;
            inset: 0;
            content: "";
            background:
                linear-gradient(90deg, rgba(7, 10, 18, 0.97) 0%, rgba(7, 10, 18, 0.8) 46%, rgba(7, 10, 18, 0.3) 76%, rgba(7, 10, 18, 0.72) 100%),
                linear-gradient(0deg, var(--background) 0%, transparent 31%, rgba(7, 10, 18, 0.3) 100%),
                url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=2000&q=88") center 35% / cover no-repeat;
            transform: scale(1.025);
        }

        .hero::after {
            position: absolute;
            inset: auto -10% -260px;
            height: 420px;
            content: "";
            background: radial-gradient(ellipse, rgba(124, 140, 255, 0.15), transparent 66%);
            pointer-events: none;
        }

        .hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
            gap: 76px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            width: fit-content;
            padding: 8px 13px;
            color: #ffe6a1;
            background: rgba(246, 200, 95, 0.1);
            border: 1px solid rgba(246, 200, 95, 0.26);
            border-radius: 999px;
            font-size: .78rem;
            font-weight: 900;
            letter-spacing: .1em;
        }

        .eyebrow-dot {
            width: 7px;
            height: 7px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 0 5px rgba(246, 200, 95, 0.12);
        }

        .hero-title {
            max-width: 850px;
            margin: 25px 0 0;
            font-size: clamp(3.1rem, 6vw, 6.4rem);
            line-height: .99;
            font-weight: 950;
            letter-spacing: -.055em;
            text-wrap: balance;
        }

        .hero-title span {
            display: block;
            margin-top: 13px;
            color: transparent;
            background: linear-gradient(90deg, #fff0b8, var(--primary) 48%, #ff988e);
            background-clip: text;
            -webkit-background-clip: text;
        }

        .hero-description {
            max-width: 720px;
            margin-top: 30px;
            color: #c5ccda;
            font-size: clamp(1rem, 1.7vw, 1.18rem);
            line-height: 1.9;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-top: 35px;
        }

        .button-primary,
        .button-secondary {
            display: inline-flex;
            min-height: 52px;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 13px 22px;
            border-radius: 15px;
            font-size: .95rem;
            font-weight: 900;
            transition:
                transform var(--transition),
                border-color var(--transition),
                background-color var(--transition),
                box-shadow var(--transition);
        }

        .button-primary {
            color: #10121a;
            background: var(--primary);
            box-shadow: var(--shadow-gold);
        }

        .button-primary:hover {
            background: #ffe19a;
            box-shadow: 0 22px 60px rgba(246, 200, 95, 0.25);
            transform: translateY(-3px);
        }

        .button-primary:active,
        .button-secondary:active {
            transform: translateY(0) scale(.98);
        }

        .button-secondary {
            color: var(--text);
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(10px);
        }

        .button-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.24);
            transform: translateY(-3px);
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            margin-top: 29px;
            color: var(--text-soft);
            font-size: .82rem;
            font-weight: 700;
        }

        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-trust svg {
            width: 17px;
            color: var(--success);
        }

        .quest-panel {
            position: relative;
            padding: 26px;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
                rgba(13, 17, 28, 0.76);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(22px);
            overflow: hidden;
        }

        .quest-panel::before {
            position: absolute;
            top: -110px;
            right: -110px;
            width: 230px;
            height: 230px;
            content: "";
            background: radial-gradient(circle, rgba(246, 200, 95, 0.25), transparent 68%);
        }

        .quest-header {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 19px;
            border-bottom: 1px solid var(--border);
        }

        .quest-kicker {
            color: var(--primary);
            font-size: .72rem;
            font-weight: 900;
            letter-spacing: .15em;
        }

        .quest-title {
            margin-top: 5px;
            font-size: 1.3rem;
            font-weight: 900;
        }

        .quest-level {
            display: grid;
            width: 54px;
            height: 54px;
            place-items: center;
            color: #10121a;
            background: var(--primary);
            border-radius: 50%;
            font-size: .75rem;
            font-weight: 950;
            box-shadow: 0 0 0 7px rgba(246, 200, 95, 0.1);
        }

        .attribute-list {
            position: relative;
            display: grid;
            gap: 17px;
            margin-top: 22px;
        }

        .attribute-item {
            display: grid;
            grid-template-columns: 78px minmax(0, 1fr) 36px;
            gap: 11px;
            align-items: center;
        }

        .attribute-name,
        .attribute-value {
            color: var(--text-soft);
            font-size: .78rem;
            font-weight: 800;
        }

        .attribute-value {
            color: var(--text);
            text-align: right;
        }

        .attribute-track {
            height: 7px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            overflow: hidden;
        }

        .attribute-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: inherit;
            box-shadow: 0 0 15px rgba(246, 200, 95, 0.3);
        }

        .quest-note {
            position: relative;
            margin-top: 23px;
            padding: 15px;
            color: var(--text-soft);
            background: rgba(255, 255, 255, 0.055);
            border: 1px solid var(--border);
            border-radius: 14px;
            font-size: .82rem;
        }

        .section {
            position: relative;
            padding: 100px 0;
        }

        .section-compact {
            padding: 70px 0;
        }

        .section-muted {
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent),
                var(--background-soft);
            border-block: 1px solid rgba(255, 255, 255, 0.055);
        }

        .section-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 38px;
        }

        .section-heading-main {
            max-width: 720px;
        }

        .section-label {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            font-size: .76rem;
            font-weight: 950;
            letter-spacing: .15em;
        }

        .section-label::before {
            width: 34px;
            height: 1px;
            content: "";
            background: var(--primary);
        }

        .section-title {
            margin: 13px 0 0;
            font-size: clamp(2rem, 4vw, 3.4rem);
            line-height: 1.16;
            font-weight: 950;
            letter-spacing: -.035em;
            text-wrap: balance;
        }

        .section-description {
            max-width: 620px;
            margin-top: 16px;
            color: var(--text-soft);
            font-size: .98rem;
        }

        .section-side-note {
            max-width: 330px;
            color: var(--text-faint);
            font-size: .82rem;
            text-align: right;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .feature-card {
            position: relative;
            min-height: 255px;
            padding: 25px;
            background: linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition:
                transform var(--transition),
                border-color var(--transition),
                background-color var(--transition),
                box-shadow var(--transition);
        }

        .feature-card::after {
            position: absolute;
            right: -56px;
            bottom: -70px;
            width: 150px;
            height: 150px;
            content: "";
            background: radial-gradient(circle, rgba(124, 140, 255, 0.17), transparent 67%);
        }

        .feature-card:hover {
            background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
            border-color: rgba(246, 200, 95, 0.27);
            box-shadow: var(--shadow-sm);
            transform: translateY(-7px);
        }

        .feature-icon {
            display: grid;
            width: 50px;
            height: 50px;
            place-items: center;
            color: var(--primary);
            background: rgba(246, 200, 95, 0.1);
            border: 1px solid rgba(246, 200, 95, 0.2);
            border-radius: 15px;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
        }

        .feature-card h3 {
            margin: 27px 0 0;
            font-size: 1.13rem;
            font-weight: 900;
        }

        .feature-card p {
            margin: 12px 0 0;
            color: var(--text-soft);
            font-size: .88rem;
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .catalog-card {
            position: relative;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.13);
            transition:
                transform var(--transition),
                border-color var(--transition),
                box-shadow var(--transition);
        }

        .catalog-card:hover {
            border-color: rgba(246, 200, 95, 0.3);
            box-shadow: var(--shadow-md);
            transform: translateY(-8px);
        }

        .catalog-card.is-hidden {
            display: none;
        }

        .poster-art {
            position: relative;
            min-height: 275px;
            padding: 20px;
            display: flex;
            align-items: flex-end;
            isolation: isolate;
            overflow: hidden;
        }

        .poster-art::before,
        .poster-art::after {
            position: absolute;
            content: "";
            border-radius: 50%;
            filter: blur(1px);
            z-index: -1;
        }

        .poster-art::before {
            top: -80px;
            right: -20px;
            width: 260px;
            height: 260px;
            background: rgba(255, 255, 255, 0.12);
        }

        .poster-art::after {
            bottom: -90px;
            left: -70px;
            width: 240px;
            height: 240px;
            background: rgba(0, 0, 0, 0.24);
        }

        .poster-one {
            background:
                linear-gradient(160deg, rgba(9, 12, 22, 0.05), rgba(9, 12, 22, 0.76)),
                linear-gradient(135deg, #232b48, #725466 55%, #d69c55);
        }

        .poster-two {
            background:
                linear-gradient(160deg, rgba(9, 12, 22, 0.02), rgba(9, 12, 22, 0.77)),
                linear-gradient(135deg, #132b35, #1f6b63 50%, #c69b57);
        }

        .poster-three {
            background:
                linear-gradient(160deg, rgba(9, 12, 22, 0.02), rgba(9, 12, 22, 0.8)),
                linear-gradient(135deg, #3e183d, #8a3b5d 50%, #e77c69);
        }

        .poster-four {
            background:
                linear-gradient(160deg, rgba(9, 12, 22, 0.02), rgba(9, 12, 22, 0.78)),
                linear-gradient(135deg, #0f213e, #3348a0 48%, #7b8cff);
        }

        .poster-five {
            background:
                linear-gradient(160deg, rgba(9, 12, 22, 0.02), rgba(9, 12, 22, 0.76)),
                linear-gradient(135deg, #314129, #72905d 50%, #e7bd73);
        }

        .poster-six {
            background:
                linear-gradient(160deg, rgba(9, 12, 22, 0.02), rgba(9, 12, 22, 0.75)),
                linear-gradient(135deg, #492a1f, #ba6547 52%, #efc27a);
        }

        .poster-symbol {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 118px;
            height: 118px;
            color: rgba(255, 255, 255, 0.18);
            transform: translate(-50%, -50%);
        }

        .poster-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 10px;
            color: #12141b;
            background: rgba(255, 235, 174, 0.95);
            border-radius: 999px;
            font-size: .72rem;
            font-weight: 950;
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
        }

        .catalog-content {
            padding: 22px;
        }

        .catalog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 5px 9px;
            color: var(--text-soft);
            background: rgba(255, 255, 255, 0.055);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: .7rem;
            font-weight: 800;
        }

        .badge-accent {
            color: #ffe4a0;
            background: rgba(246, 200, 95, 0.09);
            border-color: rgba(246, 200, 95, 0.2);
        }

        .catalog-title {
            margin: 16px 0 0;
            font-size: 1.3rem;
            font-weight: 950;
        }

        .catalog-description {
            margin: 10px 0 0;
            min-height: 76px;
            color: var(--text-soft);
            font-size: .87rem;
        }

        .catalog-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 18px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .catalog-score {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .catalog-score strong {
            color: var(--primary);
            font-size: 1.35rem;
            line-height: 1;
        }

        .catalog-score span {
            color: var(--text-faint);
            font-size: .7rem;
        }

        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--text);
            font-size: .8rem;
            font-weight: 900;
            transition:
                color var(--transition),
                gap var(--transition);
        }

        .text-link:hover {
            gap: 11px;
            color: var(--primary);
        }

        .no-results {
            display: none;
            grid-column: 1 / -1;
            padding: 45px 24px;
            color: var(--text-soft);
            background: var(--surface);
            border: 1px dashed var(--border-strong);
            border-radius: var(--radius-lg);
            text-align: center;
        }

        .no-results.is-visible {
            display: block;
        }

        .ranking-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
            gap: 24px;
        }

        .ranking-list,
        .insight-panel {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .ranking-item {
            display: grid;
            grid-template-columns: 58px minmax(0, 1fr) auto;
            gap: 19px;
            align-items: center;
            padding: 21px 24px;
            border-bottom: 1px solid var(--border);
            transition: background-color var(--transition);
        }

        .ranking-item:last-child {
            border-bottom: 0;
        }

        .ranking-item:hover {
            background: var(--surface-hover);
        }

        .ranking-number {
            color: var(--text-faint);
            font-size: 1.55rem;
            font-weight: 950;
            letter-spacing: -.06em;
        }

        .ranking-item:first-child .ranking-number {
            color: var(--primary);
        }

        .ranking-name {
            font-size: 1rem;
            font-weight: 900;
        }

        .ranking-summary {
            margin-top: 4px;
            color: var(--text-faint);
            font-size: .76rem;
        }

        .ranking-trend {
            padding: 6px 10px;
            color: var(--success);
            background: rgba(91, 214, 162, 0.08);
            border: 1px solid rgba(91, 214, 162, 0.17);
            border-radius: 999px;
            font-size: .7rem;
            font-weight: 900;
            white-space: nowrap;
        }

        .insight-panel {
            padding: 27px;
            background:
                radial-gradient(circle at 100% 0, rgba(246, 200, 95, 0.1), transparent 17rem),
                var(--surface);
        }

        .insight-title {
            font-size: 1.32rem;
            font-weight: 950;
        }

        .insight-description {
            margin-top: 10px;
            color: var(--text-soft);
            font-size: .86rem;
        }

        .insight-blocks {
            display: grid;
            gap: 12px;
            margin-top: 23px;
        }

        .insight-block {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid var(--border);
            border-radius: 14px;
        }

        .insight-dot {
            flex: 0 0 auto;
            width: 10px;
            height: 10px;
            margin-top: 7px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 0 5px rgba(246, 200, 95, 0.08);
        }

        .insight-block strong {
            display: block;
            font-size: .86rem;
        }

        .insight-block p {
            margin: 4px 0 0;
            color: var(--text-faint);
            font-size: .75rem;
        }

        .journey {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .journey::before {
            position: absolute;
            top: 36px;
            right: 10%;
            left: 10%;
            height: 1px;
            content: "";
            background: linear-gradient(90deg, transparent, rgba(246, 200, 95, .42), transparent);
        }

        .journey-step {
            position: relative;
            padding: 0 18px 22px;
            text-align: center;
        }

        .journey-index {
            position: relative;
            z-index: 2;
            display: grid;
            width: 72px;
            height: 72px;
            margin: 0 auto;
            place-items: center;
            color: #11131a;
            background: var(--primary);
            border: 9px solid var(--background);
            border-radius: 50%;
            font-weight: 950;
            box-shadow: 0 0 0 1px rgba(246, 200, 95, 0.25);
        }

        .journey-step h3 {
            margin: 19px 0 0;
            font-size: 1.05rem;
            font-weight: 900;
        }

        .journey-step p {
            margin: 8px 0 0;
            color: var(--text-soft);
            font-size: .82rem;
        }

        .data-strip {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            background:
                linear-gradient(135deg, rgba(246, 200, 95, 0.08), transparent 46%),
                var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .data-item {
            padding: 31px 25px;
            border-right: 1px solid var(--border);
        }

        .data-item:last-child {
            border-right: 0;
        }

        .data-value {
            color: var(--primary);
            font-size: clamp(2rem, 4vw, 3.25rem);
            line-height: 1;
            font-weight: 950;
            letter-spacing: -.06em;
        }

        .data-label {
            margin-top: 12px;
            font-size: .9rem;
            font-weight: 900;
        }

        .data-note {
            margin-top: 6px;
            color: var(--text-faint);
            font-size: .74rem;
        }

        .editorial-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr .8fr;
            gap: 20px;
        }

        .editorial-card {
            position: relative;
            min-height: 430px;
            display: flex;
            align-items: flex-end;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            isolation: isolate;
            transition:
                transform var(--transition),
                border-color var(--transition),
                box-shadow var(--transition);
        }

        .editorial-card:hover {
            border-color: rgba(246, 200, 95, 0.32);
            box-shadow: var(--shadow-md);
            transform: translateY(-7px);
        }

        .editorial-card img {
            position: absolute;
            inset: 0;
            z-index: -2;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 600ms ease;
        }

        .editorial-card:hover img {
            transform: scale(1.06);
        }

        .editorial-card::after {
            position: absolute;
            inset: 0;
            z-index: -1;
            content: "";
            background: linear-gradient(0deg, rgba(5, 8, 14, .98) 4%, rgba(5, 8, 14, .46) 62%, rgba(5, 8, 14, .1));
        }

        .editorial-content {
            width: 100%;
            padding: 26px;
        }

        .editorial-tag {
            display: inline-flex;
            padding: 6px 9px;
            color: #10121a;
            background: var(--primary);
            border-radius: 999px;
            font-size: .67rem;
            font-weight: 950;
        }

        .editorial-title {
            margin: 15px 0 0;
            font-size: clamp(1.3rem, 2.3vw, 2rem);
            line-height: 1.25;
            font-weight: 950;
        }

        .editorial-summary {
            margin-top: 11px;
            color: #c6cede;
            font-size: .84rem;
        }

        .standard-layout {
            display: grid;
            grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
            gap: 55px;
            align-items: center;
        }

        .standard-visual {
            position: relative;
            min-height: 520px;
            padding: 30px;
            background:
                radial-gradient(circle at 20% 10%, rgba(124, 140, 255, 0.21), transparent 16rem),
                linear-gradient(145deg, #141b2c, #0b101b);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        .standard-orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 360px;
            height: 360px;
            border: 1px solid rgba(246, 200, 95, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .standard-orbit::before,
        .standard-orbit::after {
            position: absolute;
            inset: 48px;
            content: "";
            border: 1px dashed rgba(255, 255, 255, 0.12);
            border-radius: 50%;
        }

        .standard-orbit::after {
            inset: 108px;
            background: radial-gradient(circle, rgba(246, 200, 95, 0.3), rgba(246, 200, 95, 0.04) 60%, transparent 62%);
            border: 0;
        }

        .standard-core {
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 2;
            width: 112px;
            height: 112px;
            display: grid;
            place-items: center;
            color: #11131b;
            background: var(--primary);
            border-radius: 30px;
            box-shadow: 0 0 60px rgba(246, 200, 95, 0.28);
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .standard-core svg {
            width: 43px;
            height: 43px;
            transform: rotate(-45deg);
        }

        .orbit-tag {
            position: absolute;
            z-index: 3;
            padding: 9px 13px;
            color: var(--text);
            background: rgba(16, 21, 34, 0.92);
            border: 1px solid var(--border-strong);
            border-radius: 999px;
            font-size: .74rem;
            font-weight: 900;
            box-shadow: var(--shadow-sm);
        }

        .orbit-tag-one {
            top: 74px;
            left: 58px;
        }

        .orbit-tag-two {
            top: 115px;
            right: 36px;
        }

        .orbit-tag-three {
            right: 65px;
            bottom: 72px;
        }

        .orbit-tag-four {
            bottom: 105px;
            left: 35px;
        }

        .standard-list {
            display: grid;
            gap: 15px;
            margin-top: 29px;
        }

        .standard-item {
            display: grid;
            grid-template-columns: 45px minmax(0, 1fr);
            gap: 15px;
            align-items: start;
            padding: 17px;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid var(--border);
            border-radius: 15px;
            transition:
                background-color var(--transition),
                border-color var(--transition),
                transform var(--transition);
        }

        .standard-item:hover {
            background: rgba(255, 255, 255, 0.065);
            border-color: rgba(246, 200, 95, 0.22);
            transform: translateX(5px);
        }

        .standard-check {
            display: grid;
            width: 45px;
            height: 45px;
            place-items: center;
            color: var(--success);
            background: rgba(91, 214, 162, 0.09);
            border: 1px solid rgba(91, 214, 162, 0.16);
            border-radius: 13px;
        }

        .standard-item strong {
            display: block;
            font-size: .95rem;
        }

        .standard-item p {
            margin: 5px 0 0;
            color: var(--text-soft);
            font-size: .8rem;
        }

        .faq-layout {
            display: grid;
            grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
            gap: 55px;
            align-items: start;
        }

        .faq-intro {
            position: sticky;
            top: 110px;
        }

        .faq-contact {
            margin-top: 25px;
            padding: 19px;
            color: var(--text-soft);
            background: rgba(246, 200, 95, 0.065);
            border: 1px solid rgba(246, 200, 95, 0.15);
            border-radius: 16px;
            font-size: .83rem;
        }

        .faq-list {
            display: grid;
            gap: 12px;
        }

        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 17px;
            overflow: hidden;
            transition: border-color var(--transition);
        }

        .faq-item[open] {
            border-color: rgba(246, 200, 95, 0.27);
        }

        .faq-item summary {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 20px 22px;
            cursor: pointer;
            list-style: none;
            font-size: .95rem;
            font-weight: 900;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            display: grid;
            flex: 0 0 auto;
            width: 29px;
            height: 29px;
            place-items: center;
            color: var(--primary);
            background: rgba(246, 200, 95, 0.09);
            border-radius: 9px;
            content: "+";
            font-size: 1.2rem;
            transition: transform var(--transition);
        }

        .faq-item[open] summary::after {
            content: "−";
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 22px 21px;
            color: var(--text-soft);
            font-size: .85rem;
        }

        .cta-panel {
            position: relative;
            padding: 64px;
            background:
                radial-gradient(circle at 90% 15%, rgba(255, 107, 107, 0.25), transparent 22rem),
                radial-gradient(circle at 5% 100%, rgba(124, 140, 255, 0.25), transparent 25rem),
                linear-gradient(135deg, #181c2c, #101522);
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        .cta-panel::before {
            position: absolute;
            top: -180px;
            right: 18%;
            width: 450px;
            height: 450px;
            content: "";
            border: 1px solid rgba(246, 200, 95, 0.1);
            border-radius: 50%;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 40px;
            align-items: center;
        }

        .cta-title {
            max-width: 760px;
            margin: 0;
            font-size: clamp(2.25rem, 5vw, 4.4rem);
            line-height: 1.05;
            font-weight: 950;
            letter-spacing: -.05em;
        }

        .cta-copy {
            max-width: 700px;
            margin-top: 18px;
            color: #b9c1d2;
        }

        .site-footer {
            padding: 70px 0 28px;
            background: #05070d;
            border-top: 1px solid rgba(255, 255, 255, 0.055);
        }

        .footer-main {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr);
            gap: 60px;
            align-items: start;
        }

        .footer-description {
            max-width: 610px;
            margin-top: 19px;
            color: var(--text-faint);
            font-size: .84rem;
        }

        .footer-nav {
            display: flex;
            justify-content: flex-end;
        }

        .footer-nav-card {
            min-width: 210px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid var(--border);
            border-radius: 16px;
        }

        .footer-nav-title {
            color: var(--text-faint);
            font-size: .72rem;
            font-weight: 900;
            letter-spacing: .13em;
        }

        .footer-home-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 13px;
            padding: 12px 14px;
            color: var(--text);
            background: rgba(255, 255, 255, 0.045);
            border-radius: 11px;
            font-size: .85rem;
            font-weight: 900;
            transition:
                color var(--transition),
                background-color var(--transition);
        }

        .footer-home-link:hover {
            color: #10121a;
            background: var(--primary);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 48px;
            padding-top: 22px;
            color: #626c80;
            border-top: 1px solid var(--border);
            font-size: .74rem;
        }

        .footer-domain {
            color: #80899b;
        }

        .search-status {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 120;
            max-width: min(360px, calc(100vw - 44px));
            padding: 14px 17px;
            color: var(--text);
            background: rgba(16, 21, 34, 0.96);
            border: 1px solid var(--border-strong);
            border-radius: 14px;
            box-shadow: var(--shadow-md);
            opacity: 0;
            pointer-events: none;
            transform: translateY(18px);
            transition:
                opacity var(--transition),
                transform var(--transition);
        }

        .search-status.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1024px) {
            .header-inner {
                grid-template-columns: 1fr auto;
            }

            .segment-nav {
                display: none;
            }

            .hero {
                min-height: auto;
                padding-top: 155px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 46px;
            }

            .hero-title {
                max-width: 900px;
            }

            .quest-panel {
                max-width: 680px;
            }

            .feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .catalog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .ranking-layout,
            .standard-layout {
                grid-template-columns: 1fr;
            }

            .standard-visual {
                min-height: 480px;
            }

            .editorial-grid {
                grid-template-columns: 1fr 1fr;
            }

            .editorial-card:first-child {
                grid-column: 1 / -1;
            }

            .faq-layout {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .faq-intro {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .container-shell {
                width: min(calc(100% - 28px), var(--container));
            }

            .site-header {
                padding: 12px 0;
            }

            .brand-note,
            .header-search {
                display: none;
            }

            .menu-button {
                display: inline-flex;
            }

            .hero {
                padding: 128px 0 70px;
            }

            .hero::before {
                background:
                    linear-gradient(0deg, var(--background) 0%, rgba(7, 10, 18, .48) 45%, rgba(7, 10, 18, .76) 100%),
                    linear-gradient(90deg, rgba(7, 10, 18, .84), rgba(7, 10, 18, .35)),
                    url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1300&q=84") center / cover no-repeat;
            }

            .hero-title {
                font-size: clamp(2.65rem, 13vw, 4.6rem);
            }

            .hero-description {
                font-size: .98rem;
            }

            .section {
                padding: 76px 0;
            }

            .section-compact {
                padding: 55px 0;
            }

            .section-heading {
                align-items: start;
                flex-direction: column;
                gap: 14px;
            }

            .section-side-note {
                text-align: left;
            }

            .feature-grid,
            .catalog-grid {
                grid-template-columns: 1fr;
            }

            .poster-art {
                min-height: 250px;
            }

            .journey {
                grid-template-columns: 1fr 1fr;
            }

            .journey::before {
                display: none;
            }

            .data-strip {
                grid-template-columns: 1fr 1fr;
            }

            .data-item:nth-child(2) {
                border-right: 0;
            }

            .data-item:nth-child(-n+2) {
                border-bottom: 1px solid var(--border);
            }

            .editorial-grid {
                grid-template-columns: 1fr;
            }

            .editorial-card:first-child {
                grid-column: auto;
            }

            .editorial-card {
                min-height: 390px;
            }

            .standard-visual {
                min-height: 430px;
            }

            .standard-orbit {
                width: 310px;
                height: 310px;
            }

            .cta-panel {
                padding: 42px 28px;
            }

            .cta-inner {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer-nav {
                justify-content: flex-start;
            }

            .footer-nav-card {
                width: 100%;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        @media (max-width: 520px) {
            .brand-mark {
                width: 40px;
                height: 40px;
                border-radius: 12px;
            }

            .brand-name {
                font-size: 1rem;
            }

            .hero-actions {
                flex-direction: column;
            }

            .button-primary,
            .button-secondary {
                width: 100%;
            }

            .hero-trust {
                align-items: flex-start;
                flex-direction: column;
                gap: 11px;
            }

            .quest-panel {
                padding: 20px;
                border-radius: 22px;
            }

            .attribute-item {
                grid-template-columns: 68px minmax(0, 1fr) 30px;
            }

            .feature-grid {
                gap: 14px;
            }

            .ranking-item {
                grid-template-columns: 40px minmax(0, 1fr);
                padding: 18px;
            }

            .ranking-trend {
                grid-column: 2;
                width: fit-content;
            }

            .journey {
                grid-template-columns: 1fr;
            }

            .data-strip {
                grid-template-columns: 1fr;
            }

            .data-item {
                border-right: 0;
                border-bottom: 1px solid var(--border);
            }

            .data-item:last-child {
                border-bottom: 0;
            }

            .standard-visual {
                min-height: 390px;
                padding: 18px;
            }

            .standard-orbit {
                width: 265px;
                height: 265px;
            }

            .standard-core {
                width: 94px;
                height: 94px;
                border-radius: 26px;
            }

            .orbit-tag {
                font-size: .65rem;
            }

            .orbit-tag-one {
                top: 55px;
                left: 20px;
            }

            .orbit-tag-two {
                top: 90px;
                right: 12px;
            }

            .orbit-tag-three {
                right: 30px;
                bottom: 52px;
            }

            .orbit-tag-four {
                bottom: 82px;
                left: 10px;
            }

            .cta-panel {
                border-radius: 25px;
            }

            .cta-title {
                font-size: 2.35rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                transition-duration: .01ms !important;
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
            }
        }
