/* roulang page: index */
:root {
            --primary: #e5486d;
            --primary-dark: #bc284e;
            --primary-soft: #fff0f4;
            --secondary: #5b6df6;
            --secondary-dark: #3d4ed4;
            --accent: #18a37a;
            --warning: #f59e0b;
            --danger: #dc3545;
            --ink: #101827;
            --ink-soft: #334155;
            --muted: #667085;
            --surface: #ffffff;
            --surface-soft: #f6f7fb;
            --surface-dark: #101827;
            --border: #e5e9f2;
            --border-strong: #d6dce8;
            --shadow-sm: 0 8px 24px rgba(16, 24, 39, 0.07);
            --shadow-md: 0 18px 45px rgba(16, 24, 39, 0.11);
            --shadow-lg: 0 28px 70px rgba(16, 24, 39, 0.16);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 30px;
            --transition: 180ms ease;
            --section-space: 96px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--ink);
            background:
                radial-gradient(circle at 8% 4%, rgba(229, 72, 109, 0.09), transparent 25rem),
                radial-gradient(circle at 92% 20%, rgba(91, 109, 246, 0.08), transparent 27rem),
                var(--surface);
            font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body.nav-open {
            overflow: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
        }

        button,
        input,
        textarea,
        select {
            font: inherit;
        }

        button {
            border: 0;
        }

        img,
        svg {
            display: block;
            max-width: 100%;
        }

        ::selection {
            color: #fff;
            background: var(--primary);
        }

        :focus-visible {
            outline: 3px solid rgba(91, 109, 246, 0.3);
            outline-offset: 3px;
        }

        .container {
            max-width: 1200px;
        }

        .scroll-progress {
            position: fixed;
            inset: 0 auto auto 0;
            z-index: 1100;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            box-shadow: 0 1px 8px rgba(229, 72, 109, 0.35);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1020;
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid rgba(229, 233, 242, 0.9);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .navbar {
            min-height: 76px;
            padding: 10px 0;
        }

        .navbar-brand {
            display: inline-flex;
            align-items: center;
            min-width: 0;
            max-width: 730px;
            margin-right: 28px;
            color: var(--ink);
        }

        .brand-mark {
            position: relative;
            display: grid;
            flex: 0 0 auto;
            width: 46px;
            height: 46px;
            margin-right: 12px;
            color: #fff;
            place-items: center;
            border-radius: 15px;
            background: linear-gradient(145deg, var(--primary), var(--secondary));
            box-shadow: 0 10px 24px rgba(229, 72, 109, 0.24);
            overflow: hidden;
        }

        .brand-mark::after {
            position: absolute;
            right: -8px;
            bottom: -12px;
            width: 30px;
            height: 30px;
            content: "";
            border: 7px solid rgba(255, 255, 255, 0.24);
            border-radius: 50%;
        }

        .brand-mark i {
            position: relative;
            z-index: 1;
        }

        .brand-copy {
            min-width: 0;
        }

        .brand-title {
            display: block;
            overflow: hidden;
            color: var(--ink);
            font-size: 15px;
            font-weight: 800;
            line-height: 1.3;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .brand-subtitle {
            display: block;
            margin-top: 2px;
            color: var(--muted);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
        }

        .navbar-toggler {
            width: 44px;
            height: 44px;
            padding: 0;
            color: var(--ink);
            border: 1px solid var(--border);
            border-radius: 13px;
            background: var(--surface);
            box-shadow: none;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 4px rgba(91, 109, 246, 0.13);
        }

        .navbar-toggler-icon {
            width: 20px;
            height: 20px;
        }

        .navbar-nav {
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            position: relative;
            padding: 10px 18px !important;
            color: var(--ink-soft);
            font-size: 15px;
            font-weight: 700;
            border-radius: 999px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-dark);
            background: var(--primary-soft);
        }

        .nav-link.active::after {
            position: absolute;
            right: 18px;
            bottom: 5px;
            left: 18px;
            height: 2px;
            content: "";
            border-radius: 999px;
            background: var(--primary);
        }

        .status-strip {
            color: #dce4f4;
            background: var(--surface-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .status-inner {
            display: flex;
            align-items: center;
            min-height: 43px;
            gap: 14px;
        }

        .status-label {
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            gap: 7px;
            padding: 4px 10px;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.04em;
            border-radius: 7px;
            background: var(--primary);
        }

        .status-label i {
            font-size: 10px;
        }

        .status-text {
            overflow: hidden;
            margin: 0;
            font-size: 13px;
            font-weight: 500;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .status-text strong {
            color: #fff;
        }

        .hero {
            position: relative;
            padding: 86px 0 76px;
            overflow: hidden;
        }

        .hero::before {
            position: absolute;
            top: 18%;
            left: -120px;
            width: 310px;
            height: 310px;
            content: "";
            border: 1px solid rgba(229, 72, 109, 0.16);
            border-radius: 50%;
        }

        .hero::after {
            position: absolute;
            top: 50px;
            right: -100px;
            width: 330px;
            height: 330px;
            content: "";
            border-radius: 50%;
            background: radial-gradient(circle, rgba(91, 109, 246, 0.1), transparent 68%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 22px;
            padding: 7px 13px;
            color: var(--primary-dark);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.03em;
            border: 1px solid rgba(229, 72, 109, 0.19);
            border-radius: 999px;
            background: var(--primary-soft);
        }

        .eyebrow-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 0 5px rgba(24, 163, 122, 0.12);
        }

        .hero-title {
            max-width: 820px;
            margin: 0;
            color: var(--ink);
            font-size: clamp(2.35rem, 5.8vw, 4.75rem);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -0.045em;
        }

        .hero-title .accent-text {
            color: var(--primary);
            background: linear-gradient(100deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-lead {
            max-width: 720px;
            margin: 26px 0 0;
            color: var(--ink-soft);
            font-size: 18px;
            line-height: 1.9;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-top: 32px;
        }

        .btn-site {
            display: inline-flex;
            min-height: 50px;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 12px 22px;
            font-size: 15px;
            font-weight: 800;
            border-radius: 14px;
        }

        .btn-primary-site {
            color: #fff;
            border: 1px solid transparent;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 12px 28px rgba(229, 72, 109, 0.25);
        }

        .btn-primary-site:hover,
        .btn-primary-site:active {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 18px 34px rgba(229, 72, 109, 0.31);
        }

        .btn-secondary-site {
            color: var(--ink);
            border: 1px solid var(--border-strong);
            background: rgba(255, 255, 255, 0.82);
            box-shadow: var(--shadow-sm);
        }

        .btn-secondary-site:hover,
        .btn-secondary-site:active {
            color: var(--secondary-dark);
            border-color: rgba(91, 109, 246, 0.35);
            background: #fff;
            transform: translateY(-2px);
        }

        .hero-note {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            max-width: 680px;
            margin-top: 24px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
        }

        .hero-note i {
            margin-top: 4px;
            color: var(--accent);
        }

        .hero-panel {
            position: relative;
            z-index: 2;
            padding: 24px;
            border: 1px solid rgba(229, 233, 242, 0.95);
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, 0.88);
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(15px);
        }

        .panel-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--border);
        }

        .panel-title {
            margin: 0;
            font-size: 17px;
            font-weight: 900;
        }

        .risk-level {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 11px;
            color: #a92542;
            font-size: 12px;
            font-weight: 800;
            border-radius: 999px;
            background: #ffe5eb;
        }

        .risk-level::before {
            width: 7px;
            height: 7px;
            content: "";
            border-radius: 50%;
            background: var(--danger);
            box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
        }

        .check-list {
            display: grid;
            margin-top: 18px;
            gap: 12px;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px;
            border: 1px solid var(--border);
            border-radius: 15px;
            background: var(--surface-soft);
            transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
        }

        .check-item:hover {
            border-color: rgba(91, 109, 246, 0.25);
            background: #fff;
            transform: translateX(3px);
        }

        .check-icon {
            display: grid;
            flex: 0 0 auto;
            width: 34px;
            height: 34px;
            color: var(--secondary);
            border-radius: 11px;
            background: rgba(91, 109, 246, 0.1);
            place-items: center;
        }

        .check-copy strong {
            display: block;
            margin-bottom: 3px;
            color: var(--ink);
            font-size: 14px;
        }

        .check-copy span {
            display: block;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.6;
        }

        .panel-warning {
            display: flex;
            align-items: flex-start;
            gap: 11px;
            margin-top: 18px;
            padding: 14px 15px;
            color: #7d4d00;
            font-size: 13px;
            line-height: 1.65;
            border: 1px solid #f7dda5;
            border-radius: 14px;
            background: #fff9eb;
        }

        .panel-warning i {
            margin-top: 4px;
            color: var(--warning);
        }

        .facts-bar {
            position: relative;
            z-index: 3;
            margin-top: -1px;
            padding: 0 0 34px;
        }

        .facts-wrap {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: #fff;
            box-shadow: var(--shadow-md);
        }

        .fact-item {
            padding: 25px 26px;
            border-right: 1px solid var(--border);
        }

        .fact-item:last-child {
            border-right: 0;
        }

        .fact-value {
            display: block;
            margin-bottom: 5px;
            color: var(--ink);
            font-size: 22px;
            font-weight: 900;
        }

        .fact-value i {
            margin-right: 8px;
            color: var(--primary);
            font-size: 18px;
        }

        .fact-label {
            color: var(--muted);
            font-size: 13px;
            font-weight: 600;
        }

        .section {
            padding: var(--section-space) 0;
        }

        .section-soft {
            background: var(--surface-soft);
            border-top: 1px solid rgba(229, 233, 242, 0.8);
            border-bottom: 1px solid rgba(229, 233, 242, 0.8);
        }

        .section-dark {
            position: relative;
            color: #fff;
            background:
                radial-gradient(circle at 85% 15%, rgba(91, 109, 246, 0.28), transparent 26rem),
                radial-gradient(circle at 5% 100%, rgba(229, 72, 109, 0.22), transparent 28rem),
                var(--surface-dark);
            overflow: hidden;
        }

        .section-heading {
            max-width: 760px;
            margin-bottom: 42px;
        }

        .section-heading.centered {
            margin-right: auto;
            margin-left: auto;
            text-align: center;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 900;
            letter-spacing: 0.12em;
        }

        .section-kicker::before {
            width: 24px;
            height: 2px;
            content: "";
            border-radius: 99px;
            background: currentColor;
        }

        .section-title {
            margin: 0;
            color: var(--ink);
            font-size: clamp(1.85rem, 4vw, 2.85rem);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -0.035em;
        }

        .section-desc {
            margin: 16px 0 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.85;
        }

        .section-dark .section-title {
            color: #fff;
        }

        .section-dark .section-desc {
            color: #b9c5d8;
        }

        .editorial-grid {
            display: grid;
            grid-template-columns: 1.5fr 0.85fr 0.85fr;
            gap: 20px;
        }

        .editorial-card {
            position: relative;
            min-height: 310px;
            padding: 28px;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }

        .editorial-card:hover {
            border-color: rgba(229, 72, 109, 0.22);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .editorial-card.featured {
            display: flex;
            min-height: 420px;
            flex-direction: column;
            justify-content: flex-end;
            color: #fff;
            border-color: transparent;
            background:
                linear-gradient(180deg, rgba(16, 24, 39, 0.08), rgba(16, 24, 39, 0.94)),
                radial-gradient(circle at 75% 25%, rgba(229, 72, 109, 0.8), transparent 35%),
                linear-gradient(135deg, #5b6df6, #1c2940);
        }

        .editorial-card.featured::before {
            position: absolute;
            top: 28px;
            right: 28px;
            width: 120px;
            height: 120px;
            content: "";
            border: 22px solid rgba(255, 255, 255, 0.08);
            border-radius: 34px;
            transform: rotate(18deg);
        }

        .card-badge {
            display: inline-flex;
            width: max-content;
            align-items: center;
            gap: 7px;
            margin-bottom: 18px;
            padding: 6px 10px;
            color: var(--primary-dark);
            font-size: 12px;
            font-weight: 900;
            border-radius: 8px;
            background: var(--primary-soft);
        }

        .featured .card-badge {
            color: #fff;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
        }

        .editorial-card h3 {
            position: relative;
            z-index: 1;
            margin: 0 0 14px;
            color: var(--ink);
            font-size: 23px;
            font-weight: 900;
            line-height: 1.4;
        }

        .editorial-card.featured h3 {
            max-width: 520px;
            color: #fff;
            font-size: clamp(1.8rem, 3vw, 2.45rem);
        }

        .editorial-card p {
            position: relative;
            z-index: 1;
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.85;
        }

        .editorial-card.featured p {
            max-width: 590px;
            color: #d9e0ec;
        }

        .card-number {
            display: block;
            margin-bottom: 22px;
            color: rgba(91, 109, 246, 0.17);
            font-size: 62px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.08em;
        }

        .info-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
            gap: 28px;
        }

        .article-panel {
            padding: 34px;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .article-panel h3 {
            margin: 0 0 18px;
            font-size: 25px;
            font-weight: 900;
        }

        .article-panel p {
            margin: 0 0 17px;
            color: var(--ink-soft);
        }

        .article-panel p:last-child {
            margin-bottom: 0;
        }

        .highlight-box {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin: 26px 0;
            padding: 20px;
            border-left: 4px solid var(--primary);
            border-radius: 0 16px 16px 0;
            background: var(--primary-soft);
        }

        .highlight-box i {
            margin-top: 5px;
            color: var(--primary);
        }

        .highlight-box strong {
            display: block;
            margin-bottom: 4px;
            color: var(--primary-dark);
        }

        .highlight-box span {
            color: #754252;
            font-size: 14px;
        }

        .ranking-panel {
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .ranking-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 23px 24px;
            border-bottom: 1px solid var(--border);
        }

        .ranking-head h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 900;
        }

        .ranking-head span {
            color: var(--muted);
            font-size: 12px;
        }

        .ranking-list {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .ranking-item {
            display: grid;
            grid-template-columns: 38px 1fr auto;
            align-items: center;
            gap: 12px;
            padding: 18px 22px;
            border-bottom: 1px solid var(--border);
            transition: background-color var(--transition);
        }

        .ranking-item:last-child {
            border-bottom: 0;
        }

        .ranking-item:hover {
            background: var(--surface-soft);
        }

        .ranking-index {
            display: grid;
            width: 31px;
            height: 31px;
            color: var(--secondary);
            font-size: 13px;
            font-weight: 900;
            border-radius: 9px;
            background: rgba(91, 109, 246, 0.09);
            place-items: center;
        }

        .ranking-item:nth-child(1) .ranking-index {
            color: #a92542;
            background: #ffe5eb;
        }

        .ranking-copy strong {
            display: block;
            color: var(--ink);
            font-size: 14px;
        }

        .ranking-copy span {
            display: block;
            margin-top: 2px;
            color: var(--muted);
            font-size: 12px;
        }

        .risk-tag {
            padding: 4px 8px;
            color: #9b263f;
            font-size: 11px;
            font-weight: 800;
            border-radius: 7px;
            background: #fff0f3;
        }

        .risk-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .risk-card {
            position: relative;
            padding: 28px;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .risk-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .risk-card::after {
            position: absolute;
            top: -26px;
            right: -26px;
            width: 90px;
            height: 90px;
            content: "";
            border-radius: 50%;
            background: rgba(229, 72, 109, 0.06);
        }

        .risk-icon {
            display: grid;
            width: 52px;
            height: 52px;
            margin-bottom: 22px;
            color: var(--primary);
            font-size: 20px;
            border-radius: 16px;
            background: var(--primary-soft);
            place-items: center;
        }

        .risk-card:nth-child(2) .risk-icon,
        .risk-card:nth-child(5) .risk-icon {
            color: var(--secondary);
            background: rgba(91, 109, 246, 0.1);
        }

        .risk-card:nth-child(3) .risk-icon,
        .risk-card:nth-child(6) .risk-icon {
            color: var(--warning);
            background: #fff7e7;
        }

        .risk-card h3 {
            margin: 0 0 10px;
            font-size: 19px;
            font-weight: 900;
        }

        .risk-card p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }

        .process-wrap {
            position: relative;
        }

        .process-line {
            position: absolute;
            top: 42px;
            right: 12%;
            left: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            opacity: 0.24;
        }

        .process-grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .process-item {
            text-align: center;
        }

        .process-number {
            position: relative;
            z-index: 2;
            display: grid;
            width: 84px;
            height: 84px;
            margin: 0 auto 20px;
            color: #fff;
            font-size: 24px;
            font-weight: 900;
            border: 8px solid #fff;
            border-radius: 27px;
            background: linear-gradient(145deg, var(--secondary), var(--primary));
            box-shadow: var(--shadow-md);
            place-items: center;
        }

        .process-item:nth-child(3) .process-number,
        .process-item:nth-child(4) .process-number {
            background: linear-gradient(145deg, var(--accent), var(--secondary));
        }

        .process-item h3 {
            margin: 0 0 9px;
            font-size: 17px;
            font-weight: 900;
        }

        .process-item p {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.7;
        }

        .compare-table {
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .compare-row {
            display: grid;
            grid-template-columns: 1.1fr 1fr 1fr;
            border-bottom: 1px solid var(--border);
        }

        .compare-row:last-child {
            border-bottom: 0;
        }

        .compare-row > div {
            padding: 20px 24px;
            border-right: 1px solid var(--border);
        }

        .compare-row > div:last-child {
            border-right: 0;
        }

        .compare-row.compare-head {
            color: #fff;
            font-size: 14px;
            font-weight: 900;
            background: var(--surface-dark);
        }

        .compare-label {
            color: var(--ink);
            font-weight: 800;
        }

        .compare-safe,
        .compare-risk {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            color: var(--ink-soft);
            font-size: 14px;
        }

        .compare-safe i {
            margin-top: 5px;
            color: var(--accent);
        }

        .compare-risk i {
            margin-top: 5px;
            color: var(--danger);
        }

        .quick-news {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 24px;
        }

        .news-main {
            padding: 34px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(10px);
        }

        .news-main h3 {
            margin: 0 0 20px;
            color: #fff;
            font-size: 27px;
            font-weight: 900;
        }

        .news-list {
            display: grid;
            gap: 12px;
        }

        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            padding: 15px;
            color: #d8e1ef;
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.045);
            transition: background-color var(--transition), transform var(--transition);
        }

        .news-item:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.09);
            transform: translateX(3px);
        }

        .news-item i {
            margin-top: 6px;
            color: #ff8ba6;
        }

        .news-item strong {
            display: block;
            margin-bottom: 3px;
            color: #fff;
            font-size: 14px;
        }

        .news-item span {
            display: block;
            color: #aebbd0;
            font-size: 12px;
        }

        .safe-action-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 34px;
            color: var(--ink);
            border-radius: var(--radius-md);
            background: #fff;
            box-shadow: var(--shadow-lg);
        }

        .safe-action-card .safe-icon {
            display: grid;
            width: 58px;
            height: 58px;
            margin-bottom: 22px;
            color: #fff;
            font-size: 22px;
            border-radius: 18px;
            background: linear-gradient(145deg, var(--accent), #087b5c);
            box-shadow: 0 14px 30px rgba(24, 163, 122, 0.22);
            place-items: center;
        }

        .safe-action-card h3 {
            margin: 0 0 13px;
            font-size: 24px;
            font-weight: 900;
        }

        .safe-action-card p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }

        .safe-action-list {
            display: grid;
            margin: 25px 0 0;
            padding: 0;
            list-style: none;
            gap: 10px;
        }

        .safe-action-list li {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            color: var(--ink-soft);
            font-size: 13px;
        }

        .safe-action-list i {
            margin-top: 5px;
            color: var(--accent);
        }

        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion {
            display: grid;
            gap: 13px;
        }

        .accordion-item {
            overflow: hidden;
            border: 1px solid var(--border) !important;
            border-radius: 16px !important;
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .accordion-button {
            padding: 21px 23px;
            color: var(--ink);
            font-size: 16px;
            font-weight: 800;
            background: #fff;
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            color: var(--primary-dark);
            background: var(--primary-soft);
        }

        .accordion-button::after {
            width: 18px;
            height: 18px;
            background-size: 18px;
        }

        .accordion-body {
            padding: 0 23px 23px;
            color: var(--muted);
            line-height: 1.85;
        }

        .cta-section {
            padding: 20px 0 var(--section-space);
        }

        .cta-card {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 30px;
            padding: 50px;
            overflow: hidden;
            color: #fff;
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.16), transparent 15rem),
                linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            box-shadow: var(--shadow-lg);
        }

        .cta-card::before {
            position: absolute;
            top: -70px;
            right: 20%;
            width: 190px;
            height: 190px;
            content: "";
            border: 30px solid rgba(255, 255, 255, 0.06);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            margin: 0 0 12px;
            color: #fff;
            font-size: clamp(1.8rem, 4vw, 2.7rem);
            font-weight: 900;
            line-height: 1.25;
        }

        .cta-content p {
            max-width: 730px;
            margin: 0;
            color: rgba(255, 255, 255, 0.79);
        }

        .cta-button {
            position: relative;
            z-index: 1;
            color: var(--secondary-dark);
            background: #fff;
            box-shadow: 0 14px 35px rgba(9, 15, 32, 0.18);
        }

        .cta-button:hover {
            color: var(--primary-dark);
            background: #fff;
        }

        .site-footer {
            padding: 58px 0 26px;
            color: #abb6c8;
            background: #0b1220;
        }

        .footer-main {
            display: grid;
            grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.5fr);
            gap: 48px;
            padding-bottom: 40px;
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            color: #fff;
        }

        .footer-brand .brand-title {
            max-width: 680px;
            color: #fff;
        }

        .footer-desc {
            max-width: 720px;
            margin: 20px 0 0;
            color: #8f9db2;
            font-size: 14px;
        }

        .footer-label {
            display: block;
            margin-bottom: 16px;
            color: #fff;
            font-size: 14px;
            font-weight: 900;
        }

        .footer-links {
            display: grid;
            padding: 0;
            margin: 0;
            list-style: none;
            gap: 10px;
        }

        .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #9eabbe;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(3px);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-top: 24px;
            font-size: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.09);
        }

        .footer-disclaimer {
            max-width: 760px;
            margin: 0;
        }

        .footer-domain {
            flex: 0 0 auto;
            color: #d6deeb;
            font-weight: 700;
        }

        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 600ms ease, transform 600ms ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1199.98px) {
            :root {
                --section-space: 82px;
            }

            .navbar-brand {
                max-width: 650px;
            }

            .brand-title {
                max-width: 580px;
            }

            .editorial-grid {
                grid-template-columns: 1.25fr 0.75fr;
            }

            .editorial-card:last-child {
                grid-column: 1 / -1;
                min-height: auto;
            }
        }

        @media (max-width: 991.98px) {
            .navbar-brand {
                max-width: calc(100% - 62px);
                margin-right: 0;
            }

            .navbar-collapse {
                margin-top: 12px;
                padding: 14px;
                border: 1px solid var(--border);
                border-radius: 16px;
                background: #fff;
                box-shadow: var(--shadow-md);
            }

            .navbar-nav {
                align-items: stretch;
            }

            .nav-link {
                padding: 12px 15px !important;
            }

            .nav-link.active::after {
                display: none;
            }

            .hero {
                padding-top: 64px;
            }

            .hero-panel {
                margin-top: 44px;
            }

            .facts-wrap {
                grid-template-columns: repeat(2, 1fr);
            }

            .fact-item:nth-child(2) {
                border-right: 0;
            }

            .fact-item:nth-child(-n+2) {
                border-bottom: 1px solid var(--border);
            }

            .info-layout,
            .quick-news {
                grid-template-columns: 1fr;
            }

            .risk-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-line {
                display: none;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 38px;
            }

            .cta-card {
                grid-template-columns: 1fr;
                padding: 42px;
            }

            .cta-button {
                width: max-content;
            }
        }

        @media (max-width: 767.98px) {
            :root {
                --section-space: 68px;
            }

            body {
                font-size: 15px;
            }

            .navbar {
                min-height: 68px;
            }

            .brand-mark {
                width: 42px;
                height: 42px;
                border-radius: 13px;
            }

            .brand-title {
                font-size: 13px;
            }

            .brand-subtitle {
                display: none;
            }

            .status-inner {
                align-items: flex-start;
                padding: 10px 0;
            }

            .status-text {
                overflow: visible;
                white-space: normal;
            }

            .hero {
                padding: 52px 0 58px;
            }

            .hero-title {
                letter-spacing: -0.035em;
            }

            .hero-lead {
                font-size: 16px;
            }

            .hero-actions {
                align-items: stretch;
                flex-direction: column;
            }

            .btn-site {
                width: 100%;
            }

            .facts-wrap,
            .editorial-grid,
            .risk-grid,
            .process-grid {
                grid-template-columns: 1fr;
            }

            .fact-item {
                border-right: 0;
                border-bottom: 1px solid var(--border);
            }

            .fact-item:nth-child(2) {
                border-bottom: 1px solid var(--border);
            }

            .fact-item:last-child {
                border-bottom: 0;
            }

            .editorial-card:last-child {
                grid-column: auto;
            }

            .editorial-card.featured {
                min-height: 390px;
            }

            .article-panel,
            .news-main,
            .safe-action-card {
                padding: 26px;
            }

            .compare-table {
                overflow-x: auto;
            }

            .compare-row {
                min-width: 760px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }

            .cta-card {
                padding: 34px 26px;
            }

            .cta-button {
                width: 100%;
            }
        }

        @media (max-width: 519.98px) {
            .container {
                padding-right: 18px;
                padding-left: 18px;
            }

            .navbar-brand {
                max-width: calc(100% - 54px);
            }

            .brand-copy {
                max-width: calc(100vw - 124px);
            }

            .brand-title {
                max-width: 100%;
            }

            .status-label {
                display: none;
            }

            .hero-title {
                font-size: 2.24rem;
            }

            .hero-panel {
                padding: 18px;
                border-radius: 22px;
            }

            .panel-head {
                align-items: flex-start;
                flex-direction: column;
            }

            .section-heading {
                margin-bottom: 30px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .editorial-card,
            .risk-card {
                padding: 23px;
            }

            .editorial-card.featured {
                min-height: 420px;
            }

            .ranking-item {
                grid-template-columns: 34px 1fr;
            }

            .risk-tag {
                display: none;
            }

            .process-number {
                width: 76px;
                height: 76px;
            }

            .accordion-button {
                padding: 18px;
                font-size: 15px;
            }

            .accordion-body {
                padding: 0 18px 20px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }
