/* roulang page: index */
:root{
      --bg:#F7F1E8;
      --bg-soft:#F3E9DC;
      --paper:#FFFDF8;
      --ink:#23201D;
      --muted:#70685F;
      --line:rgba(35,32,29,.10);
      --line-strong:rgba(35,32,29,.16);
      --brand:#E75B3C;
      --brand-2:#F0A35A;
      --green:#61755A;
      --deep:#171310;
      --deep-2:#251D18;
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --shadow:0 18px 55px rgba(35,32,29,.10);
      --shadow-hover:0 24px 70px rgba(35,32,29,.16);
      --gradient:linear-gradient(135deg,#E75B3C 0%,#F0A35A 52%,#61755A 100%);
      --gradient-soft:linear-gradient(135deg,rgba(231,91,60,.13),rgba(240,163,90,.12),rgba(97,117,90,.14));
      --focus:0 0 0 4px rgba(231,91,60,.18);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 10% 0%,rgba(240,163,90,.22),transparent 28%),
        radial-gradient(circle at 88% 12%,rgba(97,117,90,.14),transparent 26%),
        var(--bg);
      line-height:1.75;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover,a:focus{color:var(--brand)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    input,textarea,select{
      width:100%;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fffaf2;
      color:var(--ink);
      padding:13px 15px;
      outline:none;
      transition:.22s ease;
    }
    input:focus,textarea:focus,select:focus{
      border-color:rgba(231,91,60,.58);
      box-shadow:var(--focus);
      background:#fff;
    }
    textarea{min-height:116px;resize:vertical}
    .site-wrap{overflow:hidden}
    .container{
      width:min(1220px,calc(100% - 40px));
      margin:0 auto;
    }
    .section{
      padding:92px 0;
      position:relative;
    }
    .section.tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(231,91,60,.10);
      color:#9A3D29;
      font-size:13px;
      font-weight:800;
      letter-spacing:.02em;
      border:1px solid rgba(231,91,60,.16);
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--gradient);
      box-shadow:0 0 0 5px rgba(231,91,60,.12);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:28px;
      margin-bottom:34px;
    }
    .section-head h2{
      margin:12px 0 0;
      font-size:clamp(28px,3vw,38px);
      line-height:1.18;
      letter-spacing:-.03em;
      font-weight:850;
    }
    .section-head p{
      margin:0;
      max-width:560px;
      color:var(--muted);
      font-size:17px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(247,241,232,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(35,32,29,.08);
    }
    .nav-bar{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      font-weight:900;
      letter-spacing:-.02em;
      color:var(--ink);
    }
    .brand:hover{color:var(--ink)}
    .brand-icon{
      width:42px;height:42px;border-radius:15px;
      background:var(--deep);
      position:relative;
      box-shadow:0 12px 26px rgba(23,19,16,.18);
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-icon::before{
      content:"";
      position:absolute;inset:9px 8px;
      border:2px solid #F0A35A;
      border-left-color:#E75B3C;
      border-right-color:#61755A;
      border-radius:8px;
    }
    .brand-icon::after{
      content:"";
      position:absolute;
      width:7px;height:7px;border-radius:50%;
      right:8px;top:8px;background:#E75B3C;
      box-shadow:-16px 19px 0 #61755A;
    }
    .brand-text{
      font-size:18px;
      white-space:nowrap;
    }
    .nav-center{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      flex:1;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      height:42px;
      padding:0 14px;
      border-radius:999px;
      color:#403A34;
      font-size:15px;
      font-weight:750;
      position:relative;
    }
    .nav-link:hover{
      background:rgba(231,91,60,.08);
      color:#9A3D29;
    }
    .nav-link.active{
      background:var(--deep);
      color:#fff;
      box-shadow:0 10px 22px rgba(35,32,29,.12);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:360px;
      justify-content:flex-end;
    }
    .nav-search{
      position:relative;
      width:210px;
    }
    .nav-search input{
      height:42px;
      padding:0 14px 0 38px;
      border-radius:999px;
      font-size:14px;
      background:rgba(255,253,248,.88);
    }
    .nav-search svg{
      position:absolute;left:14px;top:50%;transform:translateY(-50%);
      color:var(--muted);
      width:16px;height:16px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      line-height:1.1;
      transition:.22s ease;
      text-align:center;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:var(--gradient);
      box-shadow:0 14px 32px rgba(231,91,60,.25);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 20px 42px rgba(231,91,60,.32);
      filter:saturate(1.08);
    }
    .btn-secondary{
      background:#FFF8EC;
      color:var(--ink);
      border-color:rgba(231,91,60,.18);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      transform:translateY(-2px);
      color:#9A3D29;
      border-color:rgba(231,91,60,.38);
      box-shadow:0 14px 30px rgba(35,32,29,.08);
    }
    .btn-dark{
      background:var(--deep);
      color:#fff;
      box-shadow:0 14px 30px rgba(23,19,16,.22);
    }
    .btn-dark:hover{color:#fff;transform:translateY(-2px)}
    .mobile-toggle{
      display:none;
      width:44px;height:44px;border-radius:14px;
      background:#fff8ec;border:1px solid var(--line);
      align-items:center;justify-content:center;
    }
    .mobile-toggle span,.mobile-toggle span::before,.mobile-toggle span::after{
      display:block;width:20px;height:2px;background:var(--ink);border-radius:2px;position:relative;transition:.22s ease;
    }
    .mobile-toggle span::before,.mobile-toggle span::after{content:"";position:absolute;left:0}
    .mobile-toggle span::before{top:-7px}
    .mobile-toggle span::after{top:7px}
    .mobile-panel{
      display:none;
      border-top:1px solid var(--line);
      padding:12px 0 18px;
    }
    .mobile-panel .nav-link{width:100%;justify-content:flex-start;margin:4px 0}
    .mobile-panel .nav-search{width:100%;margin:10px 0}
    .mobile-panel .btn{width:100%;margin-top:10px}

    .hero{
      padding:58px 0 78px;
      background:
        linear-gradient(180deg,rgba(23,19,16,.98),rgba(37,29,24,.96)),
        var(--deep);
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;inset:0;
      background:
        radial-gradient(circle at 12% 20%,rgba(231,91,60,.32),transparent 30%),
        radial-gradient(circle at 85% 18%,rgba(240,163,90,.22),transparent 28%),
        radial-gradient(circle at 62% 90%,rgba(97,117,90,.28),transparent 34%);
      pointer-events:none;
    }
    .hero::after{
      content:"";
      position:absolute;inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:48px 48px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),transparent);
      pointer-events:none;
    }
    .hero-inner{position:relative;z-index:1}
    .coupon-wall{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:24px;
      align-items:stretch;
    }
    .main-coupon{
      min-height:492px;
      border-radius:38px;
      background:
        linear-gradient(135deg,rgba(255,253,248,.13),rgba(255,253,248,.04)),
        rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.14);
      box-shadow:0 32px 90px rgba(0,0,0,.26);
      padding:38px;
      position:relative;
      overflow:hidden;
    }
    .main-coupon::before{
      content:"";
      position:absolute;right:-70px;top:-70px;
      width:220px;height:220px;border-radius:50%;
      background:var(--gradient);
      opacity:.55;filter:blur(4px);
    }
    .main-coupon::after{
      content:"";
      position:absolute;left:-21px;top:48%;
      width:42px;height:42px;border-radius:50%;
      background:var(--deep);
      box-shadow:calc(100vw - 0px) 0 0 var(--deep);
      opacity:.92;
    }
    .hero-tag{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 13px;
      border-radius:999px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      color:#FFE4C9;
      font-size:13px;
      font-weight:850;
    }
    .hero h1{
      max-width:760px;
      margin:20px 0 18px;
      font-size:clamp(34px,5.2vw,58px);
      line-height:1.12;
      letter-spacing:-.045em;
      font-weight:900;
      color:#fff;
    }
    .hero-desc{
      max-width:710px;
      font-size:18px;
      color:rgba(255,255,255,.78);
      margin:0 0 28px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:28px 0 28px;
    }
    .hero .btn-secondary{
      background:rgba(255,255,255,.10);
      color:#fff;
      border-color:rgba(255,255,255,.20);
    }
    .hero .btn-secondary:hover{border-color:rgba(255,255,255,.38)}
    .coupon-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:26px;
      max-width:690px;
    }
    .stat-mini{
      border-radius:22px;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.08);
      padding:16px;
    }
    .stat-mini strong{
      display:block;
      font-size:30px;
      line-height:1;
      letter-spacing:-.04em;
      color:#FFE1C4;
    }
    .stat-mini span{display:block;margin-top:8px;color:rgba(255,255,255,.68);font-size:13px;font-weight:700}
    .coupon-stack{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .entry-ticket{
      min-height:154px;
      border-radius:28px;
      background:rgba(255,253,248,.92);
      color:var(--ink);
      padding:20px;
      border:1px solid rgba(255,255,255,.28);
      box-shadow:0 18px 50px rgba(0,0,0,.18);
      position:relative;
      overflow:hidden;
      transition:.22s ease;
    }
    .entry-ticket:hover{transform:translateY(-3px);box-shadow:0 24px 70px rgba(0,0,0,.25)}
    .entry-ticket.wide{grid-column:1 / -1;min-height:174px;background:linear-gradient(135deg,#FFF8EC,#F5E3CF)}
    .entry-ticket.dark{
      background:linear-gradient(135deg,#2B211C,#171310);
      color:#fff;
    }
    .entry-ticket .ticket-no{
      display:inline-flex;
      padding:5px 10px;
      border-radius:999px;
      color:#A4422E;
      background:rgba(231,91,60,.11);
      font-size:12px;
      font-weight:900;
    }
    .entry-ticket.dark .ticket-no{color:#FFE0C1;background:rgba(255,255,255,.10)}
    .entry-ticket h3{
      margin:14px 0 6px;
      font-size:22px;
      line-height:1.22;
      font-weight:900;
      letter-spacing:-.025em;
    }
    .entry-ticket p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
    .entry-ticket.dark p{color:rgba(255,255,255,.72)}
    .ticket-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}

    .badge,.tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      border:1px solid rgba(35,32,29,.08);
      background:#fff7eb;
      color:#564C44;
      line-height:1;
    }
    .badge.update{background:rgba(231,91,60,.10);color:#A4422E;border-color:rgba(231,91,60,.15)}
    .badge.subtitle{background:rgba(97,117,90,.12);color:#42523D;border-color:rgba(97,117,90,.18)}
    .badge.status{background:rgba(240,163,90,.14);color:#80552A;border-color:rgba(240,163,90,.2)}
    .badge.dark{background:rgba(255,255,255,.10);color:#fff;border-color:rgba(255,255,255,.16)}
    .dot{
      width:7px;height:7px;border-radius:50%;
      background:currentColor;
    }

    .channel-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
    }
    .guide-card,.soft-card,.form-card,.article-card,.privacy-card,.cta-band{
      border-radius:var(--radius-xl);
      border:1px solid var(--line);
      background:rgba(255,253,248,.80);
      box-shadow:var(--shadow);
    }
    .guide-card{
      padding:30px;
      background:
        linear-gradient(135deg,rgba(255,253,248,.92),rgba(255,248,236,.84)),
        var(--paper);
    }
    .steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:24px;
    }
    .step-card{
      position:relative;
      border-radius:24px;
      background:#FFF8EC;
      border:1px solid rgba(35,32,29,.08);
      padding:20px 18px 18px;
      min-height:186px;
      overflow:hidden;
      transition:.22s ease;
    }
    .step-card:hover{transform:translateY(-3px);box-shadow:0 16px 36px rgba(35,32,29,.09)}
    .step-card::after{
      content:"";
      position:absolute;left:18px;right:18px;bottom:0;height:4px;border-radius:4px 4px 0 0;
      background:var(--gradient);
      opacity:.72;
    }
    .step-no{
      display:inline-flex;
      width:40px;height:40px;border-radius:14px;
      align-items:center;justify-content:center;
      background:var(--deep);
      color:#FFE1C4;
      font-weight:900;
      margin-bottom:16px;
    }
    .step-card h3{font-size:18px;margin:0 0 8px;font-weight:900}
    .step-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.62}
    .side-panel{
      border-radius:var(--radius-xl);
      background:var(--deep);
      color:#fff;
      padding:26px;
      position:relative;
      overflow:hidden;
      box-shadow:0 20px 55px rgba(23,19,16,.22);
    }
    .side-panel::before{
      content:"";
      position:absolute;right:-42px;top:-36px;width:152px;height:152px;border-radius:50%;
      background:var(--gradient);opacity:.55;
    }
    .side-panel h3{position:relative;margin:0 0 18px;font-size:26px;font-weight:900}
    .check-list{position:relative;margin:0;padding:0;list-style:none}
    .check-list li{
      display:flex;gap:11px;align-items:flex-start;
      padding:13px 0;
      border-bottom:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.76);
    }
    .check-list li:last-child{border-bottom:0}
    .check-list .check{
      width:22px;height:22px;border-radius:50%;
      flex:0 0 auto;background:rgba(240,163,90,.18);
      color:#FFD6A9;display:inline-flex;align-items:center;justify-content:center;
      font-size:13px;font-weight:900;
    }

    .data-strip{
      border-radius:34px;
      background:var(--gradient);
      padding:2px;
      box-shadow:0 20px 58px rgba(231,91,60,.18);
    }
    .data-inner{
      border-radius:32px;
      background:#FFF9EF;
      padding:24px;
      display:grid;
      grid-template-columns:1.08fr repeat(4,1fr);
      gap:16px;
      align-items:center;
    }
    .data-title h2{font-size:30px;margin:0 0 4px;line-height:1.2;font-weight:900}
    .data-title p{margin:0;color:var(--muted)}
    .data-box{
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(35,32,29,.08);
      padding:18px;
      min-height:116px;
    }
    .data-box strong{display:block;font-size:34px;line-height:1;color:var(--brand);font-weight:950;letter-spacing:-.05em}
    .data-box span{display:block;margin-top:10px;color:var(--muted);font-weight:750;font-size:13px}

    .lead-section{padding-top:30px}
    .lead-grid{
      display:grid;
      grid-template-columns:.86fr 1.14fr;
      gap:24px;
      align-items:stretch;
    }
    .lead-copy{
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 85% 0%,rgba(231,91,60,.16),transparent 34%),
        #FFF8EC;
      border:1px solid var(--line);
      padding:32px;
      box-shadow:var(--shadow);
    }
    .lead-copy h2{margin:14px 0 12px;font-size:36px;line-height:1.16;font-weight:900}
    .lead-copy p{color:var(--muted);font-size:17px;margin:0 0 20px}
    .mini-timeline{margin-top:24px;border-left:2px solid rgba(231,91,60,.22);padding-left:18px}
    .mini-timeline-item{position:relative;margin:0 0 18px}
    .mini-timeline-item::before{
      content:"";position:absolute;left:-25px;top:7px;
      width:12px;height:12px;border-radius:50%;background:var(--brand);
      box-shadow:0 0 0 6px rgba(231,91,60,.12);
    }
    .mini-timeline-item strong{display:block;font-weight:900}
    .mini-timeline-item span{display:block;color:var(--muted);font-size:14px;margin-top:2px}
    .form-card{padding:30px;background:rgba(255,253,248,.92)}
    .form-card h3{font-size:26px;margin:0 0 8px;font-weight:900}
    .form-card .hint{margin:0 0 20px;color:var(--muted)}
    .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .form-grid .full{grid-column:1 / -1}
    .form-note{
      display:flex;align-items:flex-start;gap:10px;
      margin-top:14px;padding:13px 14px;border-radius:18px;
      background:rgba(97,117,90,.10);
      color:#43523D;font-size:14px;line-height:1.55;
    }

    .info-layout{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:start;
    }
    .article-list{
      border-radius:var(--radius-xl);
      background:#FFFDF8;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:14px;
    }
    .article-row{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:18px;
      border-radius:22px;
      border-bottom:1px solid rgba(35,32,29,.06);
      transition:.22s ease;
    }
    .article-row:last-child{border-bottom:0}
    .article-row:hover{
      background:#FFF8EC;
      transform:translateX(3px);
    }
    .article-date{
      width:62px;height:62px;border-radius:20px;
      display:flex;align-items:center;justify-content:center;flex-direction:column;
      background:var(--deep);
      color:#FFE2C5;
      font-weight:900;
      line-height:1.1;
    }
    .article-date small{font-size:12px;color:rgba(255,226,197,.76)}
    .article-row h3{margin:0;font-size:19px;font-weight:900;line-height:1.35}
    .article-row p{margin:4px 0 0;color:var(--muted);font-size:14px;line-height:1.55}
    .article-action{font-size:14px;font-weight:900;color:#A4422E;white-space:nowrap}
    .recommend-panel{
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg,#2A211C,#171310);
      color:#fff;
      padding:28px;
      box-shadow:0 20px 54px rgba(23,19,16,.24);
    }
    .recommend-panel h3{font-size:26px;margin:0 0 14px;font-weight:900}
    .recommend-panel p{margin:0;color:rgba(255,255,255,.72)}
    .tag-cloud{display:flex;flex-wrap:wrap;gap:9px;margin-top:20px}
    .tag-cloud .tag{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.13);color:#fff}
    .changelog{
      margin-top:22px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:24px;
      padding:18px;
    }
    .changelog-item{
      display:flex;gap:12px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.10);
    }
    .changelog-item:last-child{border-bottom:0}
    .version{
      flex:0 0 auto;
      color:#FFE0BD;
      font-weight:900;
      font-size:13px;
    }
    .changelog-item span{color:rgba(255,255,255,.76);font-size:14px;line-height:1.55}

    .progress-grid{
      display:grid;
      grid-template-columns:1fr 360px;
      gap:24px;
      align-items:stretch;
    }
    .progress-card{
      border-radius:var(--radius-xl);
      background:#FFF8EC;
      border:1px solid var(--line);
      padding:30px;
      box-shadow:var(--shadow);
    }
    .progress-line{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:10px;
      margin-top:26px;
      position:relative;
    }
    .progress-node{
      position:relative;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(35,32,29,.08);
      padding:18px 14px;
      min-height:128px;
      transition:.22s ease;
    }
    .progress-node:hover{transform:translateY(-3px)}
    .node-dot{
      width:34px;height:34px;border-radius:50%;
      display:flex;align-items:center;justify-content:center;
      background:var(--gradient);
      color:#fff;font-weight:950;
      margin-bottom:12px;
    }
    .progress-node strong{display:block;font-size:16px;line-height:1.35}
    .progress-node span{display:block;margin-top:6px;color:var(--muted);font-size:13px;line-height:1.5}
    .completion{
      border-radius:var(--radius-xl);
      background:var(--deep);
      color:#fff;
      padding:28px;
      box-shadow:0 20px 54px rgba(23,19,16,.22);
    }
    .completion .big{font-size:64px;line-height:1;font-weight:950;letter-spacing:-.06em;color:#FFD6A9}
    .completion p{color:rgba(255,255,255,.72);margin:10px 0 18px}
    .status-list{margin:0;padding:0;list-style:none}
    .status-list li{
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      padding:12px 0;border-bottom:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.78);font-size:14px;
    }
    .status-list li:last-child{border-bottom:0}

    .faq-wrap{
      border-radius:var(--radius-xl);
      background:#FFFDF8;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      border:0;
      border-radius:22px;
      overflow:hidden;
      margin-bottom:10px;
      background:#FFF8EC;
      border:1px solid rgba(35,32,29,.07);
    }
    .accordion-item:last-child{margin-bottom:0}
    .accordion-title{
      border:0!important;
      color:var(--ink)!important;
      font-size:17px;
      font-weight:900;
      padding:20px 54px 20px 20px;
      background:transparent;
      line-height:1.35;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(231,91,60,.06);
      color:#9A3D29!important;
    }
    .accordion-title::before{right:22px;font-size:22px;margin-top:-11px}
    .accordion-content{
      border:0!important;
      background:#fffdf8;
      color:var(--muted);
      padding:0 20px 20px;
      line-height:1.75;
    }

    .cta-band{
      position:relative;
      overflow:hidden;
      padding:42px;
      background:var(--gradient);
      color:#fff;
      border:0;
      box-shadow:0 26px 75px rgba(231,91,60,.22);
    }
    .cta-band::before{
      content:"";
      position:absolute;inset:auto -70px -120px auto;
      width:320px;height:320px;border-radius:50%;
      background:rgba(255,255,255,.18);
    }
    .cta-inner{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:26px;
    }
    .cta-band h2{margin:0 0 10px;font-size:36px;line-height:1.18;font-weight:950}
    .cta-band p{margin:0;color:rgba(255,255,255,.82);max-width:660px}
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
    .cta-band .btn-secondary{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.24)}
    .cta-band .btn-dark{background:#171310;color:#fff}

    .privacy-card{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:24px;
      padding:30px;
      background:
        linear-gradient(135deg,rgba(97,117,90,.11),rgba(255,253,248,.88)),
        #FFFDF8;
    }
    .privacy-card h2{font-size:32px;margin:0 0 12px;font-weight:950}
    .privacy-card p{color:var(--muted);margin:0}
    .guard-list{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
    }
    .guard{
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(35,32,29,.08);
      padding:18px;
    }
    .guard strong{display:block;margin-bottom:6px;font-weight:950}
    .guard span{display:block;color:var(--muted);font-size:14px;line-height:1.55}

    .site-footer{
      background:var(--deep);
      color:#fff;
      padding:58px 0 28px;
      position:relative;
    }
    .site-footer::before{
      content:"";
      position:absolute;left:0;right:0;top:0;height:3px;background:var(--gradient);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .75fr .75fr .9fr;
      gap:28px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-logo{display:flex;align-items:center;gap:12px;font-weight:950;font-size:18px}
    .footer-desc{margin:16px 0 0;color:rgba(255,255,255,.68);max-width:360px}
    .footer-col h3{font-size:15px;margin:0 0 14px;color:#FFE0BD;font-weight:900}
    .footer-col a,.footer-col span{
      display:block;
      color:rgba(255,255,255,.68);
      margin:9px 0;
      font-size:14px;
    }
    .footer-col a:hover{color:#fff;transform:translateX(2px)}
    .copyright{
      padding-top:20px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.56);
      font-size:13px;
    }

    .article-shell{
      max-width:840px;
      margin:0 auto;
      background:#FFFDF8;
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      padding:36px;
      box-shadow:var(--shadow);
    }
    .article-shell h2,.article-shell h3{line-height:1.28}
    .article-shell p{margin:0 0 20px}
    .article-note{
      border-left:4px solid var(--brand);
      background:#FFF8EC;
      border-radius:0 18px 18px 0;
      padding:18px 20px;
    }

    @media (max-width:1024px){
      .nav-center,.nav-actions{display:none}
      .mobile-toggle{display:flex}
      .mobile-panel.is-open{display:block}
      .coupon-wall,.channel-grid,.lead-grid,.info-layout,.progress-grid,.privacy-card{grid-template-columns:1fr}
      .data-inner{grid-template-columns:1fr 1fr}
      .data-title{grid-column:1 / -1}
      .steps{grid-template-columns:repeat(2,1fr)}
      .progress-line{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
      .cta-inner{align-items:flex-start;flex-direction:column}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,1220px)}
      .section{padding:66px 0}
      .hero{padding:34px 0 56px}
      .main-coupon{padding:26px;min-height:auto;border-radius:30px}
      .coupon-stack{grid-template-columns:1fr}
      .coupon-stats{grid-template-columns:1fr 1fr}
      .section-head{display:block}
      .section-head p{margin-top:12px}
      .form-grid,.guard-list{grid-template-columns:1fr}
      .article-row{grid-template-columns:1fr}
      .article-date{width:58px;height:58px}
      .article-action{white-space:normal}
      .cta-band{padding:30px}
      .privacy-card{padding:24px}
    }
    @media (max-width:520px){
      .brand-text{font-size:15px;max-width:210px;overflow:hidden;text-overflow:ellipsis}
      .hero h1{font-size:32px}
      .hero-desc{font-size:16px}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .coupon-stats,.steps,.data-inner,.progress-line,.footer-grid{grid-template-columns:1fr}
      .section-head h2,.lead-copy h2,.cta-band h2{font-size:28px}
      .data-box strong{font-size:30px}
      .completion .big{font-size:52px}
    }

/* roulang page: category1 */
:root{
      --bg:#F7F1E8;
      --bg-soft:#F3E9DC;
      --card:#FFF9F0;
      --card-2:#FBF0E3;
      --ink:#23201D;
      --muted:#70685F;
      --muted-2:#978C80;
      --brand:#E75B3C;
      --brand-2:#F0A35A;
      --green:#61755A;
      --dark:#171310;
      --dark-2:#221B16;
      --line:rgba(35,32,29,.10);
      --line-light:rgba(255,255,255,.14);
      --shadow:0 18px 50px rgba(35,32,29,.10);
      --shadow-strong:0 26px 70px rgba(35,32,29,.18);
      --radius-lg:32px;
      --radius-md:24px;
      --radius-sm:16px;
      --radius-pill:999px;
      --container:1220px;
      --ease:all .24s 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 SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 10% 4%, rgba(240,163,90,.22), transparent 32%),
        radial-gradient(circle at 88% 16%, rgba(97,117,90,.14), transparent 30%),
        linear-gradient(180deg,var(--bg) 0%,#fff8ee 48%,var(--bg-soft) 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img,svg{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    input,select,textarea{outline:none}
    input:focus,select:focus,textarea:focus{
      border-color:rgba(231,91,60,.65)!important;
      box-shadow:0 0 0 4px rgba(231,91,60,.12)!important;
    }
    .container{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      padding:14px 0;
      background:rgba(247,241,232,.84);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(35,32,29,.08);
    }
    .nav-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      min-height:58px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      flex:0 0 auto;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--ink);
    }
    .brand:hover{color:var(--brand)}
    .brand-icon{
      width:42px;
      height:42px;
      border-radius:15px;
      position:relative;
      background:
        linear-gradient(135deg,rgba(231,91,60,.95),rgba(240,163,90,.9) 55%,rgba(97,117,90,.95));
      box-shadow:0 12px 24px rgba(231,91,60,.22);
      flex:0 0 auto;
    }
    .brand-icon:before{
      content:"";
      position:absolute;
      inset:10px 9px;
      border:2px solid rgba(255,255,255,.9);
      border-left-width:4px;
      border-right-width:4px;
      border-radius:8px;
    }
    .brand-icon:after{
      content:"";
      position:absolute;
      width:7px;
      height:7px;
      right:8px;
      top:8px;
      border-radius:50%;
      background:#fff;
      box-shadow:-15px 18px 0 rgba(255,255,255,.72);
    }
    .brand-text{font-size:18px;white-space:nowrap}
    .nav-center{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      padding:6px;
      border:1px solid rgba(35,32,29,.08);
      background:rgba(255,249,240,.72);
      border-radius:var(--radius-pill);
      box-shadow:0 10px 30px rgba(35,32,29,.05);
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:8px 15px;
      border-radius:var(--radius-pill);
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
    }
    .nav-link:hover{color:var(--ink);background:rgba(231,91,60,.08)}
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 12px 28px rgba(231,91,60,.22);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex:0 1 438px;
    }
    .nav-search{
      height:42px;
      min-width:220px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 13px;
      border-radius:var(--radius-pill);
      border:1px solid rgba(35,32,29,.10);
      background:rgba(255,249,240,.82);
      color:var(--muted);
      transition:var(--ease);
    }
    .nav-search svg{width:18px;height:18px;flex:0 0 auto}
    .nav-search input{
      width:100%;
      border:0;
      background:transparent;
      box-shadow:none!important;
      margin:0;
      padding:0;
      color:var(--ink);
      font-size:14px;
    }
    .nav-search:focus-within{
      border-color:rgba(231,91,60,.55);
      box-shadow:0 0 0 4px rgba(231,91,60,.10);
    }
    .btn{
      min-height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:11px 18px;
      border-radius:var(--radius-pill);
      font-size:14px;
      font-weight:800;
      border:1px solid transparent;
      cursor:pointer;
      transition:var(--ease);
      line-height:1.2;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(0)}
    .btn:focus-visible,.nav-link:focus-visible,a:focus-visible,button:focus-visible{
      outline:3px solid rgba(231,91,60,.28);
      outline-offset:3px;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--brand-2) 64%,var(--green));
      box-shadow:0 16px 34px rgba(231,91,60,.24);
    }
    .btn-primary:hover{box-shadow:0 22px 48px rgba(231,91,60,.32);color:#fff}
    .btn-secondary{
      color:var(--ink);
      background:rgba(255,249,240,.78);
      border-color:rgba(231,91,60,.22);
    }
    .btn-secondary:hover{background:#fff;color:var(--brand);box-shadow:0 14px 30px rgba(35,32,29,.08)}
    .mobile-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid rgba(35,32,29,.10);
      border-radius:15px;
      background:rgba(255,249,240,.85);
      position:relative;
      cursor:pointer;
    }
    .mobile-toggle span,.mobile-toggle span:before,.mobile-toggle span:after{
      position:absolute;
      left:12px;
      right:12px;
      height:2px;
      border-radius:4px;
      background:var(--ink);
      content:"";
      transition:var(--ease);
    }
    .mobile-toggle span{top:21px}
    .mobile-toggle span:before{left:0;right:0;top:-7px}
    .mobile-toggle span:after{left:0;right:0;top:7px}
    .mobile-toggle.is-open span{background:transparent}
    .mobile-toggle.is-open span:before{top:0;transform:rotate(45deg)}
    .mobile-toggle.is-open span:after{top:0;transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding:14px;
      margin-top:10px;
      border-radius:22px;
      background:rgba(255,249,240,.94);
      border:1px solid rgba(35,32,29,.08);
      box-shadow:var(--shadow);
    }
    main{overflow:hidden}
    .section{padding:92px 0}
    .section-tight{padding:66px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      background:rgba(231,91,60,.10);
      color:#9b321e;
      border:1px solid rgba(231,91,60,.16);
      font-size:13px;
      font-weight:800;
      line-height:1.2;
    }
    .eyebrow.dark{
      background:rgba(255,255,255,.10);
      color:#fff0e6;
      border-color:rgba(255,255,255,.16);
    }
    .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 5px rgba(97,117,90,.14);
      flex:0 0 auto;
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      margin:18px 0 18px;
      font-size:clamp(32px,5vw,54px);
      line-height:1.12;
      font-weight:850;
      letter-spacing:-.05em;
      color:#fff;
    }
    h2{
      font-size:clamp(28px,3.4vw,38px);
      line-height:1.18;
      font-weight:850;
      letter-spacing:-.04em;
      margin-bottom:14px;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      font-weight:820;
      margin-bottom:10px;
    }
    .lead{
      font-size:18px;
      color:rgba(255,255,255,.76);
      max-width:760px;
      margin-bottom:0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:30px;
    }
    .section-head p{
      max-width:600px;
      color:var(--muted);
      margin-bottom:0;
      font-size:16px;
    }
    .hero-index{
      padding:46px 0 34px;
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      min-height:520px;
      border-radius:40px;
      padding:42px;
      background:
        radial-gradient(circle at 74% 18%, rgba(231,91,60,.42), transparent 28%),
        radial-gradient(circle at 30% 90%, rgba(97,117,90,.34), transparent 30%),
        linear-gradient(135deg,#171310 0%,#261a12 58%,#12100e 100%);
      box-shadow:var(--shadow-strong);
      border:1px solid rgba(255,255,255,.10);
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:54px 54px;
      mask-image:linear-gradient(90deg,rgba(0,0,0,.9),transparent 85%);
      pointer-events:none;
    }
    .hero-card:after{
      content:"";
      position:absolute;
      right:-80px;
      top:-120px;
      width:420px;
      height:420px;
      border-radius:50%;
      background:linear-gradient(135deg,rgba(231,91,60,.32),rgba(240,163,90,.14),rgba(97,117,90,.20));
      filter:blur(2px);
      pointer-events:none;
    }
    .hero-content,.hero-panel{position:relative;z-index:2}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:12px;
      margin-top:28px;
    }
    .hero-panel{
      height:100%;
      border-radius:30px;
      padding:20px;
      background:rgba(255,249,240,.10);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(18px);
      box-shadow:0 30px 80px rgba(0,0,0,.22);
    }
    .panel-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
      color:#fff;
    }
    .panel-title{font-weight:850;font-size:18px}
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:var(--radius-pill);
      background:rgba(97,117,90,.22);
      color:#e9f1e2;
      font-size:12px;
      font-weight:800;
      border:1px solid rgba(255,255,255,.14);
    }
    .index-visual{
      border-radius:26px;
      padding:20px;
      background:rgba(255,249,240,.92);
      color:var(--ink);
      border:1px solid rgba(255,255,255,.58);
    }
    .visual-row{
      display:grid;
      grid-template-columns:86px 1fr auto;
      gap:12px;
      align-items:center;
      padding:14px 0;
      border-bottom:1px solid rgba(35,32,29,.08);
    }
    .visual-row:last-child{border-bottom:0}
    .date-chip{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      min-height:68px;
      border-radius:19px;
      background:linear-gradient(135deg,rgba(231,91,60,.12),rgba(240,163,90,.18));
      color:var(--brand);
      font-weight:900;
    }
    .date-chip small{font-size:12px;color:var(--muted);font-weight:800}
    .row-main strong{display:block;font-size:16px;line-height:1.35}
    .row-main span{display:block;color:var(--muted);font-size:13px;margin-top:3px}
    .badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-height:28px;
      padding:5px 10px;
      border-radius:var(--radius-pill);
      font-size:12px;
      font-weight:850;
      border:1px solid rgba(35,32,29,.08);
      background:#fff8ee;
      color:var(--muted);
      white-space:nowrap;
    }
    .badge.hot{background:rgba(231,91,60,.10);color:#b63f27;border-color:rgba(231,91,60,.18)}
    .badge.green{background:rgba(97,117,90,.12);color:#4e6446;border-color:rgba(97,117,90,.20)}
    .badge.dark{background:rgba(23,19,16,.92);color:#fff;border-color:rgba(255,255,255,.10)}
    .badge.gradient{
      color:#fff;
      border:0;
      background:linear-gradient(135deg,var(--brand),var(--brand-2),var(--green));
      box-shadow:0 12px 24px rgba(231,91,60,.20);
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:20px;
    }
    .metric{
      padding:16px;
      border-radius:22px;
      background:rgba(255,249,240,.10);
      border:1px solid rgba(255,255,255,.13);
      color:#fff;
    }
    .metric strong{
      display:block;
      font-size:28px;
      line-height:1;
      letter-spacing:-.03em;
      margin-bottom:7px;
    }
    .metric span{display:block;font-size:12px;color:rgba(255,255,255,.70);font-weight:700}
    .filter-card{
      padding:24px;
      border-radius:var(--radius-lg);
      background:rgba(255,249,240,.88);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .toolbar-grid{
      display:grid;
      grid-template-columns:1.35fr .9fr .9fr auto;
      gap:14px;
      align-items:end;
    }
    .field label{
      display:block;
      margin-bottom:7px;
      color:var(--muted);
      font-size:13px;
      font-weight:850;
    }
    .input-wrap{
      display:flex;
      align-items:center;
      gap:9px;
      min-height:48px;
      border-radius:18px;
      border:1px solid rgba(35,32,29,.10);
      background:#fffaf2;
      padding:0 14px;
      transition:var(--ease);
    }
    .input-wrap svg{width:18px;height:18px;color:var(--muted)}
    .input-wrap input{
      margin:0;
      padding:0;
      border:0;
      background:transparent;
      box-shadow:none!important;
      height:46px;
    }
    .field select{
      height:48px;
      border-radius:18px;
      border:1px solid rgba(35,32,29,.10);
      background-color:#fffaf2;
      margin:0;
      color:var(--ink);
      font-weight:700;
      padding-left:14px;
    }
    .quick-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:18px;
      padding-top:18px;
      border-top:1px dashed rgba(35,32,29,.14);
    }
    .quick-tags .badge{cursor:pointer}
    .quick-tags .badge:hover{transform:translateY(-2px);border-color:rgba(231,91,60,.25)}
    .index-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 330px;
      gap:24px;
      align-items:start;
    }
    .index-list{
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .list-card{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      padding:24px;
      background:rgba(255,249,240,.90);
      border:1px solid var(--line);
      box-shadow:0 14px 42px rgba(35,32,29,.08);
      transition:var(--ease);
    }
    .list-card:before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:6px;
      background:linear-gradient(180deg,var(--brand),var(--brand-2),var(--green));
      opacity:.72;
      transition:var(--ease);
    }
    .list-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow);
      border-color:rgba(231,91,60,.18);
    }
    .list-card:hover:before{width:9px;opacity:1}
    .list-inner{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      align-items:center;
    }
    .list-card h3{font-size:22px;margin-bottom:8px}
    .list-card p{color:var(--muted);margin-bottom:14px}
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
    }
    .list-actions{
      display:flex;
      flex-direction:column;
      gap:9px;
      min-width:130px;
    }
    .side-stack{
      display:flex;
      flex-direction:column;
      gap:18px;
      position:sticky;
      top:104px;
    }
    .side-card{
      padding:22px;
      border-radius:28px;
      background:rgba(255,249,240,.86);
      border:1px solid var(--line);
      box-shadow:0 14px 36px rgba(35,32,29,.07);
    }
    .side-card.dark{
      color:#fff;
      background:
        radial-gradient(circle at 85% 0%,rgba(231,91,60,.35),transparent 34%),
        linear-gradient(145deg,var(--dark),#2b211a);
      border-color:rgba(255,255,255,.12);
    }
    .side-card.dark p,.side-card.dark a{color:rgba(255,255,255,.76)}
    .side-card h3{font-size:20px}
    .side-links{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:14px;
    }
    .side-link{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      padding:12px 14px;
      border-radius:18px;
      background:rgba(243,233,220,.70);
      color:var(--ink);
      font-weight:800;
      border:1px solid rgba(35,32,29,.06);
    }
    .side-link:hover{
      transform:translateX(3px);
      background:#fff8ee;
      color:var(--brand);
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:13px;
    }
    .progress-card{
      padding:30px;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 88% 18%,rgba(231,91,60,.18),transparent 26%),
        linear-gradient(135deg,#fffaf2,var(--card-2));
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .steps{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
      margin-top:22px;
      position:relative;
    }
    .step-item{
      position:relative;
      padding:18px;
      border-radius:24px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(35,32,29,.08);
      min-height:144px;
      transition:var(--ease);
    }
    .step-item:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(35,32,29,.08)}
    .step-num{
      width:34px;
      height:34px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:12px;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      margin-bottom:14px;
    }
    .step-item strong{display:block;line-height:1.35;margin-bottom:7px}
    .step-item span{font-size:13px;color:var(--muted);line-height:1.55;display:block}
    .reward-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .reward-big,.reward-small{
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:rgba(255,249,240,.86);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .reward-big{
      padding:30px;
      min-height:360px;
      background:
        radial-gradient(circle at 0% 0%,rgba(231,91,60,.16),transparent 32%),
        linear-gradient(135deg,#fffaf2,#f4e6d7);
    }
    .reward-big h3{font-size:27px}
    .large-number{
      display:flex;
      align-items:flex-end;
      gap:12px;
      margin:24px 0 18px;
    }
    .large-number strong{
      font-size:58px;
      line-height:.95;
      letter-spacing:-.06em;
      color:var(--brand);
    }
    .large-number span{color:var(--muted);font-weight:850;margin-bottom:8px}
    .reward-list{
      display:grid;
      gap:12px;
      margin-top:20px;
    }
    .check-row{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px 0;
      border-top:1px solid rgba(35,32,29,.08);
    }
    .check{
      width:22px;
      height:22px;
      border-radius:50%;
      background:rgba(97,117,90,.13);
      color:var(--green);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:13px;
      font-weight:900;
      flex:0 0 auto;
      margin-top:2px;
    }
    .reward-side{
      display:grid;
      grid-template-rows:1fr 1fr;
      gap:22px;
    }
    .reward-small{padding:24px}
    .reward-small.alt{
      color:#fff;
      background:
        radial-gradient(circle at 100% 0%,rgba(240,163,90,.30),transparent 32%),
        linear-gradient(145deg,var(--dark),#2b211a);
      border-color:rgba(255,255,255,.12);
    }
    .reward-small.alt p{color:rgba(255,255,255,.72)}
    .pagination-wrap{
      display:flex;
      align-items:center;
      justify-content:center;
      margin-top:28px;
    }
    .pagination{
      display:flex;
      gap:8px;
      align-items:center;
      margin:0;
    }
    .pagination li{display:block}
    .pagination a,.pagination span{
      min-width:42px;
      min-height:42px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:var(--radius-pill);
      border:1px solid rgba(35,32,29,.10);
      background:rgba(255,249,240,.82);
      color:var(--muted);
      font-weight:850;
    }
    .pagination .current{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      border-color:transparent;
      box-shadow:0 12px 28px rgba(231,91,60,.20);
    }
    .pagination a:hover{color:var(--brand);transform:translateY(-2px);background:#fff}
    .faq-wrap{
      border-radius:var(--radius-lg);
      padding:10px;
      background:rgba(255,249,240,.80);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      border:0;
      border-bottom:1px solid rgba(35,32,29,.08);
      background:transparent;
    }
    .accordion-item:last-child{border-bottom:0}
    .accordion-title{
      border:0!important;
      color:var(--ink)!important;
      background:transparent!important;
      min-height:62px;
      display:flex;
      align-items:center;
      font-size:17px;
      font-weight:850;
      padding:18px 46px 18px 18px;
      border-radius:22px;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(231,91,60,.07)!important;
    }
    .accordion-title:before{
      right:18px;
      margin-top:-10px;
      color:var(--brand);
      font-size:22px;
    }
    .accordion-content{
      border:0!important;
      background:transparent!important;
      color:var(--muted);
      padding:0 18px 20px;
      font-size:15px;
    }
    .cta-band{
      position:relative;
      overflow:hidden;
      border-radius:38px;
      padding:42px;
      color:#fff;
      background:
        radial-gradient(circle at 80% 20%,rgba(255,255,255,.22),transparent 26%),
        linear-gradient(135deg,var(--brand),var(--brand-2) 58%,var(--green));
      box-shadow:0 24px 70px rgba(231,91,60,.28);
    }
    .cta-band:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.16) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.12) 1px,transparent 1px);
      background-size:42px 42px;
      opacity:.28;
    }
    .cta-content{
      position:relative;
      z-index:2;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .cta-content h2{margin-bottom:10px;color:#fff}
    .cta-content p{color:rgba(255,255,255,.82);margin-bottom:0;max-width:700px}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
      flex:0 0 auto;
    }
    .btn-white{
      background:#fffaf2;
      color:var(--brand);
      border-color:rgba(255,255,255,.3);
      box-shadow:0 14px 34px rgba(35,32,29,.14);
    }
    .btn-ghost{
      color:#fff;
      border-color:rgba(255,255,255,.38);
      background:rgba(255,255,255,.10);
    }
    .btn-ghost:hover{color:#fff;background:rgba(255,255,255,.18)}
    .feedback-card{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:26px;
      align-items:stretch;
      padding:28px;
      border-radius:var(--radius-lg);
      background:rgba(255,249,240,.88);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .feedback-note{
      padding:26px;
      border-radius:26px;
      color:#fff;
      background:
        radial-gradient(circle at 100% 0%,rgba(231,91,60,.36),transparent 34%),
        linear-gradient(145deg,var(--dark),#2a2019);
    }
    .feedback-note p{color:rgba(255,255,255,.75)}
    .feedback-form{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .feedback-form .full{grid-column:1/-1}
    .feedback-form label{
      color:var(--muted);
      font-size:13px;
      font-weight:850;
      margin-bottom:6px;
      display:block;
    }
    .feedback-form input,.feedback-form textarea{
      width:100%;
      border-radius:18px;
      border:1px solid rgba(35,32,29,.10);
      background:#fffaf2;
      margin:0;
      box-shadow:none;
    }
    .feedback-form textarea{min-height:120px;resize:vertical}
    .site-footer{
      margin-top:70px;
      color:#fff;
      background:
        radial-gradient(circle at 18% 0%,rgba(231,91,60,.20),transparent 30%),
        linear-gradient(180deg,var(--dark),#0f0d0b);
      border-top:1px solid rgba(255,255,255,.10);
      padding:54px 0 24px;
      position:relative;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      width:100%;
      height:3px;
      background:linear-gradient(90deg,var(--brand),var(--brand-2),var(--green));
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr 1fr;
      gap:34px;
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:18px;
      font-weight:850;
      margin-bottom:14px;
    }
    .footer-desc{color:rgba(255,255,255,.68);max-width:360px;margin-bottom:0}
    .footer-col h3{
      color:#fff;
      font-size:16px;
      margin-bottom:14px;
    }
    .footer-col a,.footer-col span{
      display:block;
      color:rgba(255,255,255,.66);
      margin:8px 0;
      font-size:14px;
    }
    .footer-col a:hover{color:#fff;transform:translateX(3px)}
    .copyright{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin-top:38px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.58);
      font-size:13px;
    }
    .article-shell{
      max-width:860px;
      margin:0 auto;
      padding:34px;
      border-radius:28px;
      background:rgba(255,249,240,.88);
      border:1px solid var(--line);
    }
    .article-shell h2{font-size:30px}
    .article-shell h3{font-size:22px}
    .article-shell p{margin-bottom:20px}
    .article-tip{
      padding:18px 20px;
      border-left:4px solid var(--brand);
      border-radius:18px;
      background:rgba(231,91,60,.08);
      color:var(--muted);
    }
    @media (max-width:1180px){
      .nav-center{gap:2px}
      .nav-actions{flex-basis:360px}
      .nav-search{min-width:190px}
      .hero-metrics{grid-template-columns:repeat(2,1fr)}
      .steps{grid-template-columns:repeat(3,1fr)}
      .index-layout{grid-template-columns:1fr}
      .side-stack{position:static;grid-template-columns:repeat(3,1fr);display:grid}
    }
    @media (max-width:960px){
      .nav-center,.nav-actions{display:none}
      .mobile-toggle{display:block}
      .mobile-panel.is-open{
        display:grid;
        gap:10px;
      }
      .mobile-panel .nav-link{justify-content:flex-start}
      .mobile-panel .nav-search{min-width:0;width:100%;margin:6px 0}
      .hero-card{padding:30px;border-radius:32px}
      .toolbar-grid{grid-template-columns:1fr 1fr}
      .toolbar-grid .btn{width:100%}
      .reward-grid,.feedback-card{grid-template-columns:1fr}
      .side-stack{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .cta-content{flex-direction:column;align-items:flex-start}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width:768px){
      .container{width:min(calc(100% - 28px),var(--container))}
      .section{padding:66px 0}
      .section-tight{padding:48px 0}
      .hero-card{min-height:auto;padding:24px}
      .hero-panel{margin-top:24px}
      .hero-metrics{grid-template-columns:repeat(2,minmax(0,1fr));overflow-x:visible}
      .visual-row{grid-template-columns:70px 1fr;align-items:start}
      .visual-row .badge{grid-column:2}
      .section-head{flex-direction:column;align-items:flex-start}
      .toolbar-grid{grid-template-columns:1fr}
      .list-inner{grid-template-columns:1fr}
      .list-actions{flex-direction:row;min-width:0;flex-wrap:wrap}
      .list-actions .btn{flex:1 1 150px}
      .steps{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column;align-items:flex-start}
      .feedback-form{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .brand-text{font-size:15px;max-width:210px;white-space:normal;line-height:1.25}
      .brand-icon{width:38px;height:38px;border-radius:14px}
      .hero-actions,.cta-actions{width:100%}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .hero-metrics{grid-template-columns:1fr 1fr;gap:10px}
      .metric{padding:13px}
      .metric strong{font-size:24px}
      .filter-card,.progress-card,.reward-big,.reward-small,.feedback-card{padding:20px;border-radius:26px}
      .cta-band{padding:26px;border-radius:30px}
      .pagination{flex-wrap:wrap;justify-content:center}
      .side-link{font-size:14px}
    }

/* roulang page: category2 */
:root{
      --bg:#F7F1E8;
      --bg-soft:#F3E9DC;
      --surface:#FFF9F1;
      --surface-2:#FDF3E6;
      --dark:#171310;
      --text:#23201D;
      --muted:#70685F;
      --line:rgba(35,32,29,.10);
      --line-dark:rgba(255,255,255,.12);
      --primary:#E75B3C;
      --primary-2:#F0A35A;
      --accent:#61755A;
      --accent-soft:#E7ECDD;
      --radius-lg:32px;
      --radius-md:22px;
      --radius-sm:14px;
      --shadow:0 20px 55px rgba(35,32,29,.10);
      --shadow-strong:0 28px 70px rgba(23,19,16,.18);
      --grad:linear-gradient(135deg,#E75B3C 0%,#F0A35A 48%,#61755A 100%);
      --grad-soft:linear-gradient(135deg,rgba(231,91,60,.18),rgba(240,163,90,.14),rgba(97,117,90,.14));
      --container:1200px;
      --ease:all .24s 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 SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 3%,rgba(240,163,90,.22),transparent 34%),
        radial-gradient(circle at 94% 8%,rgba(97,117,90,.16),transparent 28%),
        linear-gradient(180deg,var(--bg),#fbf4eb 54%,var(--bg-soft));
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--primary)}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    input,select,textarea{outline:none}
    img,svg{max-width:100%}
    .container{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
    }
    .section{
      padding:88px 0;
      position:relative;
    }
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border:1px solid rgba(231,91,60,.18);
      border-radius:999px;
      color:var(--primary);
      background:rgba(255,249,241,.72);
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
      box-shadow:0 10px 30px rgba(35,32,29,.06);
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--grad);
      box-shadow:0 0 0 5px rgba(231,91,60,.12);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(32px,5vw,56px);
      line-height:1.14;
      font-weight:800;
      letter-spacing:-.045em;
      margin-bottom:20px;
    }
    h2{
      font-size:clamp(28px,3.4vw,38px);
      line-height:1.22;
      font-weight:800;
      letter-spacing:-.035em;
      margin-bottom:14px;
    }
    h3{
      font-size:22px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
    }
    .lead{
      font-size:18px;
      color:rgba(255,255,255,.76);
      max-width:760px;
    }
    .section-intro{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:32px;
    }
    .section-intro p{
      color:var(--muted);
      max-width:620px;
      margin-bottom:0;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(247,241,232,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(35,32,29,.08);
    }
    .nav-bar{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      flex:0 0 auto;
      color:var(--text);
      font-weight:800;
    }
    .brand:hover{color:var(--text);transform:translateY(-1px)}
    .brand-icon{
      position:relative;
      width:42px;
      height:42px;
      border-radius:15px;
      background:var(--dark);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 12px 28px rgba(23,19,16,.16);
      flex:0 0 auto;
    }
    .brand-icon::before{
      content:"";
      position:absolute;
      left:9px;
      top:11px;
      width:24px;
      height:17px;
      border:2px solid #F0A35A;
      border-radius:6px;
    }
    .brand-icon::after{
      content:"";
      position:absolute;
      right:8px;
      bottom:8px;
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:-15px -3px 0 var(--accent);
    }
    .brand-text{
      font-size:18px;
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .nav-center{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      padding:6px;
      border:1px solid rgba(35,32,29,.08);
      border-radius:999px;
      background:rgba(255,249,241,.56);
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:0 15px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(231,91,60,.08);
      color:var(--primary);
    }
    .nav-link.active{
      color:#fff;
      background:var(--dark);
      box-shadow:0 10px 22px rgba(23,19,16,.16);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 1 auto;
    }
    .nav-search{
      display:flex;
      align-items:center;
      gap:8px;
      min-width:230px;
      height:42px;
      padding:0 13px;
      border-radius:999px;
      border:1px solid rgba(35,32,29,.10);
      background:rgba(255,249,241,.76);
      color:var(--muted);
      transition:var(--ease);
    }
    .nav-search svg{
      width:18px;
      height:18px;
      flex:0 0 auto;
    }
    .nav-search input{
      width:100%;
      border:0;
      background:transparent;
      color:var(--text);
      box-shadow:none;
      margin:0;
      padding:0;
      height:auto;
      font-size:14px;
    }
    .nav-search:focus-within{
      border-color:rgba(231,91,60,.48);
      box-shadow:0 0 0 4px rgba(231,91,60,.10);
      background:#fffaf2;
    }
    .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:800;
      font-size:14px;
      line-height:1;
      white-space:nowrap;
      transition:var(--ease);
    }
    .btn:hover,.btn:focus{
      transform:translateY(-2px);
      color:inherit;
    }
    .btn-primary{
      color:#fff;
      background:var(--grad);
      box-shadow:0 14px 30px rgba(231,91,60,.24);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      box-shadow:0 18px 38px rgba(231,91,60,.31);
      filter:saturate(1.05) brightness(1.02);
    }
    .btn-secondary{
      color:var(--text);
      background:rgba(255,249,241,.74);
      border-color:rgba(35,32,29,.10);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      color:var(--primary);
      border-color:rgba(231,91,60,.26);
      box-shadow:0 12px 28px rgba(35,32,29,.08);
    }
    .btn-dark{
      background:var(--dark);
      color:#fff;
      box-shadow:0 14px 30px rgba(23,19,16,.18);
    }
    .btn-dark:hover,.btn-dark:focus{color:#fff}
    .mobile-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid rgba(35,32,29,.10);
      border-radius:16px;
      background:rgba(255,249,241,.78);
      position:relative;
    }
    .mobile-toggle span,.mobile-toggle span::before,.mobile-toggle span::after{
      position:absolute;
      left:12px;
      width:18px;
      height:2px;
      border-radius:2px;
      background:var(--text);
      content:"";
      transition:var(--ease);
    }
    .mobile-toggle span{top:21px}
    .mobile-toggle span::before{top:-7px;left:0}
    .mobile-toggle span::after{top:7px;left:0}
    .mobile-toggle.is-open span{background:transparent}
    .mobile-toggle.is-open span::before{top:0;transform:rotate(45deg)}
    .mobile-toggle.is-open span::after{top:0;transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding:0 0 18px;
      gap:10px;
    }
    .hero-category{
      padding:52px 0 42px;
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      border-radius:38px;
      background:
        radial-gradient(circle at 18% 12%,rgba(231,91,60,.28),transparent 30%),
        radial-gradient(circle at 92% 18%,rgba(240,163,90,.18),transparent 24%),
        linear-gradient(135deg,#171310 0%,#241c17 58%,#352820 100%);
      color:#fff;
      box-shadow:var(--shadow-strong);
      border:1px solid rgba(255,255,255,.10);
    }
    .hero-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(180deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:54px 54px;
      mask-image:linear-gradient(90deg,rgba(0,0,0,.85),transparent 88%);
      opacity:.45;
    }
    .hero-card::after{
      content:"";
      position:absolute;
      right:-80px;
      bottom:-130px;
      width:360px;
      height:360px;
      border-radius:50%;
      background:rgba(231,91,60,.24);
      filter:blur(15px);
    }
    .hero-inner{
      position:relative;
      z-index:1;
      padding:46px;
      display:grid;
      grid-template-columns:minmax(0,1fr) 340px;
      gap:34px;
      align-items:center;
    }
    .breadcrumb-line{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin:18px 0 0;
      color:rgba(255,255,255,.64);
      font-size:14px;
      font-weight:700;
    }
    .breadcrumb-line a{color:rgba(255,255,255,.78)}
    .breadcrumb-line a:hover{color:#fff}
    .breadcrumb-line span{
      color:rgba(255,255,255,.38);
    }
    .hero-actions{
      margin-top:26px;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .vertical-panel{
      width:100%;
      max-width:328px;
      margin-left:auto;
      border-radius:34px;
      padding:14px;
      background:rgba(255,249,241,.10);
      border:1px solid rgba(255,255,255,.14);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.04),0 22px 60px rgba(0,0,0,.28);
    }
    .vertical-screen{
      min-height:520px;
      border-radius:28px;
      padding:18px;
      background:
        radial-gradient(circle at 50% 0%,rgba(240,163,90,.28),transparent 35%),
        linear-gradient(180deg,rgba(255,249,241,.15),rgba(255,249,241,.06));
      border:1px solid rgba(255,255,255,.13);
      display:flex;
      flex-direction:column;
      gap:14px;
      justify-content:space-between;
    }
    .status-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:rgba(255,255,255,.72);
      font-size:13px;
      font-weight:800;
    }
    .pill-live{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(97,117,90,.26);
      color:#fff;
      border:1px solid rgba(255,255,255,.12);
    }
    .pill-live::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:#8FB983;
      box-shadow:0 0 0 5px rgba(143,185,131,.14);
    }
    .screen-title{
      padding:18px;
      border-radius:24px;
      background:rgba(23,19,16,.38);
      border:1px solid rgba(255,255,255,.12);
    }
    .screen-title strong{
      display:block;
      font-size:25px;
      line-height:1.22;
      letter-spacing:-.03em;
      margin-bottom:8px;
    }
    .screen-title small{
      color:rgba(255,255,255,.68);
      line-height:1.6;
    }
    .path-list{
      display:grid;
      gap:10px;
    }
    .path-item{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px;
      border-radius:18px;
      background:rgba(255,249,241,.11);
      border:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.78);
      font-size:14px;
      font-weight:700;
    }
    .path-item b{
      display:inline-flex;
      width:28px;
      height:28px;
      align-items:center;
      justify-content:center;
      border-radius:10px;
      background:var(--grad);
      color:#fff;
      flex:0 0 auto;
    }
    .mini-search{
      padding:12px;
      border-radius:20px;
      background:#fff9f1;
      color:var(--muted);
      display:flex;
      align-items:center;
      gap:10px;
      font-size:14px;
      font-weight:700;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .data-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      color:var(--text);
      background:rgba(255,249,241,.84);
      border:1px solid rgba(35,32,29,.10);
      box-shadow:0 10px 26px rgba(35,32,29,.06);
    }
    .data-badge.dark{
      color:#fff;
      background:rgba(255,255,255,.10);
      border-color:rgba(255,255,255,.14);
    }
    .data-badge .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
    }
    .bento-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      grid-auto-rows:minmax(172px,auto);
      gap:18px;
    }
    .bento-card{
      position:relative;
      overflow:hidden;
      padding:26px;
      border-radius:var(--radius-lg);
      background:rgba(255,249,241,.78);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      transition:var(--ease);
    }
    .bento-card:hover{
      transform:translateY(-4px);
      box-shadow:0 26px 65px rgba(35,32,29,.13);
      border-color:rgba(231,91,60,.20);
    }
    .bento-card.wide{
      grid-row:span 2;
      background:
        radial-gradient(circle at 88% 12%,rgba(231,91,60,.18),transparent 30%),
        linear-gradient(135deg,#fff9f1,#f6e9da);
    }
    .bento-card.dark{
      background:linear-gradient(135deg,#1d1713,#2a211b);
      color:#fff;
      border-color:rgba(255,255,255,.10);
    }
    .bento-card.accent{
      background:linear-gradient(135deg,rgba(97,117,90,.14),rgba(255,249,241,.88));
    }
    .icon-box{
      width:48px;
      height:48px;
      border-radius:18px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--grad-soft);
      color:var(--primary);
      margin-bottom:18px;
      border:1px solid rgba(231,91,60,.14);
    }
    .icon-box svg{width:24px;height:24px}
    .bento-card.dark .icon-box{
      background:rgba(255,255,255,.10);
      color:#F0A35A;
      border-color:rgba(255,255,255,.12);
    }
    .bento-card p{
      color:var(--muted);
      margin-bottom:16px;
    }
    .bento-card.dark p{color:rgba(255,255,255,.70)}
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(97,117,90,.10);
      color:#506348;
      border:1px solid rgba(97,117,90,.16);
      font-size:12px;
      font-weight:800;
    }
    .tag.orange{
      color:var(--primary);
      background:rgba(231,91,60,.10);
      border-color:rgba(231,91,60,.16);
    }
    .stat-strip{
      margin-top:22px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .stat-tile{
      padding:16px;
      border-radius:22px;
      background:rgba(255,255,255,.58);
      border:1px solid rgba(35,32,29,.08);
    }
    .stat-tile strong{
      display:block;
      color:var(--primary);
      font-size:30px;
      line-height:1;
      letter-spacing:-.04em;
      margin-bottom:7px;
    }
    .stat-tile span{
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }
    .manual-wrap{
      border-radius:var(--radius-lg);
      background:
        linear-gradient(90deg,rgba(255,249,241,.86),rgba(243,233,220,.72)),
        radial-gradient(circle at 10% 15%,rgba(240,163,90,.16),transparent 28%);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:30px;
    }
    .manual-grid{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:28px;
      align-items:start;
    }
    .manual-note{
      position:sticky;
      top:100px;
      padding:26px;
      border-radius:28px;
      background:var(--dark);
      color:#fff;
      overflow:hidden;
    }
    .manual-note::after{
      content:"";
      position:absolute;
      right:-45px;
      bottom:-60px;
      width:190px;
      height:190px;
      border-radius:50%;
      background:rgba(231,91,60,.26);
      filter:blur(4px);
    }
    .manual-note p{
      color:rgba(255,255,255,.70);
      position:relative;
      z-index:1;
    }
    .manual-note h2,.manual-note .eyebrow{position:relative;z-index:1}
    .step-list{
      position:relative;
      display:grid;
      gap:14px;
    }
    .step-list::before{
      content:"";
      position:absolute;
      left:26px;
      top:18px;
      bottom:18px;
      width:2px;
      background:linear-gradient(180deg,var(--primary),var(--primary-2),var(--accent));
      opacity:.45;
    }
    .step-card{
      position:relative;
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      padding:18px;
      border-radius:24px;
      background:rgba(255,249,241,.82);
      border:1px solid rgba(35,32,29,.08);
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateX(4px);
      border-color:rgba(231,91,60,.20);
      box-shadow:0 18px 42px rgba(35,32,29,.08);
    }
    .step-num{
      position:relative;
      z-index:1;
      width:54px;
      height:54px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--grad);
      color:#fff;
      font-size:18px;
      font-weight:900;
      box-shadow:0 12px 24px rgba(231,91,60,.20);
    }
    .step-card h3{
      margin-bottom:4px;
      font-size:20px;
    }
    .step-card p{
      color:var(--muted);
      margin-bottom:0;
      font-size:15px;
    }
    .compare-card{
      border-radius:var(--radius-lg);
      background:rgba(255,249,241,.82);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:26px;
      overflow:hidden;
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0 12px;
      margin:0;
    }
    .compare-table thead th{
      color:var(--muted);
      font-size:13px;
      padding:0 16px 8px;
      border:0;
      font-weight:900;
    }
    .compare-table tbody tr{
      background:#fffaf2;
      box-shadow:0 12px 30px rgba(35,32,29,.05);
    }
    .compare-table td{
      border:0;
      padding:18px 16px;
      color:var(--muted);
      vertical-align:middle;
    }
    .compare-table td:first-child{
      border-radius:20px 0 0 20px;
      color:var(--text);
      font-weight:900;
    }
    .compare-table td:last-child{border-radius:0 20px 20px 0}
    .progress-area{
      display:grid;
      grid-template-columns:1fr 360px;
      gap:20px;
      align-items:stretch;
    }
    .progress-track{
      padding:26px;
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,#fff9f1,#f7eadb);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .progress-nodes{
      display:grid;
      gap:12px;
      margin-top:22px;
    }
    .progress-node{
      display:flex;
      align-items:center;
      gap:14px;
      padding:14px;
      border-radius:20px;
      background:rgba(255,255,255,.58);
      border:1px solid rgba(35,32,29,.07);
    }
    .node-mark{
      width:38px;
      height:38px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:var(--accent);
      font-weight:900;
      flex:0 0 auto;
    }
    .progress-node:nth-child(1) .node-mark,
    .progress-node:nth-child(2) .node-mark{background:var(--primary)}
    .progress-node strong{display:block;line-height:1.25}
    .progress-node span{display:block;color:var(--muted);font-size:14px;margin-top:2px}
    .progress-summary{
      padding:26px;
      border-radius:var(--radius-lg);
      color:#fff;
      background:
        radial-gradient(circle at 80% 10%,rgba(240,163,90,.25),transparent 34%),
        linear-gradient(135deg,#171310,#28201a);
      box-shadow:var(--shadow-strong);
      border:1px solid rgba(255,255,255,.10);
    }
    .summary-number{
      display:flex;
      align-items:flex-end;
      gap:8px;
      margin:24px 0 8px;
    }
    .summary-number strong{
      font-size:62px;
      line-height:.9;
      letter-spacing:-.06em;
    }
    .summary-number span{
      color:rgba(255,255,255,.62);
      font-weight:800;
    }
    .check-list{
      display:grid;
      gap:10px;
      margin-top:20px;
    }
    .check-item{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(255,255,255,.72);
      font-size:14px;
    }
    .check-item::before{
      content:"✓";
      width:22px;
      height:22px;
      border-radius:50%;
      background:rgba(97,117,90,.62);
      color:#fff;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      font-weight:900;
      font-size:12px;
    }
    .cta-band{
      position:relative;
      overflow:hidden;
      border-radius:38px;
      background:var(--grad);
      color:#fff;
      padding:42px;
      box-shadow:0 28px 70px rgba(231,91,60,.22);
    }
    .cta-band::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 15% 20%,rgba(255,255,255,.26),transparent 25%),
        radial-gradient(circle at 88% 80%,rgba(23,19,16,.20),transparent 30%);
    }
    .cta-content{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-content h2{margin-bottom:10px}
    .cta-content p{
      color:rgba(255,255,255,.82);
      max-width:720px;
      margin-bottom:0;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .faq-shell{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:28px;
      align-items:start;
    }
    .faq-side{
      padding:26px;
      border-radius:var(--radius-lg);
      background:rgba(255,249,241,.72);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .faq-side p{color:var(--muted)}
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:22px;
      overflow:hidden;
      background:rgba(255,249,241,.86);
      border:1px solid rgba(35,32,29,.08);
      box-shadow:0 12px 30px rgba(35,32,29,.05);
    }
    .accordion-title{
      border:0;
      color:var(--text);
      font-weight:900;
      font-size:16px;
      padding:20px 54px 20px 20px;
      line-height:1.45;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      color:var(--primary);
      background:rgba(231,91,60,.05);
    }
    .accordion-title::before{
      right:22px;
      color:var(--primary);
      font-size:22px;
      margin-top:-12px;
    }
    .accordion-content{
      border:0;
      background:rgba(255,249,241,.92);
      color:var(--muted);
      padding:0 20px 20px;
      font-size:15px;
    }
    .feedback-card{
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,#fff9f1,#f4e6d6);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:28px;
    }
    .feedback-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .field{
      display:grid;
      gap:8px;
    }
    .field.full{grid-column:1/-1}
    .field label{
      color:var(--text);
      font-weight:900;
      font-size:14px;
    }
    .field input,.field textarea{
      width:100%;
      border:1px solid rgba(35,32,29,.10);
      background:#fffaf2;
      border-radius:18px;
      padding:13px 15px;
      color:var(--text);
      margin:0;
      box-shadow:none;
      transition:var(--ease);
    }
    .field textarea{
      min-height:124px;
      resize:vertical;
    }
    .field input:focus,.field textarea:focus{
      border-color:rgba(231,91,60,.48);
      box-shadow:0 0 0 4px rgba(231,91,60,.10);
      background:#fff;
    }
    .form-note{
      color:var(--muted);
      font-size:14px;
      margin:12px 0 0;
    }
    .site-footer{
      background:var(--dark);
      color:#fff;
      padding:58px 0 28px;
      margin-top:64px;
      position:relative;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:3px;
      background:var(--grad);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr .75fr .95fr;
      gap:28px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:18px;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-desc{
      color:rgba(255,255,255,.62);
      max-width:330px;
      margin-bottom:0;
    }
    .footer-col h3{
      font-size:15px;
      color:#fff;
      margin-bottom:14px;
      letter-spacing:.02em;
    }
    .footer-col a,.footer-col span{
      display:block;
      color:rgba(255,255,255,.62);
      margin:8px 0;
      font-size:14px;
    }
    .footer-col a:hover{color:#F0A35A;transform:translateX(3px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.48);
      font-size:13px;
      padding-top:22px;
    }
    .article-reserve{
      width:min(100%,860px);
      margin:0 auto;
      padding:28px;
      border-radius:28px;
      background:rgba(255,249,241,.75);
      border:1px solid var(--line);
    }
    .article-reserve blockquote{
      margin:18px 0;
      padding:16px 18px;
      border-left:4px solid var(--primary);
      background:rgba(231,91,60,.08);
      border-radius:0 18px 18px 0;
      color:var(--muted);
    }
    @media (max-width:1100px){
      .nav-search{min-width:190px}
      .nav-actions .btn-secondary{display:none}
      .hero-inner{grid-template-columns:1fr 300px;padding:38px}
      .vertical-screen{min-height:470px}
      .bento-grid{grid-template-columns:1fr 1fr}
      .bento-card.wide{grid-row:auto;grid-column:1/-1}
      .progress-area{grid-template-columns:1fr}
      .progress-summary{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    }
    @media (max-width:960px){
      .nav-center,.nav-actions{display:none}
      .mobile-toggle{display:inline-flex}
      .mobile-panel.is-open{
        display:grid;
      }
      .mobile-panel .nav-link{
        justify-content:flex-start;
        background:rgba(255,249,241,.62);
        border:1px solid rgba(35,32,29,.08);
      }
      .mobile-panel .nav-link.active{
        background:var(--dark);
        color:#fff;
      }
      .mobile-panel .nav-search{
        width:100%;
        min-width:0;
      }
      .hero-inner{
        grid-template-columns:1fr;
      }
      .vertical-panel{
        margin:0;
        max-width:none;
      }
      .vertical-screen{
        min-height:auto;
      }
      .manual-grid,.faq-shell{
        grid-template-columns:1fr;
      }
      .manual-note{
        position:relative;
        top:auto;
      }
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
    }
    @media (max-width:768px){
      .container{width:min(calc(100% - 28px),var(--container))}
      .section{padding:64px 0}
      .section-tight{padding:46px 0}
      .hero-category{padding:28px 0 28px}
      .hero-card{border-radius:28px}
      .hero-inner{padding:28px}
      .lead{font-size:16px}
      .section-intro{
        display:block;
        margin-bottom:24px;
      }
      .section-intro p{margin-top:10px}
      .bento-grid{
        grid-template-columns:1fr;
      }
      .stat-strip{
        grid-template-columns:repeat(3,minmax(130px,1fr));
        overflow-x:auto;
        padding-bottom:8px;
      }
      .manual-wrap,.compare-card,.feedback-card{padding:20px;border-radius:26px}
      .compare-table thead{display:none}
      .compare-table,.compare-table tbody,.compare-table tr,.compare-table td{display:block;width:100%}
      .compare-table tbody tr{
        border-radius:22px;
        overflow:hidden;
        margin-bottom:14px;
      }
      .compare-table td{
        padding:12px 16px;
      }
      .compare-table td:first-child,.compare-table td:last-child{
        border-radius:0;
      }
      .compare-table td::before{
        content:attr(data-label);
        display:block;
        color:var(--primary);
        font-weight:900;
        font-size:12px;
        margin-bottom:4px;
      }
      .progress-summary{grid-template-columns:1fr}
      .cta-content{
        grid-template-columns:1fr;
      }
      .cta-actions{
        justify-content:flex-start;
      }
      .feedback-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .brand-text{font-size:16px;max-width:220px;white-space:normal;line-height:1.2}
      .brand-icon{width:38px;height:38px;border-radius:14px}
      .nav-bar{min-height:68px}
      .hero-inner{padding:22px}
      .hero-actions .btn,.cta-actions .btn{
        width:100%;
      }
      .screen-title strong{font-size:22px}
      .bento-card{padding:22px;border-radius:26px}
      .step-card{
        grid-template-columns:46px 1fr;
        padding:15px;
      }
      .step-num{width:46px;height:46px;border-radius:16px}
      .step-list::before{left:22px}
      .cta-band{padding:26px;border-radius:28px}
      .copyright{display:block}
      .copyright span{display:block;margin:8px 0}
    }
