/* roulang page: index */
:root {
      --brand-purple: #5B2A86;
      --brand-pink: #D63384;
      --brand-orange: #FF8A3D;
      --ink: #2A2433;
      --muted: #6D6475;
      --soft: #9A90A4;
      --dark: #241B35;
      --cream: #FFF1E8;
      --mist: #F7F4F8;
      --mint: #2EC4B6;
      --amber: #FFC857;
      --white: #FFFFFF;
      --line: rgba(91, 42, 134, .14);
      --shadow: 0 18px 50px rgba(64, 34, 84, .12);
      --shadow-strong: 0 24px 70px rgba(91, 42, 134, .2);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-pill: 999px;
      --gradient: linear-gradient(135deg, var(--brand-purple), var(--brand-pink) 52%, var(--brand-orange));
      --gradient-soft: linear-gradient(135deg, rgba(91, 42, 134, .12), rgba(214, 51, 132, .12), rgba(255, 138, 61, .16));
    }

    * {
      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(--ink);
      line-height: 1.75;
      background:
        radial-gradient(circle at 8% 8%, rgba(255, 138, 61, .16), transparent 34%),
        radial-gradient(circle at 88% 4%, rgba(214, 51, 132, .15), transparent 30%),
        linear-gradient(180deg, #FFF8F5 0%, #F8F3FA 46%, #FFF9F4 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    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(46, 196, 182, .5);
      outline-offset: 3px;
    }

    .container {
      max-width: 1210px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 248, 245, .92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .header-shell {
      padding: 14px 0 12px;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-weight: 850;
      letter-spacing: -.02em;
      color: var(--dark);
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background: var(--gradient);
      box-shadow: 0 12px 30px rgba(214, 51, 132, .25);
      position: relative;
      flex: 0 0 auto;
    }

    .brand-icon::before,
    .brand-icon::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      background: rgba(255, 255, 255, .85);
    }

    .brand-icon::before {
      width: 18px;
      height: 6px;
      left: 8px;
      top: 11px;
      transform: rotate(-18deg);
    }

    .brand-icon::after {
      width: 20px;
      height: 6px;
      right: 7px;
      bottom: 12px;
      transform: rotate(-18deg);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .brand-text strong {
      font-size: 18px;
    }

    .brand-text span {
      font-size: 12px;
      color: var(--muted);
      font-weight: 700;
      margin-top: 3px;
    }

    .top-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(214, 51, 132, .18);
      background: var(--gradient);
      color: var(--white);
      border-radius: var(--radius-pill);
      padding: 11px 18px;
      font-weight: 800;
      box-shadow: 0 12px 30px rgba(214, 51, 132, .2);
    }

    .top-cta:hover {
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-strong);
    }

    .nav-pills-wrap {
      margin-top: 13px;
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: thin;
    }

    .nav-chip {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .78);
      color: var(--muted);
      border-radius: var(--radius-pill);
      padding: 10px 17px;
      font-weight: 800;
      font-size: 14px;
    }

    .nav-chip:hover {
      color: var(--brand-purple);
      background: #fff;
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(91, 42, 134, .09);
    }

    .nav-chip.active {
      color: #fff;
      border-color: transparent;
      background: var(--gradient);
      box-shadow: 0 12px 28px rgba(214, 51, 132, .22);
    }

    main {
      position: relative;
    }

    section {
      padding: 92px 0;
    }

    .hero {
      padding: 70px 0 96px;
    }

    .hero-band {
      position: relative;
      overflow: hidden;
      border-radius: 38px;
      background:
        linear-gradient(120deg, rgba(36, 27, 53, .94), rgba(91, 42, 134, .9) 42%, rgba(214, 51, 132, .86)),
        radial-gradient(circle at 85% 30%, rgba(255, 200, 87, .36), transparent 32%);
      color: #fff;
      box-shadow: var(--shadow-strong);
      padding: 38px;
    }

    .hero-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(90deg, rgba(0,0,0,.8), transparent 78%);
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: var(--radius-pill);
      padding: 8px 13px;
      background: rgba(255, 255, 255, .13);
      border: 1px solid rgba(255, 255, 255, .22);
      font-size: 13px;
      font-weight: 850;
      color: #fff;
    }

    .eyebrow.light {
      color: var(--brand-purple);
      background: rgba(214, 51, 132, .08);
      border-color: rgba(214, 51, 132, .14);
    }

    .hero h1 {
      position: relative;
      margin: 22px 0 18px;
      font-size: clamp(32px, 5vw, 58px);
      line-height: 1.12;
      letter-spacing: -.055em;
      font-weight: 900;
      max-width: 880px;
    }

    .hero p {
      position: relative;
      color: rgba(255,255,255,.86);
      font-size: 17px;
      max-width: 770px;
      margin-bottom: 26px;
    }

    .hero-actions {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      align-items: center;
      margin-bottom: 26px;
    }

    .btn-main,
    .btn-soft,
    .btn-darkline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: var(--radius-pill);
      padding: 13px 22px;
      font-weight: 850;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    }

    .btn-main {
      background: linear-gradient(135deg, var(--brand-pink), var(--brand-orange));
      color: #fff;
      box-shadow: 0 14px 34px rgba(255, 138, 61, .24);
    }

    .btn-main:hover {
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 20px 44px rgba(214, 51, 132, .3);
    }

    .btn-soft {
      background: rgba(255, 255, 255, .92);
      color: var(--brand-purple);
      border-color: rgba(255, 255, 255, .28);
    }

    .btn-soft:hover {
      background: #fff;
      color: var(--brand-pink);
      transform: translateY(-2px);
    }

    .btn-darkline {
      background: #fff;
      color: var(--brand-purple);
      border-color: var(--line);
    }

    .btn-darkline:hover {
      background: var(--cream);
      color: var(--brand-pink);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(91, 42, 134, .1);
    }

    .hero-metrics {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 780px;
    }

    .metric-pill {
      border-radius: 22px;
      padding: 16px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
    }

    .metric-pill strong {
      display: block;
      font-size: 24px;
      line-height: 1;
      margin-bottom: 7px;
    }

    .metric-pill span {
      color: rgba(255,255,255,.76);
      font-size: 13px;
      font-weight: 700;
    }

    .hero-panel {
      position: relative;
      margin-top: 34px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
      align-items: stretch;
    }

    .group-card,
    .entry-grid-card {
      border-radius: 30px;
      background: rgba(255, 255, 255, .95);
      color: var(--ink);
      padding: 22px;
      border: 1px solid rgba(255,255,255,.28);
      box-shadow: 0 18px 45px rgba(36, 27, 53, .16);
    }

    .group-card h2,
    .entry-grid-card h2 {
      font-size: 23px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .group-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin: 18px 0 11px;
      font-weight: 850;
    }

    .progress {
      height: 14px;
      border-radius: var(--radius-pill);
      background: rgba(91, 42, 134, .1);
      overflow: hidden;
    }

    .progress-bar {
      background: linear-gradient(90deg, var(--mint), var(--amber), var(--brand-orange));
      border-radius: var(--radius-pill);
    }

    .entry-mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 16px;
    }

    .entry-mini {
      border-radius: 19px;
      border: 1px solid var(--line);
      padding: 14px;
      background: linear-gradient(180deg, #fff, #fff7f2);
      min-height: 118px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .entry-mini:hover {
      transform: translateY(-4px) rotate(-.5deg);
      border-color: rgba(214, 51, 132, .32);
      box-shadow: 0 16px 34px rgba(91, 42, 134, .12);
    }

    .status-dot {
      display: inline-block;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--mint);
      box-shadow: 0 0 0 5px rgba(46, 196, 182, .13);
    }

    .badge-tag {
      display: inline-flex;
      align-items: center;
      border-radius: var(--radius-pill);
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 850;
      color: var(--brand-purple);
      background: rgba(91, 42, 134, .08);
      border: 1px solid rgba(91, 42, 134, .1);
    }

    .badge-hot {
      color: #fff;
      background: var(--gradient);
      border-color: transparent;
    }

    .entry-mini h3 {
      font-size: 18px;
      font-weight: 900;
      margin: 13px 0 5px;
    }

    .entry-mini p {
      color: var(--muted);
      font-size: 13px;
      margin: 0;
      line-height: 1.55;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-title {
      max-width: 760px;
    }

    .section-title h2 {
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: -.03em;
      margin: 12px 0 10px;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      max-width: 720px;
    }

    .news-section {
      padding-top: 0;
    }

    .news-board {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
      gap: 22px;
    }

    .news-list,
    .recommend-box,
    .step-card,
    .value-card,
    .rank-card,
    .compare-card,
    .faq-wrap,
    .about-card {
      background: rgba(255, 255, 255, .88);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .news-list {
      padding: 14px;
    }

    .news-item {
      display: grid;
      grid-template-columns: 108px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 17px;
      border-radius: 23px;
      transition: background .2s ease, transform .2s ease;
    }

    .news-item + .news-item {
      border-top: 1px solid rgba(91, 42, 134, .08);
    }

    .news-item:hover {
      background: var(--cream);
      transform: translateX(3px);
    }

    .news-date {
      color: var(--brand-pink);
      font-weight: 900;
      font-size: 13px;
    }

    .news-item h3 {
      margin: 0 0 4px;
      font-size: 18px;
      font-weight: 850;
    }

    .news-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .news-arrow {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: rgba(214, 51, 132, .08);
      color: var(--brand-pink);
      font-weight: 900;
    }

    .recommend-box {
      padding: 23px;
      background:
        radial-gradient(circle at 90% 10%, rgba(255, 200, 87, .25), transparent 36%),
        #fff;
    }

    .recommend-box h3 {
      font-weight: 900;
      font-size: 22px;
      margin-bottom: 12px;
    }

    .chip-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 16px;
    }

    .chip-cloud a,
    .filter-chip {
      display: inline-flex;
      border-radius: var(--radius-pill);
      padding: 9px 13px;
      color: var(--muted);
      background: #fff;
      border: 1px solid var(--line);
      font-weight: 800;
      font-size: 13px;
    }

    .chip-cloud a:hover,
    .filter-chip:hover,
    .filter-chip.active {
      color: #fff;
      background: var(--gradient);
      border-color: transparent;
      transform: translateY(-2px);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .step-card {
      padding: 22px;
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .step-card::before,
    .value-card::before,
    .rank-card::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 5px;
      background: var(--gradient);
    }

    .step-card:hover,
    .value-card:hover,
    .rank-card:hover,
    .compare-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-strong);
    }

    .step-num {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: var(--gradient);
      font-weight: 900;
      margin-bottom: 18px;
    }

    .step-card h3,
    .value-card h3 {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .step-card ul {
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .value-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .value-card {
      position: relative;
      overflow: hidden;
      padding: 26px;
    }

    .value-card.featured {
      background:
        radial-gradient(circle at 20% 10%, rgba(255, 200, 87, .24), transparent 34%),
        linear-gradient(135deg, #fff, #fff5ed);
    }

    .value-card p {
      color: var(--muted);
      margin: 0;
    }

    .value-list {
      display: grid;
      gap: 14px;
    }

    .value-line {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      padding: 17px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      transition: transform .2s ease, background .2s ease;
    }

    .value-line:hover {
      transform: translateX(4px);
      background: var(--cream);
    }

    .value-line strong {
      display: block;
      font-weight: 900;
      margin-bottom: 3px;
    }

    .value-line span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .progress-panel {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
      gap: 22px;
      align-items: stretch;
    }

    .progress-card {
      border-radius: var(--radius-xl);
      padding: 28px;
      background: var(--dark);
      color: #fff;
      box-shadow: var(--shadow-strong);
      overflow: hidden;
      position: relative;
    }

    .progress-card::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 999px;
      right: -70px;
      bottom: -90px;
      background: rgba(214, 51, 132, .36);
      filter: blur(6px);
    }

    .progress-card h2 {
      font-size: 30px;
      font-weight: 900;
      margin: 14px 0 12px;
      position: relative;
      z-index: 1;
    }

    .progress-card p {
      color: rgba(255, 255, 255, .76);
      margin-bottom: 22px;
      position: relative;
      z-index: 1;
    }

    .progress-card .progress {
      position: relative;
      z-index: 1;
      height: 16px;
      background: rgba(255, 255, 255, .14);
    }

    .check-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .check-cell {
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--line);
      padding: 19px;
      box-shadow: var(--shadow);
    }

    .check-cell strong {
      display: block;
      font-weight: 900;
      margin: 10px 0 5px;
    }

    .check-cell span {
      color: var(--muted);
      font-size: 14px;
    }

    .category-strip {
      overflow: hidden;
    }

    .category-scroller {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding: 4px 2px 18px;
      scrollbar-width: thin;
    }

    .category-card {
      min-width: 230px;
      border-radius: 26px;
      background: #fff;
      border: 1px solid var(--line);
      padding: 20px;
      box-shadow: 0 14px 34px rgba(64, 34, 84, .08);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .category-card:hover {
      transform: translateY(-5px) rotate(.4deg);
      border-color: rgba(214, 51, 132, .35);
      box-shadow: var(--shadow);
    }

    .category-card h3 {
      font-size: 20px;
      font-weight: 900;
      margin: 14px 0 8px;
    }

    .category-card p {
      color: var(--muted);
      font-size: 14px;
      margin: 0 0 14px;
    }

    .ranking-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
      gap: 22px;
    }

    .rank-card,
    .compare-card {
      position: relative;
      overflow: hidden;
      padding: 24px;
    }

    .rank-row {
      display: grid;
      grid-template-columns: 46px 1fr 92px;
      gap: 14px;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid rgba(91, 42, 134, .09);
    }

    .rank-row:last-child {
      border-bottom: 0;
    }

    .rank-no {
      width: 36px;
      height: 36px;
      border-radius: 13px;
      background: var(--gradient-soft);
      color: var(--brand-purple);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
    }

    .rank-row strong {
      display: block;
      font-weight: 900;
    }

    .rank-row span {
      color: var(--muted);
      font-size: 13px;
    }

    .trend {
      text-align: right;
      color: var(--brand-pink);
      font-weight: 900;
    }

    .compare-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 10px;
      margin-top: 12px;
    }

    .compare-table th {
      padding: 11px 12px;
      background: var(--dark);
      color: #fff;
      font-size: 13px;
    }

    .compare-table th:first-child {
      border-radius: 15px 0 0 15px;
    }

    .compare-table th:last-child {
      border-radius: 0 15px 15px 0;
    }

    .compare-table td {
      padding: 13px 12px;
      background: #fff7f2;
      color: var(--muted);
      border-top: 1px solid rgba(91, 42, 134, .08);
      border-bottom: 1px solid rgba(91, 42, 134, .08);
      font-size: 14px;
    }

    .compare-table tr:hover td {
      background: #fff1e8;
    }

    .faq-wrap {
      padding: 18px;
    }

    .accordion-item {
      border: 0;
      background: transparent;
      margin-bottom: 12px;
    }

    .accordion-button {
      border-radius: 22px !important;
      background: #fff;
      color: var(--ink);
      font-weight: 900;
      padding: 18px 20px;
      box-shadow: none;
      border: 1px solid var(--line);
    }

    .accordion-button:not(.collapsed) {
      color: var(--brand-purple);
      background: linear-gradient(90deg, rgba(214, 51, 132, .08), rgba(255, 138, 61, .08));
      box-shadow: none;
      border-color: rgba(214, 51, 132, .18);
    }

    .accordion-button:focus {
      box-shadow: 0 0 0 4px rgba(46, 196, 182, .18);
    }

    .accordion-body {
      color: var(--muted);
      padding: 16px 22px 8px;
      font-size: 15px;
    }

    .about-card {
      padding: 30px;
      display: grid;
      grid-template-columns: 1fr .9fr;
      gap: 28px;
      align-items: center;
      background:
        radial-gradient(circle at 90% 20%, rgba(46, 196, 182, .12), transparent 34%),
        #fff;
    }

    .about-card h2 {
      font-size: 34px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .about-card p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .mini-list {
      display: grid;
      gap: 12px;
    }

    .mini-list div {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
      padding: 13px;
      background: var(--mist);
      border-radius: 18px;
    }

    .final-cta {
      padding-top: 0;
    }

    .cta-card {
      border-radius: 38px;
      padding: 36px;
      color: #fff;
      background:
        radial-gradient(circle at 12% 20%, rgba(255, 200, 87, .3), transparent 30%),
        var(--gradient);
      box-shadow: var(--shadow-strong);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .cta-card h2 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      margin-bottom: 10px;
    }

    .cta-card p {
      color: rgba(255,255,255,.86);
      margin: 0;
      max-width: 720px;
    }

    .cta-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 18px;
    }

    .cta-badges span {
      border-radius: var(--radius-pill);
      padding: 8px 12px;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.2);
      font-weight: 850;
      font-size: 13px;
    }

    .site-footer {
      padding: 48px 0 30px;
      background: var(--dark);
      color: rgba(255,255,255,.78);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 32px;
      align-items: start;
      padding-bottom: 26px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .footer-brand {
      color: #fff;
      font-weight: 900;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .footer-desc {
      max-width: 620px;
      margin: 0;
      color: rgba(255,255,255,.68);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .footer-links a {
      border-radius: var(--radius-pill);
      padding: 8px 12px;
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.78);
      font-weight: 800;
      font-size: 13px;
    }

    .footer-links a:hover {
      color: #fff;
      background: rgba(255,255,255,.16);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 22px;
      color: rgba(255,255,255,.56);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      section {
        padding: 76px 0;
      }

      .hero-panel,
      .value-layout,
      .progress-panel,
      .ranking-layout,
      .about-card,
      .footer-grid,
      .cta-card {
        grid-template-columns: 1fr;
      }

      .news-board {
        grid-template-columns: 1fr;
      }

      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .header-shell {
        padding-top: 11px;
      }

      .brand-text strong {
        font-size: 15px;
      }

      .brand-text span {
        display: none;
      }

      .top-cta {
        padding: 9px 13px;
        font-size: 13px;
      }

      .hero {
        padding: 38px 0 70px;
      }

      .hero-band,
      .cta-card {
        border-radius: 28px;
        padding: 24px;
      }

      .hero p {
        font-size: 15px;
      }

      .hero-metrics,
      .entry-mini-grid,
      .check-grid,
      .steps-grid {
        grid-template-columns: 1fr;
      }

      .section-head {
        display: block;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .news-arrow {
        display: none;
      }

      .rank-row {
        grid-template-columns: 38px 1fr;
      }

      .trend {
        grid-column: 2;
        text-align: left;
      }

      .compare-card {
        overflow-x: auto;
      }

      .compare-table {
        min-width: 520px;
      }
    }

    @media (max-width: 520px) {
      section {
        padding: 62px 0;
      }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn-main,
      .btn-soft,
      .btn-darkline {
        width: 100%;
      }

      .metric-pill strong {
        font-size: 21px;
      }

      .group-line {
        flex-direction: column;
        align-items: flex-start;
      }

      .section-title h2,
      .about-card h2 {
        font-size: 27px;
      }

      .brand-icon {
        width: 38px;
        height: 38px;
      }
    }

/* roulang page: category1 */
:root {
      --brand-purple: #5B2A86;
      --brand-pink: #D63384;
      --brand-orange: #FF8A3D;
      --ink: #2A2433;
      --muted: #6D6475;
      --weak: #9A90A4;
      --deep: #241B35;
      --cream: #FFF1E8;
      --mist: #F7F4F8;
      --mint: #2EC4B6;
      --amber: #FFC857;
      --white: #ffffff;
      --line: rgba(91, 42, 134, .14);
      --line-strong: rgba(214, 51, 132, .28);
      --shadow: 0 18px 50px rgba(64, 34, 84, .12);
      --shadow-hover: 0 24px 70px rgba(64, 34, 84, .18);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 20px;
      --radius-pill: 999px;
      --grad: linear-gradient(135deg, var(--brand-purple), var(--brand-pink) 56%, var(--brand-orange));
      --grad-soft: linear-gradient(135deg, rgba(91, 42, 134, .10), rgba(214, 51, 132, .10), rgba(255, 138, 61, .12));
      --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;
      color: var(--ink);
      line-height: 1.75;
      background:
        radial-gradient(circle at 8% 4%, rgba(214, 51, 132, .14), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(255, 138, 61, .16), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, var(--mist) 48%, #fffaf7 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input {
      font: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(46, 196, 182, .55);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .container {
      max-width: var(--container);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 248, 245, .92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(91, 42, 134, .10);
    }

    .header-shell {
      padding: 16px 12px 13px;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark:hover {
      transform: translateY(-1px);
    }

    .brand-icon {
      width: 46px;
      height: 46px;
      flex: 0 0 auto;
      border-radius: 16px;
      background: var(--grad);
      box-shadow: 0 14px 30px rgba(214, 51, 132, .25);
      position: relative;
      overflow: hidden;
    }

    .brand-icon::before,
    .brand-icon::after {
      content: "";
      position: absolute;
      inset: 10px;
      border: 2px solid rgba(255, 255, 255, .70);
      border-radius: 12px;
      transform: rotate(-8deg);
    }

    .brand-icon::after {
      inset: 15px;
      border-radius: 9px;
      transform: rotate(9deg);
      opacity: .75;
    }

    .brand-text {
      display: grid;
      gap: 1px;
      min-width: 0;
    }

    .brand-text strong {
      color: var(--deep);
      font-size: 18px;
      line-height: 1.25;
      letter-spacing: -.02em;
      white-space: nowrap;
    }

    .brand-text span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
    }

    .top-cta,
    .btn-gradient {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: var(--radius-pill);
      padding: 13px 22px;
      color: #fff;
      font-weight: 800;
      line-height: 1;
      background: linear-gradient(135deg, var(--brand-pink), var(--brand-orange));
      box-shadow: 0 14px 34px rgba(214, 51, 132, .24);
      white-space: nowrap;
    }

    .top-cta:hover,
    .btn-gradient:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(214, 51, 132, .32);
      filter: brightness(1.03);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-pill);
      padding: 12px 20px;
      color: var(--brand-purple);
      background: #fff;
      border: 1px solid var(--line);
      font-weight: 800;
      box-shadow: 0 10px 28px rgba(64, 34, 84, .08);
    }

    .btn-ghost:hover {
      color: var(--brand-pink);
      background: #fff6f0;
      border-color: var(--line-strong);
      transform: translateY(-2px);
    }

    .nav-pills-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 14px;
      overflow-x: auto;
      padding-bottom: 3px;
      scrollbar-width: none;
    }

    .nav-pills-wrap::-webkit-scrollbar {
      display: none;
    }

    .nav-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border-radius: var(--radius-pill);
      padding: 10px 17px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      background: rgba(255, 255, 255, .78);
      border: 1px solid var(--line);
      box-shadow: 0 8px 20px rgba(64, 34, 84, .05);
    }

    .nav-chip:hover {
      color: var(--brand-pink);
      background: #fff;
      border-color: var(--line-strong);
      transform: translateY(-1px);
    }

    .nav-chip.active {
      color: #fff;
      background: var(--grad);
      border-color: transparent;
      box-shadow: 0 14px 30px rgba(214, 51, 132, .22);
    }

    main {
      position: relative;
    }

    .section {
      padding: 92px 0;
    }

    .section-compact {
      padding: 70px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--brand-pink);
      background: rgba(214, 51, 132, .09);
      border: 1px solid rgba(214, 51, 132, .16);
      border-radius: var(--radius-pill);
      padding: 7px 13px;
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--mint);
      box-shadow: 0 0 0 5px rgba(46, 196, 182, .14);
    }

    .page-hero {
      padding: 58px 0 38px;
    }

    .inner-panel {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 85% 10%, rgba(255, 138, 61, .28), transparent 30%),
        radial-gradient(circle at 22% 0%, rgba(214, 51, 132, .28), transparent 26%),
        linear-gradient(135deg, #241B35 0%, #332144 52%, #5B2A86 100%);
      color: #fff;
      box-shadow: var(--shadow);
      padding: 34px;
    }

    .inner-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(circle at 70% 34%, black, transparent 74%);
      pointer-events: none;
    }

    .breadcrumb {
      position: relative;
      z-index: 1;
      margin-bottom: 18px;
      --bs-breadcrumb-divider-color: rgba(255,255,255,.58);
    }

    .breadcrumb-item,
    .breadcrumb-item a {
      color: rgba(255,255,255,.76);
      font-weight: 800;
      font-size: 13px;
    }

    .breadcrumb-item.active {
      color: #fff;
    }

    .hero-title {
      position: relative;
      z-index: 1;
      max-width: 760px;
      margin: 0;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.12;
      letter-spacing: -.05em;
      font-weight: 900;
    }

    .hero-summary {
      position: relative;
      z-index: 1;
      max-width: 710px;
      margin: 18px 0 0;
      color: rgba(255,255,255,.82);
      font-size: 17px;
    }

    .hero-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-actions .btn-ghost {
      background: rgba(255,255,255,.12);
      color: #fff;
      border-color: rgba(255,255,255,.22);
      box-shadow: none;
    }

    .hero-actions .btn-ghost:hover {
      background: rgba(255,255,255,.20);
      color: #fff;
    }

    .rank-panel {
      position: relative;
      z-index: 1;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 28px;
      padding: 18px;
      height: 100%;
      backdrop-filter: blur(8px);
    }

    .rank-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 14px;
      color: #fff;
      font-weight: 900;
    }

    .rank-title span {
      color: rgba(255,255,255,.66);
      font-size: 12px;
      font-weight: 800;
    }

    .rank-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 13px 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.12);
      margin-bottom: 10px;
    }

    .rank-no {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(255, 200, 87, .18);
      color: var(--amber);
      font-weight: 900;
    }

    .rank-copy strong {
      display: block;
      line-height: 1.25;
      color: #fff;
      font-size: 15px;
    }

    .rank-copy small {
      color: rgba(255,255,255,.62);
      font-weight: 700;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--mint);
      box-shadow: 0 0 0 6px rgba(46,196,182,.14);
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 30px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(28px, 3.2vw, 38px);
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: -.035em;
      color: var(--deep);
    }

    .section-head p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 17px;
    }

    .filter-strip {
      padding: 16px;
      border-radius: 28px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--line);
      box-shadow: 0 16px 48px rgba(64, 34, 84, .08);
      overflow-x: auto;
      scrollbar-width: none;
      display: flex;
      gap: 10px;
    }

    .filter-strip::-webkit-scrollbar {
      display: none;
    }

    .filter-chip {
      flex: 0 0 auto;
      border-radius: var(--radius-pill);
      border: 1px solid var(--line);
      background: #fff;
      color: var(--muted);
      font-size: 14px;
      font-weight: 850;
      padding: 11px 16px;
      cursor: pointer;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease, background .22s ease;
    }

    .filter-chip:hover {
      transform: translateY(-2px);
      color: var(--brand-pink);
      border-color: var(--line-strong);
      box-shadow: 0 12px 28px rgba(64, 34, 84, .10);
    }

    .filter-chip.active {
      border-color: transparent;
      color: #fff;
      background: var(--grad);
      box-shadow: 0 14px 30px rgba(214, 51, 132, .22);
    }

    .entry-layout {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: stretch;
    }

    .entry-card,
    .mini-entry,
    .matrix-card,
    .faq-card,
    .cta-strip,
    .search-card {
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .entry-card:hover,
    .mini-entry:hover,
    .matrix-card:hover,
    .search-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: var(--line-strong);
    }

    .entry-card {
      min-height: 100%;
      padding: 28px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,241,232,.86)),
        radial-gradient(circle at 88% 8%, rgba(255,138,61,.18), transparent 30%);
    }

    .entry-card::before,
    .mini-entry::before,
    .matrix-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: var(--grad);
      opacity: .9;
    }

    .entry-card,
    .mini-entry,
    .matrix-card {
      position: relative;
      overflow: hidden;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-bottom: 18px;
    }

    .data-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: var(--radius-pill);
      padding: 7px 11px;
      color: var(--brand-purple);
      background: rgba(91, 42, 134, .08);
      border: 1px solid rgba(91, 42, 134, .10);
      font-size: 12px;
      font-weight: 900;
    }

    .data-badge.hot {
      color: #fff;
      background: var(--grad);
      border-color: transparent;
    }

    .data-badge.ok {
      color: #157a71;
      background: rgba(46, 196, 182, .12);
      border-color: rgba(46, 196, 182, .18);
    }

    .entry-card h3,
    .mini-entry h3,
    .matrix-card h3 {
      margin: 0;
      color: var(--deep);
      font-size: 24px;
      line-height: 1.28;
      font-weight: 900;
      letter-spacing: -.025em;
    }

    .entry-card p,
    .mini-entry p,
    .matrix-card p {
      margin: 12px 0 0;
      color: var(--muted);
    }

    .entry-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 22px 0;
    }

    .meta-box {
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(91, 42, 134, .10);
      padding: 14px;
    }

    .meta-box strong {
      display: block;
      color: var(--deep);
      font-size: 20px;
      font-weight: 950;
      line-height: 1.1;
    }

    .meta-box span {
      color: var(--weak);
      font-size: 12px;
      font-weight: 800;
    }

    .mini-stack {
      display: grid;
      gap: 18px;
    }

    .mini-entry {
      padding: 24px;
    }

    .card-link {
      display: inline-flex;
      margin-top: 18px;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-pill);
      padding: 10px 15px;
      background: #fff6f0;
      color: var(--brand-pink);
      border: 1px solid rgba(214, 51, 132, .16);
      font-weight: 900;
      font-size: 14px;
    }

    .card-link:hover {
      color: #fff;
      background: var(--brand-pink);
      border-color: var(--brand-pink);
      transform: translateX(2px);
    }

    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .matrix-card {
      padding: 24px;
      min-height: 230px;
    }

    .matrix-card:nth-child(2n) {
      transform: rotate(.35deg);
    }

    .matrix-card:nth-child(3n) {
      transform: rotate(-.25deg);
    }

    .matrix-card:hover {
      transform: translateY(-4px) rotate(0);
    }

    .mini-status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 16px;
    }

    .pulse {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
    }

    .pulse::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--mint);
      box-shadow: 0 0 0 5px rgba(46,196,182,.14);
    }

    .compare-wrap {
      overflow: hidden;
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: #fff;
    }

    .compare-table {
      width: 100%;
      margin: 0;
      border-collapse: separate;
      border-spacing: 0;
      min-width: 780px;
    }

    .compare-table thead th {
      background: linear-gradient(135deg, var(--deep), var(--brand-purple));
      color: #fff;
      padding: 18px;
      font-size: 14px;
      font-weight: 900;
      border: 0;
    }

    .compare-table tbody td {
      padding: 18px;
      color: var(--muted);
      border-bottom: 1px solid rgba(91, 42, 134, .08);
      vertical-align: middle;
      font-size: 15px;
    }

    .compare-table tbody tr {
      transition: background .2s ease;
    }

    .compare-table tbody tr:hover {
      background: #fff6f0;
    }

    .compare-table tbody tr:last-child td {
      border-bottom: 0;
    }

    .compare-table strong {
      color: var(--deep);
      font-weight: 900;
    }

    .search-card {
      padding: 26px;
      background:
        radial-gradient(circle at 8% 0%, rgba(255,138,61,.13), transparent 28%),
        #fff;
    }

    .search-form {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      margin-top: 16px;
    }

    .search-input {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: var(--radius-pill);
      padding: 14px 18px;
      color: var(--ink);
      background: #fffaf8;
      outline: 0;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .search-input:focus {
      border-color: rgba(214, 51, 132, .42);
      box-shadow: 0 0 0 5px rgba(214, 51, 132, .09);
    }

    .flow-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .flow-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(64, 34, 84, .07);
    }

    .flow-num {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 950;
      background: var(--grad);
      box-shadow: 0 10px 22px rgba(214, 51, 132, .18);
    }

    .flow-item strong {
      display: block;
      color: var(--deep);
      font-weight: 900;
      margin-bottom: 3px;
    }

    .flow-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .accordion {
      display: grid;
      gap: 13px;
    }

    .accordion-item {
      border: 1px solid var(--line);
      border-radius: 22px !important;
      overflow: hidden;
      background: rgba(255,255,255,.90);
      box-shadow: 0 12px 34px rgba(64, 34, 84, .07);
    }

    .accordion-button {
      gap: 10px;
      padding: 19px 22px;
      color: var(--deep);
      background: #fff;
      font-weight: 900;
      border-radius: 22px !important;
      box-shadow: none !important;
    }

    .accordion-button::before {
      content: "问";
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      color: #fff;
      background: var(--grad);
      font-size: 13px;
      font-weight: 950;
    }

    .accordion-button:not(.collapsed) {
      color: var(--brand-pink);
      background: linear-gradient(90deg, rgba(214,51,132,.08), rgba(255,138,61,.06));
    }

    .accordion-button:not(.collapsed)::after {
      filter: hue-rotate(120deg);
    }

    .accordion-body {
      padding: 0 22px 20px 60px;
      color: var(--muted);
      background: linear-gradient(90deg, rgba(214,51,132,.08) 0 5px, transparent 5px);
    }

    .cta-strip {
      position: relative;
      overflow: hidden;
      padding: 28px;
      color: #fff;
      background:
        radial-gradient(circle at 90% 12%, rgba(255, 200, 87, .34), transparent 28%),
        var(--grad);
      border: 0;
    }

    .cta-strip::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
      background-size: 30px 30px;
      opacity: .42;
    }

    .cta-strip > * {
      position: relative;
      z-index: 1;
    }

    .cta-strip h2 {
      color: #fff;
      margin: 0;
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 950;
      letter-spacing: -.035em;
    }

    .cta-strip p {
      margin: 10px 0 0;
      color: rgba(255,255,255,.82);
      max-width: 720px;
    }

    .cta-strip .btn-ghost {
      background: rgba(255,255,255,.15);
      color: #fff;
      border-color: rgba(255,255,255,.28);
      box-shadow: none;
    }

    .cta-strip .btn-ghost:hover {
      background: #fff;
      color: var(--brand-pink);
    }

    .site-footer {
      padding: 54px 0 26px;
      background: #241B35;
      color: rgba(255,255,255,.82);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
      gap: 28px;
      align-items: start;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .footer-brand {
      color: #fff;
      font-size: 20px;
      font-weight: 950;
      margin-bottom: 10px;
    }

    .footer-desc {
      max-width: 560px;
      margin: 0;
      color: rgba(255,255,255,.68);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .footer-links a {
      border-radius: var(--radius-pill);
      padding: 8px 12px;
      color: rgba(255,255,255,.78);
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.08);
      font-size: 13px;
      font-weight: 800;
    }

    .footer-links a:hover {
      color: #fff;
      background: rgba(255,255,255,.14);
      transform: translateY(-1px);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 20px;
      color: rgba(255,255,255,.54);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .entry-layout {
        grid-template-columns: 1fr;
      }

      .matrix-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .header-shell {
        padding-top: 12px;
      }

      .brand-icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
      }

      .brand-text strong {
        font-size: 15px;
      }

      .brand-text span {
        display: none;
      }

      .top-cta {
        padding: 11px 14px;
        font-size: 13px;
      }

      .page-hero {
        padding-top: 34px;
      }

      .inner-panel {
        padding: 24px;
        border-radius: 28px;
      }

      .section,
      .section-compact {
        padding: 62px 0;
      }

      .matrix-grid {
        grid-template-columns: 1fr;
      }

      .entry-meta {
        grid-template-columns: 1fr;
      }

      .search-form {
        grid-template-columns: 1fr;
      }

      .footer-grid,
      .copyright {
        grid-template-columns: 1fr;
        display: grid;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .hero-actions,
      .cta-strip .d-flex {
        flex-direction: column;
        align-items: stretch !important;
      }

      .btn-gradient,
      .btn-ghost {
        width: 100%;
      }

      .rank-item {
        grid-template-columns: auto 1fr;
      }

      .rank-item .status-dot {
        display: none;
      }

      .compare-wrap {
        overflow-x: auto;
      }

      .accordion-body {
        padding-left: 22px;
        background: transparent;
      }
    }
