/* roulang page: index */
:root{
      --bg:#0e1117;
      --bg-soft:#141923;
      --panel:#171d29;
      --panel-2:#1d2432;
      --line:rgba(255,255,255,.08);
      --line-2:rgba(245,185,95,.22);
      --text:#f5f1e8;
      --muted:#a8b0bf;
      --muted-2:#7e8797;
      --accent:#f5b95f;
      --accent-2:#78e3c0;
      --accent-3:#ff8296;
      --accent-4:#8d7bff;
      --shadow:0 24px 70px rgba(0,0,0,.35);
      --shadow-soft:0 12px 40px rgba(0,0,0,.22);
      --radius:22px;
      --radius-sm:16px;
      --radius-xs:12px;
      --gap:clamp(16px, 2.5vw, 28px);
      --container:1240px;
      --transition:180ms ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      background:
        radial-gradient(circle at 15% 0%, rgba(245,185,95,.16), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(141,123,255,.14), transparent 26%),
        radial-gradient(circle at 54% 110%, rgba(120,227,192,.10), transparent 28%),
        linear-gradient(180deg, #0c1016 0%, #0e1117 40%, #0d1116 100%);
      color:var(--text);
      line-height:1.7;
      overflow-x:hidden;
    }
    body.modal-open{overflow:hidden}
    a{color:inherit;text-decoration:none;transition:all var(--transition)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(245,185,95,.28);color:#fff}

    .site-bg{
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(120deg, rgba(255,255,255,.025), transparent 26%),
        linear-gradient(300deg, rgba(255,255,255,.02), transparent 16%);
      opacity:.75;
      z-index:-2;
    }
    .site-shell{max-width:var(--container)}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(16px);
      background:rgba(10,12,18,.76);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .header-bar{
      min-height:76px;
      display:flex;
      align-items:center;
      gap:16px;
      position:relative;
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.06em;
      color:var(--text);
      text-shadow:0 0 24px rgba(245,185,95,.14);
      white-space:nowrap;
    }
    .brand-mark::before{
      content:"";
      width:14px;
      height:14px;
      border-radius:50%;
      background:radial-gradient(circle at 35% 35%, #fff6dd 0, #f5b95f 42%, #cc7d24 100%);
      box-shadow:0 0 0 6px rgba(245,185,95,.09), 0 0 24px rgba(245,185,95,.22);
      flex:0 0 auto;
    }
    .menu-toggle{
      display:none;
      margin-left:auto;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-width:88px;
      height:42px;
      border-radius:999px;
      border:1px solid rgba(245,185,95,.22);
      background:rgba(245,185,95,.08);
      color:var(--text);
      cursor:pointer;
      transition:all var(--transition);
    }
    .menu-toggle:hover{transform:translateY(-1px);border-color:rgba(245,185,95,.38);background:rgba(245,185,95,.12)}
    .menu-toggle:focus-visible,
    .nav-link:focus-visible,
    .btn:focus-visible,
    .floating-launch:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    summary:focus-visible{
      outline:2px solid rgba(245,185,95,.8);
      outline-offset:3px;
    }
    .site-nav{
      margin-left:auto;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid transparent;
      color:var(--muted);
      background:transparent;
      letter-spacing:.02em;
    }
    .nav-link:hover{
      color:var(--text);
      border-color:rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
      transform:translateY(-1px);
    }
    .nav-link.is-active{
      color:#16120a;
      background:linear-gradient(135deg, #ffd98c 0%, #f5b95f 100%);
      border-color:rgba(245,185,95,.32);
      box-shadow:0 16px 30px rgba(245,185,95,.16);
    }

    main{display:block}
    .section-block{
      padding:clamp(28px, 5vw, 60px) 0;
      position:relative;
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:22px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--accent);
      font-size:.86rem;
      letter-spacing:.14em;
      text-transform:uppercase;
      margin-bottom:12px;
    }
    .eyebrow::before{
      content:"";
      width:34px;
      height:1px;
      background:linear-gradient(90deg, rgba(245,185,95,.1), rgba(245,185,95,.85));
      box-shadow:0 0 20px rgba(245,185,95,.35);
    }
    h1,h2,h3,h4,p{margin:0}
    h1{
      font-size:clamp(2.5rem, 6vw, 5rem);
      line-height:1.02;
      letter-spacing:-.04em;
      margin-bottom:18px;
    }
    h2{
      font-size:clamp(1.8rem, 3vw, 2.6rem);
      line-height:1.1;
      letter-spacing:-.03em;
    }
    h3{
      font-size:1.1rem;
      line-height:1.2;
      letter-spacing:-.02em;
    }
    .section-copy,
    .hero-copy{
      color:var(--muted);
      font-size:1.02rem;
      max-width:68ch;
    }

    .hero{
      padding:clamp(34px, 4vw, 58px) 0 clamp(22px, 4vw, 40px);
      position:relative;
      overflow:hidden;
    }
    .hero::before,
    .hero::after{
      content:"";
      position:absolute;
      inset:auto;
      width:460px;
      height:460px;
      border-radius:50%;
      filter:blur(30px);
      opacity:.35;
      pointer-events:none;
    }
    .hero::before{
      left:-120px;
      top:-150px;
      background:radial-gradient(circle, rgba(245,185,95,.24) 0%, rgba(245,185,95,0) 72%);
    }
    .hero::after{
      right:-180px;
      top:40px;
      background:radial-gradient(circle, rgba(141,123,255,.18) 0%, rgba(141,123,255,0) 72%);
    }
    .hero-grid{
      align-items:center;
      gap:28px;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      margin-bottom:16px;
      padding:9px 14px;
      border-radius:999px;
      border:1px solid rgba(245,185,95,.18);
      background:rgba(245,185,95,.06);
      color:#ffe4b8;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }
    .hero-kicker span{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-size:.88rem;
      white-space:nowrap;
    }
    .hero-kicker span + span::before{
      content:"";
      width:4px;
      height:4px;
      border-radius:50%;
      background:rgba(255,255,255,.25);
      margin-right:6px;
    }
    .hero-title strong{
      color:var(--accent);
      text-shadow:0 0 24px rgba(245,185,95,.14);
    }
    .hero-copy{
      font-size:1.04rem;
      margin-bottom:22px;
      max-width:62ch;
    }
    .cta-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-bottom:24px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      letter-spacing:.02em;
      cursor:pointer;
      transition:all var(--transition);
      user-select:none;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      color:#16120a;
      background:linear-gradient(135deg, #ffe3ab 0%, #f5b95f 100%);
      box-shadow:0 18px 40px rgba(245,185,95,.16);
    }
    .btn-primary:hover{box-shadow:0 22px 44px rgba(245,185,95,.23)}
    .btn-secondary{
      color:var(--text);
      border-color:rgba(255,255,255,.10);
      background:rgba(255,255,255,.03);
    }
    .btn-secondary:hover{border-color:rgba(120,227,192,.35);background:rgba(120,227,192,.08)}
    .btn-ghost{
      color:#f8dfb2;
      border-color:rgba(245,185,95,.18);
      background:rgba(245,185,95,.05);
    }
    .btn-ghost:hover{border-color:rgba(245,185,95,.34);background:rgba(245,185,95,.10)}
    .hero-metrics{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .metric-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:#dfe6f3;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    }
    .metric-pill strong{color:#fff}
    .hero-stage{
      position:relative;
      padding:18px;
      border-radius:calc(var(--radius) + 6px);
      border:1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
        linear-gradient(135deg, rgba(141,123,255,.10), rgba(245,185,95,.05) 45%, rgba(120,227,192,.08));
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-stage::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, transparent 0, rgba(255,255,255,.03) 50%, transparent 100%),
        radial-gradient(circle at 18% 20%, rgba(245,185,95,.14), transparent 24%),
        radial-gradient(circle at 84% 28%, rgba(120,227,192,.12), transparent 22%);
      pointer-events:none;
    }
    .hero-stage-inner{
      position:relative;
      display:grid;
      gap:14px;
    }
    .stage-topline{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      color:#dfe5f2;
      padding:10px 12px;
      border-radius:18px;
      background:rgba(10,12,18,.52);
      border:1px solid rgba(255,255,255,.08);
    }
    .stage-topline b{
      color:#fff;
      font-size:1.02rem;
    }
    .stage-tag{
      padding:6px 11px;
      border-radius:999px;
      background:rgba(245,185,95,.14);
      color:#ffdba0;
      font-size:.84rem;
      border:1px solid rgba(245,185,95,.2);
      white-space:nowrap;
    }
    .matrix{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .matrix-card{
      min-height:112px;
      padding:16px;
      border-radius:18px;
      background:linear-gradient(180deg, rgba(23,29,41,.92), rgba(16,20,28,.94));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    }
    .matrix-card .no{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px;
      height:34px;
      border-radius:50%;
      color:#16120a;
      background:linear-gradient(135deg, #ffe3ab, #f5b95f);
      font-weight:800;
      margin-bottom:10px;
      box-shadow:0 12px 24px rgba(245,185,95,.16);
    }
    .matrix-card p{
      color:var(--muted);
      margin-top:8px;
      font-size:.94rem;
    }
    .stage-foot{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .stage-foot .chip{
      padding:9px 12px;
      border-radius:14px;
      border:1px dashed rgba(245,185,95,.20);
      background:rgba(245,185,95,.05);
      color:#f6dfbb;
      font-size:.92rem;
    }

    .entry-strip{
      padding:0 0 12px;
    }
    .ticket-row{
      display:grid;
      gap:14px;
      grid-template-columns:repeat(4, minmax(0, 1fr));
    }
    .ticket-card{
      position:relative;
      padding:18px 16px 18px 18px;
      border-radius:20px;
      background:linear-gradient(180deg, rgba(23,29,41,.88), rgba(18,22,32,.94));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      min-height:144px;
    }
    .ticket-card::before,
    .ticket-card::after{
      content:"";
      position:absolute;
      top:50%;
      width:18px;
      height:18px;
      border-radius:50%;
      background:var(--bg);
      border:1px solid rgba(255,255,255,.08);
      transform:translateY(-50%);
    }
    .ticket-card::before{left:-9px}
    .ticket-card::after{right:-9px}
    .ticket-mark{
      display:flex;
      align-items:center;
      gap:10px;
      color:#ffdba0;
      margin-bottom:10px;
    }
    .ticket-mark .bar{
      width:38px;
      height:1px;
      background:linear-gradient(90deg, rgba(245,185,95,.1), rgba(245,185,95,.92));
    }
    .ticket-card h3{margin-bottom:8px}
    .ticket-card p{
      color:var(--muted);
      font-size:.94rem;
    }
    .ticket-footer{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      color:#dbe2ed;
      font-size:.88rem;
    }
    .ticket-label{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(120,227,192,.10);
      color:#b9f5e2;
      border:1px solid rgba(120,227,192,.16);
      white-space:nowrap;
    }
    .ticket-num{
      color:#fff;
      font-weight:800;
      letter-spacing:.08em;
    }

    .panel-wrap{
      border-radius:var(--radius);
      padding:24px;
      background:linear-gradient(180deg, rgba(23,29,41,.84), rgba(16,19,27,.96));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-soft);
    }
    .panel-title{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
    }
    .panel-title .marker{
      width:12px;
      height:12px;
      border-radius:50%;
      background:linear-gradient(135deg, #ffe3ab, #f5b95f);
      box-shadow:0 0 0 8px rgba(245,185,95,.09);
      flex:0 0 auto;
    }
    .question-grid{
      display:grid;
      gap:14px;
      grid-template-columns:repeat(4, minmax(0, 1fr));
    }
    .question-card,
    .solution-card,
    .stat-card,
    .lead-card,
    .privacy-card{
      position:relative;
      padding:20px;
      border-radius:20px;
      background:linear-gradient(180deg, rgba(23,29,41,.88), rgba(17,21,30,.96));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .question-card::after,
    .solution-card::after,
    .stat-card::after,
    .lead-card::after,
    .privacy-card::after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(245,185,95,.2), transparent);
      pointer-events:none;
    }
    .question-card h3{
      margin-bottom:10px;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .question-card h3 span,
    .solution-card h3 span{
      color:var(--accent);
      font-weight:800;
      flex:0 0 auto;
    }
    .question-card p,
    .solution-card p,
    .stat-card p,
    .lead-card p,
    .privacy-card p{
      color:var(--muted);
      font-size:.94rem;
    }

    .solution-grid{
      display:grid;
      gap:14px;
      grid-template-columns:repeat(4, minmax(0, 1fr));
    }
    .solution-card{
      min-height:220px;
    }
    .solution-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      margin-bottom:16px;
    }
    .solution-index{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:14px;
      color:#16120a;
      font-weight:800;
      background:linear-gradient(135deg, #ffe3ab, #f5b95f);
      box-shadow:0 16px 28px rgba(245,185,95,.16);
    }
    .solution-badge{
      padding:6px 10px;
      border-radius:999px;
      font-size:.82rem;
      color:#dfe6f3;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
    }
    .solution-list{
      list-style:none;
      padding:0;
      margin:14px 0 0;
      display:grid;
      gap:10px;
    }
    .solution-list li{
      position:relative;
      padding-left:18px;
      color:#dbe2ee;
      font-size:.92rem;
    }
    .solution-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.7em;
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent-2);
      box-shadow:0 0 0 5px rgba(120,227,192,.08);
      transform:translateY(-50%);
    }

    .stats-grid{
      display:grid;
      gap:14px;
      grid-template-columns:repeat(12, minmax(0, 1fr));
      align-items:stretch;
    }
    .stats-lead{
      grid-column:span 7;
      display:grid;
      gap:14px;
    }
    .stats-aside{
      grid-column:span 5;
      display:grid;
      gap:14px;
    }
    .big-data{
      min-height:320px;
      display:grid;
      grid-template-columns:minmax(0, 1fr) 200px;
      gap:18px;
      align-items:center;
    }
    .big-number{
      font-size:clamp(3rem, 7vw, 5.2rem);
      line-height:.92;
      letter-spacing:-.06em;
      font-weight:900;
      color:#fff;
      margin-bottom:10px;
    }
    .big-label{
      color:#ffdba0;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-size:.84rem;
      margin-bottom:10px;
    }
    .progress-stack{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .progress-item{
      display:grid;
      gap:8px;
    }
    .progress-meta{
      display:flex;
      justify-content:space-between;
      gap:10px;
      color:#dfe6f3;
      font-size:.92rem;
    }
    .progress{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.05);
    }
    .progress span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, #f5b95f, #78e3c0);
      box-shadow:0 0 22px rgba(245,185,95,.18);
    }
    .ring-wrap{
      display:grid;
      place-items:center;
    }
    .ring{
      --value:78;
      width:170px;
      aspect-ratio:1;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:
        radial-gradient(circle at center, rgba(15,17,23,1) 58%, transparent 59%),
        conic-gradient(from 180deg, #f5b95f calc(var(--value) * 1%), rgba(255,255,255,.08) 0);
      box-shadow:0 20px 46px rgba(0,0,0,.28);
      border:1px solid rgba(255,255,255,.08);
    }
    .ring strong{
      font-size:2.2rem;
      line-height:1;
      display:block;
      text-align:center;
    }
    .ring span{
      display:block;
      color:var(--muted);
      font-size:.88rem;
      text-align:center;
      margin-top:6px;
    }
    .mini-stats{
      display:grid;
      gap:14px;
      grid-template-columns:repeat(3, minmax(0, 1fr));
    }
    .mini-stat{
      padding:18px;
      border-radius:18px;
      background:linear-gradient(180deg, rgba(23,29,41,.9), rgba(17,21,30,.96));
      border:1px solid rgba(255,255,255,.08);
    }
    .mini-stat strong{
      display:block;
      font-size:2rem;
      line-height:1;
      color:#fff;
      margin-bottom:8px;
    }
    .mini-stat span{color:var(--muted);font-size:.92rem}
    .signal-row{
      display:grid;
      gap:14px;
      grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .signal-card{
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
    }
    .signal-card .bar-line{
      display:flex;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
      color:#e7ecf7;
      font-size:.92rem;
    }

    .lead-grid{
      display:grid;
      gap:16px;
      grid-template-columns:repeat(12, minmax(0, 1fr));
      align-items:stretch;
    }
    .lead-copy{
      grid-column:span 7;
    }
    .lead-panel{
      grid-column:span 5;
      display:grid;
      gap:14px;
    }
    .lead-card{
      min-height:100%;
    }
    .lead-steps{
      list-style:none;
      padding:0;
      margin:16px 0 0;
      display:grid;
      gap:12px;
    }
    .lead-steps li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:#dbe2ee;
      font-size:.94rem;
    }
    .lead-steps i{
      width:30px;
      height:30px;
      border-radius:10px;
      background:rgba(245,185,95,.14);
      border:1px solid rgba(245,185,95,.16);
      color:#ffdba0;
      display:inline-grid;
      place-items:center;
      font-style:normal;
      font-weight:800;
      flex:0 0 auto;
      margin-top:1px;
    }
    .lead-box{
      padding:18px;
      border-radius:18px;
      background:linear-gradient(180deg, rgba(27,34,47,.95), rgba(14,17,23,.98));
      border:1px solid rgba(255,255,255,.08);
      display:grid;
      gap:12px;
    }
    .lead-box .label{
      display:inline-flex;
      width:max-content;
      align-items:center;
      gap:8px;
      color:#f7d59f;
      font-size:.88rem;
      letter-spacing:.08em;
    }
    .lead-box .label::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent-3);
      box-shadow:0 0 0 6px rgba(255,130,150,.08);
    }
    .lead-box p{
      color:var(--muted);
      font-size:.94rem;
    }
    .lead-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:10px;
    }
    .lead-tip{
      color:var(--muted-2);
      font-size:.86rem;
    }

    .privacy-grid{
      display:grid;
      gap:14px;
      grid-template-columns:repeat(12, minmax(0, 1fr));
      align-items:start;
    }
    .privacy-copy{
      grid-column:span 5;
    }
    .privacy-faq{
      grid-column:span 7;
      display:grid;
      gap:12px;
    }
    .privacy-card ul{
      list-style:none;
      margin:16px 0 0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .privacy-card li{
      position:relative;
      padding-left:18px;
      color:#dbe2ee;
      font-size:.93rem;
    }
    .privacy-card li::before{
      content:"";
      position:absolute;
      left:0;
      top:.75em;
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--accent-2);
      box-shadow:0 0 0 5px rgba(120,227,192,.08);
      transform:translateY(-50%);
    }
    details.faq-item{
      border-radius:18px;
      background:linear-gradient(180deg, rgba(23,29,41,.88), rgba(17,21,30,.96));
      border:1px solid rgba(255,255,255,.08);
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }
    details.faq-item[open]{border-color:rgba(245,185,95,.22)}
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:18px 18px;
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      color:#fff;
      font-weight:700;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    details.faq-item summary::after{
      content:"+";
      color:#f7d59f;
      font-size:1.2rem;
      line-height:1;
      transition:transform var(--transition);
    }
    details.faq-item[open] summary::after{
      content:"–";
      transform:rotate(0deg);
    }
    .faq-body{
      padding:0 18px 18px;
      color:var(--muted);
      font-size:.94rem;
    }

    .footer{
      padding:26px 0 40px;
      border-top:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(10,12,18,.14), rgba(10,12,18,.38));
    }
    .footer-grid{
      display:grid;
      gap:18px;
      grid-template-columns:repeat(12, minmax(0, 1fr));
    }
    .footer-brand{
      grid-column:span 4;
    }
    .footer-brand p{
      color:var(--muted);
      margin-top:12px;
      max-width:34ch;
      font-size:.92rem;
    }
    .footer-links{
      grid-column:span 3;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#dce2ee;
    }
    .footer-links a:hover{color:#fff}
    .footer-tags{
      grid-column:span 5;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:10px;
    }
    .tag{
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:#e2e8f4;
      font-size:.88rem;
    }
    .copyright{
      margin-top:16px;
      color:var(--muted-2);
      font-size:.86rem;
    }

    .floating-launch{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:45;
      border:none;
      padding:14px 18px;
      border-radius:999px;
      background:linear-gradient(135deg, #ffe3ab, #f5b95f);
      color:#16120a;
      font-weight:800;
      box-shadow:0 18px 42px rgba(245,185,95,.2);
      cursor:pointer;
      transition:all var(--transition);
    }
    .floating-launch:hover{transform:translateY(-2px);box-shadow:0 22px 46px rgba(245,185,95,.26)}

    .lead-modal{
      position:fixed;
      inset:0;
      z-index:60;
      display:none;
      align-items:center;
      justify-content:center;
      padding:18px;
      background:rgba(6,8,12,.76);
      backdrop-filter:blur(14px);
    }
    .lead-modal.is-open{display:flex}
    .modal-card{
      width:min(720px, 100%);
      border-radius:28px;
      background:linear-gradient(180deg, rgba(23,29,41,.98), rgba(13,16,22,.98));
      border:1px solid rgba(255,255,255,.1);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .modal-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      padding:22px 22px 12px;
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .modal-top h3{
      font-size:1.4rem;
      margin-bottom:8px;
    }
    .modal-close{
      width:40px;
      height:40px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      color:#fff;
      cursor:pointer;
    }
    .modal-body{padding:22px}
    .form-grid{
      display:grid;
      gap:14px;
      grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .field{
      display:grid;
      gap:8px;
    }
    .field label{
      color:#dde3ef;
      font-size:.92rem;
    }
    .field input,
    .field select,
    .field textarea{
      width:100%;
      padding:13px 14px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      color:#fff;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    }
    .field textarea{min-height:112px;resize:vertical}
    .field-wide{grid-column:1 / -1}
    .form-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top:18px;
    }
    .modal-note{
      margin-top:12px;
      color:var(--muted-2);
      font-size:.88rem;
    }
    .toast{
      position:fixed;
      left:50%;
      bottom:22px;
      transform:translateX(-50%) translateY(24px);
      opacity:0;
      pointer-events:none;
      z-index:70;
      min-width:min(92vw, 420px);
      padding:14px 18px;
      border-radius:999px;
      text-align:center;
      background:rgba(23,29,41,.96);
      border:1px solid rgba(120,227,192,.22);
      color:#eaf9f2;
      box-shadow:var(--shadow-soft);
      transition:all var(--transition);
    }
    .toast.is-show{
      opacity:1;
      transform:translateX(-50%) translateY(0);
    }

    @media (max-width: 1199px){
      .ticket-row{grid-template-columns:repeat(2, minmax(0, 1fr))}
      .question-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
      .solution-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
      .stats-lead,
      .stats-aside,
      .lead-copy,
      .lead-panel,
      .privacy-copy,
      .privacy-faq{grid-column:span 12}
    }
    @media (max-width: 1024px){
      .big-data{grid-template-columns:1fr}
      .ring-wrap{justify-content:start}
      .mini-stats{grid-template-columns:repeat(2, minmax(0, 1fr))}
      .footer-brand,
      .footer-links,
      .footer-tags{grid-column:span 12}
    }
    @media (max-width: 768px){
      .menu-toggle{display:inline-flex}
      .site-nav{
        display:none;
        position:absolute;
        top:calc(100% + 10px);
        left:0;
        right:0;
        padding:14px;
        flex-direction:column;
        gap:8px;
        border-radius:22px;
        border:1px solid rgba(255,255,255,.08);
        background:rgba(10,12,18,.96);
        box-shadow:var(--shadow-soft);
      }
      .site-nav.is-open{display:flex}
      .nav-link{width:100%;justify-content:flex-start}
      .hero{padding-top:26px}
      .hero-grid{gap:18px}
      .matrix{grid-template-columns:1fr}
      .ticket-row,
      .question-grid,
      .solution-grid,
      .mini-stats,
      .signal-row,
      .form-grid{grid-template-columns:1fr}
      .cta-row .btn{width:100%}
      .floating-launch{
        left:16px;
        right:16px;
        bottom:14px;
        width:calc(100% - 32px);
      }
      .modal-card{border-radius:22px}
      .modal-body{padding:18px}
    }
    @media (max-width: 520px){
      h1{font-size:clamp(2.1rem, 13vw, 3rem)}
      h2{font-size:clamp(1.55rem, 8vw, 2rem)}
      .hero-kicker{flex-wrap:wrap}
      .metric-pill{width:100%;justify-content:flex-start}
      .stage-topline{flex-direction:column;align-items:flex-start}
      .panel-wrap{padding:18px}
      .section-block{padding:24px 0}
      .modal-top{padding:18px 18px 10px}
      .form-actions .btn{width:100%}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      *,*::before,*::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
      }
    }

/* roulang page: category1 */
:root {
      --color-ink: #211815;
      --color-muted: #766861;
      --color-soft: #f8efe5;
      --color-paper: #fffaf3;
      --color-card: #fffdf8;
      --color-line: rgba(83, 58, 43, .16);
      --color-primary: #8d3f2d;
      --color-primary-dark: #61281e;
      --color-accent: #e5a848;
      --color-accent-soft: #fff0c8;
      --color-stage: #2a1715;
      --color-stage-2: #3b201c;
      --shadow-sm: 0 10px 24px rgba(68, 38, 23, .08);
      --shadow-md: 0 18px 44px rgba(68, 38, 23, .14);
      --shadow-glow: 0 0 0 1px rgba(229, 168, 72, .18), 0 24px 70px rgba(93, 37, 27, .26);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --radius-pill: 999px;
      --space-section: clamp(58px, 8vw, 96px);
      --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--color-ink);
      font-family: var(--font-main);
      line-height: 1.75;
      background:
        radial-gradient(circle at 12% 10%, rgba(229, 168, 72, .22), transparent 30%),
        radial-gradient(circle at 86% 4%, rgba(141, 63, 45, .16), transparent 26%),
        linear-gradient(180deg, #fff7ec 0%, #fbefe1 42%, #fffaf3 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    a:hover,
    a:focus {
      color: var(--color-primary);
      outline: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .site-shell {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .skip-link {
      position: absolute;
      top: -60px;
      left: 18px;
      z-index: 1000;
      padding: 10px 14px;
      border-radius: var(--radius-pill);
      background: var(--color-stage);
      color: #fff;
    }

    .skip-link:focus {
      top: 16px;
      color: #fff;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 14px 0;
      background: rgba(255, 250, 243, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(83, 58, 43, .12);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--color-ink);
      white-space: nowrap;
    }

    .brand-mark::before {
      content: "";
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background:
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 58%, var(--color-accent) 100%);
      box-shadow: inset 0 0 0 2px rgba(255,255,255,.22), 0 10px 22px rgba(97, 40, 30, .24);
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      padding: 6px;
      border: 1px solid rgba(83, 58, 43, .14);
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .52);
      box-shadow: 0 10px 28px rgba(73, 44, 27, .06);
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      color: var(--color-muted);
      font-size: 15px;
      font-weight: 700;
    }

    .nav-link:hover,
    .nav-link:focus {
      background: rgba(229, 168, 72, .16);
      color: var(--color-primary-dark);
    }

    .nav-link.is-active {
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
      box-shadow: 0 12px 26px rgba(97, 40, 30, .18);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(83, 58, 43, .15);
      border-radius: 14px;
      background: rgba(255,255,255,.72);
      color: var(--color-primary-dark);
      align-items: center;
      justify-content: center;
    }

    .menu-toggle span {
      width: 18px;
      height: 2px;
      background: currentColor;
      position: relative;
      display: block;
      border-radius: 4px;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 4px;
    }

    .menu-toggle span::before {
      top: -6px;
    }

    .menu-toggle span::after {
      top: 6px;
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: var(--space-section) 0;
      position: relative;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: var(--radius-pill);
      border: 1px dashed rgba(141, 63, 45, .34);
      background: rgba(255, 240, 200, .55);
      color: var(--color-primary-dark);
      font-size: 13px;
      font-weight: 800;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--color-accent);
      box-shadow: 0 0 0 5px rgba(229,168,72,.16);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 18px;
      font-size: clamp(34px, 5.6vw, 66px);
      line-height: 1.08;
      letter-spacing: -.05em;
      color: #fff9ef;
      text-wrap: balance;
    }

    h2 {
      margin-bottom: 14px;
      font-size: clamp(26px, 3.3vw, 42px);
      line-height: 1.18;
      letter-spacing: -.035em;
      color: var(--color-ink);
      text-wrap: balance;
    }

    h3 {
      margin-bottom: 8px;
      font-size: 19px;
      line-height: 1.35;
      color: var(--color-ink);
    }

    p {
      color: var(--color-muted);
    }

    .lead {
      font-size: 18px;
      color: rgba(255, 249, 239, .82);
      max-width: 720px;
    }

    .muted {
      color: var(--color-muted);
    }

    .button-group-custom {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 12px 20px;
      border: 0;
      border-radius: var(--radius-pill);
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 12px 28px rgba(97, 40, 30, .15);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--color-accent), #f4c868);
      color: #311b17;
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: #211815;
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(229, 168, 72, .28);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .1);
      color: #fff9ef;
      border: 1px solid rgba(255,255,255,.22);
      box-shadow: none;
    }

    .btn-secondary:hover,
    .btn-secondary:focus {
      color: #fff;
      background: rgba(255,255,255,.16);
      transform: translateY(-2px);
    }

    .btn-dark {
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
      color: #fff;
    }

    .btn-dark:hover,
    .btn-dark:focus {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(97, 40, 30, .24);
    }

    .btn-outline {
      background: rgba(255, 250, 243, .72);
      border: 1px solid rgba(141, 63, 45, .22);
      color: var(--color-primary-dark);
      box-shadow: none;
    }

    .btn-outline:hover,
    .btn-outline:focus {
      background: rgba(255, 240, 200, .76);
      color: var(--color-primary-dark);
      transform: translateY(-2px);
    }

    .btn:focus,
    .filter-chip:focus,
    .faq-question:focus,
    .field:focus,
    .menu-toggle:focus {
      outline: 3px solid rgba(229,168,72,.34);
      outline-offset: 3px;
    }

    .category-hero {
      padding: 64px 0 44px;
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      padding: clamp(28px, 5vw, 54px);
      border-radius: 34px;
      background:
        radial-gradient(circle at 75% 18%, rgba(229,168,72,.34), transparent 24%),
        radial-gradient(circle at 12% 86%, rgba(255,255,255,.10), transparent 24%),
        linear-gradient(135deg, var(--color-stage), var(--color-stage-2) 55%, #5b2a22);
      box-shadow: var(--shadow-glow);
      isolation: isolate;
    }

    .hero-panel::before,
    .hero-panel::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 24px;
      background:
        radial-gradient(circle at 50% 18px, #fff7ec 0 6px, transparent 7px) repeat-y;
      background-size: 24px 42px;
      opacity: .9;
      z-index: -1;
    }

    .hero-panel::before {
      left: -12px;
    }

    .hero-panel::after {
      right: -12px;
    }

    .hero-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }

    .ticket-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--radius-pill);
      background: rgba(255,255,255,.08);
      color: rgba(255,249,239,.9);
      font-size: 13px;
      font-weight: 800;
    }

    .ticket-badge strong {
      color: var(--color-accent);
    }

    .hero-demo {
      padding: 18px;
      border-radius: 24px;
      background: rgba(255, 250, 243, .08);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(10px);
    }

    .demo-board {
      display: grid;
      gap: 12px;
    }

    .demo-line {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 250, 243, .10);
      border: 1px solid rgba(255,255,255,.12);
    }

    .seat-no {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: rgba(229,168,72,.18);
      color: var(--color-accent);
      font-weight: 900;
    }

    .demo-title {
      color: #fff9ef;
      font-weight: 900;
      line-height: 1.35;
    }

    .demo-desc {
      display: block;
      color: rgba(255,249,239,.66);
      font-size: 13px;
    }

    .hot-pill {
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      background: rgba(229,168,72,.18);
      color: #ffe0a1;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .toolbar-card {
      margin-top: 26px;
      padding: 20px;
      border-radius: 24px;
      background: var(--color-card);
      border: 1px solid var(--color-line);
      box-shadow: var(--shadow-sm);
    }

    .toolbar-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 16px;
    }

    .search-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
    }

    .field {
      width: 100%;
      height: 48px;
      margin: 0;
      padding: 0 16px;
      border: 1px solid rgba(83, 58, 43, .18);
      border-radius: var(--radius-pill);
      background: #fffaf5;
      color: var(--color-ink);
      box-shadow: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .field:hover {
      border-color: rgba(141,63,45,.34);
    }

    .field:focus {
      border-color: rgba(229,168,72,.68);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(229,168,72,.15);
    }

    .filter-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid rgba(141, 63, 45, .18);
      border-radius: var(--radius-pill);
      background: rgba(255, 250, 243, .88);
      padding: 9px 13px;
      color: var(--color-muted);
      font-weight: 800;
      line-height: 1;
      transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .filter-chip:hover,
    .filter-chip.is-active {
      transform: translateY(-1px);
      background: var(--color-primary-dark);
      color: #fff8ec;
      border-color: var(--color-primary-dark);
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 24px;
      align-items: start;
    }

    .card-list {
      display: grid;
      gap: 16px;
    }

    .entry-card {
      position: relative;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 16px;
      align-items: center;
      padding: 20px;
      border-radius: 24px;
      border: 1px solid var(--color-line);
      background:
        linear-gradient(90deg, rgba(255, 240, 200, .46), transparent 28%),
        var(--color-card);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .entry-card::before {
      content: "";
      position: absolute;
      top: 18px;
      bottom: 18px;
      left: 82px;
      border-left: 1px dashed rgba(141,63,45,.22);
    }

    .entry-card:hover {
      transform: translateY(-3px);
      border-color: rgba(141,63,45,.28);
      box-shadow: var(--shadow-md);
    }

    .entry-number {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff0c8;
      color: var(--color-primary-dark);
      font-weight: 950;
      z-index: 1;
    }

    .entry-body {
      min-width: 0;
      z-index: 1;
    }

    .entry-body h3 {
      margin-bottom: 6px;
    }

    .entry-body p {
      margin-bottom: 12px;
      font-size: 15px;
    }

    .entry-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag,
    .mini-tag {
      display: inline-flex;
      align-items: center;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
    }

    .tag {
      padding: 8px 10px;
      color: var(--color-primary-dark);
      background: rgba(229,168,72,.16);
      border: 1px solid rgba(229,168,72,.26);
    }

    .mini-tag {
      padding: 7px 9px;
      color: var(--color-muted);
      background: rgba(141,63,45,.07);
      border: 1px solid rgba(141,63,45,.10);
    }

    .entry-action {
      min-width: 116px;
      text-align: right;
      z-index: 1;
    }

    .heat {
      display: block;
      margin-bottom: 10px;
      color: var(--color-primary);
      font-weight: 950;
    }

    .side-panel {
      position: sticky;
      top: 94px;
      display: grid;
      gap: 16px;
    }

    .side-card,
    .stat-card,
    .faq-item,
    .privacy-card {
      border: 1px solid var(--color-line);
      border-radius: 24px;
      background: rgba(255, 253, 248, .86);
      box-shadow: var(--shadow-sm);
    }

    .side-card {
      padding: 20px;
    }

    .side-card h3 {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .side-card h3::before {
      content: "";
      width: 8px;
      height: 18px;
      border-radius: 10px;
      background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
    }

    .recommend-list {
      display: grid;
      gap: 12px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
    }

    .recommend-list li {
      padding: 12px;
      border-radius: 16px;
      background: rgba(255, 240, 200, .34);
      color: var(--color-muted);
      font-size: 14px;
    }

    .recommend-list strong {
      display: block;
      color: var(--color-ink);
      margin-bottom: 3px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .stat-card {
      padding: 22px;
      overflow: hidden;
      position: relative;
    }

    .stat-card::after {
      content: "";
      position: absolute;
      right: -20px;
      bottom: -20px;
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 12px solid rgba(229,168,72,.16);
    }

    .stat-value {
      display: block;
      margin-bottom: 6px;
      color: var(--color-primary-dark);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 950;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .stat-card p {
      margin: 0;
      font-size: 14px;
    }

    .flow-section {
      background:
        linear-gradient(180deg, rgba(255,250,243,.08), rgba(255,250,243,.80)),
        repeating-linear-gradient(90deg, rgba(141,63,45,.05) 0 1px, transparent 1px 88px);
    }

    .flow-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 26px;
      align-items: stretch;
    }

    .flow-card {
      padding: 26px;
      border-radius: 28px;
      background: var(--color-stage);
      color: #fff8ec;
      box-shadow: var(--shadow-glow);
      position: relative;
      overflow: hidden;
    }

    .flow-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 72% 20%, rgba(229,168,72,.24), transparent 28%);
      pointer-events: none;
    }

    .flow-card h2,
    .flow-card p {
      position: relative;
    }

    .flow-card h2 {
      color: #fff8ec;
    }

    .flow-card p {
      color: rgba(255,248,236,.74);
    }

    .step-list {
      display: grid;
      gap: 12px;
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      position: relative;
    }

    .step-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .step-list span {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #321b16;
      background: var(--color-accent);
      font-weight: 950;
    }

    .notice-stack {
      display: grid;
      gap: 14px;
    }

    .notice-card {
      padding: 20px;
      border-radius: 24px;
      background: rgba(255,253,248,.9);
      border: 1px solid var(--color-line);
      box-shadow: var(--shadow-sm);
    }

    .notice-card p {
      margin: 0;
      font-size: 15px;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 26px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 18px 20px;
      border: 0;
      background: transparent;
      color: var(--color-ink);
      text-align: left;
      font-weight: 900;
    }

    .faq-question::after {
      content: "+";
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(229,168,72,.18);
      color: var(--color-primary-dark);
      font-weight: 950;
    }

    .faq-item.is-open .faq-question::after {
      content: "−";
      background: var(--color-primary-dark);
      color: #fff;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 18px;
      color: var(--color-muted);
      font-size: 15px;
    }

    .faq-item.is-open .faq-answer {
      display: block;
    }

    .cta-band {
      padding: clamp(28px, 5vw, 44px);
      border-radius: 32px;
      background:
        radial-gradient(circle at 14% 50%, rgba(255,240,200,.38), transparent 25%),
        linear-gradient(135deg, #51261f, #2a1715);
      color: #fff8ec;
      box-shadow: var(--shadow-glow);
      overflow: hidden;
      position: relative;
    }

    .cta-band::after {
      content: "ADMIT";
      position: absolute;
      right: -6px;
      bottom: -22px;
      color: rgba(255,255,255,.05);
      font-size: 112px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -.06em;
      pointer-events: none;
    }

    .cta-band h2 {
      color: #fff8ec;
    }

    .cta-band p {
      color: rgba(255,248,236,.74);
      max-width: 720px;
    }

    .privacy-card {
      padding: 22px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
    }

    .privacy-icon {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(229,168,72,.18);
      color: var(--color-primary-dark);
      font-weight: 950;
    }

    .privacy-card p {
      margin-bottom: 0;
      font-size: 15px;
    }

    .footer {
      padding: 54px 0 34px;
      background: #211815;
      color: rgba(255, 248, 236, .72);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .55fr 1fr;
      gap: 28px;
      align-items: start;
    }

    .footer .brand-mark {
      color: #fff8ec;
      margin-bottom: 12px;
    }

    .footer p {
      color: rgba(255,248,236,.66);
      margin-bottom: 0;
    }

    .footer h3 {
      color: #fff8ec;
      font-size: 16px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255,248,236,.70);
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: var(--color-accent);
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer .tag {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.10);
      color: rgba(255,248,236,.78);
    }

    .copyright {
      margin-top: 18px;
      color: rgba(255,248,236,.48);
      font-size: 13px;
    }

    .float-trigger {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 90;
      border: 0;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(33, 24, 21, .68);
      backdrop-filter: blur(10px);
    }

    .modal-overlay.is-visible {
      display: flex;
    }

    .lead-modal {
      width: min(520px, 100%);
      border-radius: 28px;
      background: var(--color-paper);
      box-shadow: 0 28px 80px rgba(0,0,0,.32);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.28);
    }

    .modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 24px 16px;
      background: linear-gradient(135deg, rgba(229,168,72,.22), rgba(141,63,45,.08));
    }

    .modal-head h2 {
      margin-bottom: 4px;
      font-size: 24px;
    }

    .modal-head p {
      margin: 0;
      font-size: 14px;
    }

    .modal-close {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(83,58,43,.12);
      border-radius: 14px;
      background: rgba(255,255,255,.62);
      color: var(--color-primary-dark);
      font-size: 22px;
      line-height: 1;
    }

    .modal-form {
      display: grid;
      gap: 12px;
      padding: 22px 24px 24px;
    }

    .modal-form textarea.field {
      min-height: 104px;
      padding-top: 14px;
      border-radius: 18px;
      resize: vertical;
    }

    .form-note {
      margin: 0;
      color: var(--color-muted);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .content-grid,
      .flow-grid,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .site-header {
        padding: 10px 0;
      }

      .header-inner {
        position: relative;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 22px;
        padding: 10px;
        background: rgba(255, 250, 243, .98);
        box-shadow: var(--shadow-md);
      }

      .site-nav.is-open {
        display: flex;
      }

      .nav-link {
        justify-content: center;
        border-radius: 16px;
      }

      .category-hero {
        padding-top: 36px;
      }

      .hero-panel {
        border-radius: 26px;
      }

      .search-row {
        grid-template-columns: 1fr;
      }

      .entry-card {
        grid-template-columns: auto minmax(0, 1fr);
      }

      .entry-card::before {
        display: none;
      }

      .entry-action {
        grid-column: 1 / -1;
        text-align: left;
        min-width: 0;
      }

      .entry-action .btn {
        width: 100%;
      }

      .side-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .toolbar-top {
        flex-direction: column;
      }

      .button-group-custom .btn,
      .cta-band .btn {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .site-shell {
        width: min(100% - 22px, 1180px);
      }

      .brand-mark {
        font-size: 14px;
      }

      .brand-mark::before {
        width: 28px;
        height: 28px;
      }

      .hero-meta-row,
      .filter-strip,
      .tag-cloud {
        gap: 8px;
      }

      .ticket-badge,
      .filter-chip {
        width: 100%;
        justify-content: center;
      }

      .demo-line {
        grid-template-columns: auto 1fr;
      }

      .hot-pill {
        grid-column: 1 / -1;
        text-align: center;
      }

      .stat-grid {
        grid-template-columns: 1fr;
      }

      .privacy-card {
        grid-template-columns: 1fr;
      }

      .float-trigger {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
      }
    }
