/* roulang page: index */
:root {
      --primary: #9B4D68;
      --primary-dark: #4A2433;
      --secondary: #D8896F;
      --accent: #F2B36D;
      --bg: #FFF8F4;
      --surface: #FFFFFF;
      --surface-soft: #F8ECE8;
      --text: #2B1B21;
      --muted: #7B626B;
      --border: rgba(74, 36, 51, 0.12);
      --border-strong: rgba(155, 77, 104, 0.28);
      --shadow: 0 18px 50px rgba(74, 36, 51, 0.12);
      --shadow-hover: 0 26px 70px rgba(74, 36, 51, 0.18);
      --gradient: linear-gradient(135deg, #9B4D68 0%, #D8896F 52%, #F2B36D 100%);
      --dark-gradient: linear-gradient(135deg, #3A1E2B 0%, #6E354C 55%, #9B4D68 100%);
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(216, 137, 111, 0.17), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(155, 77, 104, 0.13), transparent 24%),
        var(--bg);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, background .22s ease, transform .22s ease, border-color .22s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    .navbar-toggler:focus {
      outline: 3px solid rgba(242, 179, 109, 0.55);
      outline-offset: 3px;
      box-shadow: none;
    }

    .container {
      max-width: var(--container);
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section-tight {
      padding: 72px 0;
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(155, 77, 104, 0.10);
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gradient);
      box-shadow: 0 0 0 5px rgba(216, 137, 111, 0.16);
    }

    h1,
    h2,
    h3,
    h4 {
      color: var(--text);
      letter-spacing: -0.03em;
      margin: 0;
    }

    h1 {
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.15;
      font-weight: 800;
    }

    h2 {
      font-size: clamp(28px, 3.4vw, 40px);
      line-height: 1.22;
      font-weight: 780;
    }

    h3 {
      font-size: 22px;
      line-height: 1.35;
      font-weight: 760;
    }

    p {
      color: var(--muted);
      margin: 0;
    }

    .lead-text {
      font-size: 18px;
      line-height: 1.85;
      color: #6e5360;
    }

    .top-notice {
      background: rgba(74, 36, 51, 0.94);
      color: rgba(255, 248, 244, .9);
      font-size: 14px;
      padding: 9px 0;
    }

    .top-notice strong {
      color: #FFE1B6;
      font-weight: 800;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 248, 244, 0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .navbar {
      min-height: 78px;
      padding: 12px 0;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background: var(--gradient);
      box-shadow: 0 14px 26px rgba(155, 77, 104, .24);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 0;
      min-width: 0;
    }

    .brand-title {
      font-weight: 850;
      color: var(--primary-dark);
      font-size: 16px;
      line-height: 1.25;
      white-space: nowrap;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.25;
    }

    .navbar-nav {
      gap: 8px;
      align-items: center;
    }

    .nav-link {
      color: #4e3340;
      font-weight: 700;
      padding: 10px 15px !important;
      border-radius: 999px;
      position: relative;
    }

    .nav-link:hover {
      color: var(--primary);
      background: rgba(155, 77, 104, 0.08);
    }

    .nav-link.active {
      color: var(--primary);
      background: rgba(155, 77, 104, 0.12);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 5px;
      height: 2px;
      border-radius: 2px;
      background: var(--gradient);
    }

    .navbar-toggler {
      border: 1px solid var(--border-strong);
      background: rgba(255, 255, 255, .78);
      border-radius: 14px;
      padding: 9px 11px;
    }

    .navbar-toggler-icon {
      background-image: none;
      width: 22px;
      height: 16px;
      position: relative;
      border-top: 2px solid var(--primary-dark);
      border-bottom: 2px solid var(--primary-dark);
    }

    .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      left: 0;
      top: 5px;
      width: 22px;
      height: 2px;
      background: var(--primary-dark);
      border-radius: 2px;
    }

    .btn-brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 999px;
      background: var(--gradient);
      color: #fff;
      font-weight: 800;
      padding: 13px 22px;
      box-shadow: 0 14px 34px rgba(155, 77, 104, 0.24);
      transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
      white-space: nowrap;
    }

    .btn-brand:hover {
      color: #fff;
      transform: translateY(-2px);
      filter: saturate(1.05);
      box-shadow: 0 19px 42px rgba(155, 77, 104, 0.32);
    }

    .btn-soft {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      color: var(--primary);
      background: rgba(255, 255, 255, 0.72);
      font-weight: 800;
      padding: 12px 21px;
      transition: transform .22s ease, background .22s ease, border-color .22s ease;
    }

    .btn-soft:hover {
      color: var(--primary-dark);
      background: var(--surface-soft);
      border-color: rgba(155, 77, 104, .42);
      transform: translateY(-2px);
    }

    .mega-wrap {
      position: relative;
    }

    .mega-panel {
      position: absolute;
      right: 0;
      top: calc(100% + 16px);
      width: 620px;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 26px;
      background: rgba(255, 255, 255, .96);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    }

    .mega-wrap:hover .mega-panel,
    .mega-wrap:focus-within .mega-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mega-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .mega-item {
      padding: 15px;
      border-radius: 18px;
      background: var(--bg);
      border: 1px solid transparent;
      min-height: 104px;
    }

    .mega-item:hover {
      border-color: var(--border-strong);
      transform: translateY(-2px);
    }

    .mega-dot {
      width: 28px;
      height: 28px;
      border-radius: 10px;
      background: rgba(155, 77, 104, .12);
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .mega-item strong {
      display: block;
      color: var(--text);
      margin-bottom: 3px;
    }

    .mega-item span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .mega-cta {
      margin-top: 12px;
      border-radius: 20px;
      padding: 16px;
      background: var(--dark-gradient);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .mega-cta p {
      color: rgba(255, 255, 255, .78);
      font-size: 13px;
    }

    .hero {
      padding: 82px 0 72px;
      overflow: hidden;
    }

    .hero-copy {
      max-width: 680px;
    }

    .hero h1 span {
      color: var(--primary);
      position: relative;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(216, 137, 111, 0.14);
      color: #7b3c50;
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(216, 137, 111, 0.18);
    }

    .badge-pill.dark {
      background: var(--gradient);
      color: #fff;
      border-color: transparent;
    }

    .product-board {
      position: relative;
      padding: 22px;
      border-radius: 34px;
      background: rgba(255, 255, 255, .84);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transform: rotate(1deg);
    }

    .product-board::before {
      content: "";
      position: absolute;
      inset: 18px -14px -14px 18px;
      border-radius: 34px;
      background: rgba(155, 77, 104, .08);
      z-index: -1;
    }

    .board-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .toolbar-dots {
      display: flex;
      gap: 7px;
    }

    .toolbar-dots i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: block;
      background: var(--secondary);
    }

    .toolbar-dots i:nth-child(2) {
      background: var(--accent);
    }

    .toolbar-dots i:nth-child(3) {
      background: var(--primary);
    }

    .board-main {
      border-radius: 26px;
      padding: 24px;
      background:
        radial-gradient(circle at top right, rgba(242, 179, 109, .22), transparent 32%),
        linear-gradient(180deg, #fff, #fff6f1);
      border: 1px solid rgba(155, 77, 104, .12);
    }

    .board-list {
      display: grid;
      gap: 12px;
      margin: 20px 0;
    }

    .board-row {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 13px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(74, 36, 51, .08);
    }

    .row-icon {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background: rgba(155, 77, 104, .10);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
    }

    .board-row strong {
      display: block;
      color: var(--text);
      line-height: 1.25;
    }

    .board-row small {
      color: var(--muted);
      font-weight: 600;
    }

    .board-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .stat-mini {
      padding: 14px 12px;
      border-radius: 18px;
      background: rgba(155, 77, 104, .08);
      text-align: center;
    }

    .stat-mini b {
      display: block;
      font-size: 20px;
      color: var(--primary-dark);
      line-height: 1.2;
    }

    .stat-mini span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      font-weight: 700;
    }

    .card-modern {
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: 0 10px 34px rgba(74, 36, 51, .08);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
      overflow: hidden;
      height: 100%;
    }

    .card-modern:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--border-strong);
    }

    .feature-shell {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 22px;
      align-items: stretch;
    }

    .feature-index {
      padding: 18px;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: 0 12px 34px rgba(74, 36, 51, .08);
    }

    .feature-tab {
      display: flex;
      gap: 14px;
      padding: 17px;
      border-radius: 20px;
      border: 1px solid transparent;
      margin-bottom: 10px;
      background: transparent;
    }

    .feature-tab:hover,
    .feature-tab.active {
      background: var(--surface-soft);
      border-color: rgba(155, 77, 104, .16);
      transform: translateX(4px);
    }

    .feature-num {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(155, 77, 104, .10);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .feature-display {
      padding: 34px;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at top right, rgba(242, 179, 109, .24), transparent 34%),
        var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      min-height: 460px;
    }

    .feature-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 26px 0;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
      align-items: stretch;
    }

    .dash-block {
      border-radius: 24px;
      padding: 22px;
      background: rgba(248, 236, 232, .75);
      border: 1px solid rgba(155, 77, 104, .12);
    }

    .dash-chart {
      min-height: 170px;
      background:
        linear-gradient(135deg, rgba(155, 77, 104, .88), rgba(216, 137, 111, .78)),
        repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,.18) 22px 23px);
      border-radius: 22px;
      position: relative;
      overflow: hidden;
    }

    .dash-chart::after {
      content: "字幕 · 标签 · 专题";
      position: absolute;
      left: 22px;
      bottom: 18px;
      color: rgba(255,255,255,.88);
      font-weight: 900;
      letter-spacing: .04em;
    }

    .scene-list {
      display: grid;
      gap: 16px;
    }

    .scene-item {
      display: grid;
      grid-template-columns: 58px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 23px;
      border-radius: 24px;
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: 0 10px 32px rgba(74, 36, 51, .07);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .scene-item:hover {
      transform: translateX(6px);
      border-color: var(--border-strong);
      box-shadow: var(--shadow);
    }

    .scene-no {
      width: 58px;
      height: 58px;
      border-radius: 20px;
      background: var(--gradient);
      color: #fff;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 13px 26px rgba(155, 77, 104, .22);
    }

    .scene-arrow {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--surface-soft);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
    }

    .category-card {
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .category-card::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      right: -60px;
      top: -60px;
      border-radius: 50%;
      background: rgba(242, 179, 109, .24);
    }

    .category-icon {
      width: 56px;
      height: 56px;
      border-radius: 20px;
      background: var(--gradient);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .feedback-card {
      padding: 30px;
    }

    .quote-mark {
      width: 46px;
      height: 46px;
      border-radius: 18px;
      background: rgba(155, 77, 104, .10);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 24px;
      margin-bottom: 18px;
    }

    .data-stack {
      display: grid;
      gap: 14px;
    }

    .data-badge {
      padding: 22px;
      border-radius: 24px;
      background: var(--dark-gradient);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .data-badge:nth-child(2) {
      background: linear-gradient(135deg, #8D455E, #D8896F);
    }

    .data-badge:nth-child(3) {
      background: linear-gradient(135deg, #6E354C, #F2B36D);
    }

    .data-badge b {
      display: block;
      font-size: 30px;
      line-height: 1.1;
    }

    .data-badge span {
      color: rgba(255,255,255,.78);
      font-weight: 700;
    }

    .pricing-section {
      background:
        radial-gradient(circle at 12% 20%, rgba(155, 77, 104, .12), transparent 26%),
        linear-gradient(180deg, rgba(248, 236, 232, .62), rgba(255, 248, 244, .86));
    }

    .price-card {
      padding: 30px;
      position: relative;
    }

    .price-card.recommended {
      border-color: rgba(242, 179, 109, .58);
      transform: translateY(-14px);
    }

    .price-card.recommended:hover {
      transform: translateY(-20px);
    }

    .recommend-label {
      position: absolute;
      top: 18px;
      right: 18px;
      border-radius: 999px;
      padding: 6px 11px;
      background: rgba(242, 179, 109, .18);
      color: #86592c;
      font-size: 12px;
      font-weight: 900;
    }

    .price {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      margin: 20px 0;
      color: var(--primary-dark);
    }

    .price b {
      font-size: 38px;
      line-height: 1;
    }

    .benefit-list {
      list-style: none;
      padding: 0;
      margin: 22px 0 28px;
      display: grid;
      gap: 12px;
    }

    .benefit-list li {
      display: flex;
      gap: 10px;
      color: #5a424d;
      font-weight: 650;
    }

    .benefit-list li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(155, 77, 104, .10);
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      font-size: 13px;
      font-weight: 900;
      margin-top: 3px;
    }

    .subscribe-card {
      padding: 34px;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at top right, rgba(242, 179, 109, .26), transparent 34%),
        var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .subscribe-form {
      display: flex;
      gap: 12px;
      margin-top: 22px;
    }

    .form-control.custom-input {
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 14px 18px;
      background: #fffaf7;
      color: var(--text);
      box-shadow: none;
    }

    .form-control.custom-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(155, 77, 104, .13);
      background: #fff;
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      border: 1px solid var(--border);
      border-radius: 22px !important;
      overflow: hidden;
      background: rgba(255, 255, 255, .86);
      box-shadow: 0 10px 26px rgba(74, 36, 51, .06);
    }

    .accordion-button {
      padding: 20px 22px;
      color: var(--text);
      font-weight: 800;
      background: rgba(255, 255, 255, .88);
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary);
      background: var(--surface-soft);
    }

    .accordion-button::after {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background-color: rgba(155, 77, 104, .10);
      background-position: center;
      padding: 8px;
    }

    .accordion-body {
      padding: 0 22px 22px;
      color: var(--muted);
    }

    .cta-band {
      padding: 46px;
      border-radius: 34px;
      background: var(--dark-gradient);
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .cta-band::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(242, 179, 109, .20);
      right: -80px;
      top: -90px;
    }

    .cta-band h2,
    .cta-band p {
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .cta-band p {
      color: rgba(255, 255, 255, .78);
    }

    .site-footer {
      padding: 76px 0 28px;
      background: var(--dark-gradient);
      color: rgba(255, 248, 244, .78);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      color: #fff;
      font-weight: 900;
    }

    .footer-logo .brand-icon {
      box-shadow: none;
    }

    .footer-title {
      color: #fff;
      font-weight: 850;
      margin-bottom: 16px;
      font-size: 16px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 248, 244, .72);
      font-weight: 650;
    }

    .footer-links a:hover {
      color: #FFE1B6;
      transform: translateX(3px);
    }

    .footer-note {
      border-top: 1px solid rgba(255,255,255,.13);
      margin-top: 42px;
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 14px;
      color: rgba(255, 248, 244, .62);
    }

    @media (max-width: 1199px) {
      .brand-title {
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .nav-link {
        padding: 10px 12px !important;
      }
    }

    @media (max-width: 991px) {
      .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, .95);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .navbar-nav {
        align-items: stretch;
      }

      .nav-cta {
        margin-top: 12px;
        width: 100%;
      }

      .nav-cta .btn-brand {
        width: 100%;
      }

      .mega-panel {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        box-shadow: none;
        display: none;
      }

      .mega-wrap:hover .mega-panel,
      .mega-wrap:focus-within .mega-panel {
        display: block;
      }

      .hero {
        padding-top: 58px;
      }

      .product-board {
        margin-top: 34px;
        transform: rotate(0);
      }

      .feature-shell {
        grid-template-columns: 1fr;
      }

      .dashboard-grid {
        grid-template-columns: 1fr;
      }

      .price-card.recommended {
        transform: none;
      }

      .price-card.recommended:hover {
        transform: translateY(-6px);
      }
    }

    @media (max-width: 767px) {
      .section,
      .section-tight {
        padding: 58px 0;
      }

      .top-notice {
        font-size: 13px;
      }

      .brand-title {
        max-width: 190px;
      }

      .hero-actions,
      .subscribe-form {
        flex-direction: column;
      }

      .hero-actions a,
      .subscribe-form .btn-brand {
        width: 100%;
      }

      .board-row {
        grid-template-columns: 42px 1fr;
      }

      .board-row .badge-pill {
        grid-column: 1 / -1;
        justify-content: center;
      }

      .board-stats {
        grid-template-columns: 1fr;
      }

      .feature-display {
        padding: 24px;
        min-height: auto;
      }

      .scene-item {
        grid-template-columns: 48px 1fr;
        padding: 20px;
      }

      .scene-no {
        width: 48px;
        height: 48px;
      }

      .scene-arrow {
        grid-column: 1 / -1;
        width: 100%;
        border-radius: 16px;
      }

      .mega-grid {
        grid-template-columns: 1fr;
      }

      .cta-band {
        padding: 30px 24px;
      }
    }

    @media (max-width: 520px) {
      body {
        font-size: 15px;
      }

      .navbar {
        min-height: 68px;
      }

      .brand-icon {
        width: 38px;
        height: 38px;
      }

      .brand-title {
        font-size: 14px;
        max-width: 160px;
      }

      .brand-sub {
        display: none;
      }

      .category-card,
      .feedback-card,
      .price-card,
      .subscribe-card {
        padding: 24px;
      }

      .footer-note {
        flex-direction: column;
      }
    }

/* roulang page: category1 */
:root {
      --primary: #9B4D68;
      --primary-dark: #4A2433;
      --secondary: #D8896F;
      --accent: #F2B36D;
      --bg: #FFF8F4;
      --surface: #FFFFFF;
      --surface-soft: #F8ECE8;
      --surface-warm: #FFF1EA;
      --text: #2B1B21;
      --muted: #7B626B;
      --border: rgba(74, 36, 51, 0.12);
      --border-strong: rgba(155, 77, 104, 0.28);
      --shadow: 0 18px 50px rgba(74, 36, 51, 0.12);
      --shadow-hover: 0 24px 70px rgba(74, 36, 51, 0.18);
      --gradient: linear-gradient(135deg, #9B4D68 0%, #D8896F 52%, #F2B36D 100%);
      --dark-gradient: linear-gradient(135deg, #3A1E2B 0%, #6E354C 55%, #9B4D68 100%);
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --container: 1200px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(242, 179, 109, 0.18), transparent 34%),
        radial-gradient(circle at 90% 8%, rgba(155, 77, 104, 0.14), transparent 32%),
        var(--bg);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    a:hover {
      color: var(--primary);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    .accordion-button:focus-visible {
      outline: 3px solid rgba(242, 179, 109, 0.75);
      outline-offset: 3px;
      box-shadow: 0 0 0 5px rgba(155, 77, 104, 0.12);
    }

    .container {
      max-width: var(--container);
    }

    .section {
      padding: 88px 0;
      position: relative;
    }

    .section-tight {
      padding: 64px 0;
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker,
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
      box-shadow: 0 10px 26px rgba(74, 36, 51, 0.06);
    }

    h1,
    h2,
    h3,
    h4 {
      color: var(--text);
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(34px, 5vw, 52px);
      line-height: 1.15;
      font-weight: 800;
      margin: 18px 0 18px;
    }

    h2 {
      font-size: clamp(28px, 3.4vw, 40px);
      line-height: 1.22;
      font-weight: 800;
      margin: 12px 0 14px;
    }

    h3 {
      font-size: 22px;
      line-height: 1.35;
      font-weight: 760;
      margin-bottom: 10px;
    }

    p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .notice-bar {
      background: rgba(74, 36, 51, 0.92);
      color: rgba(255, 248, 244, 0.92);
      font-size: 14px;
      padding: 9px 0;
    }

    .notice-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      text-align: center;
    }

    .notice-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      padding: 2px 10px;
      border-radius: 999px;
      color: #4A2433;
      background: var(--accent);
      font-weight: 800;
      line-height: 1.4;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 248, 244, 0.9);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 10px 30px rgba(74, 36, 51, 0.05);
    }

    .navbar {
      min-height: 78px;
      padding: 12px 0;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 250px;
    }

    .brand-icon {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      background: var(--gradient);
      box-shadow: 0 12px 28px rgba(155, 77, 104, 0.28);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.18;
    }

    .brand-title {
      font-weight: 850;
      color: var(--primary-dark);
      font-size: 17px;
      letter-spacing: -0.01em;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px;
    }

    .navbar-nav {
      align-items: center;
      gap: 6px;
    }

    .nav-link {
      position: relative;
      color: var(--text);
      font-weight: 700;
      padding: 10px 14px !important;
      border-radius: 999px;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 5px;
      height: 2px;
      border-radius: 999px;
      background: var(--gradient);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .22s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary);
      background: rgba(155, 77, 104, 0.09);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      transform: scaleX(1);
    }

    .navbar-toggler {
      border: 1px solid var(--border-strong);
      background: rgba(255, 255, 255, 0.78);
      border-radius: 14px;
      padding: 10px 12px;
      box-shadow: 0 8px 20px rgba(74, 36, 51, 0.08);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(155, 77, 104, 0.14);
    }

    .navbar-toggler-icon {
      width: 1.3em;
      height: 1.3em;
      background-image: none;
      position: relative;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon {
      border-top: 2px solid var(--primary-dark);
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
    }

    .navbar-toggler-icon::before {
      top: -7px;
    }

    .navbar-toggler-icon::after {
      top: 7px;
    }

    .mega-wrap {
      position: relative;
    }

    .mega-panel {
      position: absolute;
      top: calc(100% + 18px);
      right: 0;
      width: min(680px, 92vw);
      padding: 18px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-hover);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .mega-wrap:hover .mega-panel,
    .mega-wrap:focus-within .mega-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mega-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .mega-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 10px 12px;
      padding: 16px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(248, 236, 232, 0.82), rgba(255, 255, 255, 0.96));
      border: 1px solid var(--border);
    }

    .mega-item:hover {
      transform: translateY(-3px);
      border-color: var(--border-strong);
      box-shadow: 0 14px 30px rgba(74, 36, 51, 0.1);
    }

    .mega-dot {
      grid-row: span 2;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 850;
      background: var(--gradient);
    }

    .mega-item strong {
      color: var(--primary-dark);
      font-size: 15px;
    }

    .mega-item span:last-child {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .mega-cta {
      margin-top: 14px;
      padding: 16px;
      border-radius: 22px;
      background: var(--dark-gradient);
      color: rgba(255, 255, 255, 0.92);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .mega-cta strong {
      display: block;
      color: #fff;
      margin-bottom: 2px;
    }

    .mega-cta span {
      color: rgba(255, 255, 255, 0.74);
      font-size: 13px;
    }

    .btn-brand,
    .btn-soft,
    .btn-line {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 13px 22px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
      white-space: nowrap;
    }

    .btn-brand {
      color: #fff;
      background: var(--gradient);
      box-shadow: 0 14px 32px rgba(155, 77, 104, 0.28);
    }

    .btn-brand:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(155, 77, 104, 0.34);
      filter: saturate(1.05);
    }

    .btn-soft {
      color: var(--primary);
      background: rgba(255, 255, 255, 0.76);
      border-color: var(--border-strong);
    }

    .btn-soft:hover {
      color: var(--primary-dark);
      background: var(--surface-soft);
      transform: translateY(-2px);
      border-color: rgba(155, 77, 104, 0.38);
    }

    .btn-line {
      color: var(--primary-dark);
      background: rgba(255, 248, 244, 0.72);
      border-color: var(--border);
      padding: 11px 18px;
      font-size: 14px;
    }

    .btn-line:hover {
      background: rgba(155, 77, 104, 0.09);
      border-color: var(--border-strong);
      color: var(--primary);
      transform: translateY(-2px);
    }

    .badge-soft,
    .badge-hot,
    .badge-muted {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      border: 1px solid transparent;
    }

    .badge-soft {
      background: rgba(216, 137, 111, 0.16);
      color: var(--primary-dark);
      border-color: rgba(216, 137, 111, 0.22);
    }

    .badge-hot {
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 10px 24px rgba(155, 77, 104, 0.18);
    }

    .badge-muted {
      color: var(--muted);
      background: rgba(255, 255, 255, 0.72);
      border-color: var(--border);
    }

    .hero-category {
      padding: 76px 0 64px;
      position: relative;
      overflow: hidden;
    }

    .hero-category::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 22%, rgba(155, 77, 104, 0.12), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(242, 179, 109, 0.17), transparent 26%);
      pointer-events: none;
    }

    .hero-copy,
    .hero-panel {
      position: relative;
      z-index: 1;
    }

    .hero-lead {
      max-width: 700px;
      color: var(--muted);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .trust-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .hero-panel {
      border-radius: 34px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 236, 232, 0.82));
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      padding: 24px;
      transform: rotate(1deg);
    }

    .panel-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 16px;
    }

    .toolbar-dots {
      display: flex;
      gap: 7px;
    }

    .toolbar-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(155, 77, 104, 0.28);
    }

    .toolbar-dots span:nth-child(2) {
      background: rgba(216, 137, 111, 0.42);
    }

    .toolbar-dots span:nth-child(3) {
      background: rgba(242, 179, 109, 0.65);
    }

    .category-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 18px;
    }

    .stat-box {
      padding: 16px 14px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid var(--border);
    }

    .stat-box strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .stat-box span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .panel-list {
      display: grid;
      gap: 12px;
    }

    .panel-row {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 14px;
      border-radius: 20px;
      background: rgba(255, 248, 244, 0.82);
      border: 1px solid var(--border);
    }

    .panel-row-icon {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 850;
      background: var(--gradient);
    }

    .panel-row strong {
      display: block;
      color: var(--primary-dark);
      line-height: 1.25;
    }

    .panel-row small {
      color: var(--muted);
      font-weight: 650;
    }

    .filter-board {
      padding: 24px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid var(--border);
      box-shadow: 0 16px 44px rgba(74, 36, 51, 0.08);
    }

    .filter-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 20px;
    }

    .filter-head h2 {
      margin: 0 0 6px;
      font-size: 28px;
    }

    .sort-control {
      min-width: 180px;
      border: 1px solid var(--border);
      background: var(--surface-warm);
      border-radius: 999px;
      color: var(--primary-dark);
      font-weight: 750;
      padding: 10px 16px;
      box-shadow: none;
    }

    .sort-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(155, 77, 104, 0.12);
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .filter-tag {
      border: 1px solid var(--border);
      background: rgba(255, 248, 244, 0.72);
      color: var(--primary-dark);
      border-radius: 999px;
      padding: 10px 15px;
      font-weight: 800;
      font-size: 14px;
      cursor: default;
      transition: all .22s ease;
    }

    .filter-tag:hover,
    .filter-tag.active {
      color: #fff;
      background: var(--gradient);
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(155, 77, 104, 0.22);
    }

    .catalog-grid {
      align-items: stretch;
    }

    .content-card {
      height: 100%;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid var(--border);
      box-shadow: 0 14px 40px rgba(74, 36, 51, 0.08);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .content-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--border-strong);
    }

    .content-card.featured {
      display: grid;
      grid-template-columns: 1.02fr 1fr;
      min-height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 234, 0.95));
    }

    .cover {
      min-height: 188px;
      padding: 18px;
      position: relative;
      background:
        radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.42), transparent 24%),
        linear-gradient(135deg, #9B4D68 0%, #D8896F 58%, #F2B36D 100%);
    }

    .cover::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.36);
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 52%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.18) 0 1px, transparent 1px 18px);
      opacity: .72;
    }

    .cover-label {
      position: relative;
      z-index: 1;
      display: inline-flex;
      border-radius: 999px;
      padding: 7px 12px;
      background: rgba(255, 255, 255, 0.86);
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 850;
    }

    .content-body {
      padding: 24px;
    }

    .content-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .content-card h3 {
      margin-bottom: 9px;
    }

    .content-card p {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
    }

    .explain-card {
      height: 100%;
      padding: 30px;
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(248,236,232,.78));
      border: 1px solid var(--border);
      box-shadow: 0 16px 44px rgba(74, 36, 51, 0.08);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .explain-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: var(--border-strong);
    }

    .explain-num {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      background: var(--gradient);
      margin-bottom: 18px;
      box-shadow: 0 14px 28px rgba(155, 77, 104, 0.22);
    }

    .workflow {
      border-radius: 34px;
      overflow: hidden;
      background: var(--dark-gradient);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .workflow-copy {
      padding: 38px;
    }

    .workflow-copy h2,
    .workflow-copy h3 {
      color: #fff;
    }

    .workflow-copy p {
      color: rgba(255, 255, 255, 0.76);
    }

    .workflow-list {
      display: grid;
      gap: 12px;
      padding: 38px;
      background: rgba(255, 255, 255, 0.08);
      min-height: 100%;
    }

    .workflow-step {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 12px;
      padding: 16px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .workflow-step span {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      background: var(--accent);
      font-weight: 900;
    }

    .workflow-step strong {
      color: #fff;
      display: block;
      margin-bottom: 3px;
    }

    .workflow-step small {
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.6;
    }

    .subscribe-card {
      border-radius: 34px;
      background:
        radial-gradient(circle at 100% 0%, rgba(242, 179, 109, 0.24), transparent 30%),
        rgba(255, 255, 255, 0.9);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      padding: 32px;
    }

    .subscribe-form {
      display: flex;
      gap: 12px;
      margin-top: 22px;
    }

    .subscribe-form input {
      flex: 1;
      min-width: 0;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 14px 18px;
      background: rgba(255, 248, 244, 0.88);
      color: var(--text);
      outline: none;
    }

    .subscribe-form input::placeholder {
      color: rgba(123, 98, 107, 0.76);
    }

    .subscribe-form input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 5px rgba(155, 77, 104, 0.12);
      background: #fff;
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      border: 1px solid var(--border);
      border-radius: 22px !important;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 12px 32px rgba(74, 36, 51, 0.07);
    }

    .accordion-button {
      padding: 20px 22px;
      background: transparent;
      color: var(--primary-dark);
      font-weight: 850;
      box-shadow: none !important;
      border-radius: 22px !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary);
      background: rgba(248, 236, 232, 0.72);
    }

    .accordion-button::after {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background-color: rgba(155, 77, 104, 0.1);
      background-size: 14px;
      background-position: center;
      padding: 8px;
    }

    .accordion-body {
      padding: 0 22px 22px;
      color: var(--muted);
    }

    .cta-band {
      padding: 42px;
      border-radius: 36px;
      background:
        radial-gradient(circle at 8% 10%, rgba(242, 179, 109, 0.25), transparent 28%),
        var(--dark-gradient);
      color: #fff;
      box-shadow: var(--shadow-hover);
      overflow: hidden;
      position: relative;
    }

    .cta-band::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      right: -90px;
      bottom: -110px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
    }

    .cta-band h2 {
      color: #fff;
      margin-top: 0;
    }

    .cta-band p {
      color: rgba(255, 255, 255, 0.76);
      max-width: 720px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
      position: relative;
      z-index: 1;
    }

    .cta-band .btn-soft {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.28);
    }

    .cta-band .btn-soft:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    .site-footer {
      margin-top: 40px;
      padding: 64px 0 28px;
      background: var(--dark-gradient);
      color: rgba(255, 255, 255, 0.78);
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      left: -160px;
      bottom: -220px;
      background: rgba(242, 179, 109, 0.12);
    }

    .site-footer .container {
      position: relative;
      z-index: 1;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 18px;
      font-weight: 850;
      margin-bottom: 16px;
    }

    .site-footer p {
      color: rgba(255, 255, 255, 0.7);
      max-width: 420px;
    }

    .footer-title {
      color: #fff;
      font-size: 17px;
      margin-bottom: 15px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a,
    .footer-links span {
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(4px);
    }

    .footer-note {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 38px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      color: rgba(255, 255, 255, 0.64);
      font-size: 14px;
    }

    @media (max-width: 1199.98px) {
      .brand-mark {
        min-width: auto;
      }

      .brand-sub {
        display: none;
      }

      .nav-link {
        padding: 9px 11px !important;
      }
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .navbar-nav {
        align-items: stretch;
      }

      .nav-link {
        border-radius: 16px;
      }

      .mega-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
        background: rgba(248, 236, 232, 0.68);
      }

      .mega-grid {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        margin-top: 28px;
        transform: none;
      }

      .content-card.featured {
        grid-template-columns: 1fr;
      }

      .workflow-copy,
      .workflow-list {
        padding: 28px;
      }
    }

    @media (max-width: 767.98px) {
      .section,
      .section-tight {
        padding: 58px 0;
      }

      .hero-category {
        padding: 58px 0 42px;
      }

      .hero-actions,
      .cta-actions,
      .subscribe-form {
        flex-direction: column;
      }

      .btn-brand,
      .btn-soft,
      .btn-line,
      .subscribe-form .btn-brand {
        width: 100%;
      }

      .filter-head {
        flex-direction: column;
      }

      .sort-control {
        width: 100%;
      }

      .category-stats {
        grid-template-columns: 1fr;
      }

      .panel-row {
        grid-template-columns: 42px 1fr;
      }

      .panel-row .badge-hot,
      .panel-row .badge-soft {
        grid-column: 2;
        justify-self: start;
      }

      .cta-band {
        padding: 30px 24px;
        border-radius: 28px;
      }

      .footer-note {
        flex-direction: column;
      }
    }

    @media (max-width: 575.98px) {
      body {
        font-size: 15px;
      }

      .brand-title {
        font-size: 15px;
      }

      .brand-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
      }

      .notice-inner {
        align-items: flex-start;
        text-align: left;
      }

      .hero-lead {
        font-size: 16px;
      }

      .filter-board,
      .subscribe-card,
      .content-body,
      .explain-card {
        padding: 22px;
      }

      .cover {
        min-height: 160px;
      }
    }

