/* roulang page: index */
:root{
      --bg: #f7f3ec;
      --bg-soft: #fffdf8;
      --panel: #fffaf2;
      --ink: #171412;
      --ink-2: #2a251f;
      --muted: #665d55;
      --line: #e7ded1;
      --line-strong: #d8ccb8;
      --accent: #d8a72f;
      --accent-2: #e1b94e;
      --accent-deep: #b98718;
      --rose: #8b5148;
      --rose-soft: rgba(139, 81, 72, .12);
      --shadow: 0 18px 50px rgba(33, 30, 27, .08);
      --shadow-strong: 0 20px 60px rgba(33, 30, 27, .14);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1240px;
      --trans: 220ms ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:
        linear-gradient(180deg, rgba(247,243,236,.95), rgba(255,253,248,.98)),
        repeating-linear-gradient(90deg, rgba(231,222,209,.22) 0, rgba(231,222,209,.22) 1px, transparent 1px, transparent 48px);
      font-family: "PingFang SC","Microsoft YaHei","Noto Sans SC","Source Han Sans SC",Arial,sans-serif;
      line-height:1.8;
      letter-spacing:0;
      overflow-x:hidden;
    }

    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{
      font:inherit;
      color:inherit;
    }
    button{
      border:0;
      background:none;
      cursor:pointer;
    }
    ::selection{background:rgba(216,167,47,.24)}
    :focus-visible{
      outline:2px solid rgba(216,167,47,.7);
      outline-offset:3px;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,253,248,.78);
      color:var(--muted);
      font-size:12px;
      font-weight:600;
      letter-spacing:0;
      line-height:1;
    }
    .eyebrow .dot{
      width:7px;height:7px;border-radius:999px;background:var(--accent);
      box-shadow:0 0 0 4px rgba(216,167,47,.14);
      flex:0 0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:40;
      backdrop-filter:saturate(140%) blur(14px);
      background:rgba(255,253,248,.82);
      border-bottom:1px solid rgba(231,222,209,.9);
    }

    .topbar{
      min-height:74px;
      display:flex;
      align-items:center;
      gap:18px;
      padding:14px 0 12px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:190px;
      font-weight:800;
      color:var(--ink);
      letter-spacing:0;
      flex:0 0 auto;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:12px;
      background:
        linear-gradient(145deg, rgba(216,167,47,.22), rgba(139,81,72,.12)),
        var(--bg-soft);
      border:1px solid var(--line);
      display:grid;
      place-items:center;
      box-shadow:0 8px 18px rgba(33,30,27,.05);
      flex:0 0 auto;
    }
    .brand-mark svg{width:18px;height:18px;fill:none;stroke:var(--ink);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
    .brand-text{
      font-size:18px;
      line-height:1.1;
      white-space:nowrap;
    }
    .brand-sub{
      display:block;
      color:var(--muted);
      font-size:12px;
      font-weight:600;
      margin-top:3px;
    }

    .header-search{
      flex:1 1 auto;
      display:flex;
      align-items:center;
      justify-content:center;
      min-width:0;
    }
    .search-shell{
      width:min(420px, 100%);
      display:flex;
      align-items:center;
      gap:10px;
      padding:11px 14px 11px 15px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,253,.9);
      box-shadow:0 10px 22px rgba(33,30,27,.04);
      transition:border-color var(--trans), box-shadow var(--trans), transform var(--trans), background var(--trans);
    }
    .search-shell:focus-within{
      border-color:rgba(216,167,47,.72);
      box-shadow:0 14px 32px rgba(216,167,47,.12);
      transform:translateY(-1px);
      background:#fffdf8;
    }
    .search-icon{
      width:18px;height:18px;flex:0 0 auto;color:var(--muted);
    }
    .search-shell input{
      width:100%;
      border:0;
      outline:none;
      background:transparent;
      color:var(--ink);
      min-width:0;
    }
    .search-shell input::placeholder{color:#8e857d}
    .search-submit{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 14px;
      border-radius:999px;
      background:var(--ink);
      color:var(--bg-soft);
      font-size:13px;
      font-weight:700;
      transition:transform var(--trans), background var(--trans), box-shadow var(--trans);
      box-shadow:0 10px 18px rgba(33,30,27,.12);
    }
    .search-submit:hover{transform:translateY(-1px);background:#231f1b}
    .search-submit svg{width:15px;height:15px}

    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
      margin-left:auto;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:700;
      font-size:14px;
      transition:transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans), color var(--trans);
      white-space:nowrap;
    }
    .btn svg{width:16px;height:16px;flex:0 0 auto}
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      background:var(--ink);
      color:var(--bg-soft);
      box-shadow:0 12px 26px rgba(33,30,27,.12);
    }
    .btn-primary:hover{background:#231f1b}
    .btn-accent{
      background:var(--accent);
      color:#241b09;
      box-shadow:0 12px 26px rgba(216,167,47,.18);
    }
    .btn-accent:hover{background:var(--accent-2)}
    .btn-ghost{
      background:transparent;
      border-color:var(--line);
      color:var(--ink);
    }
    .btn-ghost:hover{
      border-color:rgba(216,167,47,.58);
      background:rgba(216,167,47,.08);
    }

    .tabs-bar{
      border-top:1px solid rgba(231,222,209,.8);
      overflow:hidden;
    }
    .tabs-row{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 0 12px;
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
    }
    .tabs-row::-webkit-scrollbar{display:none}
    .tab{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid transparent;
      background:transparent;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
      transition:background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
    }
    .tab:hover{
      background:rgba(255,250,242,.92);
      color:var(--ink);
      border-color:var(--line);
      transform:translateY(-1px);
    }
    .tab.active{
      background:rgba(216,167,47,.18);
      color:var(--ink);
      border-color:rgba(216,167,47,.42);
      box-shadow:0 10px 22px rgba(216,167,47,.12);
    }
    .tab .pill{
      display:inline-grid;
      place-items:center;
      min-width:20px;
      height:20px;
      padding:0 6px;
      border-radius:999px;
      background:rgba(23,20,18,.06);
      color:var(--muted);
      font-size:11px;
      font-weight:800;
    }

    main{display:block}
    .section{
      padding:90px 0;
      position:relative;
    }
    .section-tight{padding:70px 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-title{
      margin:12px 0 0;
      font-size:clamp(28px, 4vw, 44px);
      line-height:1.14;
      letter-spacing:0;
      color:var(--ink);
      font-weight:800;
    }
    .section-desc{
      margin:14px 0 0;
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
      max-width:760px;
    }
    .section-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--ink);
      font-weight:700;
      font-size:14px;
      white-space:nowrap;
    }
    .section-link svg{width:16px;height:16px;transition:transform var(--trans)}
    .section-link:hover svg{transform:translateX(2px)}

    .hero{
      padding:34px 0 88px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:32px;
      background:
        linear-gradient(180deg, rgba(255,253,248,.98), rgba(247,243,236,.96));
      box-shadow:var(--shadow);
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg, rgba(216,167,47,.08), transparent 38%),
        radial-gradient(circle at top right, rgba(139,81,72,.08), transparent 28%),
        repeating-linear-gradient(90deg, rgba(231,222,209,.25) 0, rgba(231,222,209,.25) 1px, transparent 1px, transparent 54px);
      pointer-events:none;
      opacity:.55;
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:28px;
      padding:34px;
      align-items:stretch;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
      min-width:0;
    }
    .hero-kicker{
      margin-bottom:18px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
    }
    .hero-title{
      margin:0;
      font-size:clamp(36px, 5.2vw, 66px);
      line-height:1.08;
      letter-spacing:0;
      font-weight:800;
      max-width:10.5ch;
    }
    .hero-title span{
      display:block;
      color:var(--muted);
      font-size:clamp(18px, 2.1vw, 24px);
      line-height:1.45;
      font-weight:600;
      margin-top:14px;
      max-width:28ch;
    }
    .hero-text{
      margin:22px 0 0;
      color:var(--ink-2);
      font-size:17px;
      line-height:1.9;
      max-width:760px;
    }
    .hero-form{
      margin-top:26px;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
    }
    .hero-search{
      flex:1 1 300px;
      min-width:260px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px 12px 16px;
      border-radius:18px;
      border:1px solid var(--line);
      background:rgba(255,255,253,.95);
      box-shadow:0 10px 22px rgba(33,30,27,.04);
      transition:border-color var(--trans), box-shadow var(--trans), transform var(--trans);
    }
    .hero-search:focus-within{
      border-color:rgba(216,167,47,.78);
      box-shadow:0 16px 34px rgba(216,167,47,.14);
      transform:translateY(-1px);
    }
    .hero-search input{
      border:0;
      outline:none;
      background:transparent;
      width:100%;
      min-width:0;
    }
    .hero-search input::placeholder{color:#8e857d}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .hero-meta{
      margin-top:18px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .meta-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:36px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,250,242,.84);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .meta-chip strong{color:var(--ink)}
    .meta-chip.accent{
      background:rgba(216,167,47,.12);
      border-color:rgba(216,167,47,.34);
      color:var(--ink);
    }

    .hero-panel{
      border-radius:26px;
      border:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(33,30,27,.96), rgba(33,30,27,.92));
      color:#f8f2e8;
      box-shadow:var(--shadow-strong);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:100%;
    }
    .hero-panel-top{
      padding:26px 26px 0;
    }
    .panel-labels{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:18px;
    }
    .panel-label{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(247,243,236,.09);
      color:#f4ecde;
      font-size:12px;
      font-weight:700;
      letter-spacing:0;
    }
    .panel-label.cc{
      background:rgba(216,167,47,.18);
      color:#fff0bf;
    }
    .panel-label .mini-dot{
      width:7px;height:7px;border-radius:999px;background:var(--accent);
    }
    .panel-title{
      margin:0;
      font-size:24px;
      line-height:1.2;
      font-weight:800;
      color:#fff8ea;
    }
    .panel-sub{
      margin:10px 0 0;
      color:rgba(248,242,232,.78);
      font-size:15px;
      line-height:1.85;
    }
    .update-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .update-item{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:12px;
      align-items:start;
      padding:12px 0;
      border-top:1px solid rgba(231,222,209,.16);
    }
    .update-item:first-child{border-top:0;padding-top:0}
    .update-time{
      min-width:68px;
      color:#d7c8af;
      font-size:12px;
      font-weight:700;
      line-height:1.5;
      text-transform:uppercase;
      letter-spacing:.02em;
    }
    .update-content strong{
      display:block;
      color:#fff8ea;
      font-size:15px;
      line-height:1.5;
      margin-bottom:3px;
    }
    .update-content span{
      display:block;
      color:rgba(248,242,232,.76);
      font-size:13px;
      line-height:1.75;
    }
    .hero-panel-bottom{
      padding:22px 26px 26px;
      border-top:1px solid rgba(231,222,209,.14);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .panel-note{
      color:rgba(248,242,232,.78);
      font-size:13px;
      line-height:1.7;
      max-width:280px;
    }
    .panel-note strong{color:#fff8ea}
    .panel-cta{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:12px 16px;
      border-radius:999px;
      background:var(--accent);
      color:#22180a;
      font-weight:800;
      font-size:14px;
      transition:transform var(--trans), background var(--trans);
    }
    .panel-cta:hover{transform:translateY(-1px);background:var(--accent-2)}

    .feature-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:18px;
    }
    .feature-card{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.92);
      box-shadow:0 10px 24px rgba(33,30,27,.05);
      padding:24px;
      min-height:100%;
      transition:transform var(--trans), border-color var(--trans), box-shadow var(--trans), background var(--trans);
    }
    .feature-card::after{
      content:"";
      position:absolute;
      inset:auto 20px 20px auto;
      width:80px;
      height:80px;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(216,167,47,.12), rgba(139,81,72,.07));
      opacity:.55;
      transform:rotate(12deg);
      pointer-events:none;
    }
    .feature-card:hover{
      transform:translateY(-3px);
      border-color:rgba(216,167,47,.42);
      box-shadow:0 18px 40px rgba(33,30,27,.08);
    }
    .feature-card h3{
      margin:14px 0 10px;
      font-size:20px;
      line-height:1.25;
      font-weight:800;
    }
    .feature-card p{
      margin:0;
      color:var(--muted);
      line-height:1.85;
      font-size:15px;
    }
    .feature-card .mini{
      margin-top:16px;
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .feature-card .mini .tag{
      background:rgba(23,20,18,.04);
      border-color:rgba(231,222,209,.95);
    }
    .feature-icon{
      width:44px;
      height:44px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:rgba(216,167,47,.14);
      color:var(--ink);
      border:1px solid rgba(216,167,47,.28);
    }
    .feature-icon svg{width:20px;height:20px}
    .span-7{grid-column:span 7}
    .span-5{grid-column:span 5}
    .span-4{grid-column:span 4}
    .span-8{grid-column:span 8}
    .span-6{grid-column:span 6}
    .span-12{grid-column:span 12}

    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,250,242,.94);
      color:var(--muted);
      font-size:12px;
      font-weight:700;
      line-height:1;
    }
    .tag.accent{
      background:rgba(216,167,47,.14);
      color:var(--ink);
      border-color:rgba(216,167,47,.32);
    }
    .tag.rose{
      background:var(--rose-soft);
      color:#6f3b34;
      border-color:rgba(139,81,72,.18);
    }

    .scene-layout{
      display:grid;
      grid-template-columns: 1fr 1.1fr;
      gap:20px;
      align-items:stretch;
    }
    .steps-panel{
      border-radius:28px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.94);
      box-shadow:var(--shadow);
      padding:26px;
    }
    .step-list{
      list-style:none;
      margin:22px 0 0;
      padding:0;
      display:grid;
      gap:16px;
    }
    .step{
      display:grid;
      grid-template-columns:44px 1fr;
      gap:14px;
      align-items:start;
      padding:16px 0;
      border-top:1px solid var(--line);
    }
    .step:first-child{border-top:0;padding-top:0}
    .step-num{
      width:44px;height:44px;border-radius:14px;
      background:rgba(216,167,47,.14);
      color:var(--ink);
      border:1px solid rgba(216,167,47,.3);
      display:grid;
      place-items:center;
      font-weight:800;
      font-size:15px;
      flex:0 0 auto;
    }
    .step h4{
      margin:0 0 6px;
      font-size:18px;
      line-height:1.3;
      font-weight:800;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }

    .mock-panel{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      border:1px solid rgba(231,222,209,.88);
      background:
        linear-gradient(180deg, rgba(33,30,27,.96), rgba(26,23,20,.94));
      color:#f8f2e8;
      box-shadow:var(--shadow-strong);
      padding:26px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:18px;
    }
    .mock-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .mock-title{
      margin:0;
      font-size:22px;
      line-height:1.25;
      font-weight:800;
    }
    .mock-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(216,167,47,.16);
      color:#fff2c6;
      font-weight:700;
      font-size:12px;
      white-space:nowrap;
    }
    .mock-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-top:6px;
    }
    .mock-card{
      min-height:118px;
      border-radius:20px;
      border:1px solid rgba(231,222,209,.14);
      background:rgba(255,253,248,.06);
      padding:16px;
    }
    .mock-card strong{
      display:block;
      font-size:15px;
      margin-bottom:8px;
      color:#fff8ea;
    }
    .mock-card span{
      display:block;
      color:rgba(248,242,232,.76);
      font-size:13px;
      line-height:1.75;
    }
    .mock-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      border-top:1px solid rgba(231,222,209,.12);
      padding-top:18px;
    }
    .mock-bottom .tag{
      background:rgba(255,253,248,.08);
      color:#f7f0df;
      border-color:rgba(255,253,248,.1);
    }
    .mock-bottom .btn{
      min-height:42px;
    }

    .feedback-layout{
      display:grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap:22px;
      align-items:start;
    }
    .feedback-intro{
      border-radius:28px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.94);
      box-shadow:var(--shadow);
      padding:28px;
      position:sticky;
      top:120px;
    }
    .feedback-intro p{
      margin:16px 0 0;
      color:var(--muted);
      font-size:16px;
      line-height:1.9;
    }
    .feedback-cards{
      display:grid;
      gap:16px;
    }
    .quote-card{
      position:relative;
      border-radius:24px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.96);
      box-shadow:0 12px 28px rgba(33,30,27,.05);
      padding:24px;
      overflow:hidden;
      transition:transform var(--trans), border-color var(--trans), box-shadow var(--trans);
    }
    .quote-card:nth-child(2){transform:translateX(18px)}
    .quote-card:nth-child(3){transform:translateX(-12px)}
    .quote-card:hover{
      transform:translateY(-3px);
      border-color:rgba(216,167,47,.4);
      box-shadow:0 18px 38px rgba(33,30,27,.08);
    }
    .quote-mark{
      font-size:42px;
      line-height:0.8;
      color:rgba(216,167,47,.36);
      font-weight:800;
    }
    .quote-card p{
      margin:10px 0 16px;
      color:var(--ink-2);
      font-size:15px;
      line-height:1.9;
    }
    .quote-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding-top:14px;
      border-top:1px solid var(--line);
      color:var(--muted);
      font-size:13px;
    }
    .quote-meta strong{
      color:var(--ink);
      font-size:14px;
    }

    .pricing-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      align-items:stretch;
    }
    .price-card{
      position:relative;
      border-radius:28px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.96);
      box-shadow:var(--shadow);
      padding:26px;
      display:flex;
      flex-direction:column;
      min-height:100%;
      transition:transform var(--trans), border-color var(--trans), box-shadow var(--trans);
    }
    .price-card:hover{
      transform:translateY(-3px);
      border-color:rgba(216,167,47,.44);
      box-shadow:0 20px 44px rgba(33,30,27,.09);
    }
    .price-card.featured{
      border-color:rgba(216,167,47,.56);
      box-shadow:0 20px 48px rgba(216,167,47,.10);
      background:
        linear-gradient(180deg, rgba(255,253,248,.99), rgba(255,249,236,.98));
    }
    .price-badge{
      position:absolute;
      top:18px;
      right:18px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(216,167,47,.16);
      border:1px solid rgba(216,167,47,.3);
      color:var(--ink);
      font-size:12px;
      font-weight:800;
    }
    .price-card h3{
      margin:0;
      font-size:22px;
      line-height:1.25;
      font-weight:800;
    }
    .price{
      margin:14px 0 8px;
      font-size:38px;
      line-height:1;
      font-weight:800;
      letter-spacing:0;
    }
    .price small{
      font-size:13px;
      color:var(--muted);
      font-weight:700;
      margin-left:6px;
    }
    .price-desc{
      margin:0 0 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
      min-height:58px;
    }
    .price-list{
      margin:0 0 22px;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
      flex:1 1 auto;
    }
    .price-list li{
      position:relative;
      padding-left:24px;
      color:var(--ink-2);
      font-size:14px;
      line-height:1.7;
    }
    .price-list li::before{
      content:"";
      position:absolute;
      left:0;top:.5em;
      width:14px;height:14px;border-radius:50%;
      background:rgba(216,167,47,.18);
      border:1px solid rgba(216,167,47,.44);
      box-shadow:inset 0 0 0 3px rgba(255,253,248,1);
    }
    .price-card .btn{
      width:100%;
      min-height:46px;
    }

    .updates-wrap{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:20px;
      align-items:start;
    }
    .updates-list{
      border-radius:28px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.96);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .updates-head{
      padding:24px 24px 18px;
      border-bottom:1px solid var(--line);
    }
    .updates-head h3{
      margin:10px 0 8px;
      font-size:24px;
      line-height:1.22;
      font-weight:800;
    }
    .updates-head p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.9;
    }
    .feed{
      list-style:none;
      margin:0;
      padding:0;
    }
    .feed-item{
      display:grid;
      grid-template-columns: 86px 1fr auto;
      gap:14px;
      align-items:center;
      padding:18px 24px;
      border-top:1px solid var(--line);
      transition:background var(--trans), transform var(--trans), border-color var(--trans);
    }
    .feed-item:hover{
      background:rgba(216,167,47,.05);
      transform:translateY(-1px);
    }
    .feed-date{
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      line-height:1.5;
    }
    .feed-main strong{
      display:block;
      margin-bottom:4px;
      font-size:16px;
      line-height:1.5;
      font-weight:800;
    }
    .feed-main p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .feed-actions{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .feed-actions .tag{
      white-space:nowrap;
    }

    .updates-side{
      border-radius:28px;
      border:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(33,30,27,.97), rgba(28,25,22,.96));
      color:#f8f2e8;
      box-shadow:var(--shadow-strong);
      padding:26px;
    }
    .updates-side h3{
      margin:0 0 10px;
      font-size:24px;
      line-height:1.22;
      font-weight:800;
    }
    .updates-side p{
      margin:0 0 18px;
      color:rgba(248,242,232,.78);
      font-size:15px;
      line-height:1.9;
    }
    .side-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .side-list li{
      padding:14px 0;
      border-top:1px solid rgba(231,222,209,.12);
      color:rgba(248,242,232,.88);
      font-size:14px;
      line-height:1.8;
    }
    .side-list li:first-child{border-top:0;padding-top:0}
    .side-list strong{
      display:block;
      color:#fff8ea;
      margin-bottom:4px;
      font-size:15px;
    }

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
    }
    .faq-item{
      border-radius:22px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.96);
      box-shadow:0 12px 26px rgba(33,30,27,.05);
      overflow:hidden;
    }
    .faq-item details{
      padding:0;
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:20px 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      font-weight:800;
      color:var(--ink);
      font-size:17px;
      line-height:1.5;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary .caret{
      width:10px;height:10px;
      border-right:2px solid var(--muted);
      border-bottom:2px solid var(--muted);
      transform:rotate(45deg);
      transition:transform var(--trans), border-color var(--trans);
      flex:0 0 auto;
      margin-left:4px;
    }
    .faq-item details[open] summary .caret{
      transform:rotate(-135deg);
      border-color:var(--accent);
    }
    .faq-answer{
      padding:0 22px 22px;
      color:var(--muted);
      font-size:15px;
      line-height:1.9;
    }

    .cta-band{
      padding-top:28px;
      padding-bottom:100px;
    }
    .cta-shell{
      border-radius:32px;
      background:
        linear-gradient(135deg, rgba(33,30,27,.98), rgba(38,34,30,.96));
      color:#f8f2e8;
      border:1px solid rgba(231,222,209,.12);
      box-shadow:var(--shadow-strong);
      padding:28px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }
    .cta-shell h2{
      margin:0;
      font-size:clamp(26px, 3vw, 38px);
      line-height:1.15;
      font-weight:800;
      max-width:14ch;
    }
    .cta-shell p{
      margin:10px 0 0;
      color:rgba(248,242,232,.8);
      font-size:15px;
      line-height:1.9;
      max-width:62ch;
    }
    .cta-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }

    .site-footer{
      background:#1d1a17;
      color:#f8f2e8;
      padding:40px 0 30px;
      border-top:1px solid rgba(231,222,209,.1);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap:24px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .footer-brand .brand{
      color:#fff8ea;
      min-width:0;
    }
    .footer-note{
      color:rgba(248,242,232,.72);
      font-size:14px;
      line-height:1.9;
      max-width:38ch;
    }
    .footer-col h3{
      margin:0 0 14px;
      font-size:15px;
      line-height:1.3;
      font-weight:800;
      color:#fff8ea;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(248,242,232,.76);
      font-size:14px;
      line-height:1.6;
      transition:color var(--trans), transform var(--trans);
    }
    .footer-links a:hover{
      color:#fff3c3;
      transform:translateX(2px);
    }
    .footer-meta{
      margin-top:24px;
      padding-top:18px;
      border-top:1px solid rgba(231,222,209,.12);
      color:rgba(248,242,232,.58);
      font-size:13px;
      line-height:1.8;
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }

    .subtle-line{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(216,167,47,.38), transparent);
      margin:0 auto;
      width:min(100%, 1180px);
    }

    @media (max-width: 1080px){
      .topbar{
        flex-wrap:wrap;
        padding-bottom:14px;
      }
      .header-search{
        order:3;
        width:100%;
        justify-content:stretch;
      }
      .search-shell{width:100%}
      .header-actions{margin-left:0}
      .hero-grid,
      .scene-layout,
      .feedback-layout,
      .updates-wrap,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .feedback-intro{position:relative;top:0}
      .quote-card:nth-child(2),
      .quote-card:nth-child(3){
        transform:none;
      }
      .pricing-grid{
        grid-template-columns:1fr;
      }
      .faq-grid{
        grid-template-columns:1fr;
      }
      .hero-title{max-width:13ch}
      .hero-panel{min-height:unset}
      .feature-grid{
        grid-template-columns:1fr 1fr;
      }
      .span-7,.span-5,.span-4,.span-8,.span-6,.span-12{grid-column:span 1}
    }

    @media (max-width: 760px){
      .section{padding:66px 0}
      .hero{padding-top:20px;padding-bottom:68px}
      .hero-shell{border-radius:26px}
      .hero-grid{padding:22px;gap:20px}
      .hero-title{
        font-size:clamp(34px, 10vw, 42px);
        max-width:100%;
      }
      .hero-title span{font-size:17px;margin-top:12px}
      .hero-text{font-size:16px}
      .btn{min-height:42px;padding:0 16px;font-size:13px}
      .feature-grid{grid-template-columns:1fr}
      .feed-item{
        grid-template-columns:1fr;
        gap:10px;
      }
      .feed-actions{justify-content:flex-start}
      .updates-head h3,
      .updates-side h3,
      .section-title,
      .panel-title,
      .mock-title,
      .feedback-intro h2,
      .cta-shell h2{
        font-size:26px;
      }
      .price{font-size:34px}
      .hero-panel-top,
      .hero-panel-bottom,
      .updates-head,
      .updates-side,
      .price-card,
      .steps-panel,
      .feedback-intro,
      .feature-card,
      .quote-card,
      .faq-item summary,
      .faq-answer{
        padding-left:18px;
        padding-right:18px;
      }
      .panel-note{max-width:100%}
      .mock-grid{
        grid-template-columns:1fr;
      }
      .cta-shell{padding:22px}
    }

    @media (max-width: 520px){
      .container{width:min(var(--container), calc(100% - 24px))}
      .topbar{min-height:auto}
      .brand{min-width:0}
      .brand-text{font-size:16px}
      .brand-sub{font-size:11px}
      .header-actions{width:100%;justify-content:flex-start}
      .header-actions .btn{flex:1 1 0}
      .tab{font-size:12px;padding:9px 12px}
      .hero-form{gap:10px}
      .hero-search{min-width:100%}
      .hero-actions{width:100%}
      .hero-actions .btn{flex:1 1 0}
      .meta-chip{font-size:12px}
      .section-head{flex-direction:column;align-items:flex-start}
      .section-desc{font-size:15px}
      .hero-text{font-size:15px}
      .hero-panel-top,
      .hero-panel-bottom,
      .updates-head,
      .updates-side,
      .price-card,
      .steps-panel,
      .feedback-intro,
      .feature-card,
      .quote-card,
      .faq-item summary,
      .faq-answer{
        padding-left:16px;
        padding-right:16px;
      }
      .cta-actions,
      .hero-actions{
        width:100%;
      }
      .cta-actions .btn{
        flex:1 1 0;
      }
      .footer-meta{
        flex-direction:column;
      }
    }

