/* roulang page: index */
:root{
      --red:#B91C3A;
      --red-dark:#8f1430;
      --green:#0F3D35;
      --green-2:#155a4f;
      --cyan:#16C6B7;
      --ivory:#F8F3EA;
      --warm:#FCFAF6;
      --paper:#FFFFFF;
      --text:#1E2320;
      --muted:#69716C;
      --line:#E7DDD0;
      --soft:#EFE7DC;
      --shadow:0 18px 50px rgba(30,35,32,.10);
      --shadow-strong:0 24px 70px rgba(15,61,53,.18);
      --radius-xl:30px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1220px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 6%, rgba(185,28,58,.10), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(22,198,183,.12), transparent 30%),
        linear-gradient(180deg,var(--warm),var(--ivory));
      line-height:1.72;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--red)}
    img{max-width:100%;height:auto;display:block}
    button,input{font-family:inherit}
    input:focus,button:focus,a:focus{
      outline:3px solid rgba(22,198,183,.32);
      outline-offset:3px;
    }
    .site-container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }
    .skip-space{height:76px}
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(170%) blur(16px);
      background:rgba(252,250,246,.88);
      border-bottom:1px solid rgba(231,221,208,.82);
      transition:var(--ease);
    }
    .nav-wrap{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      color:var(--green);
      font-weight:800;
      letter-spacing:.01em;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--green));
      box-shadow:0 12px 28px rgba(185,28,58,.20);
      flex:0 0 auto;
      font-size:18px;
      font-weight:900;
    }
    .brand-text{
      font-size:17px;
      line-height:1.22;
      overflow-wrap:anywhere;
      max-width:280px;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:6px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.72);
      border-radius:999px;
      box-shadow:0 8px 24px rgba(30,35,32,.05);
    }
    .desktop-nav a{
      padding:9px 16px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
    }
    .desktop-nav a:hover{
      color:var(--green);
      background:rgba(22,198,183,.10);
    }
    .desktop-nav a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--green),var(--red));
      box-shadow:0 8px 18px rgba(15,61,53,.16);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .command-search{
      height:42px;
      min-width:220px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 10px 0 14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.80);
      border-radius:999px;
      color:var(--muted);
      box-shadow:0 8px 22px rgba(30,35,32,.05);
    }
    .command-search input{
      width:100%;
      border:0;
      box-shadow:none;
      background:transparent;
      margin:0;
      height:38px;
      padding:0;
      color:var(--text);
      font-size:14px;
    }
    .command-search input:focus{
      outline:0;
      box-shadow:none;
      border:0;
    }
    .keycap{
      flex:0 0 auto;
      font-size:12px;
      line-height:1;
      color:var(--green);
      border:1px solid var(--line);
      background:var(--ivory);
      border-radius:8px;
      padding:6px 7px;
      font-weight:800;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 20px;
      border-radius:999px;
      font-weight:800;
      font-size:15px;
      line-height:1.2;
      border:1px solid transparent;
      cursor:pointer;
      transition:var(--ease);
      white-space:nowrap;
      overflow-wrap:anywhere;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--green));
      box-shadow:0 14px 28px rgba(185,28,58,.20);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-1px);
      filter:brightness(1.06);
      box-shadow:0 18px 36px rgba(15,61,53,.22);
    }
    .btn-secondary{
      color:var(--green);
      border-color:var(--line);
      background:rgba(255,255,255,.76);
    }
    .btn-secondary:hover{
      color:var(--green);
      border-color:var(--cyan);
      background:rgba(22,198,183,.10);
      transform:translateY(-1px);
    }
    .btn-ghost{
      color:var(--green);
      background:rgba(15,61,53,.07);
      border-color:rgba(15,61,53,.08);
      min-height:40px;
      padding:10px 16px;
    }
    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--green);
      font-size:22px;
      align-items:center;
      justify-content:center;
    }
    .off-canvas{
      background:var(--warm);
      padding:22px;
    }
    .mobile-panel .brand{margin-bottom:22px}
    .mobile-panel a.menu-link{
      display:block;
      padding:14px 16px;
      margin-bottom:8px;
      border-radius:14px;
      font-weight:800;
      color:var(--green);
      background:#fff;
      border:1px solid var(--line);
    }
    .mobile-panel a.menu-link.active{
      color:#fff;
      background:linear-gradient(135deg,var(--green),var(--red));
    }
    .mobile-panel .command-search{width:100%;min-width:0;margin:16px 0}
    .hero{
      position:relative;
      padding:42px 0 46px;
      min-height:604px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:26px 0 auto 0;
      height:520px;
      background:
        linear-gradient(135deg,rgba(185,28,58,.94),rgba(15,61,53,.96) 58%,rgba(22,198,183,.74)),
        repeating-linear-gradient(135deg,rgba(255,255,255,.09) 0 1px,transparent 1px 34px);
      border-radius:0 0 46px 46px;
      z-index:-2;
    }
    .hero::after{
      content:"";
      position:absolute;
      top:108px;
      right:-90px;
      width:390px;
      height:390px;
      background:rgba(255,255,255,.09);
      transform:rotate(18deg);
      border-radius:58px;
      z-index:-1;
    }
    .hero-shell{
      position:relative;
      border-radius:34px;
      padding:28px;
      background:
        linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.05)),
        radial-gradient(circle at 88% 16%,rgba(22,198,183,.24),transparent 32%);
      border:1px solid rgba(255,255,255,.22);
      box-shadow:var(--shadow-strong);
      color:#fff;
    }
    .series-tabs{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:8px;
      margin-bottom:22px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      scrollbar-width:none;
    }
    .series-tabs::-webkit-scrollbar{display:none}
    .series-tabs span,.series-tabs a{
      flex:0 0 auto;
      padding:9px 14px;
      border-radius:999px;
      color:rgba(255,255,255,.88);
      font-size:13px;
      font-weight:800;
      background:rgba(255,255,255,.08);
    }
    .series-tabs .on{
      color:var(--green);
      background:#fff;
    }
    .hero-stage{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      align-items:stretch;
      gap:24px;
    }
    .hero-copy{
      padding:42px 18px 38px 16px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      color:#fff;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      margin-bottom:18px;
    }
    .dot{
      width:8px;height:8px;border-radius:50%;background:var(--cyan);
      box-shadow:0 0 0 5px rgba(22,198,183,.15);
      flex:0 0 auto;
    }
    h1{
      margin:0 0 18px;
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      letter-spacing:-.02em;
      font-weight:900;
      max-width:880px;
      overflow-wrap:anywhere;
    }
    .hero-intro{
      max-width:680px;
      font-size:18px;
      line-height:1.86;
      color:rgba(255,255,255,.88);
      margin:0 0 26px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:24px;
    }
    .hero-actions .btn-secondary{
      background:rgba(255,255,255,.12);
      color:#fff;
      border-color:rgba(255,255,255,.28);
    }
    .hero-actions .btn-secondary:hover{
      background:rgba(255,255,255,.20);
      border-color:var(--cyan);
      color:#fff;
    }
    .hero-data{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .data-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      color:rgba(255,255,255,.90);
      font-size:13px;
      font-weight:800;
    }
    .entry-matrix{
      position:relative;
      padding:22px;
      border-radius:28px;
      background:rgba(252,250,246,.94);
      color:var(--text);
      overflow:hidden;
      min-height:430px;
    }
    .entry-matrix::before{
      content:"";
      position:absolute;
      top:-70px;right:-70px;
      width:180px;height:180px;
      border-radius:42px;
      transform:rotate(24deg);
      background:linear-gradient(135deg,rgba(185,28,58,.22),rgba(22,198,183,.22));
    }
    .matrix-head{
      position:relative;
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:flex-start;
      margin-bottom:18px;
    }
    .matrix-head h2{
      margin:0;
      font-size:24px;
      line-height:1.25;
      font-weight:900;
      color:var(--green);
    }
    .status-badge,.tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      line-height:1;
      font-weight:900;
      color:var(--green);
      background:rgba(22,198,183,.12);
      border:1px solid rgba(22,198,183,.22);
      white-space:nowrap;
    }
    .matrix-grid{
      position:relative;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-bottom:16px;
    }
    .matrix-cell{
      min-height:112px;
      padding:16px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 26px rgba(30,35,32,.06);
      transition:var(--ease);
    }
    .matrix-cell:hover{
      transform:translateY(-2px);
      border-color:rgba(22,198,183,.65);
      box-shadow:0 18px 34px rgba(30,35,32,.10);
    }
    .matrix-cell strong{
      display:block;
      margin:8px 0 4px;
      color:var(--green);
      font-size:17px;
    }
    .matrix-cell p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
    }
    .num-box{
      width:32px;height:32px;
      display:grid;place-items:center;
      border-radius:11px;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--red),var(--green));
    }
    .progress-card{
      position:relative;
      border-radius:20px;
      padding:16px;
      background:linear-gradient(135deg,rgba(15,61,53,.96),rgba(185,28,58,.88));
      color:#fff;
      overflow:hidden;
    }
    .progress-card p{margin:8px 0 0;color:rgba(255,255,255,.82);font-size:14px}
    .progress-line{
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.18);
      overflow:hidden;
      margin-top:12px;
    }
    .progress-line span{
      display:block;
      width:78%;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,#fff,var(--cyan));
    }
    section{
      padding:88px 0;
    }
    .section-tight{padding-top:62px}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:32px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:10px;
      color:var(--red);
      font-size:13px;
      font-weight:900;
    }
    .section-head h2,.plain-head h2{
      margin:0;
      color:var(--green);
      font-size:clamp(28px,3.6vw,42px);
      line-height:1.22;
      font-weight:900;
      overflow-wrap:anywhere;
    }
    .section-head p,.plain-head p{
      margin:10px 0 0;
      max-width:700px;
      color:var(--muted);
      font-size:17px;
      line-height:1.8;
    }
    .steps-wrap{
      position:relative;
    }
    .steps-wrap::before{
      content:"";
      position:absolute;
      left:13%;
      right:13%;
      top:64px;
      height:2px;
      background:linear-gradient(90deg,var(--red),var(--cyan),var(--green));
      opacity:.38;
    }
    .step-card{
      position:relative;
      height:100%;
      padding:30px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      transition:var(--ease);
      overflow:hidden;
    }
    .step-card::before{
      content:"";
      position:absolute;
      inset:0 0 auto 0;
      height:5px;
      background:linear-gradient(90deg,var(--red),var(--green),var(--cyan));
    }
    .step-card:hover{
      transform:translateY(-2px);
      box-shadow:0 24px 52px rgba(30,35,32,.14);
      border-color:rgba(22,198,183,.55);
    }
    .step-no{
      width:58px;height:58px;
      display:grid;place-items:center;
      border-radius:20px;
      color:#fff;
      font-weight:900;
      font-size:18px;
      background:linear-gradient(135deg,var(--red),var(--green));
      margin-bottom:18px;
      box-shadow:0 12px 24px rgba(185,28,58,.18);
    }
    .step-card h3,.case-card h3,.notice-card h3{
      margin:0 0 10px;
      color:var(--green);
      font-size:22px;
      line-height:1.35;
      font-weight:900;
    }
    .step-card p,.case-card p,.notice-card p{
      margin:0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.78;
    }
    .guarantee{
      padding:34px 0;
      background:linear-gradient(90deg,rgba(185,28,58,.08),rgba(22,198,183,.09),rgba(15,61,53,.07));
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .guarantee-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .guarantee-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(231,221,208,.9);
    }
    .icon-bubble{
      width:38px;height:38px;
      flex:0 0 auto;
      display:grid;place-items:center;
      border-radius:14px;
      color:#fff;
      background:linear-gradient(135deg,var(--green),var(--cyan));
      font-weight:900;
    }
    .guarantee-item strong{
      display:block;
      color:var(--green);
      line-height:1.25;
      margin-bottom:3px;
    }
    .guarantee-item span{
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }
    .proof-section{
      background:linear-gradient(180deg,rgba(255,255,255,.42),rgba(248,243,234,.0));
    }
    .proof-layout{
      display:grid;
      grid-template-columns:.84fr 1.16fr;
      gap:26px;
      align-items:start;
    }
    .proof-intro{
      position:sticky;
      top:104px;
      padding:34px;
      border-radius:var(--radius-xl);
      background:var(--green);
      color:#fff;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
    }
    .proof-intro::after{
      content:"";
      position:absolute;
      right:-54px;bottom:-66px;
      width:180px;height:180px;
      border-radius:38px;
      background:rgba(22,198,183,.18);
      transform:rotate(22deg);
    }
    .proof-intro h2{
      position:relative;
      margin:0 0 14px;
      font-size:36px;
      line-height:1.2;
      font-weight:900;
    }
    .proof-intro p{
      position:relative;
      color:rgba(255,255,255,.80);
      margin:0 0 22px;
    }
    .mini-stats{
      position:relative;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
    .mini-stat{
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
    }
    .mini-stat b{
      display:block;
      font-size:25px;
      line-height:1;
      margin-bottom:8px;
    }
    .mini-stat span{
      color:rgba(255,255,255,.78);
      font-size:13px;
      line-height:1.45;
    }
    .case-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .case-card{
      padding:24px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 14px 38px rgba(30,35,32,.07);
      transition:var(--ease);
    }
    .case-card.feature{
      grid-column:span 2;
      display:grid;
      grid-template-columns:1fr auto;
      align-items:end;
      gap:18px;
      background:
        linear-gradient(135deg,rgba(185,28,58,.08),rgba(22,198,183,.08)),
        #fff;
    }
    .case-card:hover{
      transform:translateY(-2px);
      border-color:rgba(22,198,183,.60);
      box-shadow:0 22px 48px rgba(30,35,32,.12);
    }
    .result{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:18px;
    }
    .result .tag.red{color:var(--red);background:rgba(185,28,58,.09);border-color:rgba(185,28,58,.18)}
    .result .tag.green{color:var(--green);background:rgba(15,61,53,.08);border-color:rgba(15,61,53,.16)}
    .notice-section{
      padding-top:76px;
    }
    .notice-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:20px;
    }
    .notice-list{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .notice-row{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:16px;
      padding:20px 22px;
      border-bottom:1px solid var(--line);
      transition:var(--ease);
    }
    .notice-row:last-child{border-bottom:0}
    .notice-row:hover{
      background:rgba(22,198,183,.06);
    }
    .notice-row:hover .arrow{
      transform:translateX(3px);
      color:var(--red);
    }
    .notice-row time{
      color:var(--red);
      font-weight:900;
      font-size:13px;
      white-space:nowrap;
    }
    .notice-row a{
      color:var(--green);
      font-weight:900;
      line-height:1.45;
    }
    .notice-row p{
      margin:4px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }
    .arrow{
      color:var(--green);
      transition:var(--ease);
      font-size:22px;
      font-weight:900;
    }
    .notice-card{
      padding:28px;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 90% 10%,rgba(22,198,183,.18),transparent 34%),
        linear-gradient(135deg,var(--green),var(--red));
      color:#fff;
      box-shadow:var(--shadow-strong);
    }
    .notice-card h3{color:#fff}
    .notice-card p{color:rgba(255,255,255,.80)}
    .notice-card .btn{margin-top:18px}
    .notice-card .btn-secondary{
      color:#fff;
      border-color:rgba(255,255,255,.28);
      background:rgba(255,255,255,.10);
    }
    .faq-section{
      background:rgba(255,255,255,.42);
      border-top:1px solid rgba(231,221,208,.7);
      border-bottom:1px solid rgba(231,221,208,.7);
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:18px;
      overflow:hidden;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:0 10px 24px rgba(30,35,32,.05);
    }
    .accordion-title{
      position:relative;
      padding:20px 54px 20px 24px;
      border:0;
      color:var(--green);
      font-size:17px;
      font-weight:900;
      line-height:1.45;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(22,198,183,.06);
      color:var(--green);
    }
    .accordion-title::before{
      right:22px;
      margin-top:-10px;
      color:var(--red);
      font-size:22px;
    }
    .accordion-content{
      position:relative;
      border:0;
      padding:0 24px 22px 30px;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.86;
    }
    .accordion-content::before{
      content:"";
      position:absolute;
      left:18px;
      top:2px;
      bottom:24px;
      width:4px;
      border-radius:999px;
      background:linear-gradient(180deg,var(--red),var(--cyan));
    }
    .cta-section{
      padding:92px 0 104px;
    }
    .cta-box{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      padding:44px;
      color:#fff;
      background:
        radial-gradient(circle at 92% 12%,rgba(22,198,183,.30),transparent 32%),
        linear-gradient(135deg,var(--red),var(--green));
      box-shadow:var(--shadow-strong);
    }
    .cta-box::before{
      content:"";
      position:absolute;
      left:-70px;bottom:-80px;
      width:220px;height:220px;
      border-radius:52px;
      transform:rotate(-18deg);
      background:rgba(255,255,255,.10);
    }
    .cta-content{
      position:relative;
      display:grid;
      grid-template-columns:1fr auto;
      align-items:center;
      gap:28px;
    }
    .cta-box h2{
      margin:0 0 12px;
      font-size:clamp(28px,3.8vw,44px);
      line-height:1.18;
      font-weight:900;
      overflow-wrap:anywhere;
    }
    .cta-box p{
      margin:0;
      max-width:720px;
      color:rgba(255,255,255,.84);
      font-size:17px;
      line-height:1.8;
    }
    .cta-buttons{
      display:flex;
      flex-direction:column;
      gap:12px;
      min-width:220px;
    }
    .cta-buttons .btn-primary{
      background:#fff;
      color:var(--green);
      box-shadow:0 16px 32px rgba(0,0,0,.14);
    }
    .cta-buttons .btn-secondary{
      background:rgba(255,255,255,.10);
      border-color:rgba(255,255,255,.30);
      color:#fff;
    }
    .cta-badges{
      position:relative;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
    }
    .footer{
      padding:58px 0 28px;
      background:linear-gradient(180deg,#102822,#071714);
      color:rgba(248,243,234,.78);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      align-items:start;
    }
    .footer .brand{color:#fff;margin-bottom:16px}
    .footer .brand-mark{box-shadow:none}
    .footer p{
      margin:0;
      max-width:520px;
      color:rgba(248,243,234,.68);
      font-size:14.5px;
      line-height:1.8;
    }
    .footer h3{
      margin:0 0 12px;
      color:#fff;
      font-size:16px;
      font-weight:900;
    }
    .footer a{
      display:block;
      color:rgba(248,243,234,.70);
      margin-bottom:9px;
      font-size:14px;
    }
    .footer a:hover{color:var(--cyan)}
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding-top:24px;
      margin-top:30px;
      border-top:1px solid rgba(248,243,234,.12);
      color:rgba(248,243,234,.55);
      font-size:13px;
    }
    @media (max-width:1024px){
      .command-search{min-width:180px}
      .hero-stage{grid-template-columns:1fr}
      .hero-copy{padding:30px 8px 12px}
      .entry-matrix{min-height:auto}
      .proof-layout,.notice-grid{grid-template-columns:1fr}
      .proof-intro{position:relative;top:auto}
      .guarantee-row{grid-template-columns:repeat(2,1fr)}
      .cta-content{grid-template-columns:1fr}
      .cta-buttons{flex-direction:row;min-width:0}
    }
    @media (max-width:820px){
      .desktop-nav,.nav-actions{display:none}
      .mobile-menu-btn{display:flex}
      .nav-wrap{min-height:68px}
      .brand-text{max-width:210px;font-size:15px}
      .hero{padding-top:24px;min-height:auto}
      .hero::before{height:calc(100% - 22px);border-radius:0 0 30px 30px}
      .hero-shell{padding:18px;border-radius:26px}
      .series-tabs{border-radius:18px}
      section{padding:60px 0}
      .section-head{display:block}
      .steps-wrap::before{
        left:28px;right:auto;top:20px;bottom:20px;width:2px;height:auto;
      }
      .step-card{margin-bottom:16px;padding:24px 24px 24px 74px}
      .step-no{
        position:absolute;
        left:18px;
        top:24px;
        width:42px;height:42px;
        border-radius:15px;
        font-size:14px;
      }
      .case-card.feature{grid-column:span 1;display:block}
      .case-grid{grid-template-columns:1fr}
      .notice-row{grid-template-columns:1fr auto;gap:10px}
      .notice-row time{grid-column:1 / -1}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:560px){
      .site-container{width:min(100% - 28px,var(--container))}
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .hero-shell{padding:14px}
      .hero-copy{padding:24px 4px 10px}
      .hero-intro{font-size:16px}
      .hero-actions,.cta-buttons{flex-direction:column}
      .btn{width:100%;white-space:normal;text-align:center}
      .hero-data .data-pill{width:100%;justify-content:center}
      .matrix-grid{grid-template-columns:1fr}
      .entry-matrix{padding:18px;border-radius:22px}
      .matrix-head{display:block}
      .matrix-head .status-badge{margin-top:12px}
      .guarantee-row{grid-template-columns:1fr}
      .proof-intro,.cta-box{padding:26px;border-radius:24px}
      .mini-stats{grid-template-columns:1fr}
      .notice-row{padding:18px}
      .accordion-title{font-size:16px;padding-left:18px}
      .accordion-content{padding-right:18px}
      .footer-bottom{display:block}
      .footer-bottom span{display:block;margin-bottom:8px}
    }

/* roulang page: category1 */
:root{
      --bg:#F8F3EA;
      --bg-soft:#FCFAF6;
      --card:#FFFDF8;
      --card-strong:#FFF7EE;
      --text:#1E2320;
      --muted:#69716C;
      --line:#E8DDD0;
      --line-strong:#D9CCBD;
      --primary:#B91C3A;
      --primary-dark:#93162F;
      --secondary:#0F3D35;
      --accent:#16C6B7;
      --accent-soft:#D9FBF7;
      --warning:#C58C2E;
      --shadow:0 18px 50px rgba(50,39,27,.08);
      --shadow-soft:0 10px 28px rgba(50,39,27,.06);
      --radius-xl:30px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --max:1220px;
      --space:clamp(18px,2vw,30px);
      --space-lg:clamp(26px,3.8vw,56px);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(185,28,58,.08), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(22,198,183,.10), transparent 28%),
        linear-gradient(180deg, #FBF7F1 0%, #F8F3EA 42%, #F6F0E6 100%);
      line-height:1.7;
      overflow-x:hidden;
    }
    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    button,input{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(185,28,58,.18)}
    :focus{outline:none}
    :focus-visible{
      outline:3px solid rgba(22,198,183,.6);
      outline-offset:2px;
      border-radius:10px;
    }
    .site-container{
      max-width:var(--max);
      margin:0 auto;
      padding:0 20px;
    }
    .section{
      padding:var(--space-lg) 0;
    }
    .section-tight{
      padding:clamp(22px,3vw,42px) 0;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 14px;
      border-radius:999px;
      background:rgba(185,28,58,.08);
      color:var(--primary);
      font-size:12px;
      font-weight:700;
      letter-spacing:.02em;
      line-height:1;
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:999px;background:var(--accent);
      box-shadow:0 0 0 4px rgba(22,198,183,.12);
    }
    h1,h2,h3,h4,p,ul,ol{margin-top:0}
    h1,h2,h3{
      line-height:1.12;
      letter-spacing:-.01em;
      overflow-wrap:anywhere;
    }
    h1{font-size:clamp(32px,4.8vw,58px);margin-bottom:16px}
    h2{font-size:clamp(26px,3.2vw,40px);margin-bottom:14px}
    h3{font-size:clamp(20px,2.1vw,24px);margin-bottom:10px}
    .subcopy{
      color:var(--muted);
      font-size:clamp(15px,1.1vw,18px);
      line-height:1.8;
      max-width:62ch;
    }
    .muted{color:var(--muted)}
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(14px);
      background:rgba(248,243,234,.84);
      border-bottom:1px solid rgba(232,221,208,.8);
      transition:box-shadow .2s ease, background .2s ease;
    }
    .topbar.scrolled{
      box-shadow:0 10px 26px rgba(37,28,20,.06);
      background:rgba(250,246,238,.96);
    }
    .nav-wrap{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:18px;
      padding-top:10px;
      padding-bottom:10px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      flex-shrink:0;
      min-width:0;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      color:#fff;
      font-weight:800;
      background:linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow:0 10px 24px rgba(185,28,58,.22);
      letter-spacing:.04em;
    }
    .brand-text{
      font-size:15px;
      font-weight:800;
      color:var(--text);
      line-height:1.1;
      overflow-wrap:anywhere;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:8px;
      padding:6px;
      border:1px solid rgba(232,221,208,.8);
      border-radius:999px;
      background:rgba(255,255,255,.55);
    }
    .desktop-nav a{
      padding:10px 16px;
      border-radius:999px;
      color:var(--secondary);
      font-size:14px;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
    }
    .desktop-nav a:hover,
    .desktop-nav a:focus-visible{
      background:rgba(15,61,53,.06);
      color:var(--primary);
    }
    .desktop-nav a.active{
      background:linear-gradient(135deg, rgba(185,28,58,.12), rgba(22,198,183,.10));
      color:var(--primary);
      box-shadow:inset 0 0 0 1px rgba(185,28,58,.08);
    }
    .nav-actions{
      margin-left:auto;
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }
    .command-search{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:280px;
      max-width:340px;
      padding:10px 12px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(232,221,208,.9);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
      color:var(--muted);
    }
    .command-search span{
      color:var(--secondary);
      flex-shrink:0;
      font-size:15px;
    }
    .command-search input{
      width:100%;
      border:none;
      background:transparent;
      padding:0;
      margin:0;
      color:var(--text);
      min-width:0;
    }
    .command-search input::placeholder{color:#8A918B}
    .keycap{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:26px;
      padding:0 8px;
      border-radius:8px;
      background:#F5EFE6;
      border:1px solid #E6DDCF;
      color:var(--muted)!important;
      font-size:12px;
      font-weight:700;
      line-height:1;
    }
    .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;
      line-height:1;
      white-space:nowrap;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn:active{transform:translateY(0)}
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg, var(--primary), #D43A53 58%, var(--secondary));
      box-shadow:0 12px 24px rgba(185,28,58,.18);
    }
    .btn-primary:hover,
    .btn-primary:focus-visible{
      color:#fff;
      box-shadow:0 16px 34px rgba(185,28,58,.26);
      filter:saturate(105%) brightness(1.03);
    }
    .btn-ghost{
      color:var(--secondary);
      background:rgba(255,255,255,.72);
      border-color:rgba(232,221,208,.9);
    }
    .btn-ghost:hover,
    .btn-ghost:focus-visible{
      color:var(--primary);
      border-color:rgba(22,198,183,.38);
      background:#fff;
      box-shadow:0 10px 24px rgba(50,39,27,.05);
    }
    .mobile-menu-btn{
      display:none;
      margin-left:auto;
      width:46px;height:46px;
      border-radius:14px;
      border:1px solid rgba(232,221,208,.9);
      background:#fff;
      color:var(--secondary);
      font-size:22px;
      line-height:1;
      box-shadow:0 10px 22px rgba(50,39,27,.04);
    }

    .category-hero{
      position:relative;
      overflow:hidden;
      padding:32px 0 12px;
    }
    .category-hero::before,
    .category-hero::after{
      content:"";
      position:absolute;
      inset:auto;
      pointer-events:none;
      border-radius:999px;
      filter:blur(10px);
      opacity:.9;
    }
    .category-hero::before{
      width:240px;height:240px;
      right:-70px;top:10px;
      background:radial-gradient(circle, rgba(22,198,183,.18), transparent 66%);
    }
    .category-hero::after{
      width:280px;height:280px;
      left:-120px;bottom:-80px;
      background:radial-gradient(circle, rgba(185,28,58,.12), transparent 66%);
    }
    .hero-shell{
      position:relative;
      padding:clamp(20px,3vw,34px);
      border:1px solid rgba(232,221,208,.92);
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,250,244,.88) 52%, rgba(255,244,238,.82));
      box-shadow:var(--shadow);
    }
    .hero-shell .grid-x{position:relative;z-index:1}
    .brand-badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:18px;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(232,221,208,.9);
      color:var(--secondary);
      font-size:12px;
      font-weight:700;
      box-shadow:0 8px 18px rgba(50,39,27,.03);
    }
    .mini-badge strong{color:var(--primary)}
    .mini-badge .badge-dot{
      width:8px;height:8px;border-radius:999px;background:var(--accent);
      box-shadow:0 0 0 4px rgba(22,198,183,.12);
      flex-shrink:0;
    }
    .hero-panel{
      position:relative;
      padding:18px;
      border-radius:28px;
      border:1px solid rgba(232,221,208,.92);
      background:linear-gradient(180deg, #fff, #FFF8EF);
      box-shadow:var(--shadow-soft);
    }
    .hero-copy .subcopy{margin-bottom:18px}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:0 0 18px;
    }
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .trust-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(15,61,53,.04);
      border:1px solid rgba(15,61,53,.08);
      color:var(--secondary);
      font-size:12px;
      font-weight:700;
    }
    .trust-pill i{color:var(--primary)}
    .status-ring{
      width:min(250px,100%);
      aspect-ratio:1;
      border-radius:50%;
      padding:18px;
      margin:0 auto 16px;
      background:
        conic-gradient(from 180deg, var(--primary) 0 34%, var(--accent) 34% 63%, var(--secondary) 63% 100%);
      box-shadow:0 20px 40px rgba(50,39,27,.10);
    }
    .status-ring-inner{
      width:100%;height:100%;
      border-radius:50%;
      background:linear-gradient(180deg, #FFFDF9, #FFF6E8);
      display:flex;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      text-align:center;
      padding:18px;
      box-shadow:inset 0 0 0 10px rgba(255,255,255,.45);
    }
    .status-ring-inner strong{
      display:block;
      font-size:28px;
      line-height:1.05;
      color:var(--primary);
      margin-bottom:6px;
    }
    .status-ring-inner span{
      font-size:13px;
      color:var(--muted);
      line-height:1.5;
    }
    .status-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
    }
    .status-card{
      padding:14px 14px 13px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(232,221,208,.92);
      box-shadow:0 8px 18px rgba(50,39,27,.03);
    }
    .status-card .label{
      display:block;
      color:var(--muted);
      font-size:12px;
      margin-bottom:7px;
    }
    .status-card strong{
      display:block;
      color:var(--text);
      font-size:18px;
      line-height:1.1;
      margin-bottom:4px;
    }
    .status-card small{
      color:var(--muted);
      font-size:12px;
    }
    .status-card.highlight{
      background:linear-gradient(135deg, rgba(185,28,58,.06), rgba(22,198,183,.06));
      border-color:rgba(185,28,58,.12);
    }

    .intro-line{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      align-items:flex-end;
      gap:16px;
      margin-bottom:16px;
    }
    .count-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(232,221,208,.9);
      color:var(--secondary);
      font-size:13px;
      font-weight:700;
      box-shadow:0 8px 16px rgba(50,39,27,.03);
    }
    .count-pill strong{color:var(--primary)}
    .toolbar{
      padding:16px;
      border-radius:24px;
      background:rgba(255,255,255,.7);
      border:1px solid rgba(232,221,208,.9);
      box-shadow:0 10px 22px rgba(50,39,27,.04);
      margin-bottom:18px;
    }
    .toolbar .input-group{
      margin-bottom:12px;
    }
    .toolbar input{
      height:48px;
      border-radius:14px;
      border:1px solid rgba(218,205,190,.95);
      background:#fff;
      box-shadow:none;
      padding-left:16px;
      padding-right:16px;
      color:var(--text);
    }
    .toolbar input::placeholder{color:#8A918B}
    .toolbar input:focus{
      border-color:rgba(22,198,183,.9);
      box-shadow:0 0 0 4px rgba(22,198,183,.12);
    }
    .filter-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
    }
    .filter-chip{
      appearance:none;
      border:none;
      border-radius:999px;
      padding:9px 14px;
      background:#F4EEE4;
      color:var(--secondary);
      font-size:13px;
      font-weight:700;
      line-height:1;
      border:1px solid transparent;
    }
    .filter-chip:hover,
    .filter-chip:focus-visible{
      background:#fff;
      border-color:rgba(22,198,183,.35);
      color:var(--primary);
    }
    .filter-chip.is-active{
      background:linear-gradient(135deg, rgba(185,28,58,.12), rgba(22,198,183,.12));
      color:var(--primary);
      border-color:rgba(185,28,58,.14);
    }

    .main-rail{
      padding:20px 0 0;
    }
    .guide-card{
      position:relative;
      overflow:hidden;
      padding:24px;
      border-radius:28px;
      background:var(--card);
      border:1px solid rgba(232,221,208,.96);
      box-shadow:var(--shadow-soft);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      margin-bottom:18px;
    }
    .guide-card::before{
      content:"";
      position:absolute;
      left:0;top:0;
      width:100%;height:4px;
      background:linear-gradient(90deg, var(--primary), var(--accent));
    }
    .guide-card:hover{
      transform:translateY(-2px);
      border-color:rgba(185,28,58,.18);
      box-shadow:0 18px 34px rgba(50,39,27,.08);
    }
    .guide-card .card-tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(15,61,53,.06);
      color:var(--secondary);
      font-size:12px;
      font-weight:700;
      margin-bottom:14px;
    }
    .guide-card .card-tag .status{
      width:8px;height:8px;border-radius:999px;background:var(--accent);
      box-shadow:0 0 0 4px rgba(22,198,183,.12);
    }
    .guide-card p{
      color:var(--muted);
      margin-bottom:16px;
      font-size:15px;
      line-height:1.8;
    }
    .guide-card .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:18px;
    }
    .meta-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:#F7F2EA;
      border:1px solid rgba(232,221,208,.9);
      color:var(--secondary);
      font-size:12px;
      font-weight:700;
    }
    .meta-tag strong{color:var(--primary)}
    .card-cta{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:linear-gradient(135deg, rgba(185,28,58,.12), rgba(22,198,183,.10));
      color:var(--primary);
      font-weight:800;
      font-size:13px;
      border:1px solid rgba(185,28,58,.12);
    }
    .card-cta:hover,
    .card-cta:focus-visible{
      background:linear-gradient(135deg, rgba(185,28,58,.16), rgba(22,198,183,.14));
      color:var(--primary-dark);
      transform:translateX(2px);
    }
    .guide-featured{
      padding:28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,249,241,.98));
    }
    .guide-featured .content-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:18px;
    }
    .mini-step{
      padding:16px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(232,221,208,.9);
      min-height:110px;
    }
    .mini-step .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px;height:34px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(185,28,58,.12), rgba(22,198,183,.12));
      color:var(--primary);
      font-size:13px;
      font-weight:800;
      margin-bottom:10px;
    }
    .mini-step strong{
      display:block;
      margin-bottom:6px;
      color:var(--text);
      font-size:16px;
      line-height:1.3;
    }
    .mini-step span{
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .split-cards{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
    }
    .guide-slim{
      padding:22px;
      background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,244,.98));
    }
    .guide-slim .inline-list{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
      margin:16px 0 18px;
      padding:0;
      list-style:none;
    }
    .guide-slim .inline-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px 14px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(232,221,208,.88);
      color:var(--muted);
    }
    .guide-slim .inline-list li i{
      color:var(--primary);
      margin-top:3px;
      flex-shrink:0;
    }

    .aside-wrap{
      position:sticky;
      top:98px;
    }
    .side-card{
      padding:22px;
      border-radius:26px;
      background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,250,243,.98));
      border:1px solid rgba(232,221,208,.95);
      box-shadow:var(--shadow-soft);
      margin-bottom:16px;
    }
    .side-card h3{margin-bottom:10px}
    .side-card p{
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      margin-bottom:14px;
    }
    .timeline{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .timeline li{
      display:grid;
      grid-template-columns:42px minmax(0,1fr);
      gap:12px;
      align-items:flex-start;
      padding:12px 0;
      border-top:1px dashed rgba(232,221,208,.95);
    }
    .timeline li:first-child{border-top:none;padding-top:0}
    .step-index{
      width:42px;height:42px;border-radius:14px;
      background:linear-gradient(135deg, rgba(185,28,58,.12), rgba(22,198,183,.12));
      color:var(--primary);
      display:grid;place-items:center;
      font-weight:800;
      font-size:13px;
      flex-shrink:0;
    }
    .timeline strong{
      display:block;
      margin-bottom:4px;
      font-size:15px;
      color:var(--text);
    }
    .timeline span{
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .check-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .check-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .check-list li i{
      color:var(--accent);
      margin-top:4px;
      flex-shrink:0;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-cloud .meta-tag{
      background:#fff;
    }
    .side-anchor{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .side-anchor a{
      padding:8px 11px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(232,221,208,.9);
      color:var(--secondary);
      font-size:12px;
      font-weight:700;
    }
    .side-anchor a:hover{color:var(--primary);border-color:rgba(22,198,183,.35)}

    .faq-section{
      padding-top:8px;
    }
    .faq-shell{
      padding:26px;
      border-radius:30px;
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,243,.98));
      border:1px solid rgba(232,221,208,.95);
      box-shadow:var(--shadow-soft);
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      border:1px solid rgba(232,221,208,.92);
      background:#fff;
      border-radius:20px;
      overflow:hidden;
      margin-bottom:12px;
    }
    .accordion-title{
      position:relative;
      display:block;
      padding:18px 54px 18px 18px;
      color:var(--text);
      font-weight:800;
      font-size:16px;
      line-height:1.5;
      background:#fff;
      border:none;
    }
    .accordion-title:hover{
      background:rgba(255,250,244,.96);
      color:var(--primary);
    }
    .accordion-title::before{
      display:none;
    }
    .accordion-title::after{
      content:"+";
      position:absolute;
      right:18px;
      top:50%;
      transform:translateY(-50%);
      width:30px;height:30px;
      border-radius:10px;
      background:linear-gradient(135deg, rgba(185,28,58,.10), rgba(22,198,183,.10));
      color:var(--primary);
      display:grid;
      place-items:center;
      font-size:18px;
      font-weight:800;
      line-height:1;
      transition:transform .18s ease, background .18s ease;
    }
    .accordion-item.is-active .accordion-title{
      border-bottom:1px solid rgba(232,221,208,.92);
      background:linear-gradient(180deg, rgba(255,250,244,.98), #fff);
    }
    .accordion-item.is-active .accordion-title::after{
      content:"−";
      transform:translateY(-50%);
      background:linear-gradient(135deg, rgba(185,28,58,.18), rgba(22,198,183,.14));
    }
    .accordion-content{
      border:none;
      background:#fff;
      padding:0 18px 18px;
      color:var(--muted);
      line-height:1.85;
      font-size:14px;
    }
    .accordion-content p{margin:0}
    .accordion-content .tip{
      margin-top:10px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(15,61,53,.05);
      color:var(--secondary);
      font-size:12px;
      font-weight:700;
    }

    .cta-section{
      padding:12px 0 0;
    }
    .cta-box{
      position:relative;
      overflow:hidden;
      padding:clamp(24px,4vw,40px);
      border-radius:32px;
      color:#fff;
      background:
        linear-gradient(135deg, rgba(15,61,53,.95), rgba(185,28,58,.92) 58%, rgba(22,198,183,.86)),
        linear-gradient(135deg, var(--secondary), var(--primary));
      box-shadow:0 24px 50px rgba(15,61,53,.18);
    }
    .cta-box::before{
      content:"";
      position:absolute;
      width:320px;height:320px;
      border-radius:50%;
      right:-110px;top:-130px;
      background:radial-gradient(circle, rgba(255,255,255,.16), transparent 68%);
      pointer-events:none;
    }
    .cta-box::after{
      content:"";
      position:absolute;
      inset:auto -40px -100px auto;
      width:280px;height:280px;
      border-radius:40px;
      background:linear-gradient(135deg, rgba(255,255,255,.08), transparent 68%);
      transform:rotate(18deg);
      pointer-events:none;
    }
    .cta-box .grid-x{position:relative;z-index:1}
    .cta-box h2,
    .cta-box p,
    .cta-box .mini-badge,
    .cta-box .trust-pill{color:#fff}
    .cta-box .mini-badge{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.12);
    }
    .cta-box .mini-badge strong{color:#FFF1B4}
    .cta-box .subcopy{max-width:58ch;color:rgba(255,255,255,.88)}
    .cta-box .hero-actions{margin-bottom:0}
    .cta-box .btn-primary{
      background:#fff;
      color:var(--primary);
      box-shadow:none;
    }
    .cta-box .btn-primary:hover,
    .cta-box .btn-primary:focus-visible{
      color:var(--primary-dark);
      box-shadow:0 14px 26px rgba(0,0,0,.14);
      transform:translateY(-1px);
    }
    .cta-box .btn-ghost{
      background:transparent;
      color:#fff;
      border-color:rgba(255,255,255,.28);
    }
    .cta-box .btn-ghost:hover,
    .cta-box .btn-ghost:focus-visible{
      background:rgba(255,255,255,.10);
      color:#fff;
      border-color:rgba(255,255,255,.42);
    }

    .footer{
      margin-top:28px;
      padding:44px 0 20px;
      background:linear-gradient(180deg, #143833 0%, #0C2622 100%);
      color:#F7F0E8;
    }
    .footer .brand-text,
    .footer h3,
    .footer p,
    .footer a,
    .footer span{color:#F7F0E8}
    .footer .brand-mark{
      background:linear-gradient(135deg, var(--primary), #D43A53);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.6fr 1fr 1fr;
      gap:22px;
      padding-bottom:22px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer p{
      margin-top:14px;
      max-width:34ch;
      color:rgba(247,240,232,.8);
      font-size:14px;
      line-height:1.85;
    }
    .footer h3{
      font-size:15px;
      margin-bottom:12px;
    }
    .footer a{
      display:block;
      width:max-content;
      margin-bottom:10px;
      color:rgba(247,240,232,.82);
      font-size:14px;
    }
    .footer a:hover,
    .footer a:focus-visible{
      color:#fff;
      transform:translateX(2px);
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding-top:18px;
      color:rgba(247,240,232,.72);
      font-size:13px;
    }

    @media (max-width: 1024px){
      .command-search{min-width:230px}
      .hero-shell{padding:22px}
      .guide-featured .content-grid{grid-template-columns:1fr}
      .split-cards{grid-template-columns:1fr}
      .aside-wrap{position:static}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 768px){
      .nav-wrap{
        flex-wrap:wrap;
        align-items:flex-start;
      }
      .desktop-nav,
      .nav-actions{
        display:none;
        width:100%;
      }
      .desktop-nav{
        order:3;
        margin:0;
        border-radius:22px;
        padding:8px;
        flex-direction:column;
        align-items:stretch;
      }
      .desktop-nav a{
        border-radius:14px;
        padding:12px 14px;
      }
      .nav-actions{
        order:4;
        flex-direction:column;
        align-items:stretch;
        gap:10px;
        padding:12px 0 4px;
      }
      .command-search{max-width:none;width:100%}
      .mobile-menu-btn{display:inline-grid;place-items:center}
      .topbar.menu-open .desktop-nav,
      .topbar.menu-open .nav-actions{
        display:flex;
      }
      .hero-shell{padding:18px}
      .status-grid{grid-template-columns:1fr}
      .hero-actions .btn,
      .cta-box .btn{
        width:100%;
      }
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width: 520px){
      .site-container{padding:0 16px}
      .section{padding:44px 0}
      .section-tight{padding:28px 0}
      .hero-actions{flex-direction:column}
      .toolbar{padding:14px}
      .filter-row{gap:8px}
      .filter-chip{padding:9px 12px}
      .guide-card,
      .side-card,
      .faq-shell,
      .hero-panel,
      .cta-box{border-radius:22px}
      .guide-card,
      .side-card{padding:20px}
      .guide-card .card-cta,
      .card-cta{width:100%;justify-content:center}
      .accordion-title{padding-right:50px}
    }