/* roulang page: category2 */
:root{
      --primary:#9B4D68;
      --primary-dark:#4A2433;
      --secondary:#D8896F;
      --accent:#F2B36D;
      --bg:#FFF8F4;
      --surface:#FFFFFF;
      --surface-soft:#F8ECE8;
      --surface-warm:#FFF0E8;
      --text:#2B1B21;
      --muted:#7B626B;
      --border:rgba(74,36,51,.12);
      --border-strong:rgba(155,77,104,.28);
      --shadow:0 18px 50px rgba(74,36,51,.12);
      --shadow-hover:0 24px 64px rgba(74,36,51,.18);
      --gradient:linear-gradient(135deg,#9B4D68 0%,#D8896F 52%,#F2B36D 100%);
      --gradient-soft:linear-gradient(135deg,rgba(155,77,104,.12),rgba(216,137,111,.14),rgba(242,179,109,.16));
      --dark-gradient:linear-gradient(135deg,#3A1E2B 0%,#6E354C 55%,#9B4D68 100%);
      --radius-xl:30px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-pill:999px;
      --container:1200px;
      --ease:all .25s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 8%,rgba(242,179,109,.18),transparent 30%),
        radial-gradient(circle at 92% 18%,rgba(155,77,104,.14),transparent 34%),
        var(--bg);
      font-size:16px;
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input{font:inherit}
    button:focus-visible,a:focus-visible,input:focus-visible{
      outline:3px solid rgba(242,179,109,.65);
      outline-offset:3px;
      box-shadow:0 0 0 5px rgba(155,77,104,.12);
    }
    ::selection{background:rgba(155,77,104,.22);color:var(--primary-dark)}
    .container{max-width:var(--container)}
    .section{padding:92px 0}
    .section-tight{padding:68px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:var(--radius-pill);
      background:rgba(155,77,104,.1);
      color:var(--primary);
      font-weight:700;
      font-size:13px;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--gradient);
      box-shadow:0 0 0 5px rgba(216,137,111,.13);
    }
    .section-head{
      max-width:780px;
      margin-bottom:34px;
    }
    .section-head.center{
      text-align:center;
      margin-left:auto;
      margin-right:auto;
    }
    .section-title{
      margin:14px 0 12px;
      font-size:38px;
      line-height:1.18;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--text);
    }
    .section-desc{
      color:var(--muted);
      font-size:17px;
      margin:0;
    }

    .adult-strip{
      background:linear-gradient(90deg,rgba(74,36,51,.95),rgba(155,77,104,.92));
      color:rgba(255,248,244,.92);
      font-size:13px;
      padding:8px 0;
    }
    .adult-strip .container{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .adult-strip strong{color:#fff}
    .adult-pill{
      display:inline-flex;
      align-items:center;
      padding:3px 9px;
      border-radius:var(--radius-pill);
      background:rgba(242,179,109,.2);
      color:#ffe5bd;
      font-weight:700;
      margin-right:8px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,248,244,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--border);
      box-shadow:0 8px 24px rgba(74,36,51,.05);
    }
    .navbar{
      min-height:78px;
      padding:10px 0;
    }
    .brand-mark{
      display:flex;
      align-items:center;
      gap:12px;
      max-width:390px;
    }
    .brand-icon{
      width:43px;
      height:43px;
      flex:0 0 43px;
      border-radius:15px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--gradient);
      color:#fff;
      font-weight:800;
      box-shadow:0 10px 26px rgba(155,77,104,.26);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.18;
    }
    .brand-title{
      font-size:17px;
      font-weight:800;
      color:var(--primary-dark);
      letter-spacing:-.02em;
    }
    .brand-sub{
      margin-top:2px;
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }
    .navbar-nav{
      align-items:center;
      gap:6px;
    }
    .nav-link{
      position:relative;
      color:var(--text);
      font-weight:700;
      font-size:15px;
      border-radius:var(--radius-pill);
      padding:10px 14px!important;
    }
    .nav-link::after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:5px;
      height:2px;
      border-radius:10px;
      background:var(--gradient);
      opacity:0;
      transform:scaleX(.4);
      transition:var(--ease);
    }
    .nav-link:hover,
    .nav-link.active{
      color:var(--primary)!important;
      background:rgba(155,77,104,.09);
    }
    .nav-link:hover::after,
    .nav-link.active::after{
      opacity:1;
      transform:scaleX(1);
    }
    .navbar-toggler{
      border:0;
      border-radius:15px;
      background:rgba(155,77,104,.1);
      padding:10px 12px;
      box-shadow:none!important;
    }
    .navbar-toggler-icon{
      width:22px;
      height:22px;
      background-image:none;
      position:relative;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon{
      border-top:2px solid var(--primary-dark);
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after{
      content:"";
      position:absolute;
      left:0;
      width:22px;
    }
    .navbar-toggler-icon::before{top:6px}
    .navbar-toggler-icon::after{top:14px}

    .mega-wrap{position:relative}
    .mega-panel{
      position:absolute;
      top:calc(100% + 14px);
      right:0;
      width:650px;
      padding:18px;
      border-radius:28px;
      background:rgba(255,255,255,.96);
      border:1px solid var(--border);
      box-shadow:var(--shadow-hover);
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:var(--ease);
    }
    .mega-wrap:hover .mega-panel,
    .mega-wrap:focus-within .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .mega-item{
      display:grid;
      grid-template-columns:38px 1fr;
      gap:2px 12px;
      padding:15px;
      border-radius:20px;
      background:linear-gradient(135deg,#fff,rgba(248,236,232,.78));
      border:1px solid var(--border);
    }
    .mega-item:hover{
      transform:translateY(-3px);
      border-color:var(--border-strong);
      box-shadow:0 12px 28px rgba(74,36,51,.1);
    }
    .mega-dot{
      grid-row:1/3;
      width:38px;
      height:38px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(216,137,111,.16);
      color:var(--primary);
      font-weight:800;
    }
    .mega-item strong{
      font-size:15px;
      color:var(--text);
    }
    .mega-item span:last-child{
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }
    .mega-cta{
      margin-top:12px;
      padding:16px;
      border-radius:22px;
      background:var(--gradient-soft);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      border:1px solid rgba(155,77,104,.14);
    }
    .mega-cta strong{display:block;color:var(--primary-dark)}
    .mega-cta small{color:var(--muted)}

    .btn-brand,
    .btn-soft,
    .btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:12px 22px;
      border-radius:var(--radius-pill);
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-brand{
      color:#fff;
      background:var(--gradient);
      box-shadow:0 14px 28px rgba(155,77,104,.22);
    }
    .btn-brand:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 36px rgba(155,77,104,.3);
      filter:saturate(1.05);
    }
    .btn-soft{
      color:var(--primary);
      background:#fff;
      border-color:rgba(155,77,104,.2);
      box-shadow:0 10px 26px rgba(74,36,51,.07);
    }
    .btn-soft:hover{
      color:var(--primary-dark);
      background:var(--surface-soft);
      border-color:var(--border-strong);
      transform:translateY(-2px);
    }
    .btn-ghost{
      color:var(--primary-dark);
      background:rgba(255,248,244,.78);
      border-color:rgba(255,255,255,.32);
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--primary);
      font-weight:800;
    }
    .text-link:hover{gap:10px;color:var(--primary-dark)}

    .badge-soft,
    .data-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:var(--radius-pill);
      color:var(--primary-dark);
      background:rgba(242,179,109,.18);
      border:1px solid rgba(216,137,111,.18);
      font-size:13px;
      font-weight:750;
      line-height:1;
    }
    .badge-strong{
      color:#fff;
      background:var(--gradient);
      border-color:transparent;
      box-shadow:0 10px 24px rgba(155,77,104,.18);
    }

    .hero-topic{
      position:relative;
      padding:86px 0 76px;
      overflow:hidden;
    }
    .hero-topic::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 72% 20%,rgba(216,137,111,.22),transparent 32%),
        radial-gradient(circle at 22% 84%,rgba(155,77,104,.14),transparent 30%);
      pointer-events:none;
    }
    .hero-topic .container{position:relative;z-index:1}
    .hero-title{
      margin:16px 0 18px;
      font-size:52px;
      line-height:1.12;
      font-weight:850;
      letter-spacing:-.035em;
      color:var(--text);
    }
    .hero-title span{
      background:var(--gradient);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .hero-lead{
      max-width:650px;
      color:var(--muted);
      font-size:18px;
      margin-bottom:26px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:28px;
    }
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .topic-map-card{
      position:relative;
      padding:28px;
      border-radius:34px;
      background:
        linear-gradient(145deg,rgba(255,255,255,.94),rgba(248,236,232,.88)),
        var(--surface);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      transform:rotate(.8deg);
      overflow:hidden;
    }
    .topic-map-card::after{
      content:"";
      position:absolute;
      width:210px;
      height:210px;
      right:-72px;
      top:-80px;
      border-radius:50%;
      background:rgba(242,179,109,.24);
    }
    .map-toolbar{
      position:relative;
      z-index:1;
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:22px;
    }
    .map-dots{display:flex;gap:7px}
    .map-dots span{
      width:10px;
      height:10px;
      border-radius:50%;
      background:rgba(155,77,104,.25);
    }
    .map-dots span:nth-child(2){background:rgba(216,137,111,.35)}
    .map-dots span:nth-child(3){background:rgba(242,179,109,.55)}
    .map-status{
      padding:6px 10px;
      border-radius:var(--radius-pill);
      color:#fff;
      background:var(--primary-dark);
      font-size:12px;
      font-weight:800;
    }
    .map-node{
      position:relative;
      z-index:1;
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:16px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--border);
      margin-bottom:12px;
      box-shadow:0 12px 24px rgba(74,36,51,.06);
    }
    .map-node.featured{
      background:var(--dark-gradient);
      color:#fff;
      border-color:transparent;
    }
    .node-num{
      width:38px;
      height:38px;
      flex:0 0 38px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:850;
      color:var(--primary);
      background:rgba(155,77,104,.1);
    }
    .map-node.featured .node-num{
      color:#fff;
      background:rgba(255,255,255,.18);
    }
    .map-node h3{
      margin:0 0 4px;
      font-size:17px;
      font-weight:850;
    }
    .map-node p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }
    .map-node.featured p{color:rgba(255,255,255,.78)}
    .map-stats{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:16px;
    }
    .map-stat{
      padding:14px 10px;
      border-radius:18px;
      background:rgba(255,248,244,.78);
      text-align:center;
      border:1px solid rgba(155,77,104,.1);
    }
    .map-stat strong{
      display:block;
      color:var(--primary-dark);
      font-size:20px;
      line-height:1.1;
    }
    .map-stat span{
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }

    .path-section{
      background:linear-gradient(180deg,rgba(255,255,255,.42),rgba(248,236,232,.36));
      border-top:1px solid rgba(155,77,104,.08);
      border-bottom:1px solid rgba(155,77,104,.08);
    }
    .path-list{
      position:relative;
      display:grid;
      gap:16px;
    }
    .path-list::before{
      content:"";
      position:absolute;
      left:31px;
      top:22px;
      bottom:22px;
      width:2px;
      background:linear-gradient(var(--primary),var(--secondary),var(--accent));
      opacity:.45;
    }
    .path-step{
      position:relative;
      display:grid;
      grid-template-columns:64px 1fr auto;
      align-items:center;
      gap:18px;
      padding:18px 22px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:0 12px 32px rgba(74,36,51,.08);
      transition:var(--ease);
    }
    .path-step:hover{
      transform:translateX(6px);
      border-color:var(--border-strong);
      box-shadow:var(--shadow);
    }
    .path-number{
      position:relative;
      z-index:2;
      width:64px;
      height:64px;
      border-radius:22px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--gradient);
      color:#fff;
      font-size:22px;
      font-weight:850;
      box-shadow:0 12px 26px rgba(155,77,104,.2);
    }
    .path-step h3{
      font-size:20px;
      margin:0 0 4px;
      font-weight:850;
    }
    .path-step p{
      margin:0;
      color:var(--muted);
    }
    .path-tags{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:8px;
    }

    .matrix-wrap{
      position:relative;
    }
    .topic-card{
      height:100%;
      display:flex;
      flex-direction:column;
      border-radius:28px;
      overflow:hidden;
      background:var(--surface);
      border:1px solid var(--border);
      box-shadow:0 14px 36px rgba(74,36,51,.08);
      transition:var(--ease);
    }
    .topic-card:hover{
      transform:translateY(-6px);
      border-color:var(--border-strong);
      box-shadow:var(--shadow-hover);
    }
    .topic-card.emphasis{
      border:1px solid rgba(242,179,109,.48);
      box-shadow:0 22px 58px rgba(155,77,104,.14);
    }
    .cover{
      position:relative;
      min-height:140px;
      background:
        radial-gradient(circle at 18% 30%,rgba(255,255,255,.35),transparent 26%),
        linear-gradient(135deg,#9B4D68,#D8896F 55%,#F2B36D);
      overflow:hidden;
    }
    .cover.tall{min-height:190px}
    .cover::before,
    .cover::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.18);
      transform:rotate(-12deg);
    }
    .cover::before{
      width:170px;
      height:30px;
      left:28px;
      top:34px;
    }
    .cover::after{
      width:240px;
      height:42px;
      right:-45px;
      bottom:30px;
    }
    .cover-alt{background:linear-gradient(135deg,#4A2433,#9B4D68 48%,#D8896F)}
    .cover-warm{background:linear-gradient(135deg,#D8896F,#F2B36D 58%,#FFF0E8)}
    .cover-deep{background:linear-gradient(135deg,#3A1E2B,#6E354C 56%,#9B4D68)}
    .cover-badge{
      position:absolute;
      left:18px;
      bottom:18px;
      color:#fff;
      background:rgba(74,36,51,.32);
      backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,.24);
      padding:7px 11px;
      border-radius:var(--radius-pill);
      font-size:13px;
      font-weight:800;
    }
    .topic-body{
      padding:24px;
      flex:1;
      display:flex;
      flex-direction:column;
    }
    .topic-body h3{
      margin:12px 0 8px;
      font-size:22px;
      line-height:1.3;
      font-weight:850;
      color:var(--text);
    }
    .topic-body p{
      color:var(--muted);
      margin:0 0 18px;
      flex:1;
    }
    .topic-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:auto;
    }
    .card-tall .topic-body{padding-bottom:30px}
    .card-short .cover{min-height:112px}

    .value-panel{
      border-radius:34px;
      background:var(--dark-gradient);
      color:#fff;
      padding:38px;
      overflow:hidden;
      position:relative;
      box-shadow:var(--shadow-hover);
    }
    .value-panel::before{
      content:"";
      position:absolute;
      width:320px;
      height:320px;
      right:-130px;
      top:-150px;
      border-radius:50%;
      background:rgba(242,179,109,.2);
    }
    .value-panel h2{
      position:relative;
      z-index:1;
      font-size:34px;
      line-height:1.22;
      font-weight:850;
      margin-bottom:12px;
    }
    .value-panel p{
      position:relative;
      z-index:1;
      color:rgba(255,248,244,.82);
      margin-bottom:24px;
      max-width:760px;
    }
    .value-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .value-item{
      padding:20px;
      border-radius:24px;
      background:rgba(255,255,255,.11);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(8px);
    }
    .value-item strong{
      display:block;
      margin-bottom:6px;
      font-size:18px;
      color:#fff;
    }
    .value-item span{
      color:rgba(255,248,244,.74);
      font-size:14px;
    }

    .compare-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
    }
    .compare-card{
      padding:30px;
      border-radius:30px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 14px 34px rgba(74,36,51,.08);
    }
    .compare-card.better{
      background:linear-gradient(135deg,#fff,rgba(255,240,232,.92));
      border-color:rgba(242,179,109,.42);
    }
    .compare-card h3{
      display:flex;
      align-items:center;
      gap:10px;
      margin:0 0 18px;
      font-weight:850;
      color:var(--primary-dark);
    }
    .compare-icon{
      width:38px;
      height:38px;
      border-radius:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(155,77,104,.1);
      color:var(--primary);
      font-weight:900;
    }
    .compare-card.better .compare-icon{
      background:var(--gradient);
      color:#fff;
    }
    .compare-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .compare-list li{
      display:flex;
      gap:10px;
      color:var(--muted);
    }
    .compare-list li::before{
      content:"";
      width:8px;
      height:8px;
      flex:0 0 8px;
      border-radius:50%;
      margin-top:11px;
      background:rgba(155,77,104,.34);
    }
    .compare-card.better .compare-list li::before{background:var(--accent)}

    .notice-card{
      padding:28px;
      border-radius:30px;
      background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(248,236,232,.82));
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .notice-card h2{
      margin:0 0 12px;
      font-size:30px;
      font-weight:850;
    }
    .notice-list{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:22px;
    }
    .notice-item{
      padding:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(155,77,104,.1);
    }
    .notice-item strong{
      display:block;
      color:var(--primary-dark);
      margin-bottom:6px;
    }
    .notice-item span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
    }

    .subscribe-card{
      padding:34px;
      border-radius:32px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .subscribe-form{
      display:flex;
      gap:12px;
      margin-top:18px;
    }
    .form-control.custom-input{
      min-height:52px;
      border-radius:var(--radius-pill);
      border:1px solid rgba(155,77,104,.18);
      background:var(--surface-soft);
      padding:12px 18px;
      color:var(--text);
      box-shadow:none;
    }
    .form-control.custom-input:focus{
      border-color:var(--primary);
      background:#fff;
      box-shadow:0 0 0 5px rgba(155,77,104,.12);
    }
    .form-hint{
      color:var(--muted);
      font-size:13px;
      margin-top:10px;
    }

    .faq-section{
      background:rgba(255,255,255,.45);
    }
    .accordion{
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:24px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 12px 30px rgba(74,36,51,.07);
    }
    .accordion-button{
      padding:20px 24px;
      color:var(--text);
      font-weight:850;
      background:#fff;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary);
      background:var(--surface-soft);
    }
    .accordion-button::after{
      width:30px;
      height:30px;
      border-radius:50%;
      background-color:rgba(155,77,104,.1);
      background-position:center;
      background-size:14px;
      padding:4px;
    }
    .accordion-body{
      color:var(--muted);
      padding:0 24px 22px;
    }

    .cta-band{
      padding:58px 0;
      background:linear-gradient(135deg,rgba(155,77,104,.1),rgba(242,179,109,.18));
    }
    .cta-inner{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:26px;
      padding:34px;
      border-radius:34px;
      background:var(--surface);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .cta-inner h2{
      margin:0 0 8px;
      font-size:32px;
      font-weight:850;
    }
    .cta-inner p{
      margin:0;
      color:var(--muted);
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .site-footer{
      background:var(--dark-gradient);
      color:rgba(255,248,244,.82);
      padding:66px 0 28px;
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-size:19px;
      font-weight:850;
      margin-bottom:16px;
    }
    .site-footer p{
      margin:0;
      color:rgba(255,248,244,.72);
      max-width:420px;
    }
    .footer-title{
      color:#fff;
      font-size:16px;
      font-weight:850;
      margin:0 0 16px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a,
    .footer-links span{
      color:rgba(255,248,244,.68);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .footer-note{
      margin-top:44px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.14);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,248,244,.6);
      font-size:13px;
    }

    @media (max-width:1199px){
      .hero-title{font-size:46px}
      .brand-sub{display:none}
      .nav-link{padding:9px 10px!important}
      .mega-panel{width:590px}
    }
    @media (max-width:991px){
      .navbar-collapse{
        margin-top:12px;
        padding:16px;
        border-radius:24px;
        background:#fff;
        border:1px solid var(--border);
        box-shadow:var(--shadow);
      }
      .navbar-nav{align-items:stretch}
      .nav-link{padding:12px 14px!important}
      .nav-link::after{display:none}
      .mega-panel{
        position:static;
        width:100%;
        margin-top:10px;
        box-shadow:none;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
      }
      .mega-wrap:hover .mega-panel,
      .mega-wrap:focus-within .mega-panel{display:block}
      .hero-topic{padding:64px 0}
      .topic-map-card{margin-top:30px;transform:none}
      .path-step{grid-template-columns:58px 1fr}
      .path-tags{grid-column:2;justify-content:flex-start}
      .value-grid{grid-template-columns:repeat(2,1fr)}
      .notice-list{grid-template-columns:1fr}
      .cta-inner{align-items:flex-start;flex-direction:column}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width:767px){
      .section{padding:64px 0}
      .section-tight{padding:52px 0}
      .section-title{font-size:29px}
      .hero-title{font-size:36px}
      .hero-lead{font-size:16px}
      .hero-actions .btn-brand,
      .hero-actions .btn-soft,
      .cta-actions .btn-brand,
      .cta-actions .btn-soft{
        width:100%;
      }
      .mega-grid{grid-template-columns:1fr}
      .mega-cta{flex-direction:column;align-items:flex-start}
      .path-list::before{display:none}
      .path-step{
        grid-template-columns:1fr;
        gap:12px;
      }
      .path-number{
        width:54px;
        height:54px;
        border-radius:18px;
      }
      .path-tags{grid-column:auto}
      .map-stats{grid-template-columns:1fr}
      .compare-grid{grid-template-columns:1fr}
      .value-grid{grid-template-columns:1fr}
      .subscribe-form{flex-direction:column}
      .subscribe-form .btn-brand{width:100%}
      .cta-inner{padding:26px}
      .footer-note{flex-direction:column}
    }
    @media (max-width:575px){
      .adult-strip .container{display:block}
      .brand-title{font-size:15px}
      .brand-icon{width:39px;height:39px;flex-basis:39px;border-radius:14px}
      .hero-topic{padding:48px 0 54px}
      .hero-title{font-size:32px}
      .topic-map-card,
      .value-panel,
      .notice-card,
      .subscribe-card{padding:22px;border-radius:26px}
      .topic-body{padding:20px}
      .cover.tall{min-height:155px}
      .section-head{margin-bottom:24px}
    }
