/* roulang page: index */
:root{
      --bg:#fbf7f3;
      --bg-soft:#f8f1ec;
      --card:#fffaf7;
      --text:#2f2833;
      --muted:#756977;
      --line:#eadfe8;
      --accent:#9b7ab8;
      --accent-2:#d79ab4;
      --accent-3:#7a4e61;
      --shadow:0 22px 70px rgba(84, 58, 103, 0.10);
      --shadow-soft:0 12px 32px rgba(84, 58, 103, 0.08);
      --radius:24px;
      --radius-sm:18px;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at 14% 10%, rgba(155,122,184,.11), transparent 22%),
        radial-gradient(circle at 86% 8%, rgba(215,154,180,.10), transparent 18%),
        radial-gradient(circle at 70% 90%, rgba(122,78,97,.06), transparent 24%),
        linear-gradient(180deg, #fbf7f3 0%, #f8f2ee 100%);
      font-family: "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.7;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.28;
      background-image:
        radial-gradient(rgba(255,255,255,.7) 1px, transparent 1px);
      background-size:20px 20px;
      mix-blend-mode:soft-light;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    .serif{
      font-family:"Songti SC","STSong","SimSun","Noto Serif SC",serif;
      letter-spacing:.02em;
    }
    .container{
      width:min(100% - 2rem, var(--container));
      margin-inline:auto;
    }
    .skip-link{
      position:absolute;
      left:1rem;
      top:1rem;
      z-index:100;
      padding:.7rem 1rem;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      transform:translateY(-180%);
      transition:transform .22s ease;
      box-shadow:var(--shadow-soft);
    }
    .skip-link:focus{transform:translateY(0)}
    .site-shell{position:relative; isolation:isolate}
    .topbar{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter: blur(16px);
      background:rgba(255,250,247,.84);
      border-bottom:1px solid rgba(234,223,232,.8);
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:14px;
      background:
        radial-gradient(circle at 30% 30%, #f5e6ef 0 26%, transparent 27%),
        linear-gradient(145deg, rgba(155,122,184,1), rgba(122,78,97,1));
      box-shadow:0 12px 26px rgba(122,78,97,.18);
      position:relative;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:10px;
      border:1px solid rgba(255,255,255,.75);
      border-radius:11px;
      opacity:.75;
    }
    .brand-name{
      line-height:1.1;
      letter-spacing:.02em;
    }
    .nav-link{
      position:relative;
      padding:.6rem .9rem;
      color:var(--muted);
      border-radius:999px;
      transition:all .22s ease;
      outline:none;
      font-size:.96rem;
    }
    .nav-link::after{
      content:"";
      position:absolute;
      left:12px;
      right:12px;
      bottom:7px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(155,122,184,0), rgba(155,122,184,.85), rgba(215,154,180,.8));
      transform:scaleX(0);
      transform-origin:center;
      transition:transform .22s ease;
    }
    .nav-link:hover,
    .nav-link:focus-visible{
      color:var(--text);
      background:rgba(255,255,255,.84);
      box-shadow:0 8px 22px rgba(84,58,103,.08);
    }
    .nav-link:hover::after,
    .nav-link:focus-visible::after,
    .nav-link[aria-current="page"]::after{
      transform:scaleX(1);
    }
    .nav-link[aria-current="page"]{
      color:var(--text);
      background:rgba(155,122,184,.10);
      box-shadow:inset 0 0 0 1px rgba(155,122,184,.18);
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.42rem .78rem;
      border-radius:999px;
      border:1px solid rgba(155,122,184,.18);
      background:rgba(255,255,255,.66);
      color:var(--muted);
      font-size:.84rem;
      white-space:nowrap;
    }
    .pill-dot{
      width:8px;
      height:8px;
      border-radius:999px;
      background:linear-gradient(180deg, #d79ab4, #9b7ab8);
      box-shadow:0 0 0 6px rgba(155,122,184,.08);
    }
    .primary-btn,
    .secondary-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.45rem;
      min-height:46px;
      padding:.78rem 1.12rem;
      border-radius:999px;
      font-weight:700;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
      border:1px solid transparent;
      position:relative;
      overflow:hidden;
      outline:none;
    }
    .primary-btn::after{
      content:"";
      position:absolute;
      inset:-30% -60%;
      background:linear-gradient(120deg, transparent 35%, rgba(255,255,255,.34) 50%, transparent 65%);
      transform:translateX(-60%) rotate(8deg);
      transition:transform .55s ease;
    }
    .primary-btn:hover::after{transform:translateX(45%) rotate(8deg)}
    .primary-btn{
      color:#fff;
      background:linear-gradient(135deg, var(--accent), #7f5fa0 52%, var(--accent-3));
      box-shadow:0 18px 30px rgba(122,78,97,.18);
    }
    .secondary-btn{
      color:var(--text);
      border-color:rgba(155,122,184,.24);
      background:rgba(255,255,255,.76);
      box-shadow:0 10px 24px rgba(84,58,103,.06);
    }
    .primary-btn:hover,
    .secondary-btn:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(84,58,103,.14);
    }
    .primary-btn:focus-visible,
    .secondary-btn:focus-visible,
    .nav-link:focus-visible,
    .mini-link:focus-visible,
    summary:focus-visible{
      outline:3px solid rgba(155,122,184,.28);
      outline-offset:2px;
    }
    .section{
      padding:4.2rem 0;
      scroll-margin-top:96px;
    }
    .section-tight{padding:2.4rem 0}
    .section-title{
      font-size:clamp(1.55rem, 1.25rem + 1.15vw, 2.6rem);
      line-height:1.12;
      color:var(--text);
      margin:0;
    }
    .section-desc{
      color:var(--muted);
      margin-top:.95rem;
      max-width:68ch;
      font-size:1rem;
    }
    .card{
      background:rgba(255,250,247,.86);
      border:1px solid rgba(234,223,232,.9);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow);
      border-color:rgba(155,122,184,.22);
    }
    .soft-line{
      position:relative;
    }
    .soft-line::before{
      content:"";
      position:absolute;
      inset:0;
      border-radius:inherit;
      padding:1px;
      background:linear-gradient(140deg, rgba(155,122,184,.22), rgba(215,154,180,.16), transparent 72%);
      mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite:exclude;
      -webkit-mask-composite:xor;
      pointer-events:none;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.32rem .72rem;
      border-radius:999px;
      background:rgba(155,122,184,.10);
      color:#694f85;
      border:1px solid rgba(155,122,184,.14);
      font-size:.8rem;
      white-space:nowrap;
    }
    .badge-rose{
      background:rgba(215,154,180,.12);
      border-color:rgba(215,154,180,.18);
      color:#8a5467;
    }
    .meta{
      color:var(--muted);
      font-size:.92rem;
    }
    .kpi{
      font-variant-numeric:tabular-nums;
      letter-spacing:.03em;
    }
    .ticker{
      display:flex;
      align-items:center;
      gap:.65rem;
      flex-wrap:wrap;
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:.6rem;
    }
    .count-box{
      border-radius:18px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(234,223,232,.94);
      padding:.85rem .75rem;
      text-align:center;
      box-shadow:0 8px 24px rgba(84,58,103,.05);
      min-width:0;
    }
    .count-box strong{
      display:block;
      font-size:1.25rem;
      line-height:1.05;
      color:var(--text);
      font-variant-numeric:tabular-nums;
    }
    .count-box span{
      display:block;
      margin-top:.24rem;
      font-size:.76rem;
      color:var(--muted);
      letter-spacing:.08em;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at top right, rgba(215,154,180,.24), transparent 28%),
        radial-gradient(circle at 10% 30%, rgba(155,122,184,.16), transparent 26%),
        linear-gradient(145deg, rgba(255,255,255,.95), rgba(248,241,237,.88));
    }
    .hero-panel::before,
    .hero-panel::after{
      content:"";
      position:absolute;
      border-radius:999px;
      pointer-events:none;
    }
    .hero-panel::before{
      width:160px;
      height:160px;
      background:radial-gradient(circle, rgba(155,122,184,.18), rgba(155,122,184,0) 70%);
      right:-30px;
      top:-22px;
    }
    .hero-panel::after{
      width:220px;
      height:220px;
      background:radial-gradient(circle, rgba(215,154,180,.16), rgba(215,154,180,0) 70%);
      right:18%;
      bottom:-100px;
    }
    .coupon-wall{
      display:grid;
      gap:1rem;
      grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .coupon-card{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      padding:1.2rem;
      background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(249,240,245,.92));
      border:1px solid rgba(234,223,232,.92);
      box-shadow:var(--shadow-soft);
      min-height:150px;
    }
    .coupon-card.big{
      grid-column:1 / -1;
      min-height:260px;
      padding:1.4rem;
      background:
        radial-gradient(circle at 82% 16%, rgba(215,154,180,.24), transparent 25%),
        radial-gradient(circle at 20% 26%, rgba(155,122,184,.16), transparent 24%),
        linear-gradient(145deg, #fff, #f7f0ef);
    }
    .coupon-card .tagline{
      font-size:.78rem;
      letter-spacing:.24em;
      text-transform:uppercase;
      color:#8b718f;
    }
    .coupon-card .big-num{
      font-size:clamp(2.8rem, 1.8rem + 3.2vw, 5rem);
      line-height:1;
      color:var(--accent-3);
      letter-spacing:-.05em;
      font-weight:800;
    }
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      color:#694f85;
      font-weight:700;
      font-size:.92rem;
    }
    .shine{
      position:absolute;
      inset:auto -12% -18% auto;
      width:180px;
      height:180px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(155,122,184,.10), transparent 68%);
      filter:blur(4px);
    }
    .points-grid{
      display:grid;
      gap:1rem;
      grid-template-columns:repeat(12,minmax(0,1fr));
    }
    .point-card{
      padding:1.25rem;
      border-radius:24px;
      background:rgba(255,250,247,.86);
      border:1px solid rgba(234,223,232,.94);
      box-shadow:var(--shadow-soft);
      height:100%;
      position:relative;
      overflow:hidden;
    }
    .point-card.tall{grid-column:span 6}
    .point-card.small{grid-column:span 3}
    .point-card.wide{grid-column:span 9}
    .point-card .index{
      width:42px;height:42px;
      border-radius:15px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      color:#fff;
      background:linear-gradient(145deg, #a57fc0, #7c5d9f);
      box-shadow:0 10px 26px rgba(122,78,97,.16);
    }
    .point-card ul{
      margin:.9rem 0 0;
      padding:0;
      list-style:none;
      color:var(--muted);
    }
    .point-card li{
      display:flex;
      gap:.55rem;
      align-items:flex-start;
      margin-top:.42rem;
    }
    .point-card li::before{
      content:"";
      flex:none;
      width:7px;height:7px;
      border-radius:999px;
      background:linear-gradient(180deg, #d79ab4, #9b7ab8);
      margin-top:.58rem;
    }
    .panel-title{
      font-size:1.12rem;
      margin:0;
      font-weight:800;
      color:var(--text);
    }
    .tile-grid{
      display:grid;
      gap:1rem;
      grid-template-columns:repeat(12,minmax(0,1fr));
      grid-auto-rows:minmax(132px,auto);
    }
    .tile{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      border:1px solid rgba(234,223,232,.92);
      box-shadow:var(--shadow-soft);
      padding:1.1rem;
      min-height:132px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      isolation:isolate;
    }
    .tile::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(47,40,51,.10)),
        radial-gradient(circle at 18% 18%, rgba(255,255,255,.45), transparent 22%);
      z-index:-1;
    }
    .tile::after{
      content:"";
      position:absolute;
      inset:auto -12% -20% auto;
      width:180px;
      height:180px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
      z-index:-1;
    }
    .tile-a{grid-column:span 7; grid-row:span 2; background:linear-gradient(145deg, #f2e8ef, #d9c1dc);}
    .tile-b{grid-column:span 5; background:linear-gradient(145deg, #f7eeea, #ead6dd);}
    .tile-c{grid-column:span 4; background:linear-gradient(145deg, #f6f1e9, #e9dfda);}
    .tile-d{grid-column:span 4; background:linear-gradient(145deg, #f4ecf4, #e0d1eb);}
    .tile-e{grid-column:span 4; background:linear-gradient(145deg, #f8efe8, #ecd3d9);}
    .tile .tile-label{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      font-size:.76rem;
      letter-spacing:.2em;
      color:#5f4a68;
      text-transform:uppercase;
    }
    .tile h3{
      margin:.4rem 0 .15rem;
      font-size:1.15rem;
      line-height:1.25;
      color:#29212f;
    }
    .tile p{
      margin:0;
      color:rgba(41,33,47,.76);
      max-width:28ch;
      font-size:.92rem;
    }
    .tile .corner{
      position:absolute;
      top:1rem;
      right:1rem;
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.35rem .65rem;
      border-radius:999px;
      background:rgba(255,255,255,.65);
      border:1px solid rgba(255,255,255,.48);
      color:#5c4865;
      font-size:.78rem;
      box-shadow:0 8px 22px rgba(84,58,103,.08);
    }
    .news-list{
      display:grid;
      gap:.95rem;
    }
    .news-item{
      display:grid;
      gap:.72rem;
      grid-template-columns:auto 1fr;
      padding:1rem 1.05rem;
      border-radius:22px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(234,223,232,.92);
      box-shadow:var(--shadow-soft);
      transition:transform .22s ease, box-shadow .22s ease;
    }
    .news-item:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
    .news-time{
      min-width:64px;
      text-align:center;
      padding:.42rem .56rem;
      border-radius:16px;
      background:rgba(155,122,184,.10);
      color:#6a4d86;
      font-weight:700;
      font-size:.82rem;
      height:fit-content;
      border:1px solid rgba(155,122,184,.12);
    }
    .news-item h3{
      margin:0;
      font-size:1.02rem;
      line-height:1.35;
    }
    .news-item p{
      margin:.28rem 0 0;
      color:var(--muted);
      font-size:.94rem;
    }
    .sidebar{
      position:sticky;
      top:94px;
    }
    .list-dot{
      display:flex;
      gap:.62rem;
      align-items:flex-start;
      color:var(--muted);
    }
    .list-dot::before{
      content:"";
      flex:none;
      width:8px;height:8px;border-radius:999px;
      background:linear-gradient(180deg, #d79ab4, #9b7ab8);
      margin-top:.56rem;
    }
    .value-grid{
      display:grid;
      gap:1rem;
      grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .value-card{
      padding:1.1rem;
      border-radius:22px;
      background:rgba(255,250,247,.88);
      border:1px solid rgba(234,223,232,.92);
      box-shadow:var(--shadow-soft);
    }
    .value-card strong{
      display:block;
      font-size:1.1rem;
      color:var(--text);
      margin-bottom:.3rem;
    }
    .value-card p{
      margin:0;
      color:var(--muted);
      font-size:.94rem;
    }
    .security-grid{
      display:grid;
      gap:1rem;
      grid-template-columns:repeat(3,minmax(0,1fr));
    }
    .security-card{
      padding:1.2rem;
      border-radius:24px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.92), rgba(247,240,236,.82));
      border:1px solid rgba(234,223,232,.92);
      box-shadow:var(--shadow-soft);
      min-height:100%;
    }
    .shield{
      width:48px;
      height:48px;
      border-radius:18px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(145deg, rgba(155,122,184,.14), rgba(215,154,180,.12));
      color:var(--accent-3);
      border:1px solid rgba(155,122,184,.12);
    }
    .faq-list{
      display:grid;
      gap:1rem;
    }
    details.faq-item{
      padding:1rem 1.15rem;
      border-radius:22px;
      background:rgba(255,250,247,.90);
      border:1px solid rgba(234,223,232,.92);
      box-shadow:var(--shadow-soft);
    }
    details.faq-item[open]{
      border-color:rgba(155,122,184,.20);
      box-shadow:var(--shadow);
    }
    summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1rem;
      font-weight:800;
      color:var(--text);
    }
    summary::-webkit-details-marker{display:none}
    .faq-answer{
      margin-top:.7rem;
      color:var(--muted);
      font-size:.96rem;
    }
    .faq-arrow{
      flex:none;
      width:30px;
      height:30px;
      border-radius:999px;
      background:rgba(155,122,184,.10);
      border:1px solid rgba(155,122,184,.14);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      transition:transform .22s ease, background .22s ease;
    }
    details[open] .faq-arrow{transform:rotate(180deg);background:rgba(215,154,180,.14)}
    .footer{
      margin-top:1rem;
      background:linear-gradient(180deg, rgba(255,250,247,.70), rgba(246,238,235,.92));
      border-top:1px solid rgba(234,223,232,.92);
    }
    .footer-link{
      color:var(--muted);
      transition:color .2s ease, transform .2s ease;
    }
    .footer-link:hover,
    .footer-link:focus-visible{
      color:var(--text);
      transform:translateX(2px);
    }
    .mobile-drawer{
      position:fixed;
      inset:0;
      z-index:90;
      display:none;
    }
    .mobile-drawer.open{display:block}
    .drawer-mask{
      position:absolute;
      inset:0;
      background:rgba(35,28,38,.42);
      backdrop-filter:blur(4px);
    }
    .drawer-panel{
      position:absolute;
      top:0;
      right:0;
      height:100%;
      width:min(86vw, 360px);
      background:linear-gradient(180deg, rgba(255,250,247,.98), rgba(248,241,236,.96));
      border-left:1px solid rgba(234,223,232,.92);
      box-shadow:-20px 0 60px rgba(84,58,103,.18);
      padding:1rem;
      display:flex;
      flex-direction:column;
      gap:1rem;
    }
    .drawer-nav a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:.95rem 1rem;
      border-radius:18px;
      border:1px solid rgba(234,223,232,.92);
      background:rgba(255,255,255,.8);
      margin-top:.75rem;
    }
    .drawer-nav a[aria-current="page"]{
      background:rgba(155,122,184,.10);
      border-color:rgba(155,122,184,.18);
    }
    .drawer-nav small{
      color:var(--muted);
    }
    .mobile-cta{
      position:fixed;
      left:.75rem;
      right:.75rem;
      bottom:.75rem;
      z-index:70;
      display:none;
    }
    .mobile-cta .bar{
      padding:.55rem;
      border-radius:22px;
      background:rgba(255,250,247,.92);
      border:1px solid rgba(234,223,232,.92);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:.5rem;
    }
    .subtle-note{
      color:var(--muted);
      font-size:.88rem;
    }
    .glow-line{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(155,122,184,.22), rgba(215,154,180,.28), transparent);
    }
    @media (max-width: 1279px){
      .coupon-card.big{min-height:240px}
      .tile-a{grid-column:span 12; grid-row:span 1}
      .tile-b,.tile-c,.tile-d,.tile-e{grid-column:span 6}
      .point-card.tall,.point-card.small,.point-card.wide{grid-column:span 12}
    }
    @media (max-width: 1024px){
      .security-grid,
      .value-grid{grid-template-columns:1fr}
      .sidebar{position:static}
    }
    @media (max-width: 768px){
      .section{padding:3.4rem 0}
      .countdown{grid-template-columns:repeat(2,minmax(0,1fr))}
      .coupon-wall,
      .points-grid,
      .security-grid,
      .tile-grid{grid-template-columns:1fr}
      .tile-a,.tile-b,.tile-c,.tile-d,.tile-e{grid-column:span 1; grid-row:auto}
      .mobile-cta{display:block}
      .top-actions{display:none}
    }
    @media (max-width: 640px){
      .section-title{font-size:clamp(1.42rem, 1.02rem + 1vw, 2rem)}
      .hero-panel{border-radius:28px}
      .count-box strong{font-size:1.05rem}
      .news-item{grid-template-columns:1fr}
      .news-time{min-width:0; width:fit-content}
      .drawer-panel{width:min(92vw, 340px)}
      .brand-name{font-size:.92rem}
    }
    .fade-up{
      animation:fadeUp .6s ease both;
    }
    @keyframes fadeUp{
      from{opacity:0; transform:translateY(10px)}
      to{opacity:1; transform:translateY(0)}
    }

/* roulang page: category2 */
:root{
  --bg:#fbf8f6;
  --panel:rgba(255,255,255,.82);
  --panel-solid:#ffffff;
  --text:#251a29;
  --muted:#6f6475;
  --line:rgba(109,77,123,.14);
  --line-strong:rgba(109,77,123,.22);
  --primary:#8f6aa7;
  --primary-deep:#6f3f8b;
  --accent:#e2b8cf;
  --rose:#a14e6f;
  --soft:#f4edf5;
  --shadow:0 18px 55px rgba(72,43,85,.08);
  --shadow-strong:0 24px 75px rgba(72,43,85,.14);
  --radius:26px;
}
*,
*::before,
*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(226,184,207,.28), transparent 26%),
    radial-gradient(circle at 85% 2%, rgba(143,106,167,.15), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(161,78,111,.08), transparent 25%),
    linear-gradient(180deg, #fcfaf8 0%, #fbf8f6 55%, #f8f3f7 100%);
  font-family:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif;
  line-height:1.7;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,0)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.8), transparent 48%);
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  opacity:.25;
  background-image:
    linear-gradient(rgba(120,92,138,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,92,138,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
::selection{background:rgba(143,106,167,.18);color:var(--text)}
:focus-visible{outline:3px solid rgba(143,106,167,.28);outline-offset:3px}
.container{width:min(1240px,calc(100% - 1.5rem));margin-inline:auto}
.anchor-target{scroll-margin-top:110px}
.topbar{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(252,248,245,.76);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(111,63,139,.08);
  transition:box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.topbar.is-scrolled{
  background:rgba(253,251,249,.92);
  box-shadow:0 12px 36px rgba(72,43,85,.08);
  border-bottom-color:rgba(111,63,139,.14);
}
.header-row{transition:padding .24s ease}
.topbar.is-scrolled .header-row{padding-top:.7rem;padding-bottom:.7rem}
.brand-mark{
  position:relative;
  width:44px;
  height:44px;
  border-radius:16px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.88), transparent 25%),
    linear-gradient(135deg, #f9eef4 0%, #d9c0e4 48%, #a678b8 100%);
  box-shadow:0 14px 30px rgba(111,63,139,.18), inset 0 1px 0 rgba(255,255,255,.45);
  overflow:hidden;
}
.brand-mark::before,
.brand-mark::after{
  content:"";
  position:absolute;
  inset:auto;
  border-radius:999px;
}
.brand-mark::before{
  width:18px;
  height:18px;
  right:7px;
  top:8px;
  background:rgba(255,255,255,.58);
  filter:blur(.2px);
}
.brand-mark::after{
  width:24px;
  height:24px;
  left:6px;
  bottom:6px;
  background:rgba(114,68,142,.25);
  box-shadow:0 0 0 8px rgba(255,255,255,.08);
}
.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 16px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  background:transparent;
  transition:transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.nav-link:hover,
.nav-link:focus-visible{
  transform:translateY(-1px);
  color:var(--text);
  background:rgba(255,255,255,.96);
  border-color:var(--line);
  box-shadow:0 10px 24px rgba(72,43,85,.06);
}
.nav-link[aria-current="page"]{
  color:var(--text);
  background:rgba(255,255,255,.98);
  border-color:rgba(143,106,167,.22);
  box-shadow:0 10px 26px rgba(72,43,85,.08);
}
.pill,
.soft-chip,
.badge-mini{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.45rem .8rem;
  border-radius:999px;
  border:1px solid rgba(143,106,167,.16);
  background:rgba(255,255,255,.74);
  color:var(--muted);
  box-shadow:0 10px 24px rgba(72,43,85,.04);
  transition:transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.pill:hover,
.soft-chip:hover,
.badge-mini:hover{transform:translateY(-1px);border-color:rgba(143,106,167,.28);box-shadow:0 14px 28px rgba(72,43,85,.08)}
.pill{font-size:.82rem;font-weight:700}
.pill-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(135deg, #d987a8 0%, #8f6aa7 100%);
  box-shadow:0 0 0 4px rgba(143,106,167,.12);
}
.primary-btn,
.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:16px;
  font-weight:800;
  transition:transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease, color .24s ease;
  will-change:transform;
}
.primary-btn{
  color:#fff;
  border:1px solid rgba(111,63,139,.18);
  background:linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow:0 16px 32px rgba(111,63,139,.24), inset 0 1px 0 rgba(255,255,255,.2);
}
.primary-btn:hover,
.primary-btn:focus-visible{
  transform:translateY(-2px);
  box-shadow:0 22px 44px rgba(111,63,139,.28);
}
.secondary-btn{
  color:var(--text);
  border:1px solid rgba(143,106,167,.18);
  background:rgba(255,255,255,.78);
  box-shadow:0 12px 26px rgba(72,43,85,.05);
}
.secondary-btn:hover,
.secondary-btn:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(143,106,167,.3);
  box-shadow:0 18px 32px rgba(72,43,85,.08);
}
.footer-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.95rem 1rem;
  border-radius:16px;
  border:1px solid rgba(143,106,167,.12);
  background:rgba(255,255,255,.7);
  color:var(--text);
  transition:transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.footer-link:hover,
.footer-link:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(143,106,167,.22);
  background:rgba(255,255,255,.96);
  box-shadow:0 14px 28px rgba(72,43,85,.08);
}
.surface{
  background:var(--panel);
  border:1px solid rgba(143,106,167,.12);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}
.surface-strong{
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.78));
  border:1px solid rgba(143,106,167,.16);
  box-shadow:var(--shadow-strong);
  border-radius:28px;
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.82rem;
  font-weight:800;
  color:var(--primary-deep);
  letter-spacing:.14em;
}
.section-title{
  font-size:clamp(1.8rem, 2.3vw, 2.75rem);
  line-height:1.06;
  font-weight:900;
  letter-spacing:-.04em;
  color:var(--text);
}
.section-desc{
  color:var(--muted);
  font-size:1rem;
  line-height:1.85;
}
.count-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:.75rem;
}
.count-box{
  border-radius:18px;
  border:1px solid rgba(143,106,167,.12);
  background:rgba(255,255,255,.76);
  padding:.85rem .9rem;
  box-shadow:0 10px 24px rgba(72,43,85,.04);
}
.count-box strong{
  display:block;
  font-size:1.45rem;
  line-height:1.1;
  font-weight:900;
  color:var(--primary-deep);
  font-variant-numeric:tabular-nums;
  animation:floatCount 2.2s ease-in-out infinite;
}
.count-box span{
  display:block;
  margin-top:.3rem;
  font-size:.78rem;
  color:var(--muted);
}
@keyframes floatCount{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-1px)}
}
.card-lift{
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.card-lift:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 48px rgba(72,43,85,.12);
  border-color:rgba(143,106,167,.22);
}
.glow-line{
  height:1px;
  background:linear-gradient(90deg, transparent 0%, rgba(143,106,167,.14) 18%, rgba(143,106,167,.34) 50%, rgba(143,106,167,.14) 82%, transparent 100%);
}
.timeline{
  position:relative;
}
.timeline::before{
  content:"";
  position:absolute;
  left:18px;
  top:10px;
  bottom:10px;
  width:1px;
  background:linear-gradient(180deg, rgba(143,106,167,.28), rgba(143,106,167,.06));
}
.timeline-item{
  position:relative;
  padding-left:3rem;
}
.timeline-badge{
  position:absolute;
  left:0;
  top:.15rem;
  width:36px;
  height:36px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.82rem;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow:0 14px 30px rgba(111,63,139,.18);
}
.faq-item{
  border-radius:22px;
  border:1px solid rgba(143,106,167,.12);
  background:rgba(255,255,255,.8);
  box-shadow:0 12px 28px rgba(72,43,85,.05);
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1.1rem 1.15rem;
  font-weight:800;
  color:var(--text);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{
  padding:0 1.15rem 1.15rem;
  color:var(--muted);
  line-height:1.85;
}
.faq-chevron{
  flex:0 0 auto;
  width:22px;
  height:22px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(143,106,167,.14);
  background:rgba(255,255,255,.86);
  transition:transform .24s ease, border-color .24s ease;
}
.faq-item[open] .faq-chevron{transform:rotate(180deg);border-color:rgba(143,106,167,.24)}
.hero-glass{
  position:relative;
  overflow:hidden;
}
.hero-glass::before,
.hero-glass::after{
  content:"";
  position:absolute;
  border-radius:999px;
  pointer-events:none;
}
.hero-glass::before{
  width:320px;
  height:320px;
  right:-110px;
  top:-120px;
  background:radial-gradient(circle, rgba(143,106,167,.18), transparent 62%);
}
.hero-glass::after{
  width:280px;
  height:280px;
  left:-90px;
  bottom:-120px;
  background:radial-gradient(circle, rgba(225,184,207,.28), transparent 60%);
}
.mosaic-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(143,106,167,.12);
  box-shadow:0 14px 34px rgba(72,43,85,.07);
  min-height:180px;
}
.mosaic-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  pointer-events:none;
}
.mosaic-card .label{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.08em;
  color:#fff;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  padding:.35rem .65rem;
  border-radius:999px;
  backdrop-filter:blur(10px);
}
.mosaic-card .caption{
  color:rgba(255,255,255,.92);
  line-height:1.8;
}
.mosaic-bg-1{background:linear-gradient(135deg, #c48db3 0%, #8f6aa7 42%, #6b3f87 100%)}
.mosaic-bg-2{background:linear-gradient(135deg, #f2d8e4 0%, #d8c0e6 45%, #a47cb7 100%)}
.mosaic-bg-3{background:linear-gradient(135deg, #f7edea 0%, #efd7e2 45%, #c892ad 100%)}
.mosaic-bg-4{background:linear-gradient(135deg, #9b6db1 0%, #7f4c9a 55%, #a95d73 100%)}
.stat-card{
  border-radius:22px;
  border:1px solid rgba(143,106,167,.14);
  background:rgba(255,255,255,.82);
  box-shadow:0 12px 28px rgba(72,43,85,.05);
}
.stat-card strong{
  display:block;
  font-size:1.2rem;
  font-weight:900;
  line-height:1.1;
}
.stat-card span{
  display:block;
  margin-top:.25rem;
  color:var(--muted);
  font-size:.84rem;
}
.badge-soft{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.35rem .72rem;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  color:var(--primary-deep);
  background:rgba(143,106,167,.08);
  border:1px solid rgba(143,106,167,.14);
}
.mobile-overlay{
  transition:opacity .24s ease;
}
.mobile-drawer{
  transition:transform .28s ease, opacity .28s ease;
}
body.menu-open{overflow:hidden}
body.menu-open .mobile-overlay{
  opacity:1;
  pointer-events:auto;
}
body.menu-open .mobile-drawer{
  transform:translateX(0);
  opacity:1;
  pointer-events:auto;
}
.mobile-bar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:38;
  border-top:1px solid rgba(143,106,167,.14);
  background:rgba(253,251,249,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 -12px 30px rgba(72,43,85,.08);
}
@media (max-width: 1279px){
  .count-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 767px){
  .section-title{letter-spacing:-.03em}
  .nav-link{height:44px}
  .faq-item summary{padding:1rem}
  .faq-item p{padding:0 1rem 1rem}
}

/* roulang page: category1 */
:root{
  --bg:#fbf7f4;
  --bg-2:#f8f2fb;
  --panel:rgba(255,255,255,.82);
  --panel-strong:#ffffff;
  --text:#1f1b25;
  --muted:#6d6375;
  --line:rgba(97,73,112,.14);
  --accent:#8d69b3;
  --accent-2:#c58fb0;
  --accent-3:#6f445d;
  --glow:rgba(141,105,179,.18);
  --shadow:0 22px 60px rgba(60,39,75,.10);
  --shadow-soft:0 12px 28px rgba(60,39,75,.06);
  --radius:20px;
  --radius-lg:28px;
}

*,
*::before,
*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"PingFang SC","Hiragino Sans GB","Microsoft YaHei",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  background:
    radial-gradient(circle at 12% 6%, rgba(141,105,179,.12), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(197,143,176,.14), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.9), transparent 30%),
    linear-gradient(180deg, #fcf9f6 0%, #fbf6fc 55%, #f7f5f8 100%);
  color:var(--text);
  min-height:100vh;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.12)),
    radial-gradient(rgba(141,105,179,.06) 1px, transparent 1px);
  background-size:100% 100%, 18px 18px;
  opacity:.5;
  mix-blend-mode:soft-light;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,
input,
textarea,
select{font:inherit}
::selection{background:rgba(141,105,179,.22);color:var(--text)}

.container{
  width:min(1200px, calc(100% - 32px));
  margin-inline:auto;
  position:relative;
  z-index:1;
}

.topbar{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(18px);
  background:rgba(251,247,244,.72);
  transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.topbar.is-scrolled{
  background:rgba(251,247,244,.9);
  box-shadow:0 10px 36px rgba(56,39,68,.08);
  border-bottom:1px solid var(--line);
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius:16px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,255,.95), rgba(255,255,255,0) 34%),
    linear-gradient(145deg, #f8eefd 0%, #e6d8ff 42%, #f7dbe8 100%);
  position:relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    0 10px 24px rgba(141,105,179,.14);
}
.brand-mark::before,
.brand-mark::after{
  content:"";
  position:absolute;
  inset:11px;
  border-radius:999px 999px 20px 999px;
  border:1px solid rgba(111,68,93,.18);
  transform:rotate(-18deg);
  background:linear-gradient(160deg, rgba(255,255,255,.5), rgba(255,255,255,0));
}
.brand-mark::after{
  inset:15px 12px 10px 15px;
  border-radius:999px 20px 999px 999px;
  transform:rotate(16deg);
  opacity:.72;
}
.brand-name{
  line-height:1.1;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:.72rem 1rem;
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  letter-spacing:.01em;
  transition:transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  border:1px solid transparent;
}
.nav-link:hover{
  color:var(--text);
  background:rgba(255,255,255,.72);
  border-color:rgba(141,105,179,.16);
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(68,43,82,.06);
}
.nav-link[aria-current="page"]{
  color:var(--accent-3);
  background:linear-gradient(135deg, rgba(141,105,179,.14), rgba(197,143,176,.12));
  border-color:rgba(141,105,179,.18);
  box-shadow:0 10px 24px rgba(141,105,179,.09);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  min-height:40px;
  padding:.55rem .9rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  color:var(--muted);
  box-shadow:var(--shadow-soft);
}
.pill-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(180deg, #b78ad8, #8d69b3);
  box-shadow:0 0 0 4px rgba(141,105,179,.12);
}
.primary-btn,
.secondary-btn,
.footer-link{
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.primary-btn,
.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  min-height:46px;
  padding:.8rem 1.1rem;
  border-radius:16px;
  font-weight:800;
  letter-spacing:.01em;
}
.primary-btn{
  color:#fff;
  background:linear-gradient(135deg, var(--accent) 0%, #9c76c0 52%, var(--accent-2) 100%);
  box-shadow:0 16px 34px rgba(141,105,179,.24);
}
.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 38px rgba(141,105,179,.28);
}
.secondary-btn{
  color:var(--text);
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow-soft);
}
.secondary-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(141,105,179,.24);
  box-shadow:0 18px 36px rgba(68,43,82,.08);
}
.primary-btn:focus-visible,
.secondary-btn:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible,
button:focus-visible,
summary:focus-visible,
a:focus-visible{
  outline:3px solid rgba(141,105,179,.28);
  outline-offset:2px;
}

.badge-chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  min-height:34px;
  padding:.42rem .78rem;
  border-radius:999px;
  border:1px solid rgba(141,105,179,.16);
  background:rgba(141,105,179,.08);
  color:var(--accent-3);
  font-size:.82rem;
  font-weight:700;
  white-space:nowrap;
}
.badge-chip.light{
  background:rgba(255,255,255,.88);
  color:var(--muted);
  border-color:var(--line);
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  color:var(--accent-3);
  font-weight:800;
  letter-spacing:.08em;
  font-size:.82rem;
}
.section-kicker::before{
  content:"";
  width:20px;
  height:1px;
  background:linear-gradient(90deg, rgba(111,68,93,.15), rgba(141,105,179,.9));
}
.section-heading{
  font-size:clamp(1.3rem, 2.2vw, 2.15rem);
  font-weight:900;
  letter-spacing:-.03em;
  line-height:1.12;
}
.hero-heading{
  font-size:clamp(2rem, 4vw, 4.3rem);
  font-weight:950;
  line-height:1.02;
  letter-spacing:-.05em;
}
.hero-subtitle{
  color:var(--muted);
  line-height:1.9;
  font-size:1rem;
}
.card-base{
  border:1px solid var(--line);
  background:var(--panel);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(16px);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  overflow:hidden;
}
.card-base:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:rgba(141,105,179,.24);
}
.countdown-bar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1rem;
  padding:1rem 1.1rem;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(135deg, rgba(255,255,255,.88), rgba(248,238,250,.85));
  box-shadow:var(--shadow-soft);
}
.count-digit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:58px;
  min-height:52px;
  padding:.6rem .85rem;
  border-radius:18px;
  border:1px solid rgba(141,105,179,.14);
  background:rgba(255,255,255,.92);
  color:var(--accent-3);
  font-size:1.1rem;
  font-weight:900;
  font-variant-numeric:tabular-nums;
  letter-spacing:.03em;
  box-shadow:0 12px 26px rgba(68,43,82,.06);
  transition:transform .2s ease, background .2s ease;
}
.count-digit.flash{
  transform:translateY(-1px) scale(1.04);
  background:rgba(245,236,250,.98);
}
.count-label{
  color:var(--muted);
  font-size:.86rem;
  font-weight:700;
}
.hero-panel{
  position:relative;
  padding:1.4rem;
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.hero-panel::before,
.hero-panel::after{
  content:"";
  position:absolute;
  border-radius:999px;
  filter:blur(18px);
  opacity:.7;
  pointer-events:none;
}
.hero-panel::before{
  width:220px;
  height:220px;
  right:-80px;
  top:-60px;
  background:rgba(197,143,176,.16);
}
.hero-panel::after{
  width:180px;
  height:180px;
  right:30px;
  bottom:-80px;
  background:rgba(141,105,179,.14);
}
.feature-card,
.mosaic-tile,
.side-card,
.faq-item,
.cta-band,
.timeline-card,
.hero-compare,
.info-chip{
  border:1px solid var(--line);
  background:rgba(255,255,255,.85);
  box-shadow:var(--shadow-soft);
}
.feature-card,
.side-card,
.faq-item,
.cta-band,
.timeline-card,
.hero-compare{
  border-radius:24px;
}
.feature-card{
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.mosaic-tile{
  border-radius:24px;
  position:relative;
  overflow:hidden;
  min-height:180px;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.mosaic-tile:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.mosaic-tile::after{
  content:"";
  position:absolute;
  inset:auto 12px 12px auto;
  width:64px;
  height:64px;
  border-radius:22px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.68), rgba(255,255,255,0) 60%);
  opacity:.55;
}
.mosaic-label{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  min-height:30px;
  padding:.36rem .68rem;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.38);
  color:var(--accent-3);
  font-size:.8rem;
  font-weight:800;
  box-shadow:0 10px 24px rgba(68,43,82,.08);
}
.summary-line{
  color:var(--muted);
  line-height:1.8;
  font-size:.96rem;
}
.card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  align-items:center;
  color:var(--muted);
  font-size:.84rem;
}
.card-bullet{
  width:6px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(180deg, #b98ed7, #8d69b3);
  box-shadow:0 0 0 4px rgba(141,105,179,.12);
}
.info-chip{
  border-radius:20px;
  padding:1rem 1rem;
  transition:transform .2s ease, border-color .2s ease;
}
.info-chip:hover{
  transform:translateY(-2px);
  border-color:rgba(141,105,179,.22);
}
.info-chip strong{
  display:block;
  font-size:1.02rem;
}
.info-chip span{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.7;
}
.faq-item{
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:1rem 1.1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  font-weight:800;
  color:var(--text);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"＋";
  color:var(--accent);
  font-size:1.1rem;
  transition:transform .22s ease;
}
.faq-item[open] summary::after{
  content:"－";
}
.faq-answer{
  padding:0 1.1rem 1.1rem;
  color:var(--muted);
  line-height:1.85;
}
.timeline-card{
  padding:1.1rem;
  min-height:100%;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.timeline-card:hover{
  transform:translateY(-3px);
  border-color:rgba(141,105,179,.22);
  box-shadow:var(--shadow);
}
.step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, var(--accent) 0%, #a87bc9 55%, var(--accent-2) 100%);
  box-shadow:0 12px 26px rgba(141,105,179,.2);
}
.cta-band{
  position:relative;
  overflow:hidden;
  padding:1.4rem;
  background:
    radial-gradient(circle at 12% 12%, rgba(141,105,179,.14), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(197,143,176,.16), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,239,250,.88));
}
.cta-band::before{
  content:"";
  position:absolute;
  inset:auto -30px -40px auto;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(141,105,179,.08);
  filter:blur(8px);
}
.footer{
  margin-top:3rem;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.64);
  backdrop-filter:blur(16px);
}
.footer-link{
  color:var(--muted);
  padding:.72rem 0;
  display:block;
  border-bottom:1px solid rgba(97,73,112,.08);
}
.footer-link:hover{
  color:var(--accent-3);
  transform:translateX(2px);
}
.glow-line{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(141,105,179,.45), rgba(197,143,176,.35), transparent);
}
.mobile-panel{
  transition:opacity .22s ease, transform .22s ease;
}
.mobile-cta{
  box-shadow:0 20px 36px rgba(60,39,75,.12);
}
@media (max-width: 1279px){
  .container{width:min(1120px, calc(100% - 28px))}
}
@media (max-width: 1023px){
  .hero-heading{font-size:clamp(1.9rem, 5vw, 3.1rem)}
  .count-digit{min-width:52px;min-height:48px}
}
@media (max-width: 767px){
  .container{width:min(100% - 20px, 100%)}
  .nav-link{width:100%;justify-content:flex-start}
  .section-heading{font-size:1.45rem}
  .hero-panel{padding:1rem}
  .card-base,.feature-card,.side-card,.faq-item,.cta-band,.timeline-card,.hero-compare,.mosaic-tile{border-radius:22px}
  .countdown-bar{padding:.9rem}
  .count-digit{min-width:48px;min-height:44px;font-size:1rem}
}
@media (max-width: 639px){
  .primary-btn,.secondary-btn{width:100%}
  .mobile-cta .primary-btn,
  .mobile-cta .secondary-btn{width:100%}
}
