/* roulang page: index */
:root {
      --ink: #171116;
      --ink-2: #362631;
      --muted: #766a73;
      --soft: #fff6f8;
      --paper: #fffdf9;
      --line: rgba(23, 17, 22, .12);
      --magenta: #ff2f8f;
      --coral: #ff684c;
      --violet: #8a3ffc;
      --lemon: #ffe45c;
      --mint: #34d399;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --shadow: 0 18px 45px rgba(64, 32, 54, .12);
      --shadow-hot: 0 18px 42px rgba(255, 47, 143, .22);
      --container: 1160px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 8%, rgba(255, 47, 143, .12), transparent 28%),
        radial-gradient(circle at 84% 0%, rgba(255, 228, 92, .18), transparent 24%),
        linear-gradient(180deg, #fff8fb 0%, #fffdf9 46%, #fff6f8 100%);
      line-height: 1.7;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input {
      font: inherit;
    }

    .site-shell {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 249, .96);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 10px 30px rgba(23, 17, 22, .06);
    }

    .top-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 0 10px;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 18px;
      line-height: 1.2;
      color: var(--ink);
      min-width: 0;
    }

    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--magenta), var(--coral) 62%, var(--lemon));
      box-shadow: 0 10px 24px rgba(255, 47, 143, .28);
      position: relative;
      flex: 0 0 auto;
    }

    .brand-icon::after {
      content: "";
      position: absolute;
      inset: 9px 8px;
      border: 2px solid rgba(255, 255, 255, .82);
      border-left: 0;
      border-bottom: 0;
      transform: skew(-12deg);
      border-radius: 8px;
    }

    .brand-text {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 999px;
      padding: 11px 18px;
      font-weight: 800;
      color: #fff;
      background: linear-gradient(135deg, var(--magenta), var(--coral));
      box-shadow: var(--shadow-hot);
    }

    .nav-cta:hover,
    .nav-cta:focus {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 22px 46px rgba(255, 47, 143, .28);
    }

    .seg-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 0 14px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .seg-nav::-webkit-scrollbar {
      display: none;
    }

    .seg-link {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 9px 16px;
      border-radius: 999px;
      border: 1px solid rgba(23, 17, 22, .14);
      background: #fff;
      color: var(--ink-2);
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 8px 18px rgba(23, 17, 22, .05);
    }

    .seg-link:hover,
    .seg-link.active {
      color: #fff;
      border-color: transparent;
      background: var(--ink);
      transform: translateY(-1px);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 74px 0;
    }

    .section.tight {
      padding: 54px 0;
    }

    .section-dark {
      color: #fff;
      background:
        linear-gradient(135deg, rgba(255, 47, 143, .18), transparent 36%),
        linear-gradient(180deg, #1b1118 0%, #24151e 100%);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      color: var(--magenta);
      font-weight: 900;
      font-size: 13px;
    }

    .section-kicker::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--lemon);
      box-shadow: 0 0 0 5px rgba(255, 228, 92, .28);
    }

    .section-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.12;
      font-weight: 900;
    }

    .section-desc {
      margin: 10px 0 0;
      max-width: 650px;
      color: var(--muted);
      font-size: 16px;
    }

    .section-dark .section-desc,
    .section-dark .muted,
    .cta-band .muted {
      color: rgba(255, 255, 255, .72);
    }

    .hero {
      padding: 34px 0 40px;
    }

    .hero-ribbon {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 14px;
      margin-bottom: 18px;
      border-radius: 999px;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .ribbon-text {
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ribbon-dots {
      display: flex;
      gap: 6px;
      flex: 0 0 auto;
    }

    .ribbon-dots span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--lemon);
    }

    .ribbon-dots span:nth-child(2) {
      background: var(--magenta);
    }

    .ribbon-dots span:nth-child(3) {
      background: var(--mint);
    }

    .hero-banner {
      position: relative;
      min-height: 355px;
      border-radius: 30px;
      padding: clamp(26px, 5vw, 54px);
      background:
        linear-gradient(105deg, rgba(255, 47, 143, .94) 0%, rgba(255, 104, 76, .9) 46%, rgba(255, 228, 92, .9) 100%);
      box-shadow: var(--shadow-hot);
      overflow: hidden;
    }

    .hero-banner::before,
    .hero-banner::after {
      content: "";
      position: absolute;
      background: rgba(255, 255, 255, .28);
      transform: rotate(-10deg);
      border-radius: 28px;
    }

    .hero-banner::before {
      width: 260px;
      height: 92px;
      right: -60px;
      top: 36px;
    }

    .hero-banner::after {
      width: 380px;
      height: 110px;
      right: 110px;
      bottom: -42px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 850px;
    }

    .hero-labels {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      border-radius: 999px;
      padding: 8px 13px;
      background: rgba(255, 255, 255, .86);
      color: var(--ink);
      border: 1px solid rgba(23, 17, 22, .08);
      font-weight: 800;
      font-size: 13px;
      line-height: 1.2;
      white-space: nowrap;
    }

    .chip.hot {
      background: var(--ink);
      color: #fff;
      border-color: transparent;
    }

    .chip.outline {
      background: transparent;
      color: inherit;
      border-color: rgba(255, 255, 255, .28);
    }

    h1 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(34px, 6vw, 70px);
      line-height: 1.05;
      font-weight: 900;
      color: #fff;
      text-wrap: balance;
      text-shadow: 0 12px 28px rgba(70, 16, 45, .24);
    }

    .hero-copy {
      margin: 18px 0 0;
      max-width: 720px;
      color: rgba(255, 255, 255, .94);
      font-size: clamp(16px, 2vw, 20px);
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .btn-main,
    .btn-ghost,
    .btn-darkline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border-radius: 999px;
      padding: 12px 20px;
      border: 1px solid transparent;
      font-weight: 900;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

    .btn-main {
      color: #fff;
      background: var(--ink);
      box-shadow: 0 18px 32px rgba(23, 17, 22, .26);
    }

    .btn-main:hover,
    .btn-main:focus {
      color: #fff;
      background: #000;
      transform: translateY(-2px);
      box-shadow: 0 22px 42px rgba(23, 17, 22, .34);
    }

    .btn-ghost {
      color: #fff;
      border-color: rgba(255, 255, 255, .6);
      background: rgba(255, 255, 255, .15);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      color: var(--ink);
      background: #fff;
      transform: translateY(-2px);
    }

    .btn-darkline {
      color: var(--ink);
      border-color: rgba(23, 17, 22, .2);
      background: #fff;
    }

    .btn-darkline:hover,
    .btn-darkline:focus {
      color: #fff;
      border-color: var(--ink);
      background: var(--ink);
      transform: translateY(-2px);
    }

    .hero-stats {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 28px;
      max-width: 760px;
    }

    .stat-tile {
      border-radius: 20px;
      padding: 15px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(255, 255, 255, .58);
      box-shadow: 0 14px 32px rgba(104, 20, 64, .12);
    }

    .stat-num {
      display: block;
      color: var(--ink);
      font-size: 24px;
      font-weight: 900;
      line-height: 1.1;
    }

    .stat-label {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .play-grid,
    .proof-grid,
    .matrix-grid,
    .recommend-grid {
      display: grid;
      gap: 18px;
    }

    .play-grid {
      grid-template-columns: repeat(3, 1fr);
      align-items: stretch;
    }

    .step-card,
    .proof-card,
    .matrix-card,
    .recommend-card,
    .timeline-card,
    .news-panel,
    .faq-wrap {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .82);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .step-card:hover,
    .proof-card:hover,
    .matrix-card:hover,
    .recommend-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 47, 143, .36);
      box-shadow: 0 22px 52px rgba(255, 47, 143, .16);
    }

    .step-card {
      padding: 24px;
      min-height: 250px;
      position: relative;
      overflow: hidden;
    }

    .step-card:nth-child(2) {
      margin-top: 26px;
    }

    .step-card:nth-child(3) {
      margin-top: 52px;
    }

    .step-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: var(--ink);
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      box-shadow: 0 12px 26px rgba(23, 17, 22, .18);
    }

    .step-card h3,
    .proof-card h3,
    .matrix-card h3,
    .recommend-card h3 {
      margin: 18px 0 8px;
      font-size: 22px;
      line-height: 1.25;
      font-weight: 900;
    }

    .step-card p,
    .proof-card p,
    .matrix-card p,
    .recommend-card p,
    .news-panel p,
    .timeline-card p {
      margin: 0;
      color: var(--muted);
    }

    .step-card .chip {
      margin-top: 18px;
      background: #fff1f7;
      color: #b20f5c;
    }

    .proof-track {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      padding: 4px 4px 18px;
      scroll-snap-type: x mandatory;
    }

    .proof-card {
      flex: 0 0 270px;
      padding: 22px;
      scroll-snap-align: start;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 246, 248, .94));
    }

    .proof-mark {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 14px;
    }

    .proof-score {
      height: 9px;
      width: 96px;
      border-radius: 999px;
      background: rgba(23, 17, 22, .08);
      overflow: hidden;
    }

    .proof-score span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--magenta), var(--lemon));
    }

    .matrix-grid {
      grid-template-columns: 1.2fr 1fr 1fr;
    }

    .matrix-card {
      min-height: 190px;
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .matrix-card.featured {
      color: #fff;
      background:
        linear-gradient(135deg, rgba(23, 17, 22, .96), rgba(70, 30, 52, .96));
    }

    .matrix-card.featured p {
      color: rgba(255, 255, 255, .74);
    }

    .matrix-card::after {
      content: "";
      position: absolute;
      right: -34px;
      top: -34px;
      width: 120px;
      height: 120px;
      border-radius: 34px;
      background: rgba(255, 47, 143, .13);
      transform: rotate(16deg);
    }

    .dynamic-table {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .dynamic-row {
      display: grid;
      grid-template-columns: 1.1fr 1.6fr .8fr;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
    }

    .dynamic-row:last-child {
      border-bottom: 0;
    }

    .row-tag {
      color: var(--magenta);
      font-weight: 900;
      font-size: 13px;
    }

    .row-title {
      margin: 0;
      font-weight: 900;
    }

    .row-status {
      justify-self: end;
      border-radius: 999px;
      padding: 7px 11px;
      background: #fff1f7;
      color: #b20f5c;
      font-weight: 800;
      font-size: 13px;
      white-space: nowrap;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      position: relative;
    }

    .timeline-card {
      padding: 22px;
      min-height: 190px;
    }

    .time-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      margin-bottom: 16px;
      background: var(--lemon);
      box-shadow: 0 0 0 8px rgba(255, 228, 92, .22);
    }

    .timeline-card h3 {
      margin: 0 0 8px;
      font-size: 20px;
      font-weight: 900;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
      gap: 20px;
      align-items: start;
    }

    .news-panel {
      padding: 22px;
    }

    .news-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .news-item {
      display: grid;
      grid-template-columns: 96px minmax(0, 1fr);
      gap: 16px;
      padding: 17px 0;
      border-bottom: 1px solid var(--line);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-time {
      color: var(--magenta);
      font-weight: 900;
      font-size: 13px;
    }

    .news-title {
      display: inline;
      font-weight: 900;
      line-height: 1.4;
      background-image: linear-gradient(var(--lemon), var(--lemon));
      background-size: 0 9px;
      background-position: 0 90%;
      background-repeat: no-repeat;
    }

    .news-title:hover {
      background-size: 100% 9px;
      color: var(--ink);
    }

    .news-desc {
      margin: 5px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .recommend-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .recommend-card {
      padding: 22px;
      background: #fff;
    }

    .cover-block {
      height: 118px;
      border-radius: 18px;
      background:
        linear-gradient(135deg, rgba(255, 47, 143, .88), rgba(138, 63, 252, .88)),
        repeating-linear-gradient(45deg, transparent 0 10px, rgba(255, 255, 255, .16) 10px 20px);
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
    }

    .cover-block::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 58px;
      right: -30px;
      bottom: 18px;
      border-radius: 999px;
      background: rgba(255, 228, 92, .86);
      transform: rotate(-16deg);
    }

    .accordion.faq-wrap {
      padding: 12px;
      overflow: hidden;
    }

    .accordion-item {
      border: 0;
      border-radius: 18px !important;
      overflow: hidden;
      background: transparent;
    }

    .accordion-item + .accordion-item {
      margin-top: 10px;
    }

    .accordion-button {
      gap: 10px;
      border-radius: 18px !important;
      background: #fff;
      color: var(--ink);
      font-weight: 900;
      box-shadow: none;
      padding: 18px;
    }

    .accordion-button::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: var(--magenta);
      box-shadow: 0 0 0 5px rgba(255, 47, 143, .12);
    }

    .accordion-button:not(.collapsed) {
      color: var(--ink);
      background: #fff1f7;
      box-shadow: inset 0 -1px 0 rgba(255, 47, 143, .12);
    }

    .accordion-button:focus {
      border-color: rgba(255, 47, 143, .45);
      box-shadow: 0 0 0 .25rem rgba(255, 47, 143, .15);
    }

    .accordion-body {
      color: var(--muted);
      background: #fff;
      padding: 4px 18px 20px 38px;
    }

    .cta-band {
      position: relative;
      border-radius: 30px;
      padding: clamp(28px, 5vw, 48px);
      color: #fff;
      background:
        linear-gradient(135deg, rgba(255, 47, 143, .28), transparent 38%),
        linear-gradient(160deg, #171116, #2b1624 70%, #421d33);
      box-shadow: 0 28px 70px rgba(23, 17, 22, .24);
      overflow: hidden;
    }

    .cta-band::after {
      content: "";
      position: absolute;
      right: -56px;
      top: 28px;
      width: 260px;
      height: 86px;
      border-radius: 999px;
      background: rgba(255, 228, 92, .22);
      transform: rotate(-14deg);
    }

    .cta-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
      gap: 28px;
      align-items: center;
    }

    .cta-band h2 {
      margin: 0;
      font-size: clamp(28px, 4.4vw, 50px);
      line-height: 1.12;
      font-weight: 900;
    }

    .cta-band p {
      margin: 14px 0 0;
      max-width: 700px;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .cta-actions .btn-main {
      background: linear-gradient(135deg, var(--magenta), var(--coral));
      box-shadow: var(--shadow-hot);
    }

    .site-footer {
      color: rgba(255, 255, 255, .78);
      background: #171116;
      padding: 42px 0 30px;
      border-top: 4px solid var(--magenta);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      color: #fff;
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-links a:hover {
      color: var(--lemon);
      transform: translateX(2px);
    }

    .copyright {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      font-size: 13px;
      color: rgba(255, 255, 255, .58);
    }

    @media (max-width: 1024px) {
      .play-grid,
      .recommend-grid,
      .timeline {
        grid-template-columns: repeat(2, 1fr);
      }

      .step-card:nth-child(2),
      .step-card:nth-child(3) {
        margin-top: 0;
      }

      .matrix-grid,
      .news-layout,
      .cta-inner {
        grid-template-columns: 1fr;
      }

      .dynamic-row {
        grid-template-columns: 1fr;
      }

      .row-status {
        justify-self: start;
      }
    }

    @media (max-width: 768px) {
      .site-shell {
        padding: 0 16px;
      }

      .top-nav {
        gap: 12px;
      }

      .brand-text {
        max-width: 190px;
      }

      .nav-cta {
        padding: 10px 14px;
        font-size: 14px;
      }

      .section {
        padding: 56px 0;
      }

      .section-head {
        display: block;
      }

      .hero-banner {
        border-radius: 24px;
        min-height: auto;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .play-grid,
      .recommend-grid,
      .timeline {
        grid-template-columns: 1fr;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .brand-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
      }

      .brand-text {
        max-width: 160px;
        font-size: 16px;
      }

      .hero-ribbon {
        border-radius: 18px;
        align-items: flex-start;
      }

      .hero-actions,
      .hero-labels {
        flex-direction: column;
        align-items: stretch;
      }

      .chip,
      .btn-main,
      .btn-ghost,
      .btn-darkline {
        width: 100%;
        white-space: normal;
        text-align: center;
      }

      .seg-link {
        min-height: 38px;
        padding: 8px 13px;
      }

      .proof-card {
        flex-basis: 84%;
      }

      .cta-actions .chip {
        width: auto;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#f7f1f3;
      --bg-soft:#fff8fb;
      --surface:#ffffff;
      --surface-2:#fff0f5;
      --surface-dark:#171119;
      --surface-dark-2:#221822;
      --text:#171318;
      --muted:#675c64;
      --line:rgba(23,19,24,.12);
      --line-strong:rgba(23,19,24,.18);
      --brand:#e82f8a;
      --brand-2:#ff6f5f;
      --brand-3:#8d3dff;
      --accent:#f4d93d;
      --accent-2:#ff8e7a;
      --shadow:0 16px 40px rgba(35,17,29,.12);
      --shadow-soft:0 10px 24px rgba(35,17,29,.08);
      --radius:22px;
      --radius-sm:16px;
      --radius-xs:12px;
      --container:1180px;
      --gap:clamp(16px, 2vw, 28px);
      --transition:180ms ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(232,47,138,.08), transparent 25%),
        radial-gradient(circle at 90% 12%, rgba(141,61,255,.08), transparent 24%),
        linear-gradient(180deg, #fffafc 0%, #f6eef2 56%, #f5eff2 100%);
      line-height:1.7;
      letter-spacing:0;
      overflow-x:hidden;
    }

    a{color:inherit;text-decoration:none}
    a:hover{color:inherit}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(232,47,138,.18);color:#1c1017}

    .site-shell{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(252,248,250,.96);
      backdrop-filter:none;
      border-bottom:1px solid rgba(23,19,24,.08);
      box-shadow:0 8px 24px rgba(20,10,17,.04);
    }

    .top-nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 0 10px;
      flex-wrap:wrap;
    }

    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      color:var(--text);
      min-width:0;
    }

    .brand-icon{
      width:38px;
      height:38px;
      border-radius:14px;
      background:
        linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 56%, var(--brand-3) 100%);
      box-shadow:0 10px 24px rgba(232,47,138,.28);
      position:relative;
      overflow:hidden;
    }

    .brand-icon::before,
    .brand-icon::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.84);
    }

    .brand-icon::before{
      width:14px;height:14px;left:9px;top:9px;
    }

    .brand-icon::after{
      width:8px;height:8px;right:8px;bottom:8px;
      background:rgba(255,255,255,.7);
    }

    .brand-text{
      font-size:1.02rem;
      line-height:1.15;
      white-space:nowrap;
    }

    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 18px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
      color:#fff;
      font-weight:700;
      box-shadow:0 12px 26px rgba(232,47,138,.24);
      transition:transform var(--transition), box-shadow var(--transition), filter var(--transition);
      white-space:nowrap;
    }

    .nav-cta:hover{
      transform:translateY(-1px);
      box-shadow:0 16px 28px rgba(232,47,138,.3);
      color:#fff;
      filter:saturate(1.04);
    }

    .nav-cta:focus-visible,
    .seg-link:focus-visible,
    .btn:focus-visible,
    .filter-chip:focus-visible,
    .form-control:focus-visible,
    .accordion-button:focus-visible{
      outline:3px solid rgba(232,47,138,.22);
      outline-offset:2px;
      box-shadow:none;
    }

    .seg-nav{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:0 0 14px;
      scrollbar-width:none;
    }

    .seg-nav::-webkit-scrollbar{display:none}

    .seg-link{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:0 16px;
      border-radius:999px;
      border:1px solid rgba(23,19,24,.1);
      background:rgba(255,255,255,.78);
      color:#2a2027;
      font-weight:700;
      transition:transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
      white-space:nowrap;
    }

    .seg-link:hover{
      transform:translateY(-1px);
      background:#fff;
      border-color:rgba(232,47,138,.35);
      box-shadow:0 10px 20px rgba(23,19,24,.06);
      color:var(--brand);
    }

    .seg-link.active{
      background:rgba(232,47,138,.12);
      border-color:rgba(232,47,138,.42);
      color:#9a175d;
      box-shadow:inset 0 0 0 1px rgba(232,47,138,.08);
    }

    main{
      padding:24px 0 0;
    }

    .hero-section{
      padding:16px 0 8px;
    }

    .hero-panel{
      background:
        linear-gradient(135deg, rgba(18,14,18,.97) 0%, rgba(35,18,27,.97) 58%, rgba(45,22,37,.97) 100%);
      color:#fff;
      border-radius:28px;
      overflow:hidden;
      box-shadow:0 24px 56px rgba(25,10,18,.18);
      border:1px solid rgba(255,255,255,.08);
      position:relative;
    }

    .hero-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg, rgba(255,255,255,.06) 0, rgba(255,255,255,0) 38%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 56px);
      opacity:.22;
      pointer-events:none;
    }

    .hero-inner{
      position:relative;
      z-index:1;
      padding:clamp(24px, 4vw, 42px);
      display:grid;
      grid-template-columns:minmax(0, 1.05fr) minmax(300px, .95fr);
      gap:clamp(18px, 3vw, 32px);
      align-items:stretch;
    }

    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.9);
      font-size:.92rem;
      font-weight:600;
      margin-bottom:16px;
      width:fit-content;
    }

    .kicker-dot{
      width:9px;
      height:9px;
      border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(244,217,61,.14);
    }

    .hero-title{
      font-size:clamp(2rem, 5vw, 4rem);
      line-height:1.08;
      font-weight:900;
      margin:0 0 16px;
      max-width:10.5em;
      letter-spacing:0;
      text-wrap:balance;
    }

    .hero-copy{
      margin:0;
      color:rgba(255,255,255,.82);
      font-size:1.03rem;
      max-width:40rem;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:24px 0 18px;
    }

    .btn{
      border-radius:999px;
      min-height:46px;
      padding:0 18px;
      font-weight:700;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      transition:transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
      border:1px solid transparent;
    }

    .btn-primary-custom{
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
      color:#fff;
      box-shadow:0 14px 26px rgba(232,47,138,.24);
    }

    .btn-primary-custom:hover{
      transform:translateY(-1px);
      color:#fff;
      box-shadow:0 18px 30px rgba(232,47,138,.3);
    }

    .btn-outline-custom{
      background:rgba(255,255,255,.06);
      color:#fff;
      border-color:rgba(255,255,255,.18);
    }

    .btn-outline-custom:hover{
      transform:translateY(-1px);
      background:rgba(255,255,255,.12);
      color:#fff;
      border-color:rgba(255,255,255,.32);
    }

    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .mini-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:34px;
      padding:0 13px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.13);
      color:rgba(255,255,255,.88);
      font-size:.92rem;
    }

    .mini-tag strong{
      color:#fff;
    }

    .hero-board{
      display:flex;
      flex-direction:column;
      gap:14px;
      min-width:0;
    }

    .board-card{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      border-radius:24px;
      padding:18px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
      backdrop-filter:none;
    }

    .board-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }

    .board-title{
      font-weight:800;
      font-size:1rem;
      margin:0;
      color:#fff;
    }

    .board-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(244,217,61,.14);
      color:#ffeebb;
      border:1px solid rgba(244,217,61,.2);
      font-size:.84rem;
      white-space:nowrap;
    }

    .signal-list{
      display:grid;
      gap:10px;
    }

    .signal-row{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      border-radius:18px;
      background:rgba(12,8,14,.32);
      border:1px solid rgba(255,255,255,.08);
    }

    .signal-left{
      min-width:0;
    }

    .signal-name{
      display:block;
      font-weight:700;
      font-size:.96rem;
      color:#fff;
      margin-bottom:3px;
    }

    .signal-desc{
      display:block;
      color:rgba(255,255,255,.66);
      font-size:.9rem;
    }

    .signal-value{
      flex:0 0 auto;
      font-weight:800;
      color:#fff;
      letter-spacing:0;
    }

    .progress-line{
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.1);
      overflow:hidden;
      margin-top:12px;
    }

    .progress-line span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent));
    }

    .board-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
    }

    .board-tile{
      min-height:112px;
      border-radius:18px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,.06) 100%);
      border:1px solid rgba(255,255,255,.11);
      padding:14px;
      position:relative;
      overflow:hidden;
    }

    .board-tile::after{
      content:"";
      position:absolute;
      inset:auto -30% -30% auto;
      width:112px;
      height:112px;
      border-radius:30px;
      background:linear-gradient(135deg, rgba(232,47,138,.35), rgba(141,61,255,.18));
      transform:rotate(18deg);
      opacity:.65;
    }

    .tile-label{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(255,255,255,.1);
      color:#fff;
      font-size:.82rem;
      margin-bottom:14px;
      white-space:nowrap;
    }

    .tile-value{
      position:relative;
      z-index:1;
      font-size:1.3rem;
      font-weight:900;
      line-height:1.1;
      margin-bottom:6px;
      color:#fff;
    }

    .tile-copy{
      position:relative;
      z-index:1;
      color:rgba(255,255,255,.74);
      font-size:.92rem;
      margin:0;
    }

    .section{
      padding:28px 0;
    }

    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
      flex-wrap:wrap;
    }

    .section-title{
      margin:0;
      font-size:clamp(1.4rem, 2.5vw, 2rem);
      line-height:1.18;
      font-weight:900;
      letter-spacing:0;
    }

    .section-sub{
      margin:0;
      color:var(--muted);
      max-width:44rem;
    }

    .catalog-layout{
      display:grid;
      grid-template-columns:minmax(240px, .8fr) minmax(0, 1.2fr);
      gap:20px;
      align-items:start;
    }

    .filter-panel{
      position:sticky;
      top:116px;
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:24px;
      padding:18px;
      box-shadow:var(--shadow-soft);
    }

    .filter-title{
      font-size:1.05rem;
      font-weight:800;
      margin:0 0 10px;
    }

    .filter-copy{
      color:var(--muted);
      font-size:.96rem;
      margin:0 0 14px;
    }

    .search-wrap{
      position:relative;
      margin-bottom:14px;
    }

    .search-wrap .bi{
      position:absolute;
      left:14px;
      top:50%;
      transform:translateY(-50%);
      color:#8b7f86;
    }

    .form-control{
      min-height:48px;
      border-radius:16px;
      padding-left:42px;
      border:1px solid rgba(23,19,24,.12);
      background:#fff;
      box-shadow:none;
      color:var(--text);
    }

    .form-control::placeholder{color:#9d9098}
    .form-control:focus{
      border-color:rgba(232,47,138,.42);
      box-shadow:0 0 0 .22rem rgba(232,47,138,.12);
    }

    .filter-group{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .filter-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:36px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid rgba(23,19,24,.1);
      background:var(--bg-soft);
      color:#352a31;
      font-size:.92rem;
      font-weight:700;
      transition:transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
      white-space:nowrap;
    }

    .filter-chip:hover{
      transform:translateY(-1px);
      border-color:rgba(232,47,138,.36);
      background:#fff;
      color:var(--brand);
      box-shadow:0 8px 16px rgba(23,19,24,.05);
    }

    .filter-chip.active{
      background:rgba(232,47,138,.12);
      color:#99185d;
      border-color:rgba(232,47,138,.32);
    }

    .filter-note{
      margin-top:16px;
      padding:14px;
      border-radius:18px;
      background:linear-gradient(135deg, rgba(232,47,138,.08), rgba(255,111,95,.08));
      border:1px solid rgba(232,47,138,.12);
      color:#6a5060;
      font-size:.94rem;
    }

    .catalog-flow{
      display:grid;
      gap:16px;
    }

    .catalog-card{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      min-width:0;
    }

    .catalog-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:rgba(232,47,138,.25);
    }

    .catalog-media{
      padding:18px;
      background:
        linear-gradient(135deg, rgba(232,47,138,.12), rgba(255,111,95,.08)),
        linear-gradient(180deg, #fff, #fff7fa);
      border-bottom:1px solid rgba(23,19,24,.08);
      position:relative;
      min-height:138px;
      overflow:hidden;
    }

    .catalog-media::before{
      content:"";
      position:absolute;
      inset:14px auto auto 14px;
      width:84px;
      height:84px;
      border-radius:22px;
      background:linear-gradient(145deg, rgba(141,61,255,.18), rgba(232,47,138,.18));
      transform:rotate(12deg);
    }

    .catalog-index{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:42px;
      height:42px;
      border-radius:14px;
      background:rgba(23,19,24,.94);
      color:#fff;
      font-weight:900;
      box-shadow:0 12px 20px rgba(23,19,24,.12);
      margin-bottom:14px;
    }

    .catalog-tag-row{
      position:relative;
      z-index:1;
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }

    .catalog-tag{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(23,19,24,.08);
      color:#5f4d57;
      font-size:.84rem;
      font-weight:700;
    }

    .catalog-body{
      padding:18px;
    }

    .catalog-title{
      font-size:1.16rem;
      font-weight:900;
      line-height:1.28;
      margin:0 0 10px;
      letter-spacing:0;
      text-wrap:balance;
    }

    .catalog-desc{
      margin:0 0 14px;
      color:var(--muted);
    }

    .catalog-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:14px;
      color:#816f79;
      font-size:.9rem;
    }

    .meta-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      background:var(--surface-2);
      border:1px solid rgba(232,47,138,.12);
      color:#7a4b62;
      font-weight:700;
    }

    .catalog-action{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--brand);
      font-weight:800;
    }

    .catalog-action .bi{
      font-size:.95rem;
      transition:transform var(--transition);
    }

    .catalog-card:hover .catalog-action .bi{
      transform:translateX(2px);
    }

    .steps-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:16px;
    }

    .step-card{
      background:linear-gradient(180deg, #fff, #fff9fb);
      border:1px solid var(--line);
      border-radius:24px;
      padding:18px;
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
      min-height:220px;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .step-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:rgba(232,47,138,.2);
    }

    .step-card::after{
      content:"";
      position:absolute;
      inset:auto -18px -26px auto;
      width:108px;
      height:108px;
      border-radius:32px;
      background:linear-gradient(145deg, rgba(232,47,138,.12), rgba(255,111,95,.08));
      transform:rotate(20deg);
    }

    .step-no{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:16px;
      background:rgba(23,19,24,.94);
      color:#fff;
      font-size:1.04rem;
      font-weight:900;
      box-shadow:0 12px 20px rgba(23,19,24,.1);
      margin-bottom:14px;
    }

    .step-title{
      position:relative;
      z-index:1;
      font-weight:900;
      font-size:1.12rem;
      margin:0 0 10px;
    }

    .step-desc{
      position:relative;
      z-index:1;
      color:var(--muted);
      margin:0 0 18px;
    }

    .step-chip{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      min-height:32px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(232,47,138,.1);
      border:1px solid rgba(232,47,138,.14);
      color:#9b175d;
      font-weight:700;
      font-size:.88rem;
    }

    .proof-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:16px;
    }

    .proof-card{
      background:var(--surface);
      border-radius:22px;
      border:1px solid var(--line);
      padding:18px;
      box-shadow:var(--shadow-soft);
      min-width:0;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .proof-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:rgba(232,47,138,.2);
    }

    .proof-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
    }

    .proof-title{
      margin:0;
      font-size:1.02rem;
      font-weight:900;
    }

    .proof-score{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(244,217,61,.18);
      color:#7b6512;
      border:1px solid rgba(244,217,61,.18);
      font-weight:800;
      font-size:.85rem;
      white-space:nowrap;
    }

    .proof-copy{
      margin:0 0 14px;
      color:var(--muted);
      font-size:.95rem;
    }

    .proof-bars{
      display:grid;
      gap:10px;
      margin-bottom:12px;
    }

    .proof-bar{
      display:grid;
      gap:6px;
    }

    .proof-bar span{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:.88rem;
      color:#6b5a63;
      font-weight:700;
    }

    .bar{
      height:8px;
      border-radius:999px;
      background:#f1e6eb;
      overflow:hidden;
    }

    .bar i{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent));
    }

    .proof-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }

    .proof-tag{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      background:var(--bg-soft);
      border:1px solid rgba(23,19,24,.08);
      color:#614d57;
      font-size:.85rem;
      font-weight:700;
    }

    .faq-wrap{
      background:var(--surface);
      border-radius:24px;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }

    .accordion{
      margin:0;
    }

    .accordion-item{
      border:0;
      border-bottom:1px solid rgba(23,19,24,.08);
      border-radius:0;
    }

    .accordion-item:last-child{
      border-bottom:0;
    }

    .accordion-button{
      background:#fff;
      color:var(--text);
      font-weight:800;
      padding:18px 20px;
      box-shadow:none;
    }

    .accordion-button:not(.collapsed){
      color:#8f1757;
      background:linear-gradient(90deg, rgba(232,47,138,.08), rgba(255,255,255,1));
    }

    .accordion-button::after{
      width:1rem;
      height:1rem;
      background-size:1rem;
      filter:saturate(0.8);
    }

    .accordion-body{
      color:var(--muted);
      padding:0 20px 18px;
    }

    .faq-mark{
      display:inline-flex;
      width:10px;
      height:10px;
      border-radius:999px;
      background:var(--brand);
      box-shadow:0 0 0 5px rgba(232,47,138,.1);
      margin-right:10px;
      vertical-align:middle;
    }

    .cta-section{
      padding:10px 0 30px;
    }

    .cta-band{
      background:linear-gradient(135deg, rgba(18,14,18,.98), rgba(38,23,34,.98));
      color:#fff;
      border-radius:28px;
      border:1px solid rgba(255,255,255,.08);
      padding:clamp(22px, 4vw, 34px);
      box-shadow:0 22px 52px rgba(18,10,15,.18);
      position:relative;
      overflow:hidden;
    }

    .cta-band::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(255,255,255,.06), transparent 40%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 72px);
      opacity:.2;
      pointer-events:none;
    }

    .cta-inner{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:minmax(0, 1fr) auto;
      gap:20px;
      align-items:center;
    }

    .cta-title{
      margin:0 0 10px;
      font-size:clamp(1.5rem, 3vw, 2.2rem);
      line-height:1.14;
      font-weight:900;
      text-wrap:balance;
    }

    .cta-copy{
      margin:0;
      color:rgba(255,255,255,.78);
      max-width:46rem;
    }

    .cta-actions{
      display:flex;
      flex-direction:column;
      gap:12px;
      align-items:flex-start;
    }

    .cta-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .cta-tag{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.13);
      color:rgba(255,255,255,.9);
      font-size:.9rem;
      font-weight:700;
    }

    .site-footer{
      margin-top:20px;
      background:#171119;
      color:rgba(255,255,255,.84);
      padding:34px 0 20px;
      border-top:1px solid rgba(255,255,255,.08);
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .9fr 1fr;
      gap:20px;
      align-items:start;
    }

    .footer-brand{
      font-weight:900;
      font-size:1.1rem;
      margin-bottom:10px;
      color:#fff;
    }

    .footer-title{
      font-weight:800;
      color:#fff;
      margin-bottom:10px;
    }

    .footer-links{
      display:grid;
      gap:10px;
    }

    .footer-links a{
      color:rgba(255,255,255,.76);
      transition:color var(--transition), transform var(--transition);
      width:fit-content;
    }

    .footer-links a:hover{
      color:#fff;
      transform:translateX(2px);
    }

    .copyright{
      margin-top:24px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.08);
      color:rgba(255,255,255,.6);
      font-size:.92rem;
    }

    .section-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(232,47,138,.1);
      border:1px solid rgba(232,47,138,.12);
      color:#931757;
      font-weight:700;
      font-size:.9rem;
    }

    .compact-note{
      font-size:.92rem;
      color:var(--muted);
      margin:0;
    }

    .mobile-scroll{
      overflow-x:auto;
      scrollbar-width:none;
      -webkit-overflow-scrolling:touch;
    }

    .mobile-scroll::-webkit-scrollbar{display:none}

    @media (max-width: 991.98px){
      .hero-inner,
      .catalog-layout,
      .cta-inner{
        grid-template-columns:1fr;
      }

      .filter-panel{
        position:static;
      }

      .steps-grid{
        grid-template-columns:1fr;
      }

      .proof-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }

      .footer-grid{
        grid-template-columns:1fr;
      }

      .hero-title{
        max-width:none;
      }
    }

    @media (max-width: 767.98px){
      .site-shell{
        width:min(var(--container), calc(100% - 24px));
      }

      .brand-text{
        font-size:.98rem;
      }

      .top-nav{
        gap:10px;
      }

      .nav-cta{
        width:auto;
      }

      .hero-panel,
      .cta-band{
        border-radius:24px;
      }

      .hero-inner{
        padding:20px 18px 18px;
      }

      .hero-actions,
      .cta-actions{
        width:100%;
      }

      .hero-actions .btn,
      .cta-actions .btn{
        width:100%;
      }

      .board-grid{
        grid-template-columns:1fr;
      }

      .proof-grid{
        grid-template-columns:repeat(2, minmax(240px, 1fr));
        overflow-x:auto;
        padding-bottom:2px;
      }

      .proof-card{
        min-width:240px;
      }

      .section{
        padding:22px 0;
      }
    }

    @media (max-width: 575.98px){
      main{
        padding-top:18px;
      }

      .top-nav{
        align-items:flex-start;
      }

      .brand-mark{
        gap:10px;
      }

      .brand-icon{
        width:34px;
        height:34px;
        border-radius:12px;
      }

      .nav-cta{
        min-height:42px;
        padding:0 14px;
      }

      .hero-title{
        font-size:2rem;
      }

      .hero-copy{
        font-size:.98rem;
      }

      .hero-tags,
      .filter-group,
      .cta-tags,
      .hero-actions{
        gap:8px;
      }

      .mini-tag,
      .filter-chip,
      .step-chip,
      .proof-tag,
      .cta-tag{
        font-size:.84rem;
      }

      .catalog-media{
        min-height:122px;
      }

      .catalog-title{
        font-size:1.06rem;
      }

      .proof-grid{
        grid-template-columns:1fr;
      }

      .proof-card{
        min-width:0;
      }

      .accordion-button{
        padding:16px 16px;
      }

      .accordion-body{
        padding:0 16px 16px;
      }
    }
