/* roulang page: index */
:root{
      --bg:#F8F7F4;
      --bg2:#FFFDFC;
      --mist:#F3F7F5;
      --rose:#E96F92;
      --rose2:#D95F83;
      --mint:#8ED7C6;
      --lilac:#A99BE8;
      --ink:#1E1B1C;
      --sub:#4C4648;
      --mute:#7A7275;
      --line:rgba(30,27,28,.08);
      --shadow:0 18px 50px rgba(30,27,28,0.08);
      --shadow-hover:0 22px 60px rgba(30,27,28,0.12);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      background:
        radial-gradient(circle at 12% 12%, rgba(233,111,146,.12), transparent 24%),
        radial-gradient(circle at 86% 8%, rgba(142,215,198,.14), transparent 22%),
        radial-gradient(circle at 70% 82%, rgba(169,155,232,.12), transparent 24%),
        linear-gradient(180deg, #FDFCF9 0%, #F8F7F4 38%, #F3F7F5 100%);
      line-height:1.75;
      letter-spacing:0;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(233,111,146,.18)}
    .container-x{
      width:min(100%, 80rem);
      margin:0 auto;
      padding-left:1rem;
      padding-right:1rem;
    }
    @media (min-width:640px){.container-x{padding-left:1.5rem;padding-right:1.5rem}}
    @media (min-width:1024px){.container-x{padding-left:2rem;padding-right:2rem}}
    .dock-wrap{
      position:fixed;
      top:1rem;
      left:0;
      right:0;
      z-index:50;
      pointer-events:none;
    }
    .dock{
      pointer-events:auto;
      width:min(calc(100% - 1rem), 72rem);
      margin:0 auto;
      background:rgba(255,255,255,.88);
      backdrop-filter:blur(16px);
      border:1px solid rgba(30,27,28,.08);
      border-radius:999px;
      box-shadow:0 14px 44px rgba(30,27,28,.08);
    }
    .dock-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.72rem .95rem;
      border-radius:999px;
      color:var(--sub);
      transition:all .2s ease;
      white-space:nowrap;
    }
    .dock-link:hover,
    .dock-link:focus-visible{
      color:var(--ink);
      background:rgba(233,111,146,.08);
      outline:none;
    }
    .dock-link.active{
      color:var(--rose2);
      background:rgba(233,111,146,.14);
      font-weight:700;
    }
    .dock-link[data-active="true"]{
      color:var(--rose2);
      background:rgba(233,111,146,.14);
      font-weight:700;
    }
    .brand-dot{
      width:.72rem;height:.72rem;border-radius:999px;background:linear-gradient(135deg,var(--rose),var(--lilac));
      box-shadow:0 0 0 5px rgba(233,111,146,.12);
      flex:none;
    }
    .brand-wave{
      width:1.7rem;height:1rem;display:inline-block;position:relative;flex:none;
    }
    .brand-wave::before,
    .brand-wave::after{
      content:"";
      position:absolute;
      inset:0;
      border-radius:999px;
      border:2px solid rgba(233,111,146,.5);
      clip-path:polygon(0 50%, 10% 36%, 20% 56%, 30% 40%, 40% 60%, 50% 42%, 60% 58%, 70% 38%, 80% 54%, 90% 36%, 100% 50%, 100% 100%, 0 100%);
      opacity:.9;
    }
    .brand-wave::after{
      transform:translateY(3px);
      border-color:rgba(142,215,198,.7);
      clip-path:polygon(0 50%, 10% 63%, 20% 44%, 30% 60%, 40% 40%, 50% 58%, 60% 42%, 70% 62%, 80% 46%, 90% 64%, 100% 50%, 100% 100%, 0 100%);
    }
    .hero-card,
    .soft-card,
    .compare-card,
    .panel-card,
    .faq-item,
    .news-item,
    .note-card,
    .form-card{
      background:rgba(255,253,252,.86);
      border:1px solid var(--line);
      border-radius:1.4rem;
      box-shadow:var(--shadow);
      transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .hero-card:hover,
    .soft-card:hover,
    .compare-card:hover,
    .panel-card:hover,
    .news-item:hover{
      transform:translateY(-3px);
      border-color:rgba(233,111,146,.22);
      box-shadow:var(--shadow-hover);
    }
    .section{
      position:relative;
      padding:4.5rem 0;
    }
    @media (min-width:768px){
      .section{padding:5.75rem 0}
    }
    .section-title{
      font-size:clamp(1.65rem, 3vw, 2.35rem);
      line-height:1.18;
      letter-spacing:0;
      margin:0;
      color:var(--ink);
      font-weight:800;
    }
    .section-desc{
      color:var(--sub);
      max-width:46rem;
      font-size:1rem;
    }
    .hero-title{
      font-size:clamp(2rem, 4vw, 3.6rem);
      line-height:1.12;
      letter-spacing:0;
      font-weight:800;
      color:var(--ink);
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.45rem;
      border-radius:999px;
      padding:.9rem 1.15rem;
      border:1px solid transparent;
      transition:all .2s ease;
      min-height:3rem;
      font-weight:700;
      letter-spacing:0;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--rose),var(--rose2));
      color:#fff;
      box-shadow:0 12px 28px rgba(217,95,131,.22);
    }
    .btn-primary:hover,
    .btn-primary:focus-visible{
      transform:translateY(-1px);
      filter:saturate(1.05) brightness(1.02);
      outline:none;
    }
    .btn-secondary{
      background:rgba(255,255,255,.9);
      border-color:rgba(30,27,28,.1);
      color:var(--ink);
    }
    .btn-secondary:hover,
    .btn-secondary:focus-visible{
      background:rgba(233,111,146,.08);
      border-color:rgba(233,111,146,.2);
      outline:none;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:.38rem;
      padding:.5rem .78rem;
      border-radius:999px;
      border:1px solid rgba(30,27,28,.08);
      background:rgba(255,255,255,.82);
      color:var(--sub);
      font-size:.92rem;
      white-space:nowrap;
    }
    .chip-rose{background:rgba(233,111,146,.1);color:var(--rose2);border-color:rgba(233,111,146,.18)}
    .chip-mint{background:rgba(142,215,198,.12);color:#2c7f6e;border-color:rgba(142,215,198,.24)}
    .chip-lilac{background:rgba(169,155,232,.12);color:#705fc4;border-color:rgba(169,155,232,.24)}
    .step-badge{
      width:2rem;height:2rem;border-radius:999px;
      display:inline-flex;align-items:center;justify-content:center;
      background:rgba(233,111,146,.12);
      color:var(--rose2);
      font-weight:800;
      font-size:.95rem;
      flex:none;
    }
    .timeline-line{
      position:absolute;
      left:1rem;
      top:1.2rem;
      bottom:1.2rem;
      width:1px;
      background:linear-gradient(180deg, rgba(233,111,146,.35), rgba(142,215,198,.35));
    }
    @media (min-width:768px){
      .timeline-line{
        left:0;
        right:0;
        top:2.25rem;
        bottom:auto;
        height:1px;
        width:auto;
      }
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:1.05rem 1.1rem;
      border-radius:1.1rem;
      font-weight:700;
      color:var(--ink);
      transition:background .2s ease;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary:hover,
    .faq-item summary:focus-visible{background:rgba(233,111,146,.06);outline:none}
    .faq-item[open] summary{
      background:rgba(233,111,146,.07);
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }
    .faq-content{
      padding:0 1.1rem 1.1rem 1.1rem;
      color:var(--sub);
    }
    .mini-tag{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.38rem .6rem;
      border-radius:999px;
      font-size:.82rem;
      background:rgba(255,255,255,.9);
      border:1px solid rgba(30,27,28,.08);
      color:var(--mute);
    }
    .input{
      width:100%;
      border-radius:1rem;
      border:1px solid #E8E2E4;
      background:#fff;
      padding:.9rem 1rem;
      color:var(--ink);
      outline:none;
      transition:box-shadow .2s ease,border-color .2s ease,background .2s ease;
    }
    .input:focus{
      border-color:rgba(233,111,146,.45);
      box-shadow:0 0 0 4px rgba(233,111,146,.12);
    }
    .input::placeholder{color:#998e92}
    .select{
      appearance:none;
      background-image:linear-gradient(45deg,transparent 50%, #888 50%),linear-gradient(135deg,#888 50%, transparent 50%);
      background-position:calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
      background-size:6px 6px, 6px 6px;
      background-repeat:no-repeat;
      padding-right:2.2rem;
    }
    .section-break{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(30,27,28,.1), transparent);
    }
    .footer-link{
      color:var(--sub);
      transition:color .2s ease, transform .2s ease;
    }
    .footer-link:hover,
    .footer-link:focus-visible{
      color:var(--rose2);
      outline:none;
    }
    .label-glow{
      box-shadow:0 10px 24px rgba(233,111,146,.12);
    }
    .scrollbar-none::-webkit-scrollbar{display:none}
    .scrollbar-none{scrollbar-width:none;-ms-overflow-style:none}
    .table-wrap{
      overflow-x:auto;
      border-radius:1.25rem;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:46rem;
      overflow:hidden;
    }
    th, td{
      padding:1rem 1rem;
      border-bottom:1px solid rgba(30,27,28,.08);
      vertical-align:top;
      text-align:left;
      color:var(--sub);
      background:rgba(255,255,255,.84);
    }
    th{
      color:var(--ink);
      font-size:.94rem;
      font-weight:800;
      background:rgba(243,247,245,.9);
    }
    tr:last-child td{border-bottom:none}
    .table-wrap table tr:first-child th:first-child{border-top-left-radius:1rem}
    .table-wrap table tr:first-child th:last-child{border-top-right-radius:1rem}
    .table-wrap table tr:last-child td:first-child{border-bottom-left-radius:1rem}
    .table-wrap table tr:last-child td:last-child{border-bottom-right-radius:1rem}
    .mute-line{
      border:1px solid rgba(30,27,28,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(243,247,245,.6));
    }
    .hover-arrow{
      transition:transform .2s ease;
    }
    .news-item:hover .hover-arrow,
    .btn:hover .hover-arrow{
      transform:translateX(3px);
    }
    .focus-ring:focus-visible{
      outline:2px solid rgba(233,111,146,.5);
      outline-offset:2px;
    }
    .floating-wave{
      position:absolute;
      inset:auto 0 0 0;
      height:7rem;
      pointer-events:none;
      opacity:.55;
      background:
        linear-gradient(180deg, transparent 0%, rgba(248,247,244,.9) 65%, rgba(248,247,244,1) 100%),
        repeating-linear-gradient(90deg, transparent 0 24px, rgba(233,111,146,.11) 24px 25px, transparent 25px 42px);
      mask-image:linear-gradient(180deg, transparent 0%, black 30%, black 100%);
    }
    .note-border{
      border:1px dashed rgba(217,95,131,.22);
    }

/* roulang page: category2 */
:root {
      --bg: #F8F7F4;
      --bg-soft: #FFFDFC;
      --bg-mint: #F3F7F5;
      --ink: #1E1B1C;
      --sub: #4C4648;
      --mute: #7A7275;
      --line: rgba(30,27,28,.08);
      --line-strong: rgba(217,95,131,.28);
      --primary: #D95F83;
      --primary-2: #E96F92;
      --mint: #8ED7C6;
      --lilac: #A99BE8;
      --radius: 24px;
      --radius-sm: 18px;
      --shadow: 0 18px 50px rgba(30,27,28,0.08);
      --shadow-hover: 0 24px 62px rgba(30,27,28,0.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background:
        radial-gradient(circle at 14% 8%, rgba(233,111,146,.13), transparent 26%),
        radial-gradient(circle at 86% 12%, rgba(142,215,198,.18), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, #FFFDFC 46%, var(--bg-mint) 100%);
      color: var(--ink);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, select {
      font: inherit;
    }

    .text-ink {
      color: var(--ink);
    }

    .text-sub {
      color: var(--sub);
    }

    .text-mute {
      color: var(--mute);
    }

    .container-x {
      width: min(100% - 32px, 1180px);
      margin-inline: auto;
    }

    .section {
      padding-block: 88px;
    }

    .section-tight {
      padding-block: 56px;
    }

    .section-break {
      height: 1px;
      width: 100%;
      background: linear-gradient(90deg, transparent, rgba(30,27,28,.12), transparent);
    }

    .dock {
      position: sticky;
      top: 0;
      z-index: 50;
      padding-top: 14px;
      pointer-events: none;
    }

    .dock > .container-x {
      pointer-events: auto;
      border: 1px solid rgba(30,27,28,.08);
      border-radius: 999px;
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(16px);
      box-shadow: 0 14px 38px rgba(30,27,28,.08);
    }

    .brand-dot {
      width: 13px;
      height: 13px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--mint));
      box-shadow: 0 0 0 6px rgba(217,95,131,.12);
      flex: 0 0 auto;
    }

    .brand-wave {
      width: 26px;
      height: 15px;
      border-radius: 999px;
      background:
        linear-gradient(90deg, transparent 0 8%, rgba(217,95,131,.68) 8% 18%, transparent 18% 31%, rgba(142,215,198,.8) 31% 43%, transparent 43% 56%, rgba(169,155,232,.78) 56% 68%, transparent 68% 82%, rgba(217,95,131,.68) 82% 92%, transparent 92%);
      opacity: .86;
    }

    .dock-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 9px 15px;
      border-radius: 999px;
      color: var(--sub);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .dock-link:hover,
    .dock-link:focus-visible {
      color: var(--primary);
      background: rgba(233,111,146,.10);
      transform: translateY(-1px);
      outline: none;
    }

    .dock-link.active,
    .dock-link[data-active="true"] {
      color: var(--primary);
      background: rgba(233,111,146,.14);
      box-shadow: inset 0 0 0 1px rgba(217,95,131,.18);
    }

    .scrollbar-none {
      scrollbar-width: none;
    }

    .scrollbar-none::-webkit-scrollbar {
      display: none;
    }

    .focus-ring:focus-visible,
    .btn:focus-visible,
    .input:focus-visible,
    .select:focus-visible,
    .faq-button:focus-visible {
      outline: 3px solid rgba(217,95,131,.28);
      outline-offset: 3px;
    }

    .input,
    .select {
      width: 100%;
      min-height: 52px;
      border: 1px solid rgba(30,27,28,.10);
      border-radius: 18px;
      background: rgba(255,255,255,.78);
      color: var(--ink);
      padding: 12px 16px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .input::placeholder {
      color: rgba(122,114,117,.72);
    }

    .input:focus,
    .select:focus {
      border-color: rgba(217,95,131,.42);
      box-shadow: 0 0 0 5px rgba(217,95,131,.10);
      background: #fff;
      outline: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      line-height: 1.25;
      text-align: center;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #fff;
      box-shadow: 0 14px 30px rgba(217,95,131,.24);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(217,95,131,.30);
    }

    .btn-secondary {
      background: rgba(255,255,255,.78);
      color: var(--ink);
      border-color: rgba(30,27,28,.10);
    }

    .btn-secondary:hover {
      color: var(--primary);
      background: rgba(233,111,146,.09);
      border-color: rgba(217,95,131,.20);
      transform: translateY(-2px);
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(30,27,28,.08);
      white-space: nowrap;
    }

    .chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: currentColor;
      opacity: .72;
    }

    .chip-rose {
      color: #B94E70;
      background: rgba(233,111,146,.12);
    }

    .chip-mint {
      color: #427D70;
      background: rgba(142,215,198,.18);
    }

    .chip-lilac {
      color: #695EB0;
      background: rgba(169,155,232,.16);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--sub);
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(30,27,28,.08);
      font-size: 12px;
      font-weight: 800;
    }

    .hero {
      position: relative;
      padding: 86px 0 46px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 12px 0 auto;
      height: 420px;
      background:
        repeating-linear-gradient(90deg, transparent 0 22px, rgba(217,95,131,.07) 22px 24px, transparent 24px 48px),
        linear-gradient(180deg, rgba(255,255,255,.60), transparent);
      mask-image: linear-gradient(180deg, #000, transparent);
      pointer-events: none;
      opacity: .55;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, .78fr);
      gap: 34px;
      align-items: stretch;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(30,27,28,.08);
      color: var(--primary);
      font-weight: 900;
      font-size: 14px;
      box-shadow: 0 10px 26px rgba(30,27,28,.05);
    }

    .eyebrow span {
      width: 28px;
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--mint), var(--lilac));
    }

    h1 {
      margin: 22px 0 0;
      font-size: clamp(34px, 5.1vw, 56px);
      line-height: 1.12;
      letter-spacing: 0;
      font-weight: 900;
      max-width: 780px;
    }

    .hero-copy {
      margin-top: 20px;
      max-width: 720px;
      color: var(--sub);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .stat-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .stat-pill {
      display: inline-flex;
      flex-direction: column;
      min-width: 132px;
      padding: 13px 16px;
      border-radius: 20px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(30,27,28,.08);
      box-shadow: 0 12px 30px rgba(30,27,28,.05);
    }

    .stat-pill strong {
      font-size: 21px;
      line-height: 1.1;
      color: var(--ink);
    }

    .stat-pill span {
      margin-top: 4px;
      color: var(--mute);
      font-size: 13px;
      font-weight: 700;
    }

    .progress-card,
    .soft-card,
    .timeline-panel,
    .compare-wrap,
    .cta-panel {
      border: 1px solid rgba(30,27,28,.08);
      background: rgba(255,255,255,.76);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .progress-card {
      position: relative;
      overflow: hidden;
      padding: 26px;
      min-height: 420px;
    }

    .progress-card::after {
      content: "";
      position: absolute;
      inset: auto -28px -38px auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(142,215,198,.30), transparent 68%);
      pointer-events: none;
    }

    .progress-ring {
      width: 188px;
      height: 188px;
      margin: 8px auto 22px;
      border-radius: 50%;
      background:
        conic-gradient(var(--primary) 0 72%, rgba(30,27,28,.08) 72% 100%);
      display: grid;
      place-items: center;
      position: relative;
    }

    .progress-ring::before {
      content: "";
      width: 136px;
      height: 136px;
      border-radius: 50%;
      background: #FFFDFC;
      box-shadow: inset 0 0 0 1px rgba(30,27,28,.08);
    }

    .progress-ring > div {
      position: absolute;
      text-align: center;
    }

    .progress-ring strong {
      display: block;
      font-size: 38px;
      line-height: 1;
      font-weight: 900;
      color: var(--ink);
    }

    .progress-ring span {
      color: var(--mute);
      font-size: 13px;
      font-weight: 800;
    }

    .tier-list {
      display: grid;
      gap: 10px;
    }

    .tier-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 14px;
      border-radius: 18px;
      background: rgba(248,247,244,.76);
      border: 1px solid rgba(30,27,28,.07);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .tier-item:hover {
      transform: translateY(-2px);
      border-color: rgba(217,95,131,.22);
      background: rgba(233,111,146,.07);
    }

    .tier-item strong {
      font-size: 15px;
    }

    .tier-item span {
      color: var(--mute);
      font-size: 13px;
      white-space: nowrap;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(260px, .28fr);
      gap: 24px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.18;
      letter-spacing: 0;
      font-weight: 900;
      margin: 0;
    }

    .section-desc {
      margin-top: 12px;
      color: var(--sub);
      max-width: 720px;
      font-size: 16px;
    }

    .mini-note {
      padding: 16px 18px;
      border-radius: 20px;
      background: rgba(142,215,198,.16);
      border: 1px solid rgba(66,125,112,.13);
      color: var(--sub);
      font-size: 14px;
      font-weight: 700;
    }

    .main-layout {
      display: grid;
      grid-template-columns: 330px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .timeline-panel {
      padding: 22px;
      position: sticky;
      top: 104px;
    }

    .timeline-list {
      position: relative;
      display: grid;
      gap: 18px;
      margin-top: 18px;
    }

    .timeline-list::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 10px;
      bottom: 10px;
      width: 2px;
      background: linear-gradient(180deg, rgba(217,95,131,.32), rgba(142,215,198,.46));
    }

    .time-step {
      position: relative;
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      align-items: start;
    }

    .step-num {
      position: relative;
      z-index: 1;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--primary);
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 10px 20px rgba(217,95,131,.22);
    }

    .time-step:nth-child(even) .step-num {
      background: #59B6A3;
      box-shadow: 0 10px 20px rgba(89,182,163,.20);
    }

    .time-step h3 {
      margin: 0;
      font-size: 17px;
      font-weight: 900;
      line-height: 1.35;
    }

    .time-step p {
      margin: 5px 0 0;
      color: var(--mute);
      font-size: 14px;
      line-height: 1.7;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      position: relative;
      min-height: 220px;
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid rgba(30,27,28,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.64)),
        radial-gradient(circle at 92% 12%, rgba(169,155,232,.16), transparent 36%);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .entry-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(217,95,131,.24);
    }

    .entry-card::before {
      content: "";
      position: absolute;
      right: 18px;
      bottom: 18px;
      width: 88px;
      height: 30px;
      border-radius: 999px;
      background:
        repeating-linear-gradient(90deg, rgba(217,95,131,.30) 0 4px, transparent 4px 10px);
      opacity: .42;
    }

    .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .status-dot {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: var(--mint);
      box-shadow: 0 0 0 7px rgba(142,215,198,.14);
    }

    .entry-card h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.28;
      font-weight: 900;
      max-width: 420px;
    }

    .entry-card p {
      margin: 10px 0 0;
      color: var(--sub);
      font-size: 15px;
    }

    .meta-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .card-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: var(--primary);
      font-weight: 900;
      transition: gap .2s ease, color .2s ease;
    }

    .entry-card:hover .card-action {
      gap: 12px;
      color: #B94E70;
    }

    .compare-wrap {
      overflow: hidden;
    }

    .compare-scroll {
      overflow-x: auto;
    }

    .compare-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      min-width: 760px;
    }

    .compare-table th,
    .compare-table td {
      padding: 18px 20px;
      text-align: left;
      border-bottom: 1px solid rgba(30,27,28,.08);
      vertical-align: top;
    }

    .compare-table th {
      background: rgba(248,247,244,.74);
      color: var(--ink);
      font-size: 14px;
      font-weight: 900;
    }

    .compare-table td {
      color: var(--sub);
      font-size: 15px;
    }

    .compare-table tr:last-child td {
      border-bottom: 0;
    }

    .compare-table strong {
      color: var(--ink);
    }

    .notice-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 20px;
      align-items: stretch;
    }

    .notice-card {
      padding: 24px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(30,27,28,.08);
      box-shadow: var(--shadow);
    }

    .notice-card h3 {
      margin: 0;
      font-size: 22px;
      font-weight: 900;
    }

    .notice-card p {
      margin: 10px 0 0;
      color: var(--sub);
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 26px 1fr;
      gap: 10px;
      color: var(--sub);
      font-size: 15px;
    }

    .check-list li::before {
      content: "✓";
      display: grid;
      place-items: center;
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: rgba(142,215,198,.20);
      color: #427D70;
      font-weight: 900;
      line-height: 1;
    }

    .faq-wrap {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-radius: 20px;
      border: 1px solid rgba(30,27,28,.08);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 32px rgba(30,27,28,.05);
      overflow: hidden;
    }

    .faq-button {
      width: 100%;
      min-height: 64px;
      padding: 18px 20px;
      border: 0;
      background: transparent;
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      font-weight: 900;
      text-align: left;
      cursor: pointer;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(233,111,146,.12);
      color: var(--primary);
      flex: 0 0 auto;
      transition: transform .2s ease;
    }

    details[open] .faq-icon {
      transform: rotate(45deg);
    }

    .faq-content {
      padding: 0 20px 20px;
      color: var(--sub);
      font-size: 15px;
    }

    .cta-panel {
      padding: 30px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 24px;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(255,255,255,.84), rgba(243,247,245,.82)),
        radial-gradient(circle at 92% 18%, rgba(233,111,146,.16), transparent 34%);
    }

    .cta-panel h2 {
      margin: 0;
      font-size: clamp(26px, 3.6vw, 38px);
      line-height: 1.2;
      font-weight: 900;
    }

    .cta-panel p {
      margin: 12px 0 0;
      color: var(--sub);
    }

    .confirm-box {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(30,27,28,.08);
    }

    .confirm-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--sub);
      font-size: 14px;
    }

    .confirm-row input {
      width: 18px;
      height: 18px;
      margin-top: 4px;
      accent-color: var(--primary);
      flex: 0 0 auto;
    }

    .footer-link {
      color: var(--sub);
      transition: color .2s ease, transform .2s ease;
      display: inline-flex;
    }

    .footer-link:hover {
      color: var(--primary);
      transform: translateX(2px);
    }

    @media (max-width: 1024px) {
      .dock > .container-x {
        border-radius: 28px;
      }

      .hero-grid,
      .main-layout,
      .notice-grid,
      .cta-panel,
      .section-head {
        grid-template-columns: 1fr;
      }

      .timeline-panel {
        position: relative;
        top: auto;
      }

      .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-panel {
        padding: 24px;
      }
    }

    @media (max-width: 768px) {
      .container-x {
        width: min(100% - 24px, 1180px);
      }

      .section {
        padding-block: 64px;
      }

      .hero {
        padding-top: 58px;
      }

      .hero-actions .btn,
      .cta-panel .btn {
        width: 100%;
        white-space: normal;
      }

      .stat-pill {
        flex: 1 1 42%;
        min-width: 0;
      }

      .entry-grid {
        grid-template-columns: 1fr;
      }

      .progress-card {
        min-height: auto;
      }

      .progress-ring {
        width: 160px;
        height: 160px;
      }

      .progress-ring::before {
        width: 116px;
        height: 116px;
      }

      .progress-ring strong {
        font-size: 32px;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 34px;
      }

      .dock {
        padding-top: 8px;
      }

      .dock > .container-x {
        border-radius: 24px;
      }

      .brand-wave {
        display: none;
      }

      .chip,
      .badge {
        font-size: 12px;
      }

      .entry-card,
      .notice-card,
      .timeline-panel,
      .progress-card {
        padding: 18px;
        border-radius: 22px;
      }

      .section-head {
        gap: 14px;
      }

      .faq-button {
        align-items: flex-start;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #F8F7F4;
      --paper: #FFFDFC;
      --soft: #F3F7F5;
      --ink: #1E1B1C;
      --sub: #4C4648;
      --mute: #7A7275;
      --rose: #E96F92;
      --rose-deep: #D95F83;
      --mint: #8ED7C6;
      --lilac: #A99BE8;
      --line: rgba(30, 27, 28, .08);
      --line-strong: rgba(233, 111, 146, .28);
      --radius: 24px;
      --radius-sm: 18px;
      --shadow: 0 18px 50px rgba(30, 27, 28, .08);
      --shadow-hover: 0 24px 70px rgba(30, 27, 28, .12);
      --dock: rgba(255, 255, 255, .88);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 10%, rgba(142, 215, 198, .24), transparent 30%),
        radial-gradient(circle at 86% 4%, rgba(233, 111, 146, .18), transparent 28%),
        linear-gradient(180deg, #FFFDFC 0%, var(--bg) 48%, #F3F7F5 100%);
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .48;
      background-image:
        linear-gradient(90deg, rgba(30, 27, 28, .035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30, 27, 28, .028) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, black, transparent 86%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    .container-x {
      width: min(100% - 32px, 1240px);
      margin-inline: auto;
    }

    .dock {
      position: sticky;
      top: 16px;
      z-index: 50;
      margin-top: 14px;
      padding-inline: 0;
    }

    .dock > .container-x {
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--dock);
      backdrop-filter: blur(16px);
      box-shadow: 0 16px 44px rgba(30, 27, 28, .09);
    }

    .brand-dot {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--rose), var(--mint));
      box-shadow: 0 0 0 7px rgba(233, 111, 146, .12);
      flex: 0 0 auto;
    }

    .brand-wave {
      width: 30px;
      height: 18px;
      border-radius: 999px;
      background:
        linear-gradient(90deg, transparent 0 12%, rgba(30, 27, 28, .18) 12% 18%, transparent 18% 28%, rgba(30, 27, 28, .18) 28% 36%, transparent 36% 46%, rgba(30, 27, 28, .18) 46% 56%, transparent 56% 68%, rgba(30, 27, 28, .18) 68% 76%, transparent 76%);
      opacity: .8;
      flex: 0 0 auto;
    }

    .dock-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 9px 15px;
      border-radius: 999px;
      color: var(--sub);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .dock-link:hover {
      background: rgba(142, 215, 198, .18);
      color: var(--ink);
      transform: translateY(-1px);
    }

    .dock-link.active {
      background: rgba(233, 111, 146, .14);
      color: var(--rose-deep);
    }

    .scrollbar-none {
      scrollbar-width: none;
    }

    .scrollbar-none::-webkit-scrollbar {
      display: none;
    }

    .focus-ring:focus-visible,
    .btn:focus-visible,
    .input:focus-visible,
    .select:focus-visible,
    .faq-button:focus-visible,
    .page-btn:focus-visible {
      outline: 3px solid rgba(233, 111, 146, .28);
      outline-offset: 3px;
    }

    .section {
      padding-block: 86px;
    }

    .section-tight {
      padding-block: 62px;
    }

    .section-break {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(30, 27, 28, .16), transparent);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
      color: var(--rose-deep);
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 10px 28px rgba(30, 27, 28, .05);
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--mint);
      box-shadow: 14px 0 0 var(--lilac), 28px 0 0 rgba(233, 111, 146, .72);
    }

    .hero-title {
      margin: 0;
      max-width: 760px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--ink);
    }

    .section-title {
      margin: 0;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-desc {
      color: var(--sub);
      font-size: 16px;
      line-height: 1.8;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      user-select: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--rose), var(--rose-deep));
      color: #fff;
      box-shadow: 0 14px 30px rgba(217, 95, 131, .25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(217, 95, 131, .32);
      filter: brightness(1.02);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .78);
      color: var(--ink);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      background: rgba(142, 215, 198, .18);
      border-color: rgba(142, 215, 198, .42);
      transform: translateY(-2px);
    }

    .input,
    .select {
      width: 100%;
      min-height: 48px;
      border: 1px solid #E8E2E4;
      border-radius: 18px;
      background: rgba(255, 255, 255, .86);
      color: var(--ink);
      padding: 12px 14px;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .input::placeholder {
      color: rgba(122, 114, 117, .82);
    }

    .input:focus,
    .select:focus {
      border-color: rgba(233, 111, 146, .5);
      box-shadow: 0 0 0 5px rgba(233, 111, 146, .12);
      background: #fff;
      outline: none;
    }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }

    .card:hover {
      transform: translateY(-3px);
      border-color: rgba(233, 111, 146, .22);
      box-shadow: var(--shadow-hover);
      background: rgba(255, 255, 255, .92);
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 32px;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 800;
      color: var(--sub);
      background: rgba(255, 255, 255, .76);
      white-space: nowrap;
    }

    .chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: currentColor;
      opacity: .72;
    }

    .chip-rose {
      color: var(--rose-deep);
      background: rgba(233, 111, 146, .12);
      border-color: rgba(233, 111, 146, .18);
    }

    .chip-mint {
      color: #2D7E70;
      background: rgba(142, 215, 198, .18);
      border-color: rgba(142, 215, 198, .34);
    }

    .chip-lilac {
      color: #6555B8;
      background: rgba(169, 155, 232, .16);
      border-color: rgba(169, 155, 232, .28);
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      padding: 28px;
      border: 1px solid rgba(30, 27, 28, .08);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(243, 247, 245, .88)),
        repeating-linear-gradient(90deg, rgba(233, 111, 146, .11) 0 2px, transparent 2px 18px);
      box-shadow: var(--shadow);
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      right: -42px;
      top: 28px;
      width: 190px;
      height: 190px;
      border-radius: 48px;
      border: 1px solid rgba(233, 111, 146, .18);
      background:
        linear-gradient(135deg, rgba(233, 111, 146, .1), rgba(142, 215, 198, .18)),
        radial-gradient(circle, rgba(169, 155, 232, .18), transparent 58%);
      transform: rotate(12deg);
    }

    .slot-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .slot {
      min-height: 112px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .72);
      padding: 16px;
    }

    .slot strong {
      display: block;
      font-size: 20px;
      line-height: 1.2;
      color: var(--ink);
    }

    .filter-panel {
      position: sticky;
      top: 116px;
      align-self: start;
      padding: 18px;
    }

    .filter-group + .filter-group {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }

    .filter-label {
      display: block;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 900;
      color: var(--ink);
    }

    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .76);
      color: var(--sub);
      font-size: 13px;
      font-weight: 800;
      transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
    }

    .filter-chip:hover,
    .filter-chip.active {
      background: rgba(233, 111, 146, .13);
      border-color: rgba(233, 111, 146, .25);
      color: var(--rose-deep);
      transform: translateY(-1px);
    }

    .entry-card {
      padding: 22px;
      min-height: 100%;
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
      color: var(--mute);
      font-size: 13px;
      font-weight: 700;
    }

    .status-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--mint);
      box-shadow: 0 0 0 6px rgba(142, 215, 198, .16);
      flex: 0 0 auto;
    }

    .update-line {
      position: relative;
      padding-left: 26px;
    }

    .update-line::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 6px;
      bottom: 6px;
      width: 2px;
      border-radius: 999px;
      background: linear-gradient(var(--rose), var(--mint), var(--lilac));
    }

    .update-item {
      position: relative;
      padding: 0 0 22px 14px;
    }

    .update-item::before {
      content: "";
      position: absolute;
      left: -23px;
      top: 8px;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: #fff;
      border: 4px solid var(--rose);
      box-shadow: 0 0 0 6px rgba(233, 111, 146, .12);
    }

    .notice-card {
      padding: 24px;
      background:
        linear-gradient(135deg, rgba(233, 111, 146, .12), rgba(142, 215, 198, .16)),
        rgba(255, 255, 255, .78);
    }

    .page-btn {
      min-width: 42px;
      min-height: 42px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .78);
      color: var(--sub);
      font-weight: 900;
      transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .page-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(30, 27, 28, .08);
    }

    .page-btn.active {
      background: rgba(233, 111, 146, .14);
      color: var(--rose-deep);
      border-color: rgba(233, 111, 146, .22);
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255, 255, 255, .78);
      overflow: hidden;
      box-shadow: 0 12px 34px rgba(30, 27, 28, .055);
    }

    .faq-button {
      width: 100%;
      min-height: 62px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--ink);
      font-weight: 900;
      text-align: left;
      background: transparent;
      border: 0;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(233, 111, 146, .12);
      color: var(--rose-deep);
      flex: 0 0 auto;
      transition: transform .2s ease;
    }

    .faq-content {
      display: none;
      padding: 0 20px 20px;
      color: var(--sub);
      line-height: 1.8;
    }

    .faq-item.open .faq-content {
      display: block;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      border: 1px solid rgba(30, 27, 28, .08);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(243, 247, 245, .92)),
        radial-gradient(circle at 80% 20%, rgba(169, 155, 232, .18), transparent 32%);
      box-shadow: var(--shadow);
    }

    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .3;
      background: repeating-linear-gradient(90deg, rgba(30, 27, 28, .08) 0 2px, transparent 2px 20px);
      mask-image: linear-gradient(90deg, transparent, black 20%, black 78%, transparent);
      pointer-events: none;
    }

    .footer-link {
      color: var(--sub);
      transition: color .2s ease, transform .2s ease;
      display: inline-block;
    }

    .footer-link:hover {
      color: var(--rose-deep);
      transform: translateX(2px);
    }

    @media (max-width: 1024px) {
      .dock > .container-x {
        border-radius: 28px;
      }

      .filter-panel {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .container-x {
        width: min(100% - 24px, 1240px);
      }

      .dock {
        top: 8px;
        margin-top: 8px;
      }

      .dock > .container-x {
        border-radius: 24px;
      }

      .section {
        padding-block: 64px;
      }

      .section-tight {
        padding-block: 48px;
      }

      .hero-panel {
        padding: 20px;
        border-radius: 26px;
      }

      .slot-grid {
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
        white-space: normal;
      }

      .filter-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
      }

      .filter-chips::-webkit-scrollbar {
        display: none;
      }
    }

    @media (max-width: 520px) {
      .hero-title {
        font-size: 34px;
      }

      .brand-wave {
        display: none;
      }

      .dock-link {
        min-height: 38px;
        padding-inline: 12px;
      }

      .card,
      .cta-band {
        border-radius: 22px;
      }
    }