/* roulang page: category2 */
:root{
      --bg:#f7f3ec;
      --panel:#fffdf8;
      --panel-2:#f1e9dc;
      --text:#1f1b18;
      --muted:#6f655e;
      --line:#e7ded1;
      --accent:#d8a72f;
      --accent-2:#8b5148;
      --dark:#211e1b;
      --dark-2:#171412;
      --success:#5e7b63;
      --shadow:0 18px 50px rgba(33,30,27,.08);
      --radius-xl:30px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1240px;
      --transition:200ms ease;
    }
    *{box-sizing:border-box}
    html,body{margin:0;padding:0}
    body{
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Source Han Sans SC",Arial,sans-serif;
      background:
        radial-gradient(circle at top left, rgba(216,167,47,.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(139,81,72,.08), transparent 26%),
        var(--bg);
      color:var(--text);
      line-height:1.8;
      letter-spacing:0;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    ::selection{background:rgba(216,167,47,.25);color:var(--dark)}
    .container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .site-header{
      position:sticky;top:0;z-index:50;
      backdrop-filter:saturate(150%) blur(10px);
      background:rgba(247,243,236,.88);
      border-bottom:1px solid rgba(231,222,209,.9);
    }
    .topbar{
      min-height:74px;display:flex;align-items:center;gap:18px;justify-content:space-between;
    }
    .brand{display:inline-flex;align-items:center;gap:14px;min-width:max-content}
    .brand-mark{
      width:42px;height:42px;border-radius:14px;
      background:linear-gradient(180deg,#f7e7b0,#e1b94e);
      border:1px solid rgba(33,30,27,.09);
      display:grid;place-items:center;
      box-shadow:0 10px 24px rgba(216,167,47,.18);
      flex:0 0 auto;
    }
    .brand-mark svg{width:22px;height:22px;stroke:var(--dark);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
    .brand-text{
      display:flex;flex-direction:column;line-height:1.08;font-weight:800;
      letter-spacing:0;color:var(--dark);font-size:20px;
    }
    .brand-sub{font-size:12px;font-weight:600;color:var(--muted);margin-top:4px}
    .header-search{flex:1;display:flex;justify-content:center}
    .search-shell{
      width:min(420px,100%);display:flex;align-items:center;gap:10px;
      background:var(--panel);border:1px solid var(--line);
      border-radius:999px;padding:10px 12px 10px 14px;
      box-shadow:0 8px 24px rgba(33,30,27,.04);
      transition:border-color var(--transition),box-shadow var(--transition),transform var(--transition);
    }
    .search-shell:focus-within{
      border-color:rgba(216,167,47,.7);
      box-shadow:0 12px 28px rgba(216,167,47,.12);
      transform:translateY(-1px);
    }
    .search-icon{width:18px;height:18px;color:var(--accent-2);flex:0 0 auto}
    .search-shell input{
      flex:1;border:none;outline:none;background:transparent;color:var(--text);
      min-width:0;font-size:15px;
    }
    .search-shell input::placeholder{color:#8c8278}
    .search-submit{
      border:none;cursor:pointer;
      background:var(--dark);color:#fff;
      border-radius:999px;padding:10px 15px;
      display:inline-flex;align-items:center;gap:7px;
      transition:transform var(--transition),background var(--transition),box-shadow var(--transition);
      box-shadow:0 10px 20px rgba(33,30,27,.14);
      white-space:nowrap;
    }
    .search-submit svg{width:16px;height:16px}
    .search-submit:hover{transform:translateY(-1px);background:#2d2925}
    .header-actions{display:flex;align-items:center;gap:10px;flex:0 0 auto}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      border-radius:999px;padding:12px 16px;border:1px solid transparent;
      font-weight:700;line-height:1;transition:transform var(--transition),background var(--transition),border-color var(--transition),color var(--transition),box-shadow var(--transition);
      white-space:nowrap;
    }
    .btn:focus,.tab:focus,.footer-links a:focus,.faq-item summary:focus,.mini-card a:focus,.feature-card a:focus,.scheme .scheme-link:focus{outline:2px solid rgba(216,167,47,.55);outline-offset:3px}
    .btn-ghost{
      background:rgba(255,253,248,.9);
      border-color:var(--line);color:var(--dark);
    }
    .btn-ghost:hover{transform:translateY(-1px);border-color:rgba(216,167,47,.4);box-shadow:0 10px 20px rgba(33,30,27,.06)}
    .btn-accent{
      background:linear-gradient(180deg,#e8bf61,#d8a72f);
      color:#2a2116;border-color:rgba(33,30,27,.08);
      box-shadow:0 12px 24px rgba(216,167,47,.18);
    }
    .btn-accent:hover{transform:translateY(-1px);box-shadow:0 14px 28px rgba(216,167,47,.24)}
    .tabs-bar{
      border-top:1px solid rgba(231,222,209,.85);
      background:rgba(255,253,248,.8);
    }
    .tabs-row{
      display:flex;align-items:center;gap:10px;
      overflow:auto hidden;padding:12px 0;
      scrollbar-width:none;
    }
    .tabs-row::-webkit-scrollbar{display:none}
    .tab{
      display:inline-flex;align-items:center;gap:10px;
      border:1px solid transparent;border-radius:999px;
      padding:10px 14px;background:transparent;color:var(--muted);
      transition:background var(--transition),border-color var(--transition),color var(--transition),transform var(--transition),box-shadow var(--transition);
      white-space:nowrap;font-weight:700;font-size:14px;
    }
    .pill{
      display:inline-flex;align-items:center;justify-content:center;
      min-width:30px;height:24px;padding:0 8px;border-radius:999px;
      background:rgba(255,255,255,.72);color:var(--accent-2);
      border:1px solid rgba(231,222,209,.95);font-size:12px;font-weight:800;
    }
    .tab:hover{background:rgba(255,255,248,.9);border-color:var(--line);color:var(--dark);transform:translateY(-1px)}
    .tab.active{
      background:rgba(216,167,47,.14);border-color:rgba(216,167,47,.35);
      color:var(--dark);
      box-shadow:inset 0 0 0 1px rgba(216,167,47,.12);
    }
    main{display:block}
    .section{padding:84px 0}
    .section-tight{padding:56px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      font-size:12px;font-weight:800;letter-spacing:.02em;
      color:var(--accent-2);text-transform:none;
      background:rgba(216,167,47,.12);
      border:1px solid rgba(216,167,47,.18);
      padding:8px 12px;border-radius:999px;
    }
    .eyebrow::before{
      content:"";width:8px;height:8px;border-radius:50%;
      background:var(--accent);box-shadow:0 0 0 4px rgba(216,167,47,.12);
    }
    h1,h2,h3,p{margin:0}
    .section-title{
      display:grid;gap:14px;max-width:720px;margin-bottom:28px;
    }
    .section-title h2{
      font-size:clamp(28px,3vw,42px);line-height:1.16;font-weight:800;color:var(--dark);
      letter-spacing:-.01em;
    }
    .section-title p{color:var(--muted);font-size:16px;line-height:1.85}
    .hero{
      padding:36px 0 22px;
    }
    .hero-grid{
      display:grid;grid-template-columns:1.12fr .88fr;gap:28px;align-items:stretch;
    }
    .hero-copy,.hero-panel,.feature-large,.feature-mini,.scene-panel,.quote-card,.pricing-card,.info-panel,.matrix-panel,.list-card,.faq-item,.scheme{
      background:var(--panel);
      border:1px solid rgba(231,222,209,.98);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
    }
    .hero-copy{
      padding:34px;
      display:flex;flex-direction:column;justify-content:space-between;min-height:460px;
      background:
        linear-gradient(180deg, rgba(255,253,248,.96), rgba(255,253,248,.98)),
        radial-gradient(circle at top right, rgba(216,167,47,.12), transparent 22%);
    }
    .hero-copy h1{
      font-size:clamp(36px,5vw,64px);
      line-height:1.08;
      font-weight:800;
      color:var(--dark);
      letter-spacing:-.03em;
      max-width:12ch;
    }
    .hero-copy h1 .accent{color:var(--accent-2)}
    .hero-copy .lead{
      margin-top:18px;max-width:62ch;font-size:17px;color:var(--muted);line-height:1.9;
    }
    .hero-actions{
      display:flex;flex-wrap:wrap;gap:12px;margin-top:24px;
    }
    .hero-search{
      margin-top:24px;display:flex;gap:10px;flex-wrap:wrap;align-items:center;
      padding:14px;background:rgba(247,243,236,.78);
      border:1px solid var(--line);border-radius:22px;
    }
    .hero-search .search-shell{width:min(100%,520px)}
    .micro-tags{
      display:flex;flex-wrap:wrap;gap:10px;margin-top:24px
    }
    .micro-tags .tag{
      display:inline-flex;align-items:center;gap:8px;
      padding:9px 12px;border-radius:999px;
      background:rgba(255,253,248,.88);border:1px solid var(--line);
      color:var(--dark);font-size:13px;font-weight:700;
    }
    .micro-tags .tag i{
      width:8px;height:8px;border-radius:50%;background:var(--accent);
      display:inline-block;box-shadow:0 0 0 4px rgba(216,167,47,.12);
    }
    .hero-panel{
      padding:24px;
      background:
        linear-gradient(180deg, rgba(33,30,27,.98), rgba(33,30,27,.94));
      color:#f8f2e8;
      display:flex;flex-direction:column;justify-content:space-between;
      overflow:hidden;position:relative;
    }
    .hero-panel::after{
      content:"";position:absolute;inset:auto -15% -20% auto;width:260px;height:260px;
      border-radius:50%;background:rgba(216,167,47,.12);filter:blur(2px);
    }
    .panel-head{display:flex;align-items:center;justify-content:space-between;gap:12px;position:relative;z-index:1}
    .panel-head .label{
      display:inline-flex;align-items:center;gap:8px;padding:8px 11px;border-radius:999px;
      background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
      color:#f7e8c5;font-weight:800;font-size:12px;
    }
    .panel-head .date{font-size:12px;color:rgba(248,242,232,.74)}
    .panel-title{
      position:relative;z-index:1;
      margin-top:18px;font-size:28px;line-height:1.18;font-weight:800;max-width:13ch;
    }
    .panel-title span{color:#f1c85f}
    .panel-list{position:relative;z-index:1;margin:18px 0 20px;padding:0;list-style:none;display:grid;gap:12px}
    .panel-list li{
      display:grid;grid-template-columns:auto 1fr;gap:12px;align-items:start;
      padding:13px 14px;border-radius:18px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }
    .panel-list .dot{
      width:10px;height:10px;border-radius:50%;background:#e8bf61;margin-top:6px;
      box-shadow:0 0 0 5px rgba(232,191,97,.14);
    }
    .panel-list strong{display:block;font-size:14px;color:#fff}
    .panel-list span{display:block;font-size:13px;color:rgba(248,242,232,.72);line-height:1.7}
    .panel-bottom{
      position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:12px;
      margin-top:18px;padding-top:18px;border-top:1px solid rgba(255,255,255,.1);
    }
    .panel-bottom small{color:rgba(248,242,232,.7)}
    .panel-bottom .btn{padding:11px 15px}
    .section-note{
      display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:18px;
    }
    .section-note .note{
      padding:9px 12px;border-radius:999px;background:rgba(255,253,248,.86);
      border:1px solid var(--line);color:var(--muted);font-size:13px;font-weight:700;
    }
    .feature-grid{
      display:grid;grid-template-columns:1.25fr .75fr .75fr;gap:18px;align-items:stretch;
    }
    .feature-large{padding:28px;grid-row:span 2;background:linear-gradient(180deg,#fffdf8,#faf6ef)}
    .feature-mini{padding:22px}
    .feature-banner{
      display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:18px;
    }
    .feature-banner .meta{
      display:flex;align-items:center;gap:8px;font-size:12px;font-weight:800;color:var(--accent-2)
    }
    .feature-banner .meta .square{
      width:28px;height:28px;border-radius:10px;background:rgba(216,167,47,.12);
      display:grid;place-items:center;border:1px solid rgba(216,167,47,.18)
    }
    .feature-banner .meta .square svg{width:16px;height:16px;stroke:var(--accent-2);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
    .feature-large h3,.feature-mini h3,.scene-panel h3,.quote-card h3,.pricing-card h3,.matrix-panel h3,.list-card h3,.info-panel h3,.scheme h3{
      font-size:22px;line-height:1.2;font-weight:800;color:var(--dark)
    }
    .feature-large p,.feature-mini p,.scene-panel p,.quote-card p,.pricing-card p,.matrix-panel p,.list-card p,.info-panel p,.scheme p{
      color:var(--muted);font-size:15px;line-height:1.85
    }
    .feature-large .feature-copy{max-width:40ch}
    .feature-pills{
      display:flex;flex-wrap:wrap;gap:10px;margin-top:18px
    }
    .feature-pills span{
      padding:8px 11px;border-radius:999px;background:#fff;border:1px solid var(--line);
      font-size:12px;font-weight:700;color:var(--dark)
    }
    .mini-card-row{
      display:grid;gap:14px;margin-top:18px
    }
    .mini-card{
      border-top:1px solid var(--line);padding-top:14px;display:flex;flex-direction:column;gap:8px
    }
    .mini-card .topline{
      display:flex;align-items:center;justify-content:space-between;gap:10px
    }
    .mini-card .topline .time{font-size:12px;color:var(--muted)}
    .mini-card .badge{
      display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:800;color:var(--accent-2)
    }
    .mini-card .badge::before{
      content:"";width:7px;height:7px;border-radius:50%;background:var(--accent)
    }
    .mini-card a,.feature-large .feature-link,.feature-mini .feature-link{
      display:inline-flex;align-items:center;gap:8px;margin-top:2px;color:var(--dark);font-weight:800
    }
    .mini-card a span,.feature-link span{transition:transform var(--transition)}
    .mini-card a:hover span,.feature-link:hover span{transform:translateX(2px)}
    .feature-mini{
      display:flex;flex-direction:column;justify-content:space-between;
      background:linear-gradient(180deg,#fffdf8,#fbf8f3);
    }
    .feature-mini .badge-line{
      display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px
    }
    .badge-line .soft{
      display:inline-flex;align-items:center;padding:7px 10px;border-radius:999px;
      border:1px solid var(--line);background:rgba(255,255,255,.9);font-size:12px;font-weight:700;color:var(--muted)
    }
    .feature-mini .chart{
      margin-top:18px;border-radius:22px;border:1px solid var(--line);padding:18px;background:
        linear-gradient(180deg, rgba(216,167,47,.08), rgba(255,253,248,.86));
    }
    .chart .bar{
      height:12px;border-radius:999px;background:rgba(216,167,47,.15);margin-bottom:10px;overflow:hidden
    }
    .chart .bar i{display:block;height:100%;width:72%;background:linear-gradient(90deg,#e1b94e,#d8a72f);border-radius:inherit}
    .chart .bar:nth-child(2) i{width:54%}
    .chart .bar:nth-child(3) i{width:86%}
    .chart .bar:nth-child(4) i{width:38%}
    .scene-wrap{
      display:grid;grid-template-columns:.78fr 1.22fr;gap:18px;align-items:stretch;
    }
    .scene-panel{padding:28px}
    .steps{
      list-style:none;margin:22px 0 0;padding:0;display:grid;gap:14px
    }
    .steps li{
      display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:start;
      padding:14px 0;border-top:1px solid var(--line)
    }
    .steps li:first-child{border-top:none;padding-top:0}
    .step-num{
      width:34px;height:34px;border-radius:12px;background:rgba(216,167,47,.12);
      color:var(--accent-2);display:grid;place-items:center;font-weight:800;font-size:13px;
      border:1px solid rgba(216,167,47,.18)
    }
    .steps strong{display:block;font-size:16px;line-height:1.45;color:var(--dark)}
    .steps p{margin-top:4px;font-size:14px}
    .scene-panel .scene-links{
      display:flex;gap:10px;flex-wrap:wrap;margin-top:20px
    }
    .scene-panel .scene-links .btn{padding:11px 15px}
    .matrix-panel{
      padding:26px;display:flex;flex-direction:column;gap:18px;
      background:
        linear-gradient(180deg, rgba(33,30,27,.97), rgba(33,30,27,.92));
      color:#f7f1e5;
    }
    .matrix-panel h3{color:#fff}
    .matrix-panel p{color:rgba(247,241,229,.74)}
    .matrix-grid{
      display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px
    }
    .matrix-item{
      padding:14px;border-radius:18px;background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08)
    }
    .matrix-item .k{
      display:block;font-size:12px;color:#e8bf61;font-weight:800;margin-bottom:8px
    }
    .matrix-item .v{display:block;font-size:14px;line-height:1.7;color:rgba(247,241,229,.86)}
    .selected-row{
      display:flex;flex-wrap:wrap;gap:10px;padding:14px;border-radius:22px;background:rgba(255,253,248,.95);border:1px solid var(--line)
    }
    .selected-row .select-tag{
      display:inline-flex;align-items:center;gap:8px;padding:9px 12px;border-radius:999px;
      background:rgba(216,167,47,.12);border:1px solid rgba(216,167,47,.18);
      color:var(--dark);font-weight:700;font-size:13px
    }
    .selected-row .select-tag span{
      width:7px;height:7px;border-radius:50%;background:var(--accent-2)
    }
    .list-layout{
      display:grid;grid-template-columns:1fr .84fr;gap:18px;align-items:start;
    }
    .list-stack{display:grid;gap:14px}
    .list-card{
      padding:18px 18px 18px 20px;
      transition:transform var(--transition),border-color var(--transition),box-shadow var(--transition);
      border-left:4px solid transparent;
    }
    .list-card:hover{transform:translateY(-2px);border-color:rgba(216,167,47,.35);box-shadow:0 20px 44px rgba(33,30,27,.09);border-left-color:var(--accent)}
    .list-card .row{
      display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap
    }
    .list-card .row .tagline{
      display:flex;align-items:center;gap:8px;flex-wrap:wrap
    }
    .tag{
      display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border-radius:999px;
      background:rgba(255,253,248,.95);border:1px solid var(--line);font-size:12px;font-weight:800;color:var(--muted)
    }
    .tag.highlight{background:rgba(216,167,47,.13);color:var(--dark);border-color:rgba(216,167,47,.2)}
    .list-card h3{font-size:20px;margin-top:10px}
    .list-card p{margin-top:8px}
    .list-card .meta{
      display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;color:var(--muted);font-size:13px
    }
    .list-card .meta span{
      padding:7px 10px;border-radius:999px;background:rgba(247,243,236,.9);border:1px solid var(--line)
    }
    .info-panel{
      padding:24px;position:sticky;top:126px
    }
    .info-list{
      list-style:none;margin:18px 0 0;padding:0;display:grid;gap:14px
    }
    .info-list li{
      padding:14px 0;border-top:1px solid var(--line)
    }
    .info-list li:first-child{border-top:none;padding-top:0}
    .info-list strong{display:block;font-size:15px;color:var(--dark)}
    .info-list span{display:block;margin-top:5px;color:var(--muted);font-size:14px;line-height:1.8}
    .quote-grid{
      display:grid;grid-template-columns:1.02fr .98fr;gap:18px;align-items:start;
    }
    .quote-left{
      display:grid;gap:16px
    }
    .quote-card{
      padding:20px 22px;
      background:linear-gradient(180deg,#fffdf8,#fbf7f0);
    }
    .quote-card .quote-mark{
      font-size:28px;line-height:1;color:var(--accent-2);font-weight:900
    }
    .quote-card p{margin-top:10px}
    .quote-card .who{
      margin-top:14px;display:flex;align-items:center;justify-content:space-between;gap:10px;
      font-size:13px;color:var(--muted)
    }
    .quote-card .who strong{color:var(--dark)}
    .pricing-grid{
      display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;align-items:stretch;
    }
    .pricing-card{
      padding:24px;display:flex;flex-direction:column;gap:18px;position:relative;overflow:hidden
    }
    .pricing-card.recommended{
      border-color:rgba(216,167,47,.42);
      box-shadow:0 24px 60px rgba(216,167,47,.12);
    }
    .pricing-card.recommended::before{
      content:"推荐";position:absolute;top:18px;right:18px;
      background:rgba(216,167,47,.14);color:var(--accent-2);
      border:1px solid rgba(216,167,47,.22);padding:7px 10px;border-radius:999px;font-size:12px;font-weight:800
    }
    .price{
      display:flex;align-items:end;gap:6px;margin-top:2px
    }
    .price strong{font-size:44px;line-height:1;font-weight:800;color:var(--dark)}
    .price span{font-size:14px;color:var(--muted);padding-bottom:6px}
    .pricing-card ul{
      list-style:none;margin:0;padding:0;display:grid;gap:10px
    }
    .pricing-card li{
      display:grid;grid-template-columns:auto 1fr;gap:10px;align-items:start;color:var(--text);font-size:14px;line-height:1.7
    }
    .pricing-card li::before{
      content:"";width:9px;height:9px;border-radius:50%;background:var(--accent);margin-top:7px;box-shadow:0 0 0 4px rgba(216,167,47,.12)
    }
    .pricing-card .btn{margin-top:auto;width:100%}
    .support-band{
      margin-top:20px;padding:18px 20px;border-radius:22px;background:rgba(33,30,27,.95);
      color:#f8f3e8;border:1px solid rgba(255,255,255,.08);
      display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap
    }
    .support-band p{color:rgba(248,243,232,.74);max-width:70ch}
    .support-band .btn{background:linear-gradient(180deg,#e8bf61,#d8a72f);color:#2a2116}
    .faq-wrap{
      display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start;
    }
    .faq-list{display:grid;gap:14px}
    .faq-item{
      padding:0;overflow:hidden;background:var(--panel)
    }
    .faq-item summary{
      list-style:none;cursor:pointer;padding:20px 22px;font-weight:800;color:var(--dark);
      display:flex;align-items:center;justify-content:space-between;gap:16px
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary::after{
      content:"+";font-size:22px;line-height:1;color:var(--accent-2);transition:transform var(--transition)
    }
    .faq-item[open] summary{border-bottom:1px solid var(--line)}
    .faq-item[open] summary::after{content:"–"}
    .faq-item .faq-body{padding:18px 22px 22px;color:var(--muted);font-size:15px;line-height:1.9}
    .faq-panel{
      padding:24px;border-radius:var(--radius-xl);background:linear-gradient(180deg,#fffdf8,#fbf8f2);border:1px solid var(--line);box-shadow:var(--shadow)
    }
    .faq-panel .tip{
      display:flex;gap:12px;align-items:flex-start;padding:14px 0;border-top:1px solid var(--line)
    }
    .faq-panel .tip:first-of-type{border-top:none;padding-top:0}
    .faq-panel .tip i{
      width:28px;height:28px;border-radius:10px;background:rgba(216,167,47,.14);
      display:grid;place-items:center;color:var(--accent-2);font-style:normal;font-weight:800;font-size:12px;flex:0 0 auto
    }
    .faq-panel .tip strong{display:block;color:var(--dark)}
    .faq-panel .tip span{display:block;color:var(--muted);font-size:14px;line-height:1.8}
    .site-footer{
      margin-top:20px;background:var(--dark-2);color:#f6f0e6;padding:44px 0 18px;
      border-top:1px solid rgba(255,255,255,.07)
    }
    .footer-grid{
      display:grid;grid-template-columns:1.3fr .7fr .7fr;gap:24px;align-items:start
    }
    .footer-brand .brand .brand-mark{background:linear-gradient(180deg,#f7e7b0,#d8a72f)}
    .footer-brand .brand-text{color:#fff}
    .footer-brand .brand-sub{color:rgba(246,240,230,.72)}
    .footer-note{
      margin-top:14px;color:rgba(246,240,230,.74);font-size:15px;line-height:1.9;max-width:42ch
    }
    .footer-col h3{
      font-size:15px;color:#fff;margin-bottom:12px;font-weight:800
    }
    .footer-links{display:grid;gap:10px}
    .footer-links a{
      color:rgba(246,240,230,.76);font-size:14px;transition:color var(--transition),transform var(--transition)
    }
    .footer-links a:hover{color:#fff;transform:translateX(2px)}
    .footer-meta{
      margin-top:26px;padding-top:16px;border-top:1px solid rgba(255,255,255,.08);
      display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;color:rgba(246,240,230,.62);font-size:13px
    }
    .anchor-space{scroll-margin-top:118px}
    .muted{color:var(--muted)}
    .small{font-size:13px;line-height:1.75;color:var(--muted)}
    .divider{height:1px;background:var(--line);margin:18px 0}
    .mobile-only{display:none}
    @media (max-width: 1100px){
      .hero-grid,.feature-grid,.scene-wrap,.list-layout,.quote-grid,.faq-wrap,.pricing-grid,.footer-grid{grid-template-columns:1fr}
      .feature-large{grid-row:auto}
      .info-panel{position:static}
      .hero-copy{min-height:auto}
      .header-search{display:none}
      .mobile-only{display:inline-flex}
    }
    @media (max-width: 760px){
      .container{width:min(var(--container),calc(100% - 28px))}
      .topbar{min-height:68px;gap:12px}
      .brand-text{font-size:18px}
      .brand-sub{font-size:11px}
      .header-actions{gap:8px}
      .btn{padding:11px 13px;font-size:14px}
      .section{padding:58px 0}
      .hero{padding-top:22px}
      .hero-copy,.hero-panel,.feature-large,.feature-mini,.scene-panel,.matrix-panel,.quote-card,.pricing-card,.info-panel,.faq-panel,.list-card{border-radius:24px}
      .hero-copy{padding:24px}
      .hero-copy h1{font-size:clamp(32px,9vw,42px);max-width:14ch}
      .hero-copy .lead{font-size:15px}
      .panel-title{font-size:24px}
      .feature-large,.feature-mini,.scene-panel,.matrix-panel,.quote-card,.pricing-card,.info-panel,.faq-panel,.list-card{padding:20px}
      .feature-grid{gap:14px}
      .matrix-grid{grid-template-columns:1fr}
      .pricing-grid{gap:14px}
      .support-band{padding:18px}
      .support-band .btn{width:100%}
      .footer-meta{font-size:12px}
      .search-shell{width:100%}
      .hero-search .search-shell{width:100%}
      .hero-actions .btn{flex:1 1 auto}
    }

/* roulang page: category1 */
:root{
      --bg:#F7F3EC;
      --bg-soft:#FFFDF8;
      --card:#FFFDF8;
      --card-2:#F8F4EE;
      --ink:#171412;
      --ink-2:#3C3731;
      --muted:#72695E;
      --line:#E7DED1;
      --line-2:#DDD1BF;
      --accent:#D8A72F;
      --accent-2:#E1B94E;
      --rose:#8B5148;
      --deep:#211E1B;
      --shadow:0 18px 50px rgba(33,30,27,.08);
      --shadow-soft:0 10px 28px rgba(33,30,27,.06);
      --radius-xl:30px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1240px;
      --gap:24px;
      --speed:220ms cubic-bezier(.2,.8,.2,1);
      --font:'PingFang SC','Microsoft YaHei','Noto Sans SC','Source Han Sans SC',Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--ink);
      background:
        radial-gradient(circle at top left, rgba(216,167,47,.08), transparent 34%),
        radial-gradient(circle at top right, rgba(139,81,72,.06), transparent 28%),
        linear-gradient(180deg, #FBF8F1 0%, var(--bg) 26%, #F4EEE5 100%);
      line-height:1.8;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(216,167,47,.22);color:var(--ink)}
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin-inline:auto;
    }
    .site-header{
      position:relative;
      z-index:30;
      background:rgba(247,243,236,.92);
      backdrop-filter:saturate(140%) blur(10px);
      border-bottom:1px solid rgba(231,222,209,.9);
      box-shadow:0 1px 0 rgba(255,255,255,.55) inset;
    }
    .topbar{
      display:flex;
      align-items:center;
      gap:18px;
      min-height:74px;
      padding:12px 0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      color:var(--ink);
      transition:transform var(--speed), opacity var(--speed);
    }
    .brand:hover{transform:translateY(-1px)}
    .brand-mark{
      width:42px;height:42px;
      border-radius:14px;
      display:grid;place-items:center;
      background:linear-gradient(180deg,#2A2723,#171412);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.12), 0 8px 20px rgba(23,20,18,.12);
      color:#F7F3EC;
      flex:0 0 auto;
    }
    .brand-mark svg{
      width:24px;height:24px;
      stroke:currentColor;
      stroke-width:1.7;
      fill:none;
      stroke-linecap:round;
      stroke-linejoin:round;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      gap:2px;
      line-height:1.1;
      font-weight:800;
      font-size:18px;
      letter-spacing:.01em;
    }
    .brand-sub{
      font-size:12px;
      font-weight:600;
      color:var(--muted);
    }
    .header-search{
      flex:1;
      display:flex;
      justify-content:center;
      min-width:0;
    }
    .search-shell{
      width:min(420px,100%);
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,253,248,.95);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
      transition:border-color var(--speed), box-shadow var(--speed), transform var(--speed);
    }
    .search-shell:focus-within{
      border-color:rgba(216,167,47,.75);
      box-shadow:0 0 0 4px rgba(216,167,47,.12), inset 0 1px 0 rgba(255,255,255,.9);
      transform:translateY(-1px);
    }
    .search-icon{
      width:18px;height:18px;
      color:#8A8074;
      flex:0 0 auto;
    }
    .search-shell input{
      border:0;
      outline:0;
      background:transparent;
      flex:1;
      min-width:0;
      color:var(--ink);
      font-size:15px;
    }
    .search-shell input::placeholder{color:#8C8275}
    .search-submit{
      border:0;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:linear-gradient(180deg,var(--accent-2),var(--accent));
      color:#2A2113;
      font-weight:700;
      letter-spacing:.02em;
      transition:transform var(--speed), box-shadow var(--speed), filter var(--speed);
      box-shadow:0 10px 24px rgba(216,167,47,.22);
    }
    .search-submit svg{
      width:16px;height:16px;
    }
    .search-submit:hover{
      transform:translateY(-1px);
      filter:saturate(105%);
      box-shadow:0 14px 28px rgba(216,167,47,.26);
    }
    .search-submit:active{transform:translateY(0)}
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:44px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:700;
      letter-spacing:.01em;
      white-space:nowrap;
      transition:transform var(--speed), background var(--speed), border-color var(--speed), color var(--speed), box-shadow var(--speed), opacity var(--speed);
    }
    .btn:hover{transform:translateY(-1px)}
    .btn:active{transform:translateY(0)}
    .btn-ghost{
      background:rgba(255,253,248,.72);
      border-color:var(--line);
      color:var(--ink);
    }
    .btn-ghost:hover{
      border-color:rgba(216,167,47,.45);
      box-shadow:var(--shadow-soft);
      background:#fff;
    }
    .btn-ghost.active{
      background:rgba(216,167,47,.14);
      border-color:rgba(216,167,47,.42);
      color:#2A2113;
    }
    .btn-accent{
      background:linear-gradient(180deg,var(--accent-2),var(--accent));
      color:#2A2113;
      box-shadow:0 12px 28px rgba(216,167,47,.2);
    }
    .btn-accent:hover{box-shadow:0 16px 34px rgba(216,167,47,.26)}
    .tabs-bar{
      border-top:1px solid rgba(231,222,209,.6);
      border-bottom:1px solid rgba(231,222,209,.9);
      background:linear-gradient(180deg, rgba(255,253,248,.72), rgba(247,243,236,.92));
    }
    .tabs-row{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:12px 0;
      scrollbar-width:none;
      -ms-overflow-style:none;
    }
    .tabs-row::-webkit-scrollbar{display:none}
    .tab{
      display:inline-flex;
      align-items:center;
      gap:10px;
      min-height:38px;
      padding:0 16px 0 12px;
      border-radius:999px;
      border:1px solid transparent;
      background:rgba(255,253,248,.72);
      color:var(--ink-2);
      font-weight:700;
      font-size:14px;
      white-space:nowrap;
      transition:transform var(--speed), background var(--speed), border-color var(--speed), color var(--speed), box-shadow var(--speed);
    }
    .tab .pill{
      display:inline-grid;
      place-items:center;
      width:22px;height:22px;
      border-radius:999px;
      background:#EDE3D3;
      color:#6B6054;
      font-size:12px;
      font-weight:800;
    }
    .tab:hover{
      transform:translateY(-1px);
      border-color:rgba(216,167,47,.36);
      background:#FFF9EC;
      color:var(--ink);
      box-shadow:0 10px 24px rgba(33,30,27,.05);
    }
    .tab.active{
      background:rgba(216,167,47,.16);
      border-color:rgba(216,167,47,.42);
      color:#2A2113;
      box-shadow:0 12px 28px rgba(216,167,47,.12);
    }
    .tab.active .pill{
      background:var(--accent);
      color:#2A2113;
    }
    .page{
      padding-bottom:42px;
    }
    .hero{
      padding:52px 0 22px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:var(--gap);
      align-items:stretch;
    }
    .hero-main{
      padding:28px 0 10px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(216,167,47,.25);
      border-radius:999px;
      background:rgba(255,253,248,.76);
      color:#8A6D16;
      font-size:13px;
      font-weight:700;
      letter-spacing:.03em;
      box-shadow:0 8px 20px rgba(33,30,27,.04);
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:999px;background:var(--accent);
      box-shadow:0 0 0 5px rgba(216,167,47,.12);
    }
    h1{
      margin:18px 0 14px;
      font-size:clamp(36px,5vw,64px);
      line-height:1.08;
      letter-spacing:-.04em;
      font-weight:800;
      max-width:12ch;
    }
    .hero-copy{
      margin:0;
      max-width:52ch;
      font-size:17px;
      line-height:1.88;
      color:var(--ink-2);
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .btn-dark{
      background:linear-gradient(180deg,#2A2723,#171412);
      color:#FFFDF8;
      box-shadow:0 16px 30px rgba(23,20,18,.16);
    }
    .btn-dark:hover{
      box-shadow:0 18px 36px rgba(23,20,18,.2);
      background:linear-gradient(180deg,#26221F,#131110);
    }
    .btn-light{
      background:rgba(255,253,248,.8);
      border-color:var(--line);
      color:var(--ink);
    }
    .btn-light:hover{
      border-color:rgba(216,167,47,.45);
      background:#FFF;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.9);
      color:var(--ink-2);
      font-size:13px;
      font-weight:700;
      transition:transform var(--speed), border-color var(--speed), background var(--speed);
    }
    .tag:hover{
      transform:translateY(-1px);
      border-color:rgba(216,167,47,.35);
      background:#FFF9EC;
    }
    .tag b{
      color:#2A2113;
    }
    .hero-panel{
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at top right, rgba(216,167,47,.08), transparent 24%),
        linear-gradient(180deg, rgba(255,253,248,.98), rgba(248,243,235,.98));
      box-shadow:var(--shadow);
      padding:24px;
      overflow:hidden;
      position:relative;
    }
    .hero-panel::after{
      content:"";
      position:absolute;
      inset:auto -32px -42px auto;
      width:180px;height:180px;
      background:radial-gradient(circle, rgba(216,167,47,.16), transparent 66%);
      pointer-events:none;
    }
    .panel-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .panel-title{
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .panel-title h2{
      margin:0;
      font-size:22px;
      line-height:1.22;
      letter-spacing:-.03em;
    }
    .panel-title p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .panel-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      align-self:flex-start;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(216,167,47,.16);
      border:1px solid rgba(216,167,47,.22);
      color:#7C5B10;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .panel-label .cc{
      width:18px;height:18px;
      border-radius:6px;
      display:grid;place-items:center;
      background:#2A2723;
      color:#FFF8E5;
      font-size:10px;
      line-height:1;
      font-weight:800;
    }
    .progress-block{
      margin:14px 0 18px;
      padding:14px;
      border-radius:20px;
      background:rgba(255,255,255,.58);
      border:1px solid rgba(231,222,209,.88);
    }
    .progress-row{
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:center;
      margin-bottom:10px;
      font-size:13px;
      color:var(--muted);
      font-weight:700;
    }
    .progress-bar{
      width:100%;
      height:10px;
      border-radius:999px;
      background:#EDE3D3;
      overflow:hidden;
    }
    .progress-bar span{
      display:block;
      width:72%;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--accent-2),var(--accent));
      box-shadow:0 0 0 1px rgba(255,255,255,.5) inset;
    }
    .panel-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .panel-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 0;
      border-top:1px solid rgba(231,222,209,.75);
    }
    .panel-list li:first-child{border-top:0;padding-top:0}
    .bullet{
      width:10px;height:10px;
      border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(216,167,47,.12);
      margin-top:6px;
      flex:0 0 auto;
    }
    .panel-list strong{
      display:block;
      font-size:15px;
      line-height:1.5;
      margin-bottom:3px;
    }
    .panel-list span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .panel-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:16px;
      padding-top:16px;
      border-top:1px solid rgba(231,222,209,.8);
    }
    .mini-note{
      font-size:13px;
      color:var(--muted);
      line-height:1.7;
    }
    .mini-note b{color:#2A2113}
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:20px;
    }
    .trust-row .tag{
      background:rgba(255,253,248,.86);
    }
    .section{
      padding:36px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .section-title{
      margin:0;
      font-size:clamp(28px,3.2vw,42px);
      line-height:1.14;
      letter-spacing:-.03em;
      font-weight:800;
    }
    .section-desc{
      margin:0;
      max-width:56ch;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }
    .filter-strip{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:4px 0 2px;
      scrollbar-width:none;
      -ms-overflow-style:none;
    }
    .filter-strip::-webkit-scrollbar{display:none}
    .filter-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.82);
      color:var(--ink-2);
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
      transition:transform var(--speed), background var(--speed), border-color var(--speed), box-shadow var(--speed);
    }
    .filter-pill:hover{
      transform:translateY(-1px);
      border-color:rgba(216,167,47,.38);
      background:#FFF9EC;
      box-shadow:0 10px 24px rgba(33,30,27,.05);
    }
    .filter-pill.active{
      background:rgba(216,167,47,.16);
      border-color:rgba(216,167,47,.46);
      color:#2A2113;
    }
    .filter-pill .marker{
      width:8px;height:8px;border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(216,167,47,.12);
    }
    .updates-grid{
      display:grid;
      grid-template-columns:minmax(0,1.15fr) 360px;
      gap:var(--gap);
      align-items:start;
    }
    .feed-stack{
      display:grid;
      gap:16px;
    }
    .feed-card{
      display:grid;
      grid-template-columns:180px minmax(0,1fr);
      gap:18px;
      padding:18px;
      border:1px solid var(--line);
      border-radius:24px;
      background:linear-gradient(180deg,rgba(255,253,248,.98),rgba(249,244,236,.98));
      box-shadow:var(--shadow-soft);
      transition:transform var(--speed), border-color var(--speed), box-shadow var(--speed);
      position:relative;
      overflow:hidden;
    }
    .feed-card::before{
      content:"";
      position:absolute;
      inset:0 auto 0 0;
      width:3px;
      background:transparent;
      transition:background var(--speed);
    }
    .feed-card:hover{
      transform:translateY(-2px);
      border-color:rgba(216,167,47,.38);
      box-shadow:var(--shadow);
    }
    .feed-card:hover::before{
      background:var(--accent);
    }
    .card-cover{
      border-radius:20px;
      min-height:150px;
      background:
        linear-gradient(145deg, rgba(216,167,47,.2), rgba(139,81,72,.14)),
        linear-gradient(180deg,#2B2724,#171412);
      position:relative;
      overflow:hidden;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
    }
    .card-cover::before{
      content:"";
      position:absolute;
      inset:16px 16px auto 16px;
      height:10px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(255,245,210,.95), rgba(216,167,47,.95));
      box-shadow:0 0 0 1px rgba(255,255,255,.08);
    }
    .card-cover::after{
      content:"CC";
      position:absolute;
      right:16px;
      bottom:16px;
      width:42px;height:42px;
      display:grid;place-items:center;
      border-radius:14px;
      background:rgba(255,253,248,.14);
      color:#FFF8E5;
      font-weight:800;
      border:1px solid rgba(255,255,255,.12);
      backdrop-filter:blur(4px);
    }
    .cover-copy{
      position:absolute;
      left:16px;
      bottom:18px;
      right:72px;
      color:#FFFDF8;
      font-weight:800;
      font-size:18px;
      line-height:1.28;
      letter-spacing:-.02em;
    }
    .feed-content{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:10px;
    }
    .meta-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 10px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,253,248,.92);
      color:var(--muted);
      font-size:12px;
      font-weight:700;
      letter-spacing:.01em;
    }
    .meta-chip.accent{
      background:rgba(216,167,47,.14);
      border-color:rgba(216,167,47,.22);
      color:#7C5B10;
    }
    .feed-content h3{
      margin:0;
      font-size:22px;
      line-height:1.3;
      letter-spacing:-.03em;
    }
    .feed-content p{
      margin:10px 0 0;
      color:var(--ink-2);
      font-size:15px;
      line-height:1.85;
    }
    .feed-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .feed-actions .btn{
      min-height:40px;
      padding:0 14px;
      font-size:14px;
    }
    .side-card{
      position:sticky;
      top:18px;
      padding:22px;
      border-radius:var(--radius-xl);
      border:1px solid var(--line);
      background:
        radial-gradient(circle at top right, rgba(216,167,47,.08), transparent 24%),
        linear-gradient(180deg, rgba(255,253,248,.98), rgba(248,243,235,.98));
      box-shadow:var(--shadow);
    }
    .side-card h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.25;
      letter-spacing:-.03em;
    }
    .side-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:14px;
      line-height:1.82;
    }
    .side-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .side-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px 0;
      border-top:1px solid rgba(231,222,209,.78);
    }
    .side-list li:first-child{border-top:0;padding-top:0}
    .side-icon{
      width:34px;height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:rgba(216,167,47,.16);
      color:#7C5B10;
      flex:0 0 auto;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
    }
    .side-icon svg{
      width:18px;height:18px;
      stroke:currentColor;
      fill:none;
      stroke-width:1.8;
      stroke-linecap:round;
      stroke-linejoin:round;
    }
    .side-list strong{
      display:block;
      font-size:14px;
      line-height:1.5;
      margin-bottom:3px;
    }
    .side-list span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.72;
    }
    .usage-grid{
      display:grid;
      grid-template-columns:1fr .95fr;
      gap:var(--gap);
      align-items:stretch;
    }
    .steps-card,
    .mock-card,
    .quote-card,
    .plan-card,
    .faq-card,
    .cta-card{
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg,rgba(255,253,248,.98),rgba(248,243,235,.98));
      box-shadow:var(--shadow-soft);
    }
    .steps-card{
      padding:24px;
    }
    .steps-list{
      display:grid;
      gap:14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .step{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:14px;
      align-items:start;
      padding:14px 0;
      border-top:1px solid rgba(231,222,209,.8);
    }
    .step:first-child{border-top:0;padding-top:0}
    .step-num{
      width:36px;height:36px;
      border-radius:14px;
      display:grid;place-items:center;
      background:linear-gradient(180deg,var(--accent-2),var(--accent));
      color:#2A2113;
      font-weight:800;
      box-shadow:0 10px 24px rgba(216,167,47,.18);
    }
    .step strong{
      display:block;
      font-size:18px;
      line-height:1.35;
      margin-bottom:4px;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .mock-card{
      padding:24px;
      overflow:hidden;
      position:relative;
      background:
        radial-gradient(circle at top left, rgba(216,167,47,.1), transparent 25%),
        linear-gradient(180deg,rgba(33,30,27,.98),rgba(23,20,18,.98));
      color:#FFF8E5;
    }
    .mock-card h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.25;
      letter-spacing:-.03em;
    }
    .mock-card p{
      margin:0;
      color:rgba(255,248,229,.82);
      font-size:14px;
      line-height:1.85;
    }
    .mock-window{
      margin-top:18px;
      border-radius:24px;
      background:rgba(255,253,248,.06);
      border:1px solid rgba(255,255,255,.12);
      padding:16px;
      backdrop-filter:blur(4px);
    }
    .mock-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:14px;
    }
    .mock-pill{
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,253,248,.08);
      border:1px solid rgba(255,255,255,.12);
      color:#FFF8E5;
      font-size:12px;
      font-weight:700;
    }
    .mock-box{
      display:grid;
      gap:10px;
    }
    .mock-item{
      padding:12px 14px;
      border-radius:18px;
      background:rgba(255,253,248,.08);
      border:1px solid rgba(255,255,255,.12);
      color:#FFFDF8;
    }
    .mock-item strong{
      display:block;
      font-size:14px;
      margin-bottom:4px;
    }
    .mock-item span{
      display:block;
      font-size:12px;
      line-height:1.7;
      color:rgba(255,248,229,.76);
    }
    .proof-grid{
      display:grid;
      grid-template-columns:1.05fr 1fr;
      gap:var(--gap);
      align-items:start;
    }
    .proof-copy{
      padding-top:8px;
    }
    .quote-stack{
      display:grid;
      gap:14px;
    }
    .quote-card{
      padding:20px;
      transition:transform var(--speed), border-color var(--speed), box-shadow var(--speed);
    }
    .quote-card:hover{
      transform:translateY(-2px);
      border-color:rgba(216,167,47,.36);
      box-shadow:var(--shadow);
    }
    .quote-mark{
      font-size:30px;
      line-height:1;
      color:rgba(216,167,47,.8);
      margin-bottom:8px;
    }
    .quote-card p{
      margin:0;
      font-size:15px;
      line-height:1.88;
      color:var(--ink-2);
    }
    .quote-author{
      margin-top:12px;
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      padding-top:12px;
      border-top:1px solid rgba(231,222,209,.8);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .pricing-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:var(--gap);
    }
    .plan-card{
      padding:22px;
      position:relative;
      transition:transform var(--speed), border-color var(--speed), box-shadow var(--speed);
    }
    .plan-card:hover{
      transform:translateY(-2px);
      border-color:rgba(216,167,47,.38);
      box-shadow:var(--shadow);
    }
    .plan-card.featured{
      border-color:rgba(216,167,47,.52);
      box-shadow:0 20px 46px rgba(216,167,47,.08), var(--shadow-soft);
      background:
        radial-gradient(circle at top right, rgba(216,167,47,.12), transparent 26%),
        linear-gradient(180deg,rgba(255,253,248,.98),rgba(249,244,236,.98));
    }
    .plan-badge{
      position:absolute;
      top:18px;
      right:18px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(216,167,47,.16);
      color:#7C5B10;
      border:1px solid rgba(216,167,47,.2);
      font-size:12px;
      font-weight:800;
    }
    .plan-price{
      display:flex;
      align-items:baseline;
      gap:8px;
      margin-bottom:12px;
      font-weight:800;
      color:#2A2113;
    }
    .plan-price strong{
      font-size:34px;
      line-height:1;
      letter-spacing:-.04em;
    }
    .plan-price span{
      font-size:14px;
      color:var(--muted);
      font-weight:700;
    }
    .plan-card h3{
      margin:0 0 8px;
      font-size:22px;
      line-height:1.25;
      letter-spacing:-.03em;
    }
    .plan-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:14px;
      line-height:1.82;
    }
    .check-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .check-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--ink-2);
      font-size:14px;
      line-height:1.75;
    }
    .check{
      width:18px;height:18px;
      border-radius:999px;
      background:rgba(216,167,47,.18);
      color:#7C5B10;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .check svg{
      width:11px;height:11px;
      stroke:currentColor;
      stroke-width:2.6;
      fill:none;
      stroke-linecap:round;
      stroke-linejoin:round;
    }
    .plan-cta{
      margin-top:18px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .plan-cta .btn{min-height:42px;font-size:14px}
    .faq-card{
      padding:22px;
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    details{
      border:1px solid var(--line);
      border-radius:20px;
      background:rgba(255,253,248,.86);
      overflow:hidden;
      transition:border-color var(--speed), box-shadow var(--speed), transform var(--speed);
    }
    details:hover{
      border-color:rgba(216,167,47,.32);
      box-shadow:0 12px 26px rgba(33,30,27,.04);
    }
    summary{
      list-style:none;
      cursor:pointer;
      padding:16px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:700;
      color:var(--ink);
      outline:none;
    }
    summary::-webkit-details-marker{display:none}
    summary .arrow{
      width:28px;height:28px;
      border-radius:999px;
      background:#EFE5D7;
      color:#7B6A59;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      transition:transform var(--speed), background var(--speed), color var(--speed);
    }
    details[open] summary .arrow{
      transform:rotate(180deg);
      background:rgba(216,167,47,.16);
      color:#7C5B10;
    }
    .faq-body{
      padding:0 18px 16px;
      color:var(--muted);
      font-size:14px;
      line-height:1.84;
    }
    .cta-card{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:22px 24px;
      background:
        radial-gradient(circle at top right, rgba(216,167,47,.16), transparent 24%),
        linear-gradient(180deg,#2A2723,#171412);
      color:#FFF8E5;
      border-color:rgba(255,255,255,.06);
      box-shadow:0 24px 56px rgba(23,20,18,.16);
    }
    .cta-card h3{
      margin:0 0 6px;
      font-size:24px;
      line-height:1.25;
      letter-spacing:-.03em;
    }
    .cta-card p{
      margin:0;
      color:rgba(255,248,229,.8);
      font-size:14px;
      line-height:1.8;
      max-width:52ch;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
    }
    .cta-card .btn-dark{
      background:linear-gradient(180deg,var(--accent-2),var(--accent));
      color:#2A2113;
      box-shadow:0 16px 28px rgba(216,167,47,.22);
    }
    .cta-card .btn-dark:hover{filter:saturate(104%)}
    .site-footer{
      margin-top:42px;
      background:linear-gradient(180deg,#1C1916,#171412);
      color:#F6F0E6;
      border-top:1px solid rgba(255,255,255,.06);
    }
    .site-footer .container{
      padding:34px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      align-items:start;
      padding-bottom:22px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .footer-brand .brand{
      color:#FFF8E5;
    }
    .footer-brand .brand-sub{color:rgba(255,248,229,.65)}
    .footer-note{
      margin:14px 0 0;
      color:rgba(255,248,229,.72);
      font-size:14px;
      line-height:1.85;
      max-width:34ch;
    }
    .footer-col h3{
      margin:2px 0 14px;
      font-size:16px;
      line-height:1.4;
      letter-spacing:.01em;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,248,229,.72);
      font-size:14px;
      line-height:1.7;
      transition:color var(--speed), transform var(--speed), opacity var(--speed);
      width:max-content;
    }
    .footer-links a:hover{
      color:var(--accent-2);
      transform:translateX(2px);
    }
    .footer-meta{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      padding-top:18px;
      color:rgba(255,248,229,.58);
      font-size:13px;
      line-height:1.8;
    }
    .focusable:focus-visible,
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    summary:focus-visible{
      outline:2px solid rgba(216,167,47,.8);
      outline-offset:2px;
    }

    @media (max-width: 1180px){
      .hero-grid,
      .updates-grid,
      .usage-grid,
      .proof-grid{
        grid-template-columns:1fr;
      }
      .side-card{position:relative;top:auto}
      .pricing-grid{
        grid-template-columns:1fr 1fr;
      }
      .pricing-grid .featured{
        grid-column:1 / -1;
      }
    }
    @media (max-width: 920px){
      .topbar{
        flex-wrap:wrap;
        align-items:flex-start;
      }
      .header-search{
        order:3;
        width:100%;
        justify-content:flex-start;
      }
      .search-shell{
        width:100%;
      }
      .header-actions{
        margin-left:auto;
      }
      .feed-card{
        grid-template-columns:1fr;
      }
      .card-cover{
        min-height:120px;
      }
      .footer-grid{
        grid-template-columns:1fr;
      }
      .cta-card{
        flex-direction:column;
        align-items:flex-start;
      }
      .cta-actions{
        width:100%;
        justify-content:flex-start;
      }
    }
    @media (max-width: 640px){
      .container{width:min(var(--container), calc(100% - 22px))}
      .topbar{gap:12px;min-height:auto;padding:10px 0 12px}
      .brand-text{font-size:16px}
      .brand-sub{font-size:11px}
      .header-actions{
        width:100%;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:2px;
      }
      .header-actions::-webkit-scrollbar{display:none}
      .header-actions{scrollbar-width:none;-ms-overflow-style:none}
      .btn{min-height:42px;padding:0 15px}
      .hero{padding:30px 0 18px}
      .hero-main{padding-top:10px}
      h1{max-width:none;font-size:clamp(32px,9vw,42px)}
      .hero-copy{font-size:16px;line-height:1.82}
      .hero-panel,.steps-card,.mock-card,.quote-card,.plan-card,.faq-card,.cta-card,.side-card{border-radius:24px}
      .section{padding:28px 0}
      .section-head{flex-direction:column;align-items:flex-start}
      .section-title{font-size:clamp(26px,7vw,34px)}
      .section-desc{max-width:none}
      .pricing-grid{grid-template-columns:1fr}
      .plan-badge{position:static;display:inline-flex;margin-bottom:12px}
      .plan-price strong{font-size:30px}
      .footer-meta{flex-direction:column}
      summary{padding:15px 16px}
      .faq-body{padding:0 16px 14px}
    }
