/* roulang page: index */
:root{
      --primary:#6f244f;
      --primary-strong:#4e1839;
      --primary-soft:#f4ddea;
      --accent:#ffcf70;
      --accent-soft:#fff3cf;
      --coral:#e66b65;
      --paper:#fffaf1;
      --paper-2:#fff6e6;
      --paper-3:#fbefe6;
      --ink:#281821;
      --muted:#725f68;
      --line:rgba(83,38,61,.14);
      --line-strong:rgba(111,36,79,.28);
      --white:#ffffff;
      --shadow:0 16px 48px rgba(61,27,45,.10);
      --shadow-hover:0 22px 58px rgba(61,27,45,.16);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:32px;
      --container:1200px;
      --transition:180ms ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
      line-height:1.75;
      background:
        radial-gradient(circle at 8% 6%, rgba(255,207,112,.25), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(111,36,79,.12), transparent 30%),
        linear-gradient(180deg,var(--paper),#fffdf8 46%,var(--paper-2));
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.35;
      background-image:
        linear-gradient(rgba(111,36,79,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111,36,79,.035) 1px, transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(180deg,#000,transparent 80%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:color var(--transition),background var(--transition),border-color var(--transition),transform var(--transition),box-shadow var(--transition)}
    a:hover,a:focus{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button,.button{transition:transform var(--transition),box-shadow var(--transition),background var(--transition),border-color var(--transition),color var(--transition)}
    .page-wrap{min-height:100vh}
    .site-container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .section{padding:88px 0}
    .section-tight{padding:64px 0}
    .section-head{margin-bottom:34px}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.72);
      color:var(--primary);
      font-size:13px;
      font-weight:800;
      box-shadow:0 8px 20px rgba(111,36,79,.06);
    }
    .section h2{
      margin:14px 0 10px;
      font-size:clamp(26px,3vw,36px);
      line-height:1.22;
      letter-spacing:-.04em;
      color:var(--ink);
    }
    .section-desc{
      max-width:760px;
      margin:0;
      color:var(--muted);
      font-size:17px;
    }
    .highlight{
      background:linear-gradient(transparent 58%,rgba(255,207,112,.65) 58%);
      padding:0 4px;
      border-radius:6px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      padding:12px 0;
      background:rgba(255,250,241,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(111,36,79,.10);
      box-shadow:0 8px 28px rgba(61,27,45,.05);
    }
    .nav-shell{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      min-height:64px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      font-weight:900;
      color:var(--ink);
      letter-spacing:-.03em;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      background:
        linear-gradient(135deg,var(--primary),var(--coral)),
        radial-gradient(circle at 30% 20%,rgba(255,255,255,.6),transparent 35%);
      box-shadow:0 12px 24px rgba(111,36,79,.20);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark:after{
      content:"入";
      position:absolute;
      inset:0;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      font-size:20px;
    }
    .brand-text{font-size:18px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      margin:0;
      list-style:none;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:9px 14px;
      border-radius:999px;
      color:#4d3944;
      font-weight:800;
      font-size:14px;
    }
    .nav-links a:hover,.nav-links a.active{
      color:var(--primary);
      background:rgba(111,36,79,.08);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border:1px solid rgba(20,120,76,.16);
      border-radius:999px;
      color:#237a51;
      background:#f0fff7;
      font-size:13px;
      font-weight:900;
      white-space:nowrap;
    }
    .status-dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:#2fbd75;
      box-shadow:0 0 0 5px rgba(47,189,117,.13);
    }
    .btn,.button.btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:13px 20px;
      margin:0;
      border-radius:999px;
      font-weight:900;
      line-height:1.1;
      border:1px solid transparent;
      cursor:pointer;
      text-decoration:none;
    }
    .btn-primary,.button.btn-primary{
      background:var(--primary);
      color:#fff;
      box-shadow:0 14px 28px rgba(111,36,79,.22);
    }
    .btn-primary:hover,.btn-primary:focus{
      background:var(--primary-strong);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(111,36,79,.28);
    }
    .btn-secondary{
      background:rgba(255,255,255,.78);
      color:var(--primary);
      border-color:var(--line-strong);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      background:var(--primary-soft);
      color:var(--primary-strong);
      transform:translateY(-2px);
    }
    .menu-toggle{
      display:none;
      width:46px;
      height:46px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff8ed;
      color:var(--primary);
      font-weight:900;
    }
    .off-canvas{
      background:var(--paper);
      padding:22px;
    }
    .mobile-menu-title{
      font-weight:900;
      color:var(--primary);
      margin-bottom:16px;
    }
    .mobile-nav a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:14px 12px;
      border-radius:14px;
      margin-bottom:8px;
      font-weight:850;
      background:rgba(255,255,255,.64);
      border:1px solid var(--line);
    }
    .mobile-nav a.active{background:var(--primary);color:#fff}
    .hero{
      padding:84px 0 64px;
      position:relative;
      overflow:hidden;
    }
    .hero:after{
      content:"";
      position:absolute;
      right:-110px;
      top:50px;
      width:360px;
      height:360px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(230,107,101,.22),transparent 66%);
      z-index:-1;
    }
    .hero-board{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(255,255,255,.90),rgba(255,246,230,.86)),
        radial-gradient(circle at 70% 0,rgba(111,36,79,.12),transparent 42%);
      box-shadow:var(--shadow);
      padding:34px;
      position:relative;
      overflow:hidden;
    }
    .hero-board:before{
      content:"";
      position:absolute;
      inset:16px;
      border:1px dashed rgba(111,36,79,.16);
      border-radius:24px;
      pointer-events:none;
    }
    .hero-main{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.02fr .98fr;
      gap:30px;
      align-items:stretch;
    }
    .hero-copy{
      padding:22px 6px 16px 4px;
    }
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--primary);
      font-size:13px;
      font-weight:900;
      box-shadow:0 8px 20px rgba(111,36,79,.06);
    }
    .badge.warning{background:var(--accent-soft);color:#775018;border-color:rgba(255,207,112,.55)}
    h1{
      margin:0 0 20px;
      font-size:clamp(31px,5vw,54px);
      line-height:1.16;
      letter-spacing:-.06em;
      color:var(--ink);
    }
    .hero-lead{
      max-width:760px;
      margin:0 0 24px;
      color:#58444f;
      font-size:18px;
      line-height:1.85;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:24px 0 20px;
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:24px;
      max-width:630px;
    }
    .metric{
      padding:14px 14px 13px;
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(255,255,255,.72);
    }
    .metric strong{
      display:block;
      color:var(--primary);
      font-size:22px;
      line-height:1.1;
      margin-bottom:5px;
    }
    .metric span{
      color:var(--muted);
      font-size:13px;
      font-weight:750;
    }
    .eligibility-card{
      border-radius:26px;
      background:#fffdf7;
      border:1px solid rgba(111,36,79,.13);
      box-shadow:0 12px 36px rgba(61,27,45,.08);
      padding:22px;
      position:relative;
      min-height:100%;
    }
    .eligibility-card:before{
      content:"";
      position:absolute;
      left:28px;
      top:-8px;
      width:90px;
      height:20px;
      border-radius:5px;
      background:rgba(255,207,112,.72);
      transform:rotate(-2deg);
      box-shadow:0 6px 12px rgba(111,36,79,.08);
    }
    .mini-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin:10px 0 18px;
      font-weight:950;
      color:var(--primary-strong);
    }
    .mini-title small{
      padding:5px 9px;
      border-radius:999px;
      background:#effcf5;
      color:#1f7b50;
      font-weight:900;
    }
    .check-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .check-list li{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:11px;
      align-items:start;
      padding:13px;
      border-radius:17px;
      background:linear-gradient(180deg,#fff,#fff8ec);
      border:1px solid var(--line);
    }
    .check-icon{
      width:24px;
      height:24px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--primary);
      color:#fff;
      font-weight:900;
      font-size:13px;
      margin-top:2px;
    }
    .check-list b{display:block;margin-bottom:2px;color:var(--ink)}
    .check-list span{display:block;color:var(--muted);font-size:14px;line-height:1.6}
    .progress-note{
      margin-top:16px;
      padding:15px;
      border-radius:18px;
      background:var(--primary-soft);
      color:var(--primary-strong);
      font-size:14px;
      font-weight:800;
    }
    .feature-strip{
      margin-top:-22px;
      position:relative;
      z-index:3;
    }
    .feature-strip-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:26px;
      box-shadow:var(--shadow);
      padding:18px;
    }
    .feature-tile{
      padding:18px;
      border-radius:20px;
      min-height:100%;
      background:linear-gradient(180deg,#fff,var(--paper-2));
      border:1px solid var(--line);
      position:relative;
      overflow:hidden;
    }
    .feature-tile:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:var(--line-strong);
    }
    .feature-num{
      display:inline-grid;
      place-items:center;
      width:34px;
      height:34px;
      border-radius:12px;
      background:var(--primary);
      color:#fff;
      font-weight:950;
      margin-bottom:14px;
    }
    .feature-tile h3{font-size:20px;margin:0 0 8px;line-height:1.25}
    .feature-tile p{margin:0;color:var(--muted);font-size:15px}
    .stage-panel{
      display:grid;
      grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);
      gap:28px;
      align-items:start;
    }
    .orbit{
      border-radius:var(--radius-lg);
      overflow:hidden;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      background:#fff;
    }
    .orbit-container{height:auto!important}
    .orbit-slide{padding:0}
    .screen-card{
      min-height:440px;
      padding:26px;
      background:
        linear-gradient(140deg,#fffdf7,#fff1df 55%,#f6e1ee),
        radial-gradient(circle at 18% 10%,rgba(255,207,112,.35),transparent 34%);
    }
    .screen-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:20px;
    }
    .screen-label{
      display:inline-flex;
      align-items:center;
      padding:7px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--primary);
      font-weight:900;
      font-size:13px;
    }
    .window-dots{display:flex;gap:7px}
    .window-dots i{width:10px;height:10px;border-radius:50%;background:var(--coral);display:block}
    .window-dots i:nth-child(2){background:var(--accent)}
    .window-dots i:nth-child(3){background:#4dbb7d}
    .wireframe{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
      margin-top:14px;
    }
    .wire-large{
      grid-column:1/-1;
      height:120px;
      border-radius:22px;
      background:linear-gradient(120deg,rgba(111,36,79,.16),rgba(255,207,112,.35));
      border:1px solid rgba(111,36,79,.10);
      position:relative;
      overflow:hidden;
    }
    .wire-large:after{
      content:"";
      position:absolute;
      left:24px;
      right:24px;
      bottom:26px;
      height:12px;
      border-radius:20px;
      background:rgba(255,255,255,.75);
      box-shadow:0 -28px 0 rgba(255,255,255,.55);
    }
    .wire-small{
      min-height:92px;
      border-radius:20px;
      background:rgba(255,255,255,.72);
      border:1px solid var(--line);
      padding:16px;
    }
    .wire-line{
      height:10px;
      border-radius:999px;
      background:rgba(111,36,79,.16);
      margin-bottom:10px;
    }
    .wire-line.short{width:62%}
    .screen-card h3{
      margin:20px 0 8px;
      font-size:24px;
      line-height:1.25;
    }
    .screen-card p{margin:0;color:var(--muted);max-width:620px}
    .orbit-previous,.orbit-next{
      width:42px;
      height:42px;
      border-radius:50%;
      background:rgba(111,36,79,.88)!important;
      display:grid;
      place-items:center;
    }
    .orbit-bullets button{
      width:10px;
      height:10px;
      background:rgba(111,36,79,.22);
    }
    .orbit-bullets button.is-active{background:var(--primary)}
    .note-sidebar{
      padding:22px;
      border-radius:26px;
      background:#fffef8;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .note-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .note-list li{
      padding:14px 14px 14px 46px;
      border-radius:18px;
      background:var(--paper-2);
      border:1px solid rgba(111,36,79,.10);
      position:relative;
      color:var(--muted);
      font-size:15px;
    }
    .note-list li:before{
      content:attr(data-step);
      position:absolute;
      left:13px;
      top:13px;
      width:24px;
      height:24px;
      border-radius:8px;
      display:grid;
      place-items:center;
      background:var(--accent);
      color:#5a3611;
      font-weight:950;
      font-size:12px;
    }
    .requirements{
      background:linear-gradient(180deg,rgba(255,255,255,.42),rgba(255,246,230,.68));
      border-top:1px solid rgba(111,36,79,.08);
      border-bottom:1px solid rgba(111,36,79,.08);
    }
    .require-layout{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:24px;
      align-items:stretch;
    }
    .param-card,.stack-card{
      background:#fffdf7;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:24px;
    }
    .param-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0 10px;
      margin-top:18px;
    }
    .param-table th,.param-table td{
      padding:15px 16px;
      text-align:left;
      background:#fff;
      border-top:1px solid rgba(111,36,79,.10);
      border-bottom:1px solid rgba(111,36,79,.10);
      color:var(--muted);
      vertical-align:top;
    }
    .param-table th{
      width:34%;
      color:var(--primary-strong);
      font-weight:950;
      border-left:1px solid rgba(111,36,79,.10);
      border-radius:16px 0 0 16px;
    }
    .param-table td{
      border-right:1px solid rgba(111,36,79,.10);
      border-radius:0 16px 16px 0;
    }
    .stack-list{
      display:grid;
      gap:14px;
      margin-top:16px;
    }
    .stack-item{
      padding:16px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
    }
    .stack-item b{display:block;color:var(--ink);margin-bottom:4px}
    .stack-item span{display:block;color:var(--muted);font-size:14px}
    .reviews-wall{
      columns:3 260px;
      column-gap:18px;
    }
    .review-card{
      display:inline-block;
      width:100%;
      margin:0 0 18px;
      padding:20px;
      break-inside:avoid;
      border-radius:22px;
      background:#fffef8;
      border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(61,27,45,.08);
      position:relative;
    }
    .review-card:nth-child(2n){background:#fff6e7;transform:rotate(-.6deg)}
    .review-card:nth-child(3n){background:#fbedf4;transform:rotate(.5deg)}
    .review-card:before{
      content:"";
      position:absolute;
      right:22px;
      top:-8px;
      width:54px;
      height:18px;
      border-radius:4px;
      background:rgba(255,207,112,.58);
      transform:rotate(4deg);
    }
    .review-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .review-name{font-weight:950;color:var(--primary-strong)}
    .review-tag{
      padding:5px 9px;
      border-radius:999px;
      background:#fff;
      color:var(--primary);
      border:1px solid var(--line);
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .review-card p{margin:0;color:#5b4650;font-size:15px}
    .stars{color:#b86c10;font-weight:900;margin-top:12px;font-size:13px}
    .download{
      color:#fff;
    }
    .download-panel{
      border-radius:34px;
      padding:34px;
      background:
        radial-gradient(circle at 85% 15%,rgba(255,207,112,.28),transparent 30%),
        linear-gradient(135deg,var(--primary-strong),var(--primary));
      box-shadow:0 24px 70px rgba(78,24,57,.25);
      position:relative;
      overflow:hidden;
    }
    .download-panel:before{
      content:"";
      position:absolute;
      left:-80px;
      bottom:-120px;
      width:300px;
      height:300px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
    }
    .download .eyebrow{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.18)}
    .download h2{color:#fff}
    .download .section-desc{color:rgba(255,255,255,.78)}
    .download-grid{
      margin-top:30px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      position:relative;
      z-index:1;
    }
    .download-card{
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height:180px;
      padding:20px;
      border-radius:24px;
      background:#fffdf7;
      color:var(--ink);
      border:1px solid rgba(255,255,255,.28);
    }
    .download-card:hover{
      transform:translateY(-4px);
      box-shadow:0 18px 34px rgba(0,0,0,.18);
      color:var(--ink);
    }
    .download-card b{font-size:18px;line-height:1.2}
    .download-card span{color:var(--muted);font-size:14px;line-height:1.6;flex:1}
    .download-card em{
      font-style:normal;
      color:var(--primary);
      font-weight:950;
    }
    .confirm-list{
      position:relative;
      z-index:1;
      margin-top:22px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .confirm-list span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 12px;
      border-radius:999px;
      color:#fff;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      font-size:13px;
      font-weight:850;
    }
    .info-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 360px;
      gap:24px;
      align-items:start;
    }
    .news-list{
      background:#fffdf7;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .news-item{
      display:grid;
      grid-template-columns:104px 1fr auto;
      gap:16px;
      align-items:center;
      padding:16px;
      border-radius:18px;
      border:1px solid transparent;
    }
    .news-item + .news-item{border-top:1px dashed rgba(111,36,79,.16)}
    .news-item:hover{
      background:#fff6e8;
      border-color:var(--line);
      transform:translateX(3px);
    }
    .news-date{
      color:var(--primary);
      font-weight:950;
      font-size:13px;
    }
    .news-title{
      font-weight:900;
      color:var(--ink);
      line-height:1.35;
    }
    .news-summary{
      color:var(--muted);
      font-size:14px;
      margin-top:4px;
    }
    .news-action{
      color:var(--primary);
      font-weight:950;
      white-space:nowrap;
    }
    .timeline-card{
      background:#fff6e7;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:22px;
      position:sticky;
      top:104px;
    }
    .timeline{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      border-left:2px dashed rgba(111,36,79,.20);
    }
    .timeline li{
      position:relative;
      padding:0 0 18px 18px;
      color:var(--muted);
      font-size:14px;
    }
    .timeline li:before{
      content:"";
      position:absolute;
      left:-7px;
      top:6px;
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(111,36,79,.12);
    }
    .timeline time{
      display:block;
      color:var(--primary-strong);
      font-weight:950;
      margin-bottom:4px;
    }
    .form-zone{
      background:linear-gradient(180deg,rgba(255,246,230,.72),rgba(255,250,241,.8));
    }
    .form-board{
      display:grid;
      grid-template-columns:.88fr 1.12fr;
      gap:24px;
      align-items:stretch;
      padding:26px;
      border-radius:30px;
      background:#fffdf7;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .form-side{
      border-radius:24px;
      padding:24px;
      background:linear-gradient(160deg,var(--accent-soft),#fff, var(--primary-soft));
      border:1px solid rgba(111,36,79,.10);
    }
    .form-side ul{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .form-side li{
      padding:12px 12px 12px 40px;
      border-radius:16px;
      background:rgba(255,255,255,.62);
      position:relative;
      color:var(--muted);
      font-size:15px;
    }
    .form-side li:before{
      content:"✓";
      position:absolute;
      left:13px;
      top:12px;
      width:20px;
      height:20px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--primary);
      color:#fff;
      font-size:12px;
      font-weight:900;
    }
    .feedback-form label{
      color:var(--primary-strong);
      font-weight:900;
      margin-bottom:7px;
    }
    .feedback-form input,.feedback-form select,.feedback-form textarea{
      min-height:48px;
      border-radius:16px;
      border:1px solid var(--line);
      background:#fffaf1;
      box-shadow:none;
      color:var(--ink);
      margin-bottom:14px;
    }
    .feedback-form textarea{min-height:116px;resize:vertical}
    .feedback-form input:focus,.feedback-form select:focus,.feedback-form textarea:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(111,36,79,.10);
      background:#fff;
    }
    .form-hint{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .faq-wrap .accordion{
      background:transparent;
      border:0;
    }
    .faq-wrap .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:#fffdf7;
      box-shadow:0 10px 28px rgba(61,27,45,.06);
    }
    .faq-wrap .accordion-title{
      padding:18px 52px 18px 18px;
      border:0;
      color:var(--ink);
      font-weight:950;
      font-size:16px;
      line-height:1.45;
      background:#fffdf7;
    }
    .faq-wrap .accordion-title:hover,.faq-wrap .accordion-title:focus{
      background:#fff3df;
      color:var(--primary);
    }
    .faq-wrap .is-active>.accordion-title{
      background:var(--accent-soft);
      color:var(--primary-strong);
    }
    .faq-wrap .accordion-content{
      border:0;
      border-left:4px solid var(--primary);
      background:#fffaf0;
      color:var(--muted);
      padding:18px;
      line-height:1.8;
    }
    .site-footer{
      padding:54px 0 28px;
      background:
        radial-gradient(circle at 10% 0,rgba(255,207,112,.16),transparent 32%),
        linear-gradient(135deg,#351526,#4e1839);
      color:rgba(255,255,255,.84);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-weight:950;
      font-size:18px;
      margin-bottom:12px;
    }
    .footer-brand .brand-mark{box-shadow:none}
    .footer-text{margin:0;color:rgba(255,255,255,.70);max-width:560px}
    .footer-title{color:#fff;font-weight:950;margin-bottom:12px}
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
    }
    .footer-links a{color:rgba(255,255,255,.72)}
    .footer-links a:hover{color:#fff}
    .copyright{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.14);
      color:rgba(255,255,255,.62);
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .floating-cta{
      position:fixed;
      left:50%;
      bottom:16px;
      transform:translateX(-50%);
      z-index:40;
      display:none;
      align-items:center;
      gap:10px;
      width:min(460px,calc(100% - 28px));
      padding:10px;
      border-radius:999px;
      background:rgba(78,24,57,.94);
      box-shadow:0 18px 44px rgba(61,27,45,.25);
      backdrop-filter:blur(12px);
      color:#fff;
    }
    .floating-cta span{
      flex:1;
      padding-left:10px;
      font-size:13px;
      font-weight:850;
    }
    .floating-cta a{
      flex:0 0 auto;
      min-height:40px;
      padding:11px 14px;
      border-radius:999px;
      background:#fff;
      color:var(--primary);
      font-size:13px;
      font-weight:950;
    }
    @media (max-width:1024px){
      .site-container{width:min(100% - 32px,var(--container))}
      .nav-links,.nav-actions .status-pill{display:none}
      .menu-toggle{display:inline-grid;place-items:center}
      .hero-main,.stage-panel,.require-layout,.info-layout,.form-board{grid-template-columns:1fr}
      .timeline-card{position:static}
      .download-grid{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .section{padding:62px 0}
      .hero{padding:54px 0 46px}
      .hero-board{padding:22px;border-radius:26px}
      .hero-board:before{display:none}
      .hero-copy{padding:6px 0 0}
      .hero-metrics{grid-template-columns:1fr}
      .screen-card{min-height:390px;padding:20px}
      .wireframe{grid-template-columns:1fr}
      .wire-large{height:104px}
      .param-table,.param-table tbody,.param-table tr,.param-table th,.param-table td{display:block;width:100%}
      .param-table tr{
        margin-bottom:12px;
        border:1px solid rgba(111,36,79,.10);
        border-radius:18px;
        overflow:hidden;
        background:#fff;
      }
      .param-table th,.param-table td{
        border:0;
        border-radius:0;
      }
      .download-panel{padding:24px;border-radius:26px}
      .download-grid{grid-template-columns:1fr}
      .news-item{grid-template-columns:1fr;gap:6px}
      .footer-grid{grid-template-columns:1fr}
      .floating-cta{display:flex}
    }
    @media (max-width:520px){
      .site-container{width:min(100% - 24px,var(--container))}
      .brand-text{font-size:15px;max-width:210px}
      .brand-mark{width:40px;height:40px;border-radius:14px}
      .hero-actions .btn{width:100%}
      .badge-row{gap:8px}
      .badge{font-size:12px}
      .feature-strip-card{padding:12px;border-radius:22px}
      .section h2{letter-spacing:-.03em}
      .review-card:nth-child(n){transform:none}
      .form-board{padding:16px;border-radius:24px}
      .copyright{padding-bottom:74px}
    }
    @media (prefers-reduced-motion:reduce){
      *,html{scroll-behavior:auto!important;transition:none!important}
    }

/* roulang page: category1 */
:root{
      --color-primary:#6f2349;
      --color-primary-dark:#4b1633;
      --color-primary-soft:#f4d9e6;
      --color-accent:#c44962;
      --color-coral:#ef8a76;
      --color-highlight:#fff0a6;
      --color-paper:#fffaf2;
      --color-paper-2:#fff4e4;
      --color-bg:#fbf2e7;
      --color-ink:#2d2028;
      --color-muted:#73656d;
      --color-border:rgba(87,45,61,.14);
      --color-border-strong:rgba(111,35,73,.28);
      --color-success:#2f8a63;
      --color-warning:#a96b13;
      --shadow-soft:0 14px 40px rgba(60,30,45,.08);
      --shadow-hover:0 20px 52px rgba(60,30,45,.14);
      --radius-sm:14px;
      --radius-md:20px;
      --radius-lg:28px;
      --radius-xl:34px;
      --max-width:1200px;
      --nav-height:76px;
      --transition:180ms ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--color-ink);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
      line-height:1.75;
      background:
        radial-gradient(circle at 12% 8%, rgba(244,217,230,.75), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(255,240,166,.55), transparent 26%),
        linear-gradient(180deg,var(--color-bg),#fffaf4 52%,#fff7ee);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      z-index:-1;
      pointer-events:none;
      opacity:.4;
      background-image:
        linear-gradient(rgba(111,35,73,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111,35,73,.025) 1px, transparent 1px);
      background-size:28px 28px;
      mask-image:linear-gradient(180deg,#000,transparent 80%);
    }
    a{color:inherit;text-decoration:none;transition:color var(--transition),background var(--transition),border var(--transition),transform var(--transition),box-shadow var(--transition)}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    :focus-visible{outline:3px solid rgba(196,73,98,.28);outline-offset:3px}
    .site-container{width:min(var(--max-width),calc(100% - 40px));margin:0 auto}
    .section{padding:82px 0}
    .section-tight{padding:54px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--color-primary);
      font-weight:800;
      font-size:14px;
      letter-spacing:.04em;
      background:rgba(255,255,255,.72);
      border:1px solid var(--color-border);
      border-radius:999px;
      padding:7px 12px;
      box-shadow:0 8px 22px rgba(60,30,45,.05);
    }
    .section-title{
      margin:14px 0 12px;
      font-size:clamp(28px,4vw,42px);
      line-height:1.18;
      letter-spacing:-.04em;
      color:var(--color-ink);
      font-weight:900;
    }
    .section-summary{
      max-width:760px;
      color:var(--color-muted);
      font-size:17px;
      margin:0;
    }

    .button,.button.primary,.button.secondary{
      border-radius:999px;
      font-weight:800;
      letter-spacing:.01em;
      padding:.92rem 1.25rem;
      min-height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:1px solid transparent;
      box-shadow:none;
    }
    .button.primary{
      background:linear-gradient(135deg,var(--color-primary),var(--color-accent));
      color:#fff;
      box-shadow:0 14px 28px rgba(111,35,73,.2);
    }
    .button.primary:hover,.button.primary:focus{
      background:linear-gradient(135deg,var(--color-primary-dark),#aa344f);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(111,35,73,.26);
    }
    .button.secondary{
      background:rgba(255,255,255,.78);
      color:var(--color-primary-dark);
      border-color:var(--color-border-strong);
    }
    .button.secondary:hover,.button.secondary:focus{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      transform:translateY(-2px);
    }
    .button.hollow{
      border-color:rgba(255,255,255,.55);
      color:#fff;
      border-radius:999px;
      font-weight:800;
    }
    .button.hollow:hover{background:rgba(255,255,255,.12);color:#fff}

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      height:var(--nav-height);
      display:flex;
      align-items:center;
      background:rgba(255,250,242,.84);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(87,45,61,.09);
      box-shadow:0 8px 26px rgba(60,30,45,.05);
    }
    .header-inner{
      width:min(var(--max-width),calc(100% - 40px));
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      color:var(--color-primary-dark);
      letter-spacing:-.03em;
      white-space:nowrap;
      font-size:19px;
    }
    .brand-mark{
      width:32px;
      height:32px;
      border-radius:11px;
      background:
        linear-gradient(135deg,var(--color-primary),var(--color-accent)),
        radial-gradient(circle at 30% 20%,#fff,transparent 38%);
      box-shadow:0 10px 20px rgba(111,35,73,.22);
      position:relative;
      display:inline-block;
      flex:0 0 auto;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      width:13px;
      height:5px;
      border-radius:999px;
      background:var(--color-highlight);
      left:10px;
      top:14px;
      transform:rotate(-12deg);
    }
    .nav-row{display:flex;align-items:center;gap:18px}
    .nav-links{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:0 14px;
      border-radius:999px;
      color:#4c3f46;
      font-size:15px;
      font-weight:750;
      border:1px solid transparent;
    }
    .nav-links a:hover{
      color:var(--color-primary);
      background:rgba(244,217,230,.46);
    }
    .nav-links a.active{
      color:#fff;
      background:var(--color-primary);
      border-color:rgba(111,35,73,.3);
      box-shadow:0 12px 24px rgba(111,35,73,.16);
    }
    .nav-status{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--color-border);
      color:var(--color-success);
      font-size:13px;
      font-weight:850;
      white-space:nowrap;
    }
    .nav-status .dot{
      width:8px;height:8px;border-radius:999px;background:var(--color-success);
      box-shadow:0 0 0 5px rgba(47,138,99,.12);
    }
    .header-cta{white-space:nowrap}
    .mobile-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--color-border);
      background:#fff8ef;
      color:var(--color-primary);
      font-size:24px;
      line-height:1;
      align-items:center;
      justify-content:center;
      cursor:pointer;
    }
    .off-canvas{
      background:var(--color-paper);
      padding:22px;
    }
    .mobile-menu-title{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      color:var(--color-primary-dark);
      margin-bottom:20px;
    }
    .mobile-nav-links{list-style:none;margin:0;padding:0;display:grid;gap:10px}
    .mobile-nav-links a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 16px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--color-border);
      font-weight:850;
    }
    .mobile-nav-links a.active{
      background:var(--color-primary);
      color:#fff;
    }

    .category-hero{
      padding:72px 0 40px;
      position:relative;
    }
    .breadcrumb-note{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      font-size:14px;
      color:var(--color-muted);
      margin-bottom:22px;
    }
    .breadcrumb-note a{font-weight:800;color:var(--color-primary)}
    .hero-panel{
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,rgba(255,255,255,.88),rgba(255,244,228,.92)),
        radial-gradient(circle at 82% 16%,rgba(244,217,230,.7),transparent 32%);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      position:relative;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:22px auto auto 28px;
      width:90px;
      height:14px;
      background:var(--color-highlight);
      border-radius:999px;
      transform:rotate(-2deg);
      opacity:.8;
    }
    .hero-copy{padding:48px 42px 42px;position:relative;z-index:1}
    .hero-copy h1{
      margin:12px 0 18px;
      font-size:clamp(32px,5vw,52px);
      line-height:1.15;
      letter-spacing:-.055em;
      color:var(--color-primary-dark);
      font-weight:950;
      max-width:780px;
    }
    .hero-copy p{
      color:var(--color-muted);
      font-size:18px;
      max-width:760px;
      margin:0 0 24px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-top:22px}
    .hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:8px}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:7px 11px;
      font-size:13px;
      font-weight:850;
      border:1px solid var(--color-border);
      background:rgba(255,255,255,.78);
      color:var(--color-primary-dark);
    }
    .badge.warning{color:var(--color-warning);background:#fff6d4}
    .badge.ok{color:var(--color-success);background:#eefaf4}
    .qualification-board{
      height:100%;
      padding:32px;
      background:
        linear-gradient(180deg,rgba(111,35,73,.94),rgba(75,22,51,.96));
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .qualification-board:before{
      content:"";
      position:absolute;
      right:-70px;top:-70px;
      width:210px;height:210px;border-radius:50%;
      background:rgba(255,240,166,.18);
    }
    .board-title{
      font-size:22px;
      font-weight:950;
      margin:0 0 8px;
      letter-spacing:-.03em;
      position:relative;
    }
    .board-sub{
      color:rgba(255,255,255,.76);
      margin:0 0 20px;
      font-size:14px;
      position:relative;
    }
    .check-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
      position:relative;
    }
    .check-list li{
      display:flex;
      gap:10px;
      padding:13px 14px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
      border-radius:18px;
      align-items:flex-start;
    }
    .check-icon{
      width:22px;height:22px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--color-highlight);
      color:var(--color-primary-dark);
      font-weight:950;
      flex:0 0 auto;
      margin-top:2px;
    }
    .board-meta{
      margin-top:18px;
      border-radius:20px;
      background:rgba(255,255,255,.12);
      border:1px dashed rgba(255,255,255,.25);
      padding:14px;
      color:rgba(255,255,255,.82);
      font-size:13px;
      position:relative;
    }

    .filter-strip{
      position:relative;
      margin-top:30px;
      padding:18px;
      border-radius:24px;
      background:rgba(255,255,255,.72);
      border:1px solid var(--color-border);
      box-shadow:0 12px 30px rgba(60,30,45,.06);
    }
    .filter-label{font-weight:900;color:var(--color-primary-dark);margin-bottom:12px}
    .filter-tags{display:flex;flex-wrap:wrap;gap:10px}
    .filter-tag{
      border:1px solid var(--color-border);
      background:#fffaf4;
      color:#4e3f47;
      border-radius:999px;
      padding:9px 14px;
      font-size:14px;
      font-weight:800;
      cursor:pointer;
      transition:all var(--transition);
    }
    .filter-tag:hover{background:var(--color-primary-soft);border-color:var(--color-border-strong);transform:translateY(-2px)}
    .filter-tag.active{background:var(--color-primary);color:#fff;border-color:var(--color-primary)}

    .entry-layout{align-items:flex-start}
    .entry-card{
      background:rgba(255,255,255,.82);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-soft);
      padding:26px;
      position:relative;
      overflow:hidden;
      min-height:100%;
      transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition);
    }
    .entry-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:var(--color-border-strong);
    }
    .entry-card.featured{
      background:
        linear-gradient(135deg,#fff,#fff2df),
        radial-gradient(circle at 95% 0,rgba(244,217,230,.9),transparent 30%);
    }
    .entry-card:before{
      content:"";
      position:absolute;
      top:0;left:26px;
      width:86px;height:6px;
      border-radius:0 0 999px 999px;
      background:var(--color-accent);
    }
    .card-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
      margin-bottom:14px;
    }
    .card-index{
      font-weight:950;
      color:var(--color-primary);
      background:var(--color-primary-soft);
      border-radius:13px;
      padding:5px 10px;
      min-width:48px;
      text-align:center;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:#eefaf4;
      color:var(--color-success);
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .status-pill.note{background:#fff6d4;color:var(--color-warning)}
    .entry-card h3{
      margin:8px 0 9px;
      font-size:23px;
      line-height:1.3;
      font-weight:950;
      letter-spacing:-.035em;
      color:var(--color-primary-dark);
    }
    .entry-card p{
      color:var(--color-muted);
      margin:0 0 18px;
      font-size:15.5px;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:18px;
      color:var(--color-muted);
      font-size:13px;
    }
    .entry-meta span{
      padding:5px 9px;
      border-radius:999px;
      background:#fff7ed;
      border:1px solid var(--color-border);
    }
    .aside-card{
      position:sticky;
      top:calc(var(--nav-height) + 22px);
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-soft);
      padding:24px;
    }
    .aside-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:20px;
      font-weight:950;
      color:var(--color-primary-dark);
      margin-bottom:14px;
    }
    .status-grid{display:grid;gap:10px;margin:14px 0 18px}
    .status-item{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-bottom:1px dashed var(--color-border);
      font-size:14px;
    }
    .status-item:last-child{border-bottom:0}
    .status-item strong{color:var(--color-ink)}
    .status-item span{color:var(--color-muted);text-align:right}
    .mini-notice{
      padding:14px;
      border-radius:18px;
      background:#fff6d4;
      color:#70470f;
      font-size:13px;
      line-height:1.65;
      border:1px solid rgba(169,107,19,.18);
    }

    .flow-board{
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg,#fffaf2,#fff1e0);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-soft);
      padding:30px;
      position:relative;
      overflow:hidden;
    }
    .flow-board:after{
      content:"";
      position:absolute;
      right:32px;
      top:32px;
      width:120px;
      height:18px;
      border-radius:999px;
      background:var(--color-highlight);
      transform:rotate(-4deg);
      opacity:.72;
    }
    .flow-step{
      display:grid;
      grid-template-columns:56px 1fr;
      gap:16px;
      padding:18px 0;
      border-bottom:1px dashed var(--color-border);
      position:relative;
      z-index:1;
    }
    .flow-step:last-child{border-bottom:0}
    .step-no{
      width:46px;height:46px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--color-primary);
      color:#fff;
      font-weight:950;
      box-shadow:0 12px 22px rgba(111,35,73,.17);
    }
    .flow-step h3{margin:0 0 4px;font-size:20px;font-weight:950;color:var(--color-primary-dark)}
    .flow-step p{margin:0;color:var(--color-muted);font-size:15px}
    .interface-stack{
      display:grid;
      gap:14px;
    }
    .ui-note{
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.8);
      border:1px solid var(--color-border);
      box-shadow:0 10px 25px rgba(60,30,45,.06);
    }
    .ui-note-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
      font-weight:950;
      color:var(--color-primary-dark);
    }
    .mock-lines{display:grid;gap:8px}
    .mock-line{
      height:10px;
      border-radius:999px;
      background:linear-gradient(90deg,rgba(111,35,73,.18),rgba(239,138,118,.16));
    }
    .mock-line.short{width:64%}
    .mock-line.mid{width:82%}
    .progress{
      height:10px;
      border-radius:999px;
      background:#f2e1d2;
      overflow:hidden;
      margin-top:14px;
    }
    .progress span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--color-primary),var(--color-coral))}

    .requirements-panel{
      background:#fff;
      border:1px solid var(--color-border);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .req-main{
      padding:30px;
      background:linear-gradient(135deg,#fff,#fff5e8);
      height:100%;
    }
    .req-main h3,.req-card h3{margin:0 0 10px;font-size:22px;font-weight:950;color:var(--color-primary-dark)}
    .req-main p,.req-card p{margin:0;color:var(--color-muted)}
    .req-table{
      margin-top:22px;
      border-radius:20px;
      overflow:hidden;
      border:1px solid var(--color-border);
      background:#fffaf4;
    }
    .req-row{
      display:grid;
      grid-template-columns:150px 1fr;
      gap:0;
      border-bottom:1px solid var(--color-border);
    }
    .req-row:last-child{border-bottom:0}
    .req-row div{padding:14px 16px}
    .req-row div:first-child{font-weight:900;color:var(--color-primary-dark);background:#fff2df}
    .req-row div:last-child{color:var(--color-muted)}
    .req-card{
      padding:24px;
      border-left:1px solid var(--color-border);
      border-bottom:1px solid var(--color-border);
      min-height:50%;
      background:rgba(255,250,242,.82);
    }
    .req-card:nth-child(2){border-bottom:0}
    .small-list{list-style:none;margin:14px 0 0;padding:0;display:grid;gap:8px}
    .small-list li{
      display:flex;
      gap:8px;
      color:var(--color-muted);
      font-size:14px;
    }
    .small-list li:before{content:"•";color:var(--color-accent);font-weight:950}

    .reviews-wall{
      columns:3 260px;
      column-gap:18px;
    }
    .review-card{
      break-inside:avoid;
      display:inline-block;
      width:100%;
      margin:0 0 18px;
      padding:22px;
      border-radius:22px;
      background:rgba(255,255,255,.84);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-soft);
      transform:rotate(var(--tilt,0deg));
      transition:transform var(--transition),box-shadow var(--transition);
    }
    .review-card:hover{transform:translateY(-4px) rotate(0deg);box-shadow:var(--shadow-hover)}
    .review-card:nth-child(2n){--tilt:1deg;background:#fff6e7}
    .review-card:nth-child(3n){--tilt:-1deg;background:#fff}
    .review-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px}
    .review-name{font-weight:950;color:var(--color-primary-dark)}
    .stars{color:#d88621;letter-spacing:1px;font-size:13px}
    .review-tag{
      display:inline-flex;
      margin-bottom:10px;
      padding:5px 9px;
      border-radius:999px;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-size:12px;
      font-weight:900;
    }
    .review-card p{margin:0;color:var(--color-muted);font-size:14.5px}

    .download-cta{
      border-radius:34px;
      background:
        radial-gradient(circle at 8% 0,rgba(255,240,166,.2),transparent 30%),
        linear-gradient(135deg,var(--color-primary-dark),var(--color-primary));
      color:#fff;
      padding:34px;
      box-shadow:0 22px 60px rgba(75,22,51,.23);
      position:relative;
      overflow:hidden;
    }
    .download-cta:after{
      content:"";
      position:absolute;
      right:-80px;
      bottom:-90px;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
    }
    .download-cta h2{
      margin:0 0 10px;
      font-size:clamp(27px,4vw,40px);
      line-height:1.18;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .download-cta p{color:rgba(255,255,255,.78);margin:0;max-width:760px}
    .download-buttons{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:26px;
      position:relative;
      z-index:1;
    }
    .download-option{
      display:block;
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.94);
      color:var(--color-primary-dark);
      border:1px solid rgba(255,255,255,.35);
      min-height:116px;
    }
    .download-option:hover{
      transform:translateY(-4px);
      box-shadow:0 18px 38px rgba(0,0,0,.16);
      color:var(--color-primary-dark);
    }
    .download-option strong{display:block;font-size:17px;margin-bottom:6px;font-weight:950}
    .download-option span{display:block;color:var(--color-muted);font-size:13px;line-height:1.55}
    .confirm-list{
      margin-top:18px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .confirm-list span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:7px 11px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.16);
      color:rgba(255,255,255,.86);
      font-size:13px;
      font-weight:800;
    }

    .accordion{
      background:transparent;
      margin-top:26px;
    }
    .accordion-item{
      border:1px solid var(--color-border);
      border-radius:20px;
      background:rgba(255,255,255,.82);
      overflow:hidden;
      margin-bottom:12px;
      box-shadow:0 10px 28px rgba(60,30,45,.05);
    }
    .accordion-title{
      border:0!important;
      color:var(--color-primary-dark)!important;
      font-weight:950;
      font-size:16px;
      padding:18px 48px 18px 20px;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{background:#fff3e2}
    .accordion-title:before{right:20px;color:var(--color-primary);font-size:22px;margin-top:-13px}
    .accordion-content{
      border:0!important;
      border-top:1px dashed var(--color-border)!important;
      background:#fff8ec;
      color:var(--color-muted);
      padding:18px 20px;
      line-height:1.75;
    }

    .feedback-box{
      border-radius:var(--radius-xl);
      padding:26px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-soft);
    }
    .feedback-box h3{margin:0 0 8px;font-weight:950;color:var(--color-primary-dark);font-size:23px}
    .feedback-box p{color:var(--color-muted);margin:0 0 16px}
    .feedback-form label{font-weight:850;color:var(--color-primary-dark)}
    .feedback-form input,.feedback-form textarea,.feedback-form select{
      border-radius:16px;
      border:1px solid var(--color-border);
      background:#fffaf4;
      box-shadow:none;
      min-height:46px;
    }
    .feedback-form input:focus,.feedback-form textarea:focus,.feedback-form select:focus{
      border-color:var(--color-primary);
      box-shadow:0 0 0 4px rgba(111,35,73,.1);
      background:#fff;
    }

    .site-footer{
      margin-top:30px;
      padding:54px 0 26px;
      background:linear-gradient(135deg,#3b1428,#5a1b3b);
      color:#fff;
      border-radius:34px 34px 0 0;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .8fr .8fr;
      gap:34px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:20px;
      font-weight:950;
      letter-spacing:-.03em;
      margin-bottom:12px;
    }
    .footer-text{
      color:rgba(255,255,255,.72);
      margin:0;
      max-width:540px;
      font-size:14px;
    }
    .footer-title{
      font-weight:950;
      margin-bottom:12px;
      color:#fff;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:rgba(255,255,255,.72);
      font-size:14px;
    }
    .footer-links a:hover{color:#fff;text-decoration:underline;text-underline-offset:4px}
    .copyright{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.14);
      display:flex;
      justify-content:space-between;
      gap:18px;
      color:rgba(255,255,255,.62);
      font-size:13px;
      flex-wrap:wrap;
    }

    @media (max-width:1024px){
      .header-cta,.nav-status{display:none}
      .download-buttons{grid-template-columns:repeat(2,1fr)}
      .req-card{border-left:0}
      .aside-card{position:relative;top:auto;margin-bottom:22px}
    }
    @media (max-width:820px){
      .desktop-nav{display:none}
      .mobile-toggle{display:flex}
      .site-header{height:68px}
      :root{--nav-height:68px}
      .hero-copy{padding:38px 26px 28px}
      .qualification-board{padding:26px}
      .section{padding:58px 0}
      .footer-grid{grid-template-columns:1fr}
      .req-row{grid-template-columns:1fr}
      .req-row div:first-child{padding-bottom:6px}
      .req-row div:last-child{padding-top:6px}
    }
    @media (max-width:560px){
      .site-container,.header-inner{width:min(100% - 24px,var(--max-width))}
      .brand{font-size:16px;max-width:calc(100vw - 92px);overflow:hidden;text-overflow:ellipsis}
      .brand-mark{width:30px;height:30px}
      .category-hero{padding:44px 0 28px}
      .hero-copy h1{font-size:31px}
      .hero-copy p{font-size:16px}
      .hero-actions .button{width:100%}
      .filter-strip{padding:14px}
      .filter-tags{gap:8px}
      .filter-tag{font-size:13px;padding:8px 10px}
      .entry-card,.flow-board,.download-cta,.feedback-box{padding:22px}
      .flow-step{grid-template-columns:1fr;gap:10px}
      .download-buttons{grid-template-columns:1fr}
      .reviews-wall{columns:1}
      .copyright{display:grid}
      .section-title{letter-spacing:-.035em}
    }
