/* roulang page: index */
:root{
      --bg:#f7f4f6;
      --panel:#ffffff;
      --panel-soft:#fbf7f9;
      --text:#1f1724;
      --muted:#6f6474;
      --line:#e8dde5;
      --brand:#7a1e4f;
      --brand2:#f43f7f;
      --brand3:#ff7a59;
      --mint:#12bfa5;
      --shadow:0 12px 36px rgba(31,23,36,.08);
      --shadow-strong:0 18px 48px rgba(139,30,90,.14);
      --radius:24px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(244,63,127,.08), transparent 28%),
        radial-gradient(circle at top right, rgba(18,191,165,.07), transparent 25%),
        linear-gradient(180deg, #fff 0%, var(--bg) 100%);
      line-height:1.75;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(244,63,127,.18)}
    .container{width:min(1220px, calc(100% - 32px)); margin:0 auto}
    .glass-line{background:rgba(255,255,255,.82); backdrop-filter:blur(12px); border-bottom:1px solid rgba(232,221,229,.85)}
    .topbar{position:sticky; top:0; z-index:60}
    .navlink{position:relative; transition:all .2s ease}
    .navlink::after{
      content:''; position:absolute; left:0; bottom:-6px; width:100%; height:2px;
      background:linear-gradient(90deg,var(--brand),var(--brand2));
      transform:scaleX(0); transform-origin:left; transition:transform .2s ease;
    }
    .navlink:hover::after,.navlink.active::after{transform:scaleX(1)}
    .navlink:hover{color:var(--brand)}
    .pill{
      display:inline-flex; align-items:center; gap:.4rem;
      padding:.45rem .8rem; border-radius:999px; border:1px solid rgba(232,221,229,.95);
      background:rgba(255,255,255,.88); color:var(--muted); font-size:.85rem;
    }
    .badge{
      display:inline-flex; align-items:center; gap:.35rem;
      padding:.34rem .7rem; border-radius:999px; font-size:.8rem; font-weight:700;
      letter-spacing:.01em;
    }
    .badge-brand{background:linear-gradient(135deg,var(--brand),var(--brand2)); color:#fff}
    .badge-soft{background:#fff0f5; color:var(--brand)}
    .badge-mint{background:#e8fbf7; color:#0d8d79}
    .section{padding:76px 0}
    .section-tight{padding:58px 0}
    .section-head{max-width:760px; margin-bottom:28px}
    .kicker{color:var(--brand); font-weight:800; letter-spacing:.12em; font-size:.82rem; text-transform:uppercase}
    h1,h2,h3{line-height:1.2; letter-spacing:0}
    .hero-wrap{
      background:
        linear-gradient(135deg, rgba(122,30,79,.96), rgba(180,41,103,.93) 45%, rgba(255,122,89,.86)),
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.16), transparent 25%);
      color:#fff;
      border-radius:32px;
      box-shadow:var(--shadow-strong);
      overflow:hidden;
    }
    .hero-panel{
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(10px);
    }
    .card{
      background:rgba(255,255,255,.92);
      border:1px solid rgba(232,221,229,.9);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .card:hover{transform:translateY(-2px); box-shadow:var(--shadow-strong); border-color:rgba(122,30,79,.18)}
    .card-soft{background:linear-gradient(180deg,#fff, #fff7fb)}
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
      min-height:48px; padding:.8rem 1.25rem; border-radius:999px; border:1px solid transparent;
      font-weight:700; transition:all .2s ease; white-space:nowrap;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn-primary{background:linear-gradient(135deg,var(--brand),var(--brand2)); color:#fff; box-shadow:0 10px 24px rgba(139,30,90,.22)}
    .btn-primary:hover{box-shadow:0 16px 34px rgba(139,30,90,.28)}
    .btn-secondary{background:#fff; color:var(--brand); border-color:rgba(122,30,79,.18)}
    .btn-secondary:hover{background:#fff7fb}
    .btn-ghost{background:transparent; color:#fff; border-color:rgba(255,255,255,.24)}
    .btn-ghost:hover{background:rgba(255,255,255,.08)}
    .stat{
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.16);
      border-radius:22px;
      padding:18px;
    }
    .mini-grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px}
    .input, .select, .textarea{
      width:100%;
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      padding:.85rem 1rem;
      outline:none;
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    .input:focus,.select:focus,.textarea:focus{
      border-color:rgba(122,30,79,.45);
      box-shadow:0 0 0 4px rgba(122,30,79,.1);
    }
    .tag-list{display:flex; flex-wrap:wrap; gap:.7rem}
    .tag{padding:.46rem .78rem; border-radius:999px; background:#fff; border:1px solid var(--line); color:var(--muted); font-size:.88rem}
    .dot{width:8px;height:8px;border-radius:999px;background:var(--mint);display:inline-block}
    .list-item{padding:1rem 0; border-bottom:1px solid var(--line)}
    .list-item:last-child{border-bottom:none}
    .faq-item{border:1px solid var(--line); border-radius:18px; background:#fff; overflow:hidden}
    .faq-question{width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1rem 1.1rem; text-align:left; font-weight:700}
    .faq-answer{padding:0 1.1rem 1.1rem; color:var(--muted)}
    .footer-dark{background:#17121a; color:#f5eef3}
    .footer-dark a{color:#f8d7e4}
    .footer-dark .muted{color:rgba(245,238,243,.72)}
    .searchbar{
      display:flex; align-items:center; gap:.7rem; background:#fff; border:1px solid rgba(232,221,229,.95);
      border-radius:999px; padding:.55rem .8rem; box-shadow:0 8px 24px rgba(31,23,36,.05);
    }
    .searchbar input{border:none; outline:none; width:100%; background:transparent}
    .searchbar button{border:none; border-radius:999px; padding:.6rem 1rem; background:linear-gradient(135deg,var(--brand),var(--brand2)); color:#fff; font-weight:700}
    .menu-btn{display:none}
    .grid-bento{display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); gap:18px}
    .hero-left{grid-column:span 6}
    .hero-right{grid-column:span 6}
    .span-4{grid-column:span 4}
    .span-6{grid-column:span 6}
    .span-8{grid-column:span 8}
    .span-12{grid-column:span 12}
    .timeline{position:relative; padding-left:1.2rem}
    .timeline::before{content:''; position:absolute; left:5px; top:6px; bottom:6px; width:2px; background:linear-gradient(180deg,var(--brand),var(--brand2))}
    .timeline-item{position:relative; margin-bottom:1.1rem; padding-left:1rem}
    .timeline-item::before{content:''; position:absolute; left:-2px; top:.45rem; width:14px; height:14px; border-radius:999px; background:#fff; border:3px solid var(--brand)}
    .faq-toggle svg{transition:transform .2s ease}
    .faq-item.open .faq-toggle svg{transform:rotate(180deg)}
    @media (max-width: 1024px){
      .grid-bento{grid-template-columns:repeat(6,minmax(0,1fr))}
      .hero-left,.hero-right,.span-4,.span-6,.span-8{grid-column:span 6}
    }
    @media (max-width: 768px){
      .section{padding:56px 0}
      .section-tight{padding:44px 0}
      .menu-btn{display:inline-flex}
      .desktop-nav{display:none}
      .grid-bento{grid-template-columns:repeat(1,minmax(0,1fr))}
      .hero-left,.hero-right,.span-4,.span-6,.span-8,.span-12{grid-column:span 1}
      .mini-grid{grid-template-columns:repeat(1,minmax(0,1fr))}
      .mobile-stack{flex-direction:column; align-items:stretch}
      .mobile-stack .btn,.mobile-stack .pill{width:100%; justify-content:center}
    }

/* roulang page: category2 */
:root{
      --brand-800:#541339;
      --brand-700:#7A1E4F;
      --brand-600:#A52463;
      --brand-500:#F43F7F;
      --brand-400:#FF5A7A;
      --mint:#12BFA5;
      --ink:#1F1724;
      --muted:#6F6474;
      --line:#E8DDE5;
      --soft:#F7F4F6;
      --paper:#FBF7F9;
      --white:#FFFFFF;
      --dark:#17121A;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --shadow:0 12px 36px rgba(31,23,36,.08);
      --shadow-lift:0 18px 46px rgba(31,23,36,.12);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--ink);
      background:linear-gradient(180deg,#fff 0%,var(--paper) 42%,#fff 100%);
      line-height:1.75;
      letter-spacing:0;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    input,select,textarea{outline:none}
    .container{width:min(100% - 32px,1200px);margin-inline:auto}
    .section{padding:82px 0}
    .section-tight{padding:56px 0}
    .glass-line{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.92);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom:1px solid rgba(232,221,229,.85);
      box-shadow:0 8px 24px rgba(31,23,36,.05);
    }
    .navlink{
      position:relative;
      padding:10px 0;
      transition:color .2s ease;
      white-space:nowrap;
    }
    .navlink:after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:3px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--brand-700),var(--brand-500),var(--mint));
      transform:scaleX(0);
      transform-origin:left;
      transition:transform .2s ease;
    }
    .navlink:hover,.navlink.active{color:var(--brand-700)}
    .navlink:hover:after,.navlink.active:after{transform:scaleX(1)}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:28px;
      padding:4px 10px;
      border-radius:999px;
      font-size:13px;
      font-weight:700;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .badge-mint{background:rgba(18,191,165,.1);color:#087d6c;border-color:rgba(18,191,165,.2)}
    .badge-pink{background:rgba(244,63,127,.1);color:var(--brand-700);border-color:rgba(244,63,127,.16)}
    .badge-dark{background:rgba(23,18,26,.9);color:#fff}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 18px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
      line-height:1.25;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--brand-700),var(--brand-500),var(--brand-400));
      color:#fff;
      box-shadow:0 12px 28px rgba(164,36,99,.22);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 38px rgba(164,36,99,.28)}
    .btn-secondary{
      background:#fff;
      color:var(--brand-700);
      border-color:rgba(122,30,79,.18);
    }
    .btn-secondary:hover{background:#fff4f8;border-color:rgba(244,63,127,.35);transform:translateY(-1px)}
    .btn:focus-visible,.navlink:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,a:focus-visible{
      outline:3px solid rgba(18,191,165,.28);
      outline-offset:3px;
    }
    .searchbar{
      min-height:48px;
      display:flex;
      align-items:center;
      gap:10px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:999px;
      padding:6px 8px 6px 16px;
      box-shadow:0 8px 22px rgba(31,23,36,.04);
    }
    .searchbar input{width:100%;border:0;background:transparent;color:var(--ink);min-width:0}
    .searchbar input::placeholder{color:#9a8d9e}
    .searchbar button{
      border:0;
      border-radius:999px;
      background:var(--brand-700);
      color:#fff;
      padding:8px 16px;
      font-weight:800;
      white-space:nowrap;
    }
    .searchbar button:hover{background:var(--brand-600)}
    .tag-list{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
    .tag{
      display:inline-flex;
      align-items:center;
      min-height:32px;
      padding:5px 11px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .card{
      border:1px solid var(--line);
      background:rgba(255,255,255,.92);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
    }
    .card:hover{transform:translateY(-2px);box-shadow:var(--shadow-lift);border-color:rgba(244,63,127,.28)}
    .hero{
      position:relative;
      overflow:hidden;
      padding:64px 0 38px;
      background:
        linear-gradient(120deg,rgba(84,19,57,.88),rgba(164,36,99,.72),rgba(18,191,165,.48)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='620' viewBox='0 0 1200 620'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23541339'/%3E%3Cstop offset='.54' stop-color='%23F43F7F'/%3E%3Cstop offset='1' stop-color='%2312BFA5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='620' fill='url(/%23g)'/%3E%3Cg opacity='.16' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M80 130h1040M80 250h1040M80 370h1040M80 490h1040M180 70v500M360 70v500M540 70v500M720 70v500M900 70v500M1080 70v500'/%3E%3C/g%3E%3Cg opacity='.18' fill='%23fff'%3E%3Crect x='104' y='92' width='220' height='58' rx='18'/%3E%3Crect x='388' y='212' width='330' height='68' rx='22'/%3E%3Crect x='760' y='340' width='250' height='62' rx='20'/%3E%3Crect x='160' y='454' width='420' height='70' rx='24'/%3E%3C/g%3E%3C/svg%3E");
      background-size:cover;
      background-position:center;
    }
    .hero:after{
      content:"";
      position:absolute;
      inset:auto 0 0;
      height:140px;
      background:linear-gradient(180deg,rgba(255,255,255,0),#fff);
      pointer-events:none;
    }
    .hero-inner{position:relative;z-index:1}
    .series-nav{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      padding:10px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.24);
      color:#fff;
      width:max-content;
      max-width:100%;
    }
    .series-nav a,.series-nav span{
      padding:8px 13px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      font-size:14px;
      font-weight:800;
    }
    .series-nav a:hover{background:rgba(255,255,255,.24)}
    .hero h1{
      max-width:900px;
      margin:34px 0 18px;
      color:#fff;
      font-size:clamp(34px,5vw,54px);
      line-height:1.16;
      font-weight:900;
      letter-spacing:0;
    }
    .hero p{max-width:760px;color:rgba(255,255,255,.9);font-size:18px}
    .hero-panel{
      margin-top:34px;
      border-radius:28px;
      background:rgba(255,255,255,.94);
      border:1px solid rgba(255,255,255,.65);
      box-shadow:0 24px 70px rgba(23,18,26,.22);
      overflow:hidden;
    }
    .filter-chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:38px;
      padding:8px 13px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--muted);
      font-weight:800;
      font-size:14px;
      transition:all .2s ease;
    }
    .filter-chip.active,.filter-chip:hover{
      border-color:rgba(18,191,165,.35);
      background:rgba(18,191,165,.1);
      color:#087d6c;
    }
    .stat-badge{
      border-radius:22px;
      padding:20px;
      background:linear-gradient(135deg,var(--brand-800),var(--brand-600),var(--brand-400));
      color:#fff;
      min-height:126px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow:0 14px 34px rgba(122,30,79,.18);
    }
    .stat-badge.mint{background:linear-gradient(135deg,#087d6c,var(--mint),#7ee7d9);color:#10251f}
    .content-card{
      position:relative;
      overflow:hidden;
      min-height:238px;
      padding:24px;
    }
    .content-card:before{
      content:"";
      position:absolute;
      inset:0 0 auto;
      height:5px;
      background:linear-gradient(90deg,var(--mint),var(--brand-500),var(--brand-400));
    }
    .content-card h3{
      font-size:21px;
      line-height:1.35;
      font-weight:900;
      margin:14px 0 10px;
    }
    .content-card p{color:var(--muted);font-size:15px;margin:0}
    .meta-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:18px}
    .mini-meta{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:5px 10px;
      background:var(--soft);
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }
    .side-block{
      border-radius:24px;
      border:1px solid var(--line);
      background:#fff;
      padding:22px;
      box-shadow:var(--shadow);
    }
    .side-list{display:grid;gap:12px;margin-top:16px}
    .side-list a,.side-list div.item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:13px 14px;
      border-radius:16px;
      background:var(--paper);
      color:var(--ink);
      font-weight:800;
      transition:background .2s ease,color .2s ease,transform .2s ease;
    }
    .side-list a:hover{background:#fff0f6;color:var(--brand-700);transform:translateX(2px)}
    .step{
      display:grid;
      grid-template-columns:48px 1fr;
      gap:16px;
      align-items:start;
      padding:20px 0;
      border-bottom:1px solid var(--line);
    }
    .step:last-child{border-bottom:0}
    .step-num{
      width:48px;height:48px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg,var(--brand-700),var(--brand-500));
      color:#fff;font-weight:900;
    }
    .faq-item{
      border:1px solid var(--line);
      border-radius:20px;
      background:#fff;
      overflow:hidden;
      box-shadow:0 8px 26px rgba(31,23,36,.05);
    }
    .faq-q{
      width:100%;
      min-height:58px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 20px;
      border:0;
      background:#fff;
      color:var(--ink);
      text-align:left;
      font-weight:900;
    }
    .faq-a{
      display:none;
      padding:0 20px 20px;
      color:var(--muted);
    }
    .faq-item.open .faq-a{display:block}
    .faq-icon{
      flex:0 0 auto;
      width:30px;height:30px;border-radius:999px;
      display:flex;align-items:center;justify-content:center;
      background:rgba(244,63,127,.1);
      color:var(--brand-700);
      font-weight:900;
    }
    .faq-item.open .faq-icon{background:rgba(18,191,165,.12);color:#087d6c}
    .form-field{
      width:100%;
      min-height:48px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:16px;
      padding:12px 14px;
      color:var(--ink);
      transition:border-color .2s ease,box-shadow .2s ease;
    }
    textarea.form-field{min-height:126px;resize:vertical}
    .form-field:focus{border-color:rgba(244,63,127,.55);box-shadow:0 0 0 4px rgba(244,63,127,.1)}
    .footer-dark{
      background:var(--dark);
      color:#fff;
    }
    .footer-dark .muted{color:rgba(255,255,255,.64)}
    .footer-dark a{transition:color .2s ease}
    .footer-dark a:hover{color:#fff}
    .muted{color:var(--muted)}
    .menu-btn{display:none}
    @media (max-width:1024px){
      .desktop-nav{display:none!important}
      .menu-btn{display:inline-flex}
      .section{padding:64px 0}
      .hero{padding-top:48px}
    }
    @media (max-width:768px){
      .container{width:min(100% - 24px,1200px)}
      .section{padding:52px 0}
      .section-tight{padding:42px 0}
      .hero h1{font-size:36px}
      .hero p{font-size:16px}
      .hero-panel{border-radius:24px}
      .series-nav{border-radius:24px;width:100%}
      .series-nav a,.series-nav span{flex:1;text-align:center}
      .searchbar{border-radius:22px;align-items:stretch}
      .searchbar button{padding-inline:14px}
      .content-card{min-height:auto}
    }
    @media (max-width:520px){
      .btn{width:100%}
      .tag-list{align-items:stretch}
      .tag{flex:1;justify-content:center}
      .searchbar{flex-wrap:wrap;padding:12px}
      .searchbar input{flex:1 1 calc(100% - 40px)}
      .searchbar button{width:100%;min-height:42px}
      .hero h1{font-size:32px}
      .step{grid-template-columns:1fr}
      .step-num{width:42px;height:42px}
    }

/* roulang page: category1 */
:root {
      --brand-900: #6A1746;
      --brand-800: #8B1E5A;
      --brand-700: #B11E55;
      --brand-500: #F43F7F;
      --brand-400: #F96BA1;
      --mint: #12BFA5;
      --bg: #F7F4F6;
      --bg-soft: #FBF7F9;
      --text: #1F1724;
      --muted: #6F6474;
      --line: #E8DDE5;
      --card: rgba(255,255,255,.88);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --shadow-soft: 0 12px 36px rgba(31, 23, 36, 0.08);
      --shadow-lift: 0 18px 46px rgba(122, 30, 79, 0.14);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(1200px 600px at 10% -10%, rgba(244,63,127,.10), transparent 50%),
        radial-gradient(900px 500px at 90% 10%, rgba(18,191,165,.08), transparent 50%),
        linear-gradient(180deg, #fff 0%, var(--bg) 100%);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      line-height: 1.75;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, select, textarea { font: inherit; }
    ::selection { background: rgba(244, 63, 127, .16); }

    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    @media (min-width: 640px) {
      .container { padding-left: 1.25rem; padding-right: 1.25rem; }
    }

    .glass-line {
      backdrop-filter: blur(16px);
      background: rgba(255,255,255,.82);
      border-bottom: 1px solid rgba(232,221,229,.86);
      box-shadow: 0 8px 24px rgba(31,23,36,.04);
    }
    .shadow-soft { box-shadow: var(--shadow-soft); }
    .shadow-lift { box-shadow: var(--shadow-lift); }
    .muted { color: var(--muted); }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      padding: .42rem .82rem;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.86);
      color: var(--brand-800);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .01em;
      line-height: 1;
    }
    .badge-mint {
      display: inline-flex;
      align-items: center;
      padding: .42rem .82rem;
      border-radius: 999px;
      background: rgba(18,191,165,.12);
      color: #0E7E71;
      border: 1px solid rgba(18,191,165,.18);
      font-size: .8rem;
      font-weight: 700;
      line-height: 1;
    }
    .navlink {
      position: relative;
      padding: .5rem .2rem;
      transition: color .2s ease;
      white-space: nowrap;
    }
    .navlink:hover,
    .navlink:focus-visible,
    .navlink.active {
      color: var(--brand-700);
    }
    .navlink.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -6px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-700), var(--brand-500));
    }
    .searchbar {
      display: flex;
      align-items: center;
      gap: .75rem;
      width: 100%;
      padding: .72rem .9rem;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.92);
      box-shadow: 0 8px 24px rgba(31,23,36,.03);
    }
    .searchbar input {
      flex: 1;
      min-width: 0;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
    }
    .searchbar input::placeholder { color: #9A8EA0; }
    .searchbar button,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .4rem;
      min-height: 46px;
      padding: .8rem 1.25rem;
      border: 0;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--brand-700), var(--brand-500), var(--brand-400));
      color: #fff;
      font-weight: 800;
      box-shadow: 0 14px 30px rgba(122, 30, 79, .18);
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
      cursor: pointer;
    }
    .searchbar button:hover,
    .btn:hover,
    .searchbar button:focus-visible,
    .btn:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 18px 34px rgba(122, 30, 79, .24);
      filter: brightness(1.02);
      outline: none;
    }
    .btn-secondary {
      background: #fff;
      color: var(--brand-800);
      border: 1px solid rgba(177, 30, 85, .18);
      box-shadow: none;
    }
    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: #FFF5FA;
      box-shadow: 0 10px 24px rgba(31,23,36,.06);
    }
    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      padding: .42rem .78rem;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.88);
      color: #5F5168;
      font-size: .84rem;
      font-weight: 600;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .tag:hover { transform: translateY(-1px); border-color: rgba(244,63,127,.24); background: #fff; }

    .hero-card,
    .card,
    .panel,
    .faq-card,
    .form-card,
    .note-card,
    .status-card,
    .scene-card {
      background: var(--card);
      border: 1px solid rgba(232,221,229,.95);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
    }
    .hero-card { overflow: hidden; }
    .panel { border-radius: var(--radius-lg); }
    .card,
    .faq-card,
    .form-card,
    .note-card,
    .status-card,
    .scene-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
    .card:hover,
    .scene-card:hover,
    .faq-card:hover,
    .status-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lift);
      border-color: rgba(244,63,127,.22);
    }
    .section-tight {
      padding-top: 5rem;
      padding-bottom: 5rem;
    }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .section-kicker {
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .16em;
      color: var(--brand-700);
      text-transform: uppercase;
    }
    .section-title {
      font-size: clamp(1.6rem, 2.5vw, 2.35rem);
      line-height: 1.2;
      font-weight: 900;
      color: var(--text);
      margin-top: .4rem;
    }
    .section-desc { color: var(--muted); max-width: 48rem; }
    .hero-title {
      font-size: clamp(2.15rem, 4.8vw, 4rem);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--text);
    }
    .hero-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand-900), var(--brand-500));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-summary { color: #5D5165; font-size: 1.05rem; }
    .metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .9rem; }
    .metric-box {
      border-radius: 20px;
      border: 1px solid rgba(232,221,229,.95);
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,245,250,.92));
      padding: 1rem;
    }
    .metric-value { font-size: 1.5rem; font-weight: 900; color: var(--brand-800); line-height: 1.1; }
    .metric-label { font-size: .84rem; color: var(--muted); margin-top: .25rem; }
    .ringshell {
      position: relative;
      width: 190px;
      aspect-ratio: 1;
      border-radius: 50%;
      padding: 10px;
      background: conic-gradient(var(--brand-500) 0 68%, rgba(232,221,229,.7) 68% 100%);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.78), var(--shadow-soft);
    }
    .ringshell::after {
      content: "";
      position: absolute;
      inset: 16px;
      border-radius: 50%;
      background: linear-gradient(180deg, #fff, #FFF5FA);
      box-shadow: inset 0 0 0 1px rgba(232,221,229,.9);
    }
    .ring-inner {
      position: absolute;
      inset: 16px;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
    }
    .dot-row { display: inline-flex; gap: .38rem; }
    .dot-row span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(177,30,85,.2);
    }
    .dot-row span:nth-child(2) { background: rgba(244,63,127,.55); }
    .dot-row span:nth-child(3) { background: rgba(18,191,165,.5); }
    .filter-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .35rem;
      padding: .72rem 1rem;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.9);
      color: #5A4C63;
      font-weight: 700;
      font-size: .9rem;
      transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
    }
    .filter-chip:hover {
      transform: translateY(-1px);
      border-color: rgba(244,63,127,.22);
      background: #fff;
      color: var(--brand-800);
    }
    .filter-chip.active {
      border-color: rgba(244,63,127,.28);
      background: linear-gradient(135deg, rgba(177,30,85,.10), rgba(244,63,127,.08));
      color: var(--brand-800);
    }
    .content-grid { display: grid; gap: 1.1rem; }
    .content-card {
      overflow: hidden;
      position: relative;
      border-radius: 24px;
      border: 1px solid rgba(232,221,229,.95);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow-soft);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .content-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lift);
      border-color: rgba(244,63,127,.22);
    }
    .card-topline {
      height: 4px;
      background: linear-gradient(90deg, var(--brand-800), var(--brand-500), var(--mint));
    }
    .content-card .body { padding: 1.15rem 1.1rem 1.15rem; }
    .content-card h3 { font-size: 1.06rem; line-height: 1.4; font-weight: 800; color: var(--text); }
    .content-card p { color: #65586D; font-size: .96rem; }
    .meta-line { display: flex; flex-wrap: wrap; gap: .45rem .75rem; color: #7B6E84; font-size: .82rem; }
    .meta-line span { display: inline-flex; align-items: center; gap: .25rem; }
    .more-link {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      color: var(--brand-700);
      font-weight: 800;
      font-size: .92rem;
    }
    .sidebar {
      position: sticky;
      top: 9rem;
    }
    .list-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .6rem;
      padding: .92rem 0;
      border-top: 1px solid rgba(232,221,229,.9);
      color: #43364A;
      font-weight: 700;
    }
    .list-link:first-child { border-top: 0; padding-top: 0; }
    .list-link span:last-child { color: var(--brand-700); font-weight: 800; }
    .faq-card { overflow: hidden; }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.05rem 1.1rem;
      background: transparent;
      color: var(--text);
      border: 0;
      cursor: pointer;
      text-align: left;
      font-weight: 800;
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease;
      padding: 0 1.1rem;
      color: #65586D;
    }
    .faq-item.open .faq-a {
      padding-bottom: 1.05rem;
    }
    .faq-icon {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--brand-700);
      background: #fff;
      font-size: 1.1rem;
      line-height: 1;
    }
    .field {
      width: 100%;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.94);
      border-radius: 16px;
      padding: .9rem 1rem;
      color: var(--text);
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    .field:focus {
      outline: none;
      border-color: rgba(244,63,127,.36);
      box-shadow: 0 0 0 4px rgba(244,63,127,.08);
    }
    textarea.field { min-height: 140px; resize: vertical; }
    .checkline {
      display: flex;
      gap: .7rem;
      align-items: flex-start;
      color: #5F5467;
      font-size: .92rem;
    }
    .checkline input {
      width: 18px;
      height: 18px;
      margin-top: .18rem;
      accent-color: var(--brand-700);
    }
    .footer-dark {
      background: linear-gradient(180deg, #1A1320 0%, #17121A 100%);
      color: rgba(255,255,255,.92);
      padding-top: 4rem;
      padding-bottom: 3rem;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-dark a { color: rgba(255,255,255,.78); }
    .footer-dark a:hover { color: #fff; }
    .footer-dark .muted { color: rgba(255,255,255,.72); }
    .footer-dark .border-t { border-color: rgba(255,255,255,.1); }
    .notice-card {
      border-radius: 24px;
      padding: 1.2rem;
      background: linear-gradient(135deg, rgba(177,30,85,.08), rgba(244,63,127,.08), rgba(18,191,165,.08));
      border: 1px solid rgba(244,63,127,.14);
    }
    .mobile-floating {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 30;
    }
    @media (max-width: 1024px) {
      .sidebar { position: static; }
    }
    @media (max-width: 768px) {
      .section-tight { padding-top: 3.5rem; padding-bottom: 3.5rem; }
      .section-head { align-items: start; flex-direction: column; }
      .metric-grid { grid-template-columns: 1fr 1fr; }
      .searchbar { border-radius: 22px; }
    }
    @media (max-width: 520px) {
      .metric-grid { grid-template-columns: 1fr; }
      .hero-title { font-size: 2rem; }
      .btn, .searchbar button { width: 100%; }
      .searchbar { flex-wrap: wrap; }
      .searchbar input { width: 100%; }
      .searchbar button { width: 100%; }
      .tag-list { gap: .45rem; }
      .filter-chip { padding: .64rem .86rem; }
      .ringshell { width: 160px; }
    }
