/* roulang page: index */
:root{
      --bg:#f7f1ec;
      --bg-soft:#faf6f3;
      --card:#fffaf7;
      --card-2:#fdf7f5;
      --text:#211a1c;
      --muted:#74666a;
      --line:#e7d9d7;
      --line-strong:#d8c2c0;
      --primary:#5b2333;
      --primary-2:#431927;
      --accent:#b66a74;
      --gold:#e8b86d;
      --deep:#181014;
      --shadow:0 18px 50px rgba(33,26,28,.08);
      --shadow-soft:0 10px 24px rgba(33,26,28,.06);
      --radius-lg:28px;
      --radius-md:22px;
      --radius-sm:16px;
      --container:1240px;
      --space-1:8px;
      --space-2:12px;
      --space-3:16px;
      --space-4:20px;
      --space-5:28px;
      --space-6:40px;
      --space-7:56px;
      --space-8:72px;
      --transition:220ms cubic-bezier(.2,.7,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(182,106,116,.12), transparent 28%),
        radial-gradient(circle at top right, rgba(232,184,109,.12), transparent 24%),
        linear-gradient(180deg, #fbf7f4 0%, #f7f1ec 100%);
      line-height:1.75;
      letter-spacing:.01em;
      text-rendering:optimizeLegibility;
    }
    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(91,35,51,.18);color:var(--text)}
    .site-wrap{
      position:relative;
      overflow:hidden;
    }
    .site-container{
      max-width:var(--container);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:saturate(160%) blur(14px);
      background:rgba(250,246,243,.84);
      border-bottom:1px solid rgba(231,217,215,.84);
      box-shadow:0 1px 0 rgba(255,255,255,.6) inset;
    }
    .header-inner{
      padding:14px 0 10px;
    }
    .brand-row{
      display:flex;
      align-items:center;
      gap:16px;
      justify-content:space-between;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      background:
        linear-gradient(135deg, rgba(91,35,51,1) 0%, rgba(182,106,116,.95) 58%, rgba(232,184,109,.75) 100%);
      box-shadow:0 10px 26px rgba(91,35,51,.24);
      position:relative;
      flex:none;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.22);
    }
    .brand-mark::before{
      width:16px;height:16px;left:11px;top:12px;
    }
    .brand-mark::after{
      width:8px;height:8px;right:10px;bottom:10px;
      background:rgba(255,255,255,.34);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .brand-name{
      font-size:1.04rem;
      line-height:1.15;
      font-weight:800;
      color:var(--text);
      letter-spacing:.02em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      margin-top:4px;
      font-size:.82rem;
      color:var(--muted);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .header-tools{
      display:flex;
      align-items:center;
      gap:12px;
      flex:1;
      justify-content:flex-end;
      min-width:0;
    }
    .search-shell{
      flex:1;
      max-width:420px;
      min-width:220px;
    }
    .search-form{
      display:flex;
      align-items:center;
      gap:10px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      padding:6px 8px 6px 16px;
      box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
      transition:all var(--transition);
    }
    .search-form:focus-within{
      border-color:rgba(91,35,51,.42);
      box-shadow:0 0 0 4px rgba(91,35,51,.08);
    }
    .search-form input{
      border:0;
      outline:0;
      background:transparent;
      box-shadow:none;
      margin:0;
      height:40px;
      padding:0;
      color:var(--text);
      min-width:0;
    }
    .search-form input::placeholder{color:#9b8a8d}
    .search-action{
      border:0;
      border-radius:999px;
      padding:11px 16px;
      background:var(--primary);
      color:#fff;
      cursor:pointer;
      font-weight:700;
      white-space:nowrap;
      box-shadow:0 8px 18px rgba(91,35,51,.18);
      transition:all var(--transition);
    }
    .search-action:hover,
    .search-action:focus{
      background:var(--primary-2);
      transform:translateY(-1px);
    }
    .search-action:focus,
    .btn-primary:focus,
    .btn-secondary:focus,
    .btn-ghost:focus,
    .link-cta:focus,
    .tab-link:focus,
    .card-link:focus,
    .form-control:focus,
    .form-select:focus,
    textarea:focus{
      outline:3px solid rgba(232,184,109,.48);
      outline-offset:2px;
    }
    .nav-line{
      padding:8px 0 14px;
    }
    .tabs-wrap{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      padding-bottom:2px;
    }
    .tabs-wrap::-webkit-scrollbar{display:none}
    .tab-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 16px;
      border-radius:999px;
      border:1px solid rgba(91,35,51,.12);
      background:rgba(255,255,255,.74);
      color:var(--muted);
      font-weight:700;
      font-size:.92rem;
      white-space:nowrap;
      transition:all var(--transition);
      box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
    }
    .tab-link:hover{
      transform:translateY(-1px);
      border-color:rgba(182,106,116,.35);
      color:var(--primary);
      background:rgba(91,35,51,.05);
    }
    .tab-link.active{
      background:var(--primary);
      color:#fff;
      border-color:transparent;
      box-shadow:0 10px 20px rgba(91,35,51,.18);
    }
    .tab-dot{
      width:8px;height:8px;border-radius:999px;background:currentColor;opacity:.75;
    }
    main{display:block}
    .section{
      padding:var(--space-8) 0;
      position:relative;
    }
    .section-tight{padding:var(--space-7) 0}
    .section-head{
      margin-bottom:28px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(91,35,51,.08);
      color:var(--primary);
      font-size:.82rem;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:none;
      margin-bottom:14px;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--gold);
      box-shadow:0 0 0 4px rgba(232,184,109,.16);
    }
    h1,h2,h3,h4{
      margin:0;
      color:var(--text);
      line-height:1.15;
      letter-spacing:.01em;
    }
    h1{
      font-size:clamp(2rem,4.2vw,3.6rem);
      font-weight:800;
      max-width:12ch;
    }
    h2{
      font-size:clamp(1.6rem,2.6vw,2.6rem);
      font-weight:800;
    }
    h3{
      font-size:clamp(1.15rem,1.8vw,1.45rem);
      font-weight:800;
    }
    p{margin:0;color:var(--muted)}
    .hero{
      padding:28px 0 18px;
    }
    .hero-grid{
      align-items:stretch;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:24px;
      min-height:100%;
    }
    .hero-lead{
      font-size:1.08rem;
      line-height:1.9;
      max-width:40em;
      color:#5b4c50;
      margin-top:18px;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:26px;
    }
    .btn-primary,
    .btn-secondary,
    .btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:0 18px;
      border-radius:14px;
      font-weight:800;
      border:1px solid transparent;
      transition:all var(--transition);
      cursor:pointer;
      position:relative;
      overflow:hidden;
    }
    .btn-primary{
      background:var(--primary);
      color:#fff;
      box-shadow:0 14px 24px rgba(91,35,51,.16);
    }
    .btn-primary:hover{
      background:var(--primary-2);
      transform:translateY(-1px);
      box-shadow:0 18px 30px rgba(91,35,51,.2);
    }
    .btn-secondary{
      background:rgba(255,255,255,.78);
      color:var(--primary);
      border-color:rgba(91,35,51,.14);
    }
    .btn-secondary:hover{
      background:rgba(91,35,51,.06);
      transform:translateY(-1px);
      border-color:rgba(91,35,51,.24);
    }
    .btn-ghost{
      background:transparent;
      color:var(--text);
      border-color:rgba(91,35,51,.10);
    }
    .btn-ghost:hover{
      background:rgba(91,35,51,.05);
      transform:translateY(-1px);
    }
    .btn-arrow::after{
      content:"→";
      transition:transform var(--transition);
    }
    .btn-arrow:hover::after{transform:translateX(4px)}
    .hero-note-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(91,35,51,.10);
      color:var(--muted);
      font-size:.84rem;
      font-weight:700;
    }
    .tag strong{color:var(--primary)}
    .hero-panel{
      background:
        radial-gradient(circle at top right, rgba(232,184,109,.14), transparent 28%),
        linear-gradient(180deg, rgba(91,35,51,.98), rgba(24,16,20,.98));
      border-radius:var(--radius-lg);
      padding:28px;
      color:#fff;
      box-shadow:0 24px 60px rgba(24,16,20,.18);
      position:relative;
      overflow:hidden;
      min-height:100%;
    }
    .hero-panel::before,
    .hero-panel::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      filter:blur(2px);
    }
    .hero-panel::before{
      width:180px;height:180px;
      right:-40px;top:-60px;
    }
    .hero-panel::after{
      width:260px;height:260px;
      left:-120px;bottom:-160px;
      background:rgba(182,106,116,.12);
    }
    .panel-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .panel-title h3{color:#fff}
    .panel-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      color:#fcefdc;
      font-size:.82rem;
      font-weight:700;
      white-space:nowrap;
    }
    .dashboard{
      display:grid;
      gap:14px;
      grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .dash-card{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:22px;
      padding:18px;
      min-height:132px;
      backdrop-filter:blur(6px);
      transition:transform var(--transition), border-color var(--transition), background var(--transition);
    }
    .dash-card:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.10);
      border-color:rgba(232,184,109,.22);
    }
    .dash-kicker{
      font-size:.78rem;
      letter-spacing:.08em;
      color:rgba(255,255,255,.74);
      margin-bottom:10px;
      font-weight:700;
    }
    .dash-value{
      font-size:1.45rem;
      font-weight:800;
      color:#fff;
      line-height:1.2;
      margin-bottom:8px;
    }
    .dash-desc{
      color:rgba(255,255,255,.76);
      font-size:.95rem;
      line-height:1.8;
    }
    .dash-meter{
      margin-top:14px;
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      overflow:hidden;
    }
    .dash-meter span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(232,184,109,.9), rgba(182,106,116,.96));
    }
    .trust-strip{
      margin-top:14px;
      padding:14px 18px;
      border:1px solid rgba(182,106,116,.16);
      background:rgba(255,255,255,.74);
      border-radius:18px;
      display:flex;
      align-items:flex-start;
      gap:12px;
      box-shadow:var(--shadow-soft);
    }
    .trust-icon{
      width:30px;height:30px;border-radius:999px;
      display:inline-flex;align-items:center;justify-content:center;
      color:#fff;background:var(--primary);
      flex:none;
      box-shadow:0 8px 16px rgba(91,35,51,.15);
    }
    .trust-strip p{
      color:#5f5256;
      font-size:.96rem;
      line-height:1.8;
    }
    .grid-card{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(91,35,51,.10);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      padding:24px;
      height:100%;
      position:relative;
      overflow:hidden;
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .grid-card:hover{
      transform:translateY(-3px);
      border-color:rgba(182,106,116,.28);
      box-shadow:0 24px 60px rgba(33,26,28,.10);
    }
    .grid-card::after{
      content:"";
      position:absolute;
      inset:auto -60px -60px auto;
      width:160px;height:160px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(232,184,109,.10), transparent 68%);
      pointer-events:none;
    }
    .metric{
      display:flex;
      align-items:flex-start;
      gap:16px;
    }
    .metric-ico{
      width:48px;
      height:48px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(91,35,51,.12), rgba(182,106,116,.10));
      color:var(--primary);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      flex:none;
    }
    .metric strong{
      display:block;
      font-size:1.08rem;
      color:var(--text);
      margin-bottom:6px;
    }
    .metric p{font-size:.98rem;line-height:1.8}
    .progress{
      height:8px;
      background:#f1e7e3;
      border-radius:999px;
      overflow:hidden;
      margin-top:18px;
    }
    .progress span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg, var(--primary), var(--accent));
    }
    .section-title{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:24px;
    }
    .section-title p{
      max-width:46em;
      font-size:1rem;
      line-height:1.85;
    }
    .channel-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
    }
    .channel-big{
      grid-column:span 6;
      min-height:100%;
      padding:28px;
      border-radius:var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(253,247,245,.95));
      border:1px solid rgba(91,35,51,.10);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .channel-big .big-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:16px;
      margin-bottom:18px;
    }
    .channel-big .big-top h3{font-size:1.6rem}
    .channel-big ul,
    .small-list{
      list-style:none;
      margin:18px 0 0;
      padding:0;
    }
    .channel-big li,
    .small-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:8px 0;
      color:#55494d;
      font-size:.98rem;
    }
    .channel-big li::before,
    .small-list li::before{
      content:"";
      width:8px;
      height:8px;
      margin-top:10px;
      border-radius:999px;
      background:var(--accent);
      flex:none;
    }
    .channel-big .card-link,
    .small-card .card-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-weight:800;
      margin-top:18px;
    }
    .channel-big .card-link::after,
    .small-card .card-link::after,
    .resource-card .card-link::after{
      content:"→";
      transition:transform var(--transition);
    }
    .channel-big .card-link:hover::after,
    .small-card .card-link:hover::after,
    .resource-card .card-link:hover::after{
      transform:translateX(4px);
    }
    .mini-grid{
      grid-column:span 6;
      display:grid;
      gap:18px;
      grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .small-card{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(91,35,51,.10);
      border-radius:24px;
      padding:22px;
      box-shadow:var(--shadow-soft);
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
      min-height:100%;
    }
    .small-card:hover{
      transform:translateY(-2px);
      border-color:rgba(182,106,116,.28);
      box-shadow:0 20px 42px rgba(33,26,28,.09);
    }
    .small-card .tag{
      margin-bottom:14px;
      background:rgba(91,35,51,.06);
    }
    .small-card p{line-height:1.8}
    .comparison{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
    }
    .compare-card{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(91,35,51,.10);
      border-radius:var(--radius-lg);
      padding:26px;
      box-shadow:var(--shadow-soft);
    }
    .compare-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
    }
    .compare-head .tag{
      background:rgba(255,255,255,.72);
    }
    .compare-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .compare-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 14px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(250,246,243,.9), rgba(255,255,255,.84));
      border:1px solid rgba(91,35,51,.06);
    }
    .compare-list strong{
      display:block;
      color:var(--text);
      margin-bottom:4px;
      font-size:1rem;
    }
    .compare-list span{
      color:var(--muted);
      font-size:.96rem;
      line-height:1.7;
    }
    .compare-dot{
      width:10px;height:10px;border-radius:999px;background:var(--gold);margin-top:8px;flex:none;
      box-shadow:0 0 0 5px rgba(232,184,109,.12);
    }
    .compare-card.alt .compare-dot{background:var(--accent);box-shadow:0 0 0 5px rgba(182,106,116,.12)}
    .resource-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
    }
    .resource-card{
      grid-column:span 4;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(91,35,51,.10);
      border-radius:24px;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
      display:flex;
      flex-direction:column;
      min-height:100%;
    }
    .resource-card:hover{
      transform:translateY(-3px);
      border-color:rgba(182,106,116,.28);
      box-shadow:0 24px 50px rgba(33,26,28,.10);
    }
    .resource-art{
      min-height:142px;
      background:
        linear-gradient(135deg, rgba(91,35,51,.98), rgba(182,106,116,.94) 56%, rgba(232,184,109,.88));
      position:relative;
      overflow:hidden;
    }
    .resource-art::before,
    .resource-art::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.14);
    }
    .resource-art::before{
      width:140px;height:140px;top:-40px;right:-20px;
    }
    .resource-art::after{
      width:90px;height:90px;left:18px;bottom:-30px;
      background:rgba(255,255,255,.08);
    }
    .resource-body{
      padding:22px;
      display:flex;
      flex-direction:column;
      gap:12px;
      flex:1;
    }
    .resource-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .resource-body p{line-height:1.85}
    .time-row{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:var(--muted);
      font-size:.88rem;
      padding-top:8px;
    }
    .timeline{
      display:grid;
      gap:16px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:64px 1fr;
      gap:16px;
      align-items:start;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(91,35,51,.10);
      border-radius:24px;
      padding:20px;
      box-shadow:var(--shadow-soft);
    }
    .timeline-index{
      width:54px;
      height:54px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(91,35,51,.14), rgba(232,184,109,.18));
      color:var(--primary);
      font-weight:900;
      font-size:1.15rem;
    }
    .timeline-item p{
      margin-top:8px;
      line-height:1.85;
    }
    .timeline-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .timeline-tags .tag{background:rgba(91,35,51,.05)}
    .faq-wrap{
      background:linear-gradient(180deg, rgba(255,255,255,.74), rgba(250,246,243,.92));
      border:1px solid rgba(91,35,51,.10);
      border-radius:var(--radius-lg);
      padding:26px;
      box-shadow:var(--shadow-soft);
    }
    .accordion{
      background:transparent;
      border:0;
      margin:0;
    }
    .accordion-title{
      color:var(--text);
      font-size:1.02rem;
      font-weight:800;
      padding:18px 18px 18px 48px;
      border-radius:18px;
      position:relative;
      line-height:1.6;
      transition:background var(--transition), color var(--transition);
    }
    .accordion-title::before{
      content:"+";
      position:absolute;
      left:18px;
      top:50%;
      transform:translateY(-50%);
      width:20px;height:20px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      background:rgba(91,35,51,.08);
      color:var(--primary);
      font-weight:900;
      transition:transform var(--transition), background var(--transition);
    }
    .is-active > .accordion-title{
      background:rgba(91,35,51,.05);
    }
    .is-active > .accordion-title::before{
      content:"−";
      background:rgba(91,35,51,.12);
    }
    .accordion-content{
      padding:4px 18px 18px 48px;
      border:0;
      color:var(--muted);
      line-height:1.85;
    }
    .cta-panel{
      background:
        radial-gradient(circle at top right, rgba(232,184,109,.18), transparent 22%),
        linear-gradient(180deg, rgba(24,16,20,1), rgba(42,26,31,1));
      color:#fff;
      border-radius:var(--radius-lg);
      overflow:hidden;
      box-shadow:0 24px 60px rgba(24,16,20,.2);
    }
    .cta-inner{
      padding:30px;
    }
    .cta-inner h2,
    .cta-inner p{color:#fff}
    .cta-inner p{color:rgba(255,255,255,.82)}
    .form-grid{
      margin-top:24px;
    }
    .form-grid label{
      display:block;
      color:#fff;
      font-weight:700;
      margin-bottom:8px;
      font-size:.95rem;
    }
    .form-control,
    .form-select,
    textarea{
      width:100%;
      min-height:50px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.96);
      color:var(--text);
      box-shadow:none;
      margin:0;
      padding:13px 16px;
      transition:all var(--transition);
    }
    textarea{min-height:128px;resize:vertical}
    .form-control::placeholder,
    textarea::placeholder{color:#a79398}
    .form-control:focus,
    .form-select:focus,
    textarea:focus{
      border-color:rgba(232,184,109,.7);
      box-shadow:0 0 0 4px rgba(232,184,109,.14);
    }
    .help-text{
      margin-top:10px;
      font-size:.9rem;
      color:rgba(255,255,255,.74);
      line-height:1.8;
    }
    .form-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .form-actions .btn-primary{
      background:linear-gradient(135deg, var(--gold), #f0ca86);
      color:#2a1715;
    }
    .form-actions .btn-primary:hover{
      background:linear-gradient(135deg, #e7b45d, #eec46d);
    }
    .site-footer{
      background:var(--deep);
      color:rgba(255,255,255,.82);
      padding:56px 0 28px;
      margin-top:var(--space-8);
      position:relative;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at top right, rgba(232,184,109,.12), transparent 25%),
        radial-gradient(circle at left bottom, rgba(182,106,116,.12), transparent 18%);
      pointer-events:none;
    }
    .footer-inner{
      position:relative;
      z-index:1;
    }
    .footer-brand{
      color:#fff;
      font-size:1.2rem;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-text{
      max-width:36em;
      line-height:1.9;
      color:rgba(255,255,255,.72);
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:12px 18px;
      margin:18px 0 20px;
      padding:0;
      list-style:none;
    }
    .footer-links a{
      color:rgba(255,255,255,.84);
      font-weight:700;
    }
    .footer-links a:hover{color:#fff}
    .footer-meta{
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
      font-size:.92rem;
      color:rgba(255,255,255,.58);
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .section-divider{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(91,35,51,.12), transparent);
      margin:0 auto;
      max-width:var(--container);
    }
    .subtle-card{
      background:rgba(255,255,255,.7);
      border:1px solid rgba(91,35,51,.08);
      border-radius:22px;
      padding:20px;
      box-shadow:var(--shadow-soft);
    }
    .mini-stat{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 0;
      border-top:1px solid rgba(91,35,51,.08);
    }
    .mini-stat:first-child{border-top:0;padding-top:0}
    .mini-stat strong{
      display:block;
      font-size:1rem;
      color:var(--text);
      margin-bottom:4px;
    }
    .mini-stat span{color:var(--muted);font-size:.94rem}
    .mini-value{
      color:var(--primary);
      font-weight:900;
      white-space:nowrap;
    }
    .anchor-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:20px;
    }
    .anchor-row .tag{
      cursor:default;
    }
    .mobile-only{display:none}
    @media (max-width: 1023px){
      .header-tools{
        flex-wrap:wrap;
        justify-content:flex-start;
      }
      .search-shell{
        order:2;
        max-width:none;
        flex-basis:100%;
      }
      .hero-copy{margin-bottom:8px}
      .hero-panel{margin-top:18px}
      .channel-big,
      .mini-grid,
      .resource-card{grid-column:span 12}
      .resource-grid{gap:16px}
      .resource-card{grid-column:span 6}
      .section{padding:62px 0}
      .section-head p{max-width:none}
    }
    @media (max-width: 767px){
      .brand-row{
        align-items:flex-start;
        flex-direction:column;
      }
      .header-tools{
        width:100%;
      }
      .brand-name{font-size:1rem}
      .search-shell{min-width:0}
      .search-form{
        border-radius:18px;
        padding:8px 8px 8px 12px;
      }
      .search-form input{
        height:36px;
        font-size:.96rem;
      }
      .search-action{
        padding:10px 14px;
      }
      .hero{padding-top:14px}
      h1{max-width:none;font-size:clamp(1.9rem, 8vw, 2.7rem)}
      .hero-lead{font-size:1rem}
      .hero-actions,.anchor-row,.form-actions{width:100%}
      .hero-actions .btn-primary,
      .hero-actions .btn-secondary,
      .form-actions .btn-primary,
      .form-actions .btn-secondary{width:100%}
      .dashboard,
      .comparison,
      .resource-card,
      .timeline-item{
        grid-template-columns:1fr;
      }
      .dashboard{gap:12px}
      .dash-card{min-height:auto}
      .channel-grid,.resource-grid,.comparison{
        grid-template-columns:1fr;
      }
      .resource-card{grid-column:span 12}
      .timeline-item{
        display:block;
      }
      .timeline-index{margin-bottom:12px}
      .faq-wrap,.cta-inner,.grid-card,.channel-big,.small-card,.compare-card{padding:20px}
      .accordion-title{padding-left:44px}
      .accordion-content{padding-left:44px}
      .footer-meta{flex-direction:column}
      .mobile-only{display:inline-flex}
    }
    @media (max-width: 520px){
      .header-inner{padding-bottom:8px}
      .nav-line{padding-top:6px}
      .tab-link{padding:9px 13px;font-size:.88rem}
      .btn-primary,.btn-secondary,.btn-ghost,.search-action{min-height:44px}
      .hero-panel{padding:20px;border-radius:24px}
      .section{padding:54px 0}
      .section-tight{padding:46px 0}
      .dash-value{font-size:1.22rem}
      .footer-brand{font-size:1.08rem}
      .trust-strip{padding:12px 14px}
      .grid-card,.channel-big,.small-card,.compare-card,.resource-card,.timeline-item,.faq-wrap,.cta-panel{border-radius:22px}
    }

/* roulang page: category2 */
:root{
      --bg: #F7F1EC;
      --bg-soft: #FAF6F3;
      --panel: #FFFDFB;
      --panel-2: #F3E8E7;
      --panel-dark: #181014;
      --brand: #5B2333;
      --brand-2: #6B263D;
      --accent: #B66A74;
      --gold: #E8B86D;
      --text: #211A1C;
      --muted: #74666A;
      --line: #E7D9D7;
      --line-2: rgba(91,35,51,.14);
      --shadow: 0 18px 50px rgba(33,26,28,.08);
      --shadow-strong: 0 24px 60px rgba(33,26,28,.14);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-pill: 999px;
      --container: 1240px;
      --space-1: 8px;
      --space-2: 12px;
      --space-3: 16px;
      --space-4: 20px;
      --space-5: 28px;
      --space-6: 40px;
      --space-7: 56px;
      --space-8: 76px;
      --ease: 220ms ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 500px at 10% -10%, rgba(182,106,116,.12), transparent 62%),
        radial-gradient(900px 380px at 95% 0%, rgba(232,184,109,.14), transparent 55%),
        linear-gradient(180deg, #FBF7F4 0%, var(--bg) 100%);
      line-height:1.75;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none;transition:all var(--ease)}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(91,35,51,.16);color:var(--text)}
    :focus-visible{outline:3px solid rgba(91,35,51,.28);outline-offset:2px}

    .site-container{
      max-width:var(--container);
      margin:0 auto;
      padding-left:20px;
      padding-right:20px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(248,242,238,.94);
      border-bottom:1px solid rgba(231,217,215,.85);
      backdrop-filter:saturate(135%) blur(10px);
      transition:box-shadow var(--ease), background var(--ease), border-color var(--ease);
    }
    .site-header.is-scrolled{
      box-shadow:0 10px 30px rgba(33,26,28,.08);
      background:rgba(251,247,244,.98);
    }
    .header-inner{
      padding-top:14px;
      padding-bottom:14px;
    }
    .brand-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      flex:0 0 44px;
      border-radius:16px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.72), transparent 34%),
        linear-gradient(145deg, var(--brand) 0%, var(--brand-2) 58%, #2b1018 100%);
      position:relative;
      box-shadow:0 14px 30px rgba(91,35,51,.22);
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:auto;
      border-radius:999px;
      background:rgba(255,255,255,.88);
      opacity:.84;
    }
    .brand-mark::before{
      width:15px;height:4px;left:9px;top:13px;
      box-shadow:0 8px 0 rgba(255,255,255,.88), 0 16px 0 rgba(255,255,255,.66);
    }
    .brand-mark::after{
      width:7px;height:7px;right:10px;bottom:10px;
      background:rgba(232,184,109,.95);
      box-shadow:0 -15px 0 rgba(232,184,109,.72), -10px -8px 0 rgba(255,255,255,.65);
    }
    .brand-text{display:flex;flex-direction:column;min-width:0}
    .brand-name{
      font-size:18px;
      font-weight:800;
      letter-spacing:.2px;
      color:var(--brand);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      margin-top:2px;
      font-size:12px;
      color:var(--muted);
      letter-spacing:.2px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .header-tools{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .search-shell{
      min-width:280px;
      max-width:360px;
      flex:1 1 300px;
    }
    .search-form{
      display:flex;
      align-items:center;
      background:rgba(255,255,255,.84);
      border:1px solid var(--line);
      border-radius:var(--radius-pill);
      overflow:hidden;
      box-shadow:0 8px 24px rgba(33,26,28,.04);
      transition:border-color var(--ease), box-shadow var(--ease), transform var(--ease);
    }
    .search-form:focus-within{
      border-color:rgba(91,35,51,.36);
      box-shadow:0 0 0 4px rgba(91,35,51,.08), 0 10px 24px rgba(33,26,28,.05);
      transform:translateY(-1px);
    }
    .search-form input{
      border:0 !important;
      background:transparent !important;
      box-shadow:none !important;
      margin:0 !important;
      height:48px;
      padding:0 18px !important;
      font-size:15px;
      color:var(--text);
    }
    .search-form input::placeholder{color:#9A8B8F}
    .search-action{
      height:48px;
      padding:0 18px;
      border:0;
      background:linear-gradient(180deg, var(--brand) 0%, #4c1d2c 100%);
      color:#fff;
      font-weight:700;
      cursor:pointer;
      transition:transform var(--ease), box-shadow var(--ease), background var(--ease);
    }
    .search-action:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(91,35,51,.18)}
    .search-action:active{transform:translateY(0)}

    .btn-primary,
    .btn-secondary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:0 18px;
      border-radius:var(--radius-pill);
      font-weight:700;
      letter-spacing:.1px;
      line-height:1;
      border:1px solid transparent;
      cursor:pointer;
      transition:transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      background:linear-gradient(180deg, var(--brand) 0%, #471a28 100%);
      color:#fff;
      box-shadow:0 14px 30px rgba(91,35,51,.16);
    }
    .btn-primary:hover{
      transform:translateY(-1px);
      box-shadow:0 18px 34px rgba(91,35,51,.22);
      color:#fff;
    }
    .btn-secondary{
      background:rgba(255,255,255,.7);
      color:var(--brand);
      border-color:rgba(91,35,51,.18);
    }
    .btn-secondary:hover{
      background:rgba(91,35,51,.08);
      border-color:rgba(91,35,51,.26);
      transform:translateY(-1px);
      color:var(--brand);
    }
    .btn-arrow::after{
      content:"→";
      font-size:16px;
      line-height:1;
      transition:transform var(--ease);
    }
    .btn-arrow:hover::after{transform:translateX(4px)}

    .nav-line{
      margin-top:14px;
      overflow:hidden;
    }
    .tabs-wrap{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .tab-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:0 15px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.68);
      border:1px solid rgba(91,35,51,.12);
      color:#4d4044;
      font-size:14px;
      font-weight:700;
      transition:transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
    }
    .tab-link:hover{
      transform:translateY(-1px);
      background:rgba(91,35,51,.08);
      color:var(--brand);
      border-color:rgba(91,35,51,.22);
    }
    .tab-link.active{
      background:linear-gradient(180deg, rgba(91,35,51,.97) 0%, rgba(75,29,44,.96) 100%);
      color:#fff;
      border-color:transparent;
      box-shadow:0 10px 22px rgba(91,35,51,.18);
    }
    .tab-dot{
      width:8px;
      height:8px;
      border-radius:999px;
      background:currentColor;
      opacity:.55;
    }
    .tab-link.active .tab-dot{background:rgba(232,184,109,.95);opacity:1}

    main{display:block}

    .section{
      padding:var(--space-8) 0;
      position:relative;
    }
    .section-tight{padding:var(--space-7) 0}
    .section-head{
      margin-bottom:28px;
      max-width:820px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(182,106,116,.10);
      color:var(--brand);
      font-size:12px;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--gold);
      box-shadow:0 0 0 4px rgba(232,184,109,.16);
    }
    h1,h2,h3,h4,p{margin:0}
    h1{
      margin-top:16px;
      font-size:clamp(32px,4.5vw,54px);
      line-height:1.14;
      letter-spacing:-.02em;
      font-weight:800;
      color:var(--text);
    }
    h2{
      font-size:clamp(26px,3.2vw,38px);
      line-height:1.18;
      letter-spacing:-.01em;
      font-weight:800;
      color:var(--text);
    }
    h3{
      font-size:clamp(20px,2.1vw,24px);
      line-height:1.25;
      font-weight:800;
      color:var(--text);
    }
    .lead{
      margin-top:16px;
      font-size:17px;
      line-height:1.85;
      color:var(--muted);
      max-width:760px;
    }

    .hero{
      padding:24px 0 18px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(91,35,51,.10);
      border-radius:calc(var(--radius-xl) + 6px);
      background:
        radial-gradient(800px 360px at 10% 18%, rgba(182,106,116,.16), transparent 58%),
        radial-gradient(700px 320px at 88% 10%, rgba(232,184,109,.17), transparent 56%),
        linear-gradient(180deg, #FFFDFC 0%, #F8F1ED 100%);
      box-shadow:var(--shadow);
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(91,35,51,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91,35,51,.03) 1px, transparent 1px);
      background-size:28px 28px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.55), transparent 88%);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      padding:clamp(26px,4vw,40px);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.25fr .92fr;
      gap:28px;
      align-items:stretch;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:24px;
      min-width:0;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      letter-spacing:.04em;
      border:1px solid rgba(91,35,51,.14);
      background:rgba(255,255,255,.74);
      color:#55383f;
    }
    .badge strong{color:var(--brand)}
    .badge-soft{
      background:rgba(182,106,116,.08);
      border-color:rgba(182,106,116,.18);
      color:var(--brand);
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:6px;
    }
    .hero-note{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:14px 16px;
      border-radius:18px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(91,35,51,.10);
      color:#594c50;
      font-size:14px;
      line-height:1.75;
    }
    .hero-note .note-mark{
      width:10px;height:10px;border-radius:999px;flex:0 0 10px;margin-top:7px;
      background:var(--gold);
      box-shadow:0 0 0 4px rgba(232,184,109,.18);
    }

    .hero-panel{
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .metric-board{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .metric-card{
      padding:18px;
      border-radius:22px;
      background:var(--panel);
      border:1px solid rgba(91,35,51,.10);
      box-shadow:0 16px 38px rgba(33,26,28,.06);
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
      min-height:132px;
    }
    .metric-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(182,106,116,.26);
    }
    .metric-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(91,35,51,.08);
      color:var(--brand);
      font-size:12px;
      font-weight:700;
      margin-bottom:14px;
    }
    .metric-title{
      font-size:18px;
      font-weight:800;
      line-height:1.28;
      margin-bottom:10px;
    }
    .metric-desc{
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .meter{
      margin-top:14px;
      height:10px;
      border-radius:999px;
      background:#F0E4E1;
      overflow:hidden;
    }
    .meter span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--brand) 0%, var(--accent) 72%, var(--gold) 100%);
    }
    .panel-card{
      padding:20px;
      border-radius:24px;
      background:linear-gradient(180deg, #22171B 0%, #181014 100%);
      color:#F8F0EE;
      border:1px solid rgba(255,255,255,.06);
      box-shadow:0 20px 45px rgba(24,16,20,.22);
    }
    .panel-card h3{color:#fff}
    .panel-card p{color:rgba(248,240,238,.78)}
    .panel-list{
      list-style:none;
      margin:18px 0 0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .panel-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      font-size:14px;
      line-height:1.7;
      color:rgba(248,240,238,.85);
    }
    .panel-list li::before{
      content:"";
      width:10px;
      height:10px;
      margin-top:6px;
      border-radius:999px;
      background:var(--gold);
      box-shadow:0 0 0 4px rgba(232,184,109,.12);
      flex:0 0 10px;
    }
    .panel-kpi{
      margin-top:18px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:10px;
    }
    .kpi{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.07);
    }
    .kpi strong{
      display:block;
      font-size:18px;
      color:#fff;
      line-height:1.15;
    }
    .kpi span{
      display:block;
      margin-top:6px;
      color:rgba(248,240,238,.72);
      font-size:12px;
      line-height:1.5;
    }

    .trust-strip{
      padding:14px 0 0;
    }
    .trust-band{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:16px 20px;
      border-radius:20px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(91,35,51,.10);
      box-shadow:0 12px 26px rgba(33,26,28,.05);
    }
    .trust-band strong{
      color:var(--brand);
      margin-right:6px;
    }
    .trust-band p{
      color:#5f5054;
      font-size:14px;
      line-height:1.6;
    }
    .trust-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 13px;
      border-radius:999px;
      background:rgba(91,35,51,.08);
      color:var(--brand);
      font-size:13px;
      font-weight:700;
      flex:0 0 auto;
    }

    .mini-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr 1fr 1fr;
      gap:16px;
    }
    .info-card{
      padding:22px;
      border-radius:24px;
      background:var(--panel);
      border:1px solid rgba(91,35,51,.10);
      box-shadow:var(--shadow);
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
      min-height:180px;
    }
    .info-card:hover{
      transform:translateY(-3px);
      border-color:rgba(182,106,116,.24);
      box-shadow:var(--shadow-strong);
    }
    .info-card .card-tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(182,106,116,.10);
      color:var(--brand);
      font-size:12px;
      font-weight:700;
    }
    .info-card h3{margin-top:14px}
    .info-card p{
      margin-top:10px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .info-card .state{
      margin-top:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:#5d4d52;
      font-size:13px;
      font-weight:700;
    }
    .dot{
      width:10px;height:10px;border-radius:999px;background:var(--gold);
      box-shadow:0 0 0 4px rgba(232,184,109,.16);
      flex:0 0 10px;
    }
    .progress{
      margin-top:16px;
      height:8px;
      border-radius:999px;
      overflow:hidden;
      background:#F1E6E4;
    }
    .progress span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg, var(--brand) 0%, var(--accent) 60%, var(--gold) 100%)}
    .info-card.large{
      min-height:100%;
      grid-row:span 2;
      background:
        radial-gradient(700px 260px at 90% 10%, rgba(232,184,109,.12), transparent 50%),
        linear-gradient(180deg, #FFFDFC 0%, #FBF4F1 100%);
    }

    .channel-grid{
      display:grid;
      grid-template-columns:1.35fr .95fr .95fr;
      gap:18px;
      align-items:stretch;
    }
    .channel-card{
      position:relative;
      overflow:hidden;
      border-radius:26px;
      background:var(--panel);
      border:1px solid rgba(91,35,51,.10);
      box-shadow:var(--shadow);
      padding:22px;
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
      min-height:240px;
    }
    .channel-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(182,106,116,.26);
    }
    .channel-card::after{
      content:"";
      position:absolute;
      inset:auto -16% -42% auto;
      width:220px;
      height:220px;
      background:radial-gradient(circle, rgba(182,106,116,.14) 0%, rgba(182,106,116,.06) 36%, transparent 70%);
      pointer-events:none;
    }
    .channel-card.featured{
      grid-row:span 2;
      min-height:100%;
      padding:28px;
      background:
        radial-gradient(580px 260px at 92% 8%, rgba(232,184,109,.13), transparent 48%),
        linear-gradient(180deg, #FFFDFC 0%, #FAF3F0 100%);
    }
    .channel-art{
      height:92px;
      border-radius:20px;
      background:
        linear-gradient(135deg, rgba(91,35,51,.12), rgba(182,106,116,.08)),
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.8), transparent 24%),
        linear-gradient(120deg, #EFD4CF 0%, #F9EAE6 34%, #E7C8C5 100%);
      border:1px solid rgba(91,35,51,.08);
      margin-bottom:18px;
      position:relative;
      overflow:hidden;
    }
    .channel-art::before,
    .channel-art::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(91,35,51,.12);
    }
    .channel-art::before{
      width:72px;height:72px;left:18px;top:10px;
      box-shadow:86px 18px 0 rgba(232,184,109,.38), 156px 0 0 rgba(182,106,116,.22);
    }
    .channel-art::after{
      width:118px;height:12px;left:18px;bottom:16px;
      background:rgba(91,35,51,.12);
      box-shadow:0 -16px 0 rgba(255,255,255,.52);
    }
    .channel-card .badge{
      margin-bottom:14px;
    }
    .channel-card h3{
      margin-bottom:10px;
    }
    .channel-card p{
      color:var(--muted);
      font-size:14px;
      line-height:1.82;
    }
    .channel-points{
      margin:16px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:8px;
    }
    .channel-points li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#5f5054;
      font-size:14px;
      line-height:1.65;
    }
    .channel-points li::before{
      content:"";
      width:7px;
      height:7px;
      margin-top:8px;
      border-radius:999px;
      background:var(--accent);
      flex:0 0 7px;
      box-shadow:0 0 0 4px rgba(182,106,116,.10);
    }
    .card-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-top:18px;
      color:var(--brand);
      font-weight:800;
      font-size:14px;
      transition:gap var(--ease), transform var(--ease);
    }
    .card-link::after{
      content:"→";
      transition:transform var(--ease);
    }
    .card-link:hover{gap:12px}
    .card-link:hover::after{transform:translateX(3px)}

    .split-panel{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .compare-card{
      padding:24px;
      border-radius:26px;
      background:var(--panel);
      border:1px solid rgba(91,35,51,.10);
      box-shadow:var(--shadow);
      transition:transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }
    .compare-card:hover{
      transform:translateY(-2px);
      border-color:rgba(182,106,116,.24);
      box-shadow:var(--shadow-strong);
    }
    .compare-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
    }
    .compare-card h3{font-size:22px}
    .compare-card .compare-chip{
      display:inline-flex;
      align-items:center;
      padding:7px 11px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      letter-spacing:.02em;
    }
    .compare-chip.weak{
      background:#F1E5E3;
      color:#6C555A;
    }
    .compare-chip.strong{
      background:rgba(91,35,51,.10);
      color:var(--brand);
    }
    .compare-list{
      list-style:none;
      padding:0;
      margin:16px 0 0;
      display:grid;
      gap:12px;
    }
    .compare-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      font-size:14px;
      line-height:1.75;
      color:#5f5054;
    }
    .compare-list li::before{
      content:"";
      width:12px;height:12px;border-radius:999px;
      margin-top:6px;
      background:linear-gradient(180deg, var(--brand) 0%, var(--accent) 100%);
      box-shadow:0 0 0 4px rgba(91,35,51,.08);
      flex:0 0 12px;
    }
    .compare-card.strong-side{
      background:
        radial-gradient(700px 260px at 100% 0%, rgba(232,184,109,.10), transparent 52%),
        linear-gradient(180deg, #FFFDFC 0%, #FAF4F2 100%);
    }
    .compare-card.weak-side{
      background:
        radial-gradient(700px 260px at 0% 0%, rgba(182,106,116,.08), transparent 52%),
        linear-gradient(180deg, #FFFDFC 0%, #FBF7F6 100%);
    }

    .timeline-wrap{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:18px;
      align-items:start;
    }
    .timeline{
      padding:24px;
      border-radius:26px;
      background:var(--panel);
      border:1px solid rgba(91,35,51,.10);
      box-shadow:var(--shadow);
    }
    .timeline-list{
      display:grid;
      gap:14px;
      margin-top:20px;
    }
    .step{
      display:flex;
      gap:14px;
      padding:16px;
      border-radius:20px;
      background:rgba(247,241,236,.78);
      border:1px solid rgba(91,35,51,.08);
      transition:transform var(--ease), border-color var(--ease), background var(--ease);
    }
    .step:hover{
      transform:translateY(-2px);
      border-color:rgba(182,106,116,.24);
      background:#FFF;
    }
    .step-num{
      flex:0 0 40px;
      width:40px;
      height:40px;
      border-radius:14px;
      background:linear-gradient(180deg, var(--brand) 0%, #471a28 100%);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:800;
      box-shadow:0 10px 20px rgba(91,35,51,.18);
    }
    .step-body h3{
      font-size:18px;
      margin:0;
    }
    .step-body p{
      margin-top:6px;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .step-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }

    .resource-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
    }
    .resource-card{
      grid-column:span 4;
      position:relative;
      overflow:hidden;
      border-radius:24px;
      background:var(--panel);
      border:1px solid rgba(91,35,51,.10);
      box-shadow:var(--shadow);
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
      min-height:270px;
    }
    .resource-card:hover{
      transform:translateY(-3px);
      border-color:rgba(182,106,116,.26);
      box-shadow:var(--shadow-strong);
    }
    .resource-card.feature{
      grid-column:span 5;
      min-height:300px;
    }
    .resource-card.compact{
      grid-column:span 3;
    }
    .resource-cover{
      height:120px;
      background:
        linear-gradient(135deg, rgba(91,35,51,.22), rgba(182,106,116,.08)),
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.66), transparent 24%),
        linear-gradient(120deg, #E8D0CB 0%, #F8EBE6 38%, #E2C2C6 100%);
      border-bottom:1px solid rgba(91,35,51,.08);
      position:relative;
      overflow:hidden;
    }
    .resource-cover::before{
      content:"";
      position:absolute;
      inset:18px auto auto 18px;
      width:56px;height:56px;border-radius:18px;
      background:rgba(255,255,255,.20);
      border:1px solid rgba(255,255,255,.30);
      backdrop-filter:blur(3px);
      box-shadow:0 16px 32px rgba(33,26,28,.10);
      transform:rotate(6deg);
    }
    .resource-cover::after{
      content:"";
      position:absolute;
      inset:auto 18px 16px auto;
      width:110px;height:12px;border-radius:999px;
      background:rgba(91,35,51,.16);
      box-shadow:-14px -18px 0 rgba(255,255,255,.54), -28px -36px 0 rgba(232,184,109,.32);
    }
    .resource-body{
      padding:20px;
    }
    .resource-body h3{font-size:20px}
    .resource-body p{
      margin-top:10px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .resource-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .meta-pill{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background:#F6E9E7;
      color:#704f56;
      font-size:12px;
      font-weight:700;
    }
    .resource-mini{
      margin-top:18px;
      display:grid;
      gap:10px;
    }
    .resource-mini .line{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-size:13px;
      color:#5d4d52;
    }
    .resource-mini .bar{
      flex:1 1 auto;
      height:6px;
      border-radius:999px;
      background:#F1E6E4;
      overflow:hidden;
      max-width:160px;
    }
    .resource-mini .bar span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
    }

    .faq-section{
      padding-top:0;
    }
    .faq-wrap{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:20px;
      align-items:start;
    }
    .faq-intro{
      padding:24px;
      border-radius:26px;
      background:linear-gradient(180deg, #FFFDFC 0%, #FBF4F2 100%);
      border:1px solid rgba(91,35,51,.10);
      box-shadow:var(--shadow);
      position:sticky;
      top:132px;
    }
    .faq-intro .eyebrow{margin-bottom:14px}
    .faq-intro p{
      margin-top:14px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
    }
    .faq-accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border-radius:22px;
      overflow:hidden;
      border:1px solid rgba(91,35,51,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 12px 28px rgba(33,26,28,.05);
    }
    .accordion-title{
      font-size:17px;
      font-weight:800;
      color:var(--text);
      padding:18px 20px;
      background:transparent;
    }
    .accordion-content{
      border:0;
      border-top:1px solid rgba(91,35,51,.08);
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
      padding:18px 20px 20px;
      background:#FFF;
    }
    .accordion-title::before{
      color:var(--brand);
      font-size:22px;
      top:50%;
      margin-top:-11px;
      right:18px;
    }
    .accordion-item.is-active{
      border-color:rgba(182,106,116,.24);
    }
    .accordion-item.is-active .accordion-title{
      background:rgba(91,35,51,.04);
    }

    .cta-section{
      padding-top:0;
    }
    .cta-shell{
      border-radius:30px;
      overflow:hidden;
      background:linear-gradient(180deg, #22171B 0%, #181014 100%);
      color:#fff;
      box-shadow:0 30px 70px rgba(24,16,20,.28);
      border:1px solid rgba(255,255,255,.06);
    }
    .cta-inner{
      padding:clamp(24px,4vw,38px);
    }
    .cta-grid{
      display:grid;
      grid-template-columns:1fr .98fr;
      gap:22px;
      align-items:stretch;
    }
    .cta-copy h2{color:#fff}
    .cta-copy .lead{color:rgba(248,240,238,.76)}
    .cta-points{
      list-style:none;
      padding:0;
      margin:20px 0 0;
      display:grid;
      gap:10px;
    }
    .cta-points li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      font-size:14px;
      line-height:1.7;
      color:rgba(248,240,238,.84);
    }
    .cta-points li::before{
      content:"";
      width:10px;height:10px;border-radius:999px;
      margin-top:6px;
      background:var(--gold);
      box-shadow:0 0 0 4px rgba(232,184,109,.12);
      flex:0 0 10px;
    }
    .form-card{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      border-radius:26px;
      padding:22px;
    }
    .field-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .form-field{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin-bottom:14px;
    }
    .form-field.full{grid-column:1/-1}
    .form-field label{
      font-size:13px;
      font-weight:700;
      color:rgba(248,240,238,.9);
    }
    .form-field input,
    .form-field select,
    .form-field textarea{
      width:100%;
      min-height:48px;
      margin:0;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10) !important;
      background:rgba(255,255,255,.94) !important;
      color:#261d20;
      box-shadow:none !important;
      padding:12px 14px !important;
      transition:border-color var(--ease), box-shadow var(--ease), transform var(--ease);
    }
    .form-field textarea{min-height:120px;resize:vertical}
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus{
      border-color:rgba(232,184,109,.92) !important;
      box-shadow:0 0 0 4px rgba(232,184,109,.16) !important;
      transform:translateY(-1px);
      outline:none;
    }
    .form-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top:6px;
    }
    .form-submit{
      min-height:50px;
      padding:0 22px;
      border-radius:999px;
      border:0;
      background:linear-gradient(180deg, var(--gold) 0%, #d6a44e 100%);
      color:#291a1d;
      font-weight:800;
      box-shadow:0 14px 28px rgba(232,184,109,.18);
      cursor:pointer;
      transition:transform var(--ease), box-shadow var(--ease);
    }
    .form-submit:hover{transform:translateY(-1px);box-shadow:0 18px 30px rgba(232,184,109,.22)}
    .form-hint{
      color:rgba(248,240,238,.72);
      font-size:13px;
      line-height:1.7;
    }

    .site-footer{
      margin-top:var(--space-8);
      background:linear-gradient(180deg, #1B1216 0%, #120D10 100%);
      color:#F8F0EE;
      padding:60px 0 26px;
      border-top:1px solid rgba(255,255,255,.06);
    }
    .footer-inner{position:relative}
    .footer-brand{
      font-size:20px;
      font-weight:800;
      letter-spacing:.2px;
      color:#fff;
      margin-bottom:14px;
    }
    .footer-text{
      color:rgba(248,240,238,.72);
      font-size:14px;
      line-height:1.9;
      max-width:520px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#F4E9E7;
      font-size:14px;
      font-weight:700;
      opacity:.92;
    }
    .footer-links a:hover{color:var(--gold)}
    .subtle-card{
      padding:18px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
    }
    .mini-stat{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding:10px 0;
    }
    .mini-stat + .mini-stat{
      border-top:1px solid rgba(255,255,255,.08);
    }
    .mini-stat strong{
      display:block;
      color:#fff;
      font-size:14px;
      font-weight:800;
    }
    .mini-stat span{
      display:block;
      margin-top:4px;
      color:rgba(248,240,238,.66);
      font-size:12px;
      line-height:1.5;
    }
    .mini-value{
      color:var(--gold);
      font-size:13px;
      font-weight:800;
      flex:0 0 auto;
    }
    .footer-meta{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:28px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      color:rgba(248,240,238,.62);
      font-size:12px;
    }

    .section-sep{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(91,35,51,.14), transparent);
      margin:0 auto;
      max-width:var(--container);
    }

    @media (max-width: 1199px){
      .mini-grid{grid-template-columns:1fr 1fr}
      .info-card.large{grid-row:auto}
      .channel-grid{grid-template-columns:1fr 1fr}
      .channel-card.featured{grid-row:auto}
      .resource-card.feature{grid-column:span 6}
      .resource-card.compact{grid-column:span 6}
      .resource-card{grid-column:span 6}
    }

    @media (max-width: 1023px){
      .hero-grid,
      .timeline-wrap,
      .faq-wrap,
      .cta-grid,
      .split-panel{
        grid-template-columns:1fr;
      }
      .hero-panel{
        order:-1;
      }
      .faq-intro{
        position:static;
      }
      .channel-grid{
        grid-template-columns:1fr 1fr;
      }
      .channel-card.featured{
        grid-column:1/-1;
      }
      .brand-row{
        align-items:flex-start;
        flex-direction:column;
      }
      .header-tools{
        width:100%;
        justify-content:flex-start;
      }
      .search-shell{
        min-width:0;
        flex:1 1 100%;
        max-width:100%;
      }
      .mini-grid{
        grid-template-columns:1fr 1fr;
      }
      .panel-kpi{
        grid-template-columns:1fr 1fr 1fr;
      }
    }

    @media (max-width: 767px){
      .site-container{padding-left:16px;padding-right:16px}
      .header-inner{padding-top:12px;padding-bottom:12px}
      .brand-name{font-size:16px}
      .brand-sub{font-size:11px}
      .hero-inner{padding:20px}
      .hero-shell{border-radius:24px}
      .section{padding:56px 0}
      .section-tight{padding:48px 0}
      .hero-actions,
      .header-tools,
      .tabs-wrap{
        width:100%;
      }
      .tabs-wrap{
        flex-wrap:nowrap;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        padding-bottom:4px;
      }
      .tabs-wrap::-webkit-scrollbar{height:0}
      .tab-link{flex:0 0 auto}
      .search-form input{height:46px}
      .search-action{height:46px;padding:0 14px}
      .btn-primary,.btn-secondary{min-height:46px}
      .hero-note{font-size:13px}
      .metric-board,
      .mini-grid,
      .channel-grid,
      .resource-grid,
      .field-grid,
      .panel-kpi{
        grid-template-columns:1fr;
      }
      .resource-card,
      .resource-card.feature,
      .resource-card.compact{
        grid-column:1/-1;
        min-height:auto;
      }
      .trust-band{
        flex-direction:column;
        align-items:flex-start;
      }
      .footer-meta{
        flex-direction:column;
      }
      .form-field textarea{min-height:110px}
    }

    @media (max-width: 520px){
      h1{font-size:clamp(30px,10vw,36px)}
      h2{font-size:clamp(24px,8vw,30px)}
      .lead{font-size:15px}
      .hero-actions{
        flex-direction:column;
      }
      .hero-actions .btn-primary,
      .hero-actions .btn-secondary,
      .form-submit{
        width:100%;
      }
      .accordion-title{
        padding:16px 16px;
        font-size:16px;
      }
      .accordion-content{
        padding:16px;
      }
      .compare-card,
      .timeline,
      .info-card,
      .channel-card,
      .resource-body,
      .form-card{
        padding:18px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#F7F1EC;
      --bg-soft:#FAF6F3;
      --panel:#FFFFFF;
      --panel-2:#FBF7F5;
      --dark:#181014;
      --text:#211A1C;
      --muted:#74666A;
      --line:#E7D9D7;
      --line-strong:#D8C4C1;
      --primary:#5B2333;
      --primary-2:#431927;
      --accent:#B66A74;
      --gold:#E8B86D;
      --success:#587563;
      --shadow:0 18px 50px rgba(33,26,28,.08);
      --shadow-soft:0 10px 30px rgba(33,26,28,.06);
      --radius:24px;
      --radius-sm:16px;
      --radius-xs:12px;
      --container:1240px;
      --transition:220ms cubic-bezier(.2,.8,.2,1);
    }
    html{scroll-behavior:smooth;}
    *{box-sizing:border-box;}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(182,106,116,.10), transparent 28%),
        radial-gradient(circle at top right, rgba(232,184,109,.09), transparent 24%),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
      line-height:1.75;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(91,35,51,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91,35,51,.03) 1px, transparent 1px);
      background-size:46px 46px;
      opacity:.22;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0));
      z-index:0;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:color var(--transition), background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
    }
    img{max-width:100%;display:block;}
    button,input,textarea,select{font:inherit;}
    ::selection{background:rgba(91,35,51,.14);color:var(--primary);}
    .site-container{
      max-width:var(--container);
      position:relative;
      z-index:1;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(247,241,236,.78);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom:1px solid rgba(231,217,215,.76);
      transition:box-shadow var(--transition), background var(--transition), border-color var(--transition);
    }
    .site-header.is-scrolled{
      background:rgba(250,246,243,.92);
      box-shadow:0 8px 30px rgba(33,26,28,.08);
      border-bottom-color:rgba(216,196,193,.92);
    }
    .header-inner{
      padding:16px 0 10px;
    }
    .brand-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:16px;
      background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,.5), transparent 28%),
        linear-gradient(145deg, var(--primary) 0%, #7B3246 58%, #A15866 100%);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.18), 0 12px 30px rgba(91,35,51,.22);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.8);
      opacity:.75;
    }
    .brand-mark::before{
      width:16px;height:16px;left:10px;top:10px;
      box-shadow:16px 10px 0 rgba(255,255,255,.45);
    }
    .brand-mark::after{
      width:22px;height:4px;left:12px;bottom:11px;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      gap:2px;
      min-width:0;
    }
    .brand-name{
      font-size:1.12rem;
      line-height:1.15;
      font-weight:800;
      letter-spacing:.02em;
      color:var(--primary);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      font-size:.92rem;
      color:var(--muted);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .header-tools{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
      margin-left:auto;
    }
    .search-shell{
      min-width:min(390px, 100%);
      flex:1 1 320px;
    }
    .search-form{
      display:flex;
      align-items:center;
      gap:8px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      padding:8px;
      box-shadow:0 8px 18px rgba(33,26,28,.03);
      transition:border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    .search-form:focus-within{
      border-color:rgba(91,35,51,.45);
      box-shadow:0 0 0 4px rgba(91,35,51,.09);
    }
    .search-form input{
      border:0;
      box-shadow:none;
      background:transparent;
      margin:0;
      padding:0 12px;
      height:42px;
      color:var(--text);
      min-width:0;
      flex:1 1 auto;
    }
    .search-form input::placeholder{color:#9A8E92;}
    .search-action,
    .btn-primary,
    .btn-secondary,
    .btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      font-weight:700;
      letter-spacing:.02em;
      border:1px solid transparent;
      cursor:pointer;
      user-select:none;
      transition:transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
      line-height:1;
      outline:none;
      white-space:nowrap;
    }
    .search-action{
      height:42px;
      padding:0 18px;
      background:var(--primary);
      color:#fff;
      box-shadow:0 10px 18px rgba(91,35,51,.18);
    }
    .search-action:hover,
    .btn-primary:hover{
      background:var(--primary-2);
      transform:translateY(-1px);
      box-shadow:0 16px 30px rgba(91,35,51,.20);
      color:#fff;
    }
    .btn-primary,
    .btn-secondary,
    .btn-ghost{
      min-height:44px;
      padding:0 18px;
    }
    .btn-primary{
      background:var(--primary);
      color:#fff;
      border-color:rgba(91,35,51,.12);
      box-shadow:0 10px 18px rgba(91,35,51,.14);
    }
    .btn-secondary{
      background:rgba(255,255,255,.72);
      color:var(--primary);
      border-color:rgba(91,35,51,.16);
    }
    .btn-secondary:hover,
    .btn-ghost:hover{
      background:rgba(91,35,51,.08);
      color:var(--primary);
      transform:translateY(-1px);
    }
    .btn-arrow::after{
      content:"→";
      font-weight:800;
      transition:transform var(--transition);
    }
    .btn-arrow:hover::after{transform:translateX(3px);}
    .btn-primary:focus-visible,
    .btn-secondary:focus-visible,
    .btn-ghost:focus-visible,
    .search-action:focus-visible,
    .search-form input:focus-visible,
    .tab-link:focus-visible,
    .accordion-title:focus-visible,
    .content-link:focus-visible,
    .field:focus-visible{
      outline:3px solid rgba(232,184,109,.6);
      outline-offset:2px;
    }
    .nav-line{
      padding:8px 0 14px;
    }
    .tabs-wrap{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      padding-bottom:2px;
    }
    .tabs-wrap::-webkit-scrollbar{display:none;}
    .tab-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 16px;
      border-radius:999px;
      border:1px solid rgba(91,35,51,.10);
      background:rgba(255,255,255,.64);
      color:var(--muted);
      font-size:.95rem;
      font-weight:700;
      white-space:nowrap;
      transition:transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .tab-link:hover{
      background:rgba(91,35,51,.08);
      color:var(--primary);
      transform:translateY(-1px);
      border-color:rgba(91,35,51,.22);
    }
    .tab-link.active{
      background:var(--primary);
      color:#fff;
      border-color:var(--primary);
      box-shadow:0 12px 24px rgba(91,35,51,.18);
    }
    .tab-dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:currentColor;
      opacity:.75;
      flex:0 0 auto;
    }
    .page-main{
      padding:18px 0 0;
    }
    .section{
      padding:70px 0;
      position:relative;
    }
    .section-tight{padding:42px 0;}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(91,35,51,.08);
      color:var(--primary);
      font-size:.84rem;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
      margin-bottom:16px;
    }
    .section-title{
      margin:0;
      color:var(--text);
      font-size:clamp(1.8rem, 2.8vw, 2.75rem);
      line-height:1.18;
      font-weight:800;
      letter-spacing:-.02em;
    }
    .section-lead{
      margin:14px 0 0;
      color:var(--muted);
      font-size:1.02rem;
      max-width:780px;
    }
    .hero-wrap{
      padding-top:22px;
    }
    .hero-layout{
      align-items:center;
      gap:26px;
    }
    .hero-copy{
      padding-right:8px;
    }
    .hero-kicker{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--muted);
      font-size:.86rem;
      font-weight:700;
      box-shadow:0 8px 20px rgba(33,26,28,.04);
    }
    .status-dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--success);
      box-shadow:0 0 0 5px rgba(88,117,99,.12);
      flex:0 0 auto;
    }
    h1.hero-title{
      margin:0;
      color:var(--text);
      font-size:clamp(2rem, 4vw, 3.55rem);
      line-height:1.16;
      font-weight:800;
      letter-spacing:-.03em;
    }
    .hero-copy p{
      margin:18px 0 0;
      color:var(--muted);
      font-size:1.08rem;
      max-width:720px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .hero-note{
      margin-top:18px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      color:var(--muted);
      font-size:.93rem;
    }
    .hero-note span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.8);
      border:1px solid var(--line);
    }
    .hero-panel{
      background:
        linear-gradient(180deg, rgba(91,35,51,.97) 0%, rgba(64,25,38,.98) 100%);
      color:#fff;
      border-radius:30px;
      padding:28px;
      box-shadow:0 22px 60px rgba(33,26,28,.18);
      position:relative;
      overflow:hidden;
    }
    .hero-panel::before,
    .hero-panel::after{
      content:"";
      position:absolute;
      border-radius:50%;
      pointer-events:none;
      background:rgba(255,255,255,.08);
      filter:blur(3px);
    }
    .hero-panel::before{
      width:220px;height:220px;right:-70px;top:-75px;
    }
    .hero-panel::after{
      width:180px;height:180px;left:-70px;bottom:-70px;
    }
    .panel-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:16px;
      margin-bottom:22px;
      position:relative;
      z-index:1;
    }
    .panel-head strong{
      font-size:1.05rem;
      letter-spacing:.02em;
    }
    .panel-head span{
      color:rgba(255,255,255,.78);
      font-size:.92rem;
    }
    .panel-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
      position:relative;
      z-index:1;
    }
    .mini-stat{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:20px;
      padding:16px;
      min-height:98px;
      backdrop-filter:blur(6px);
    }
    .mini-stat strong{
      display:block;
      font-size:.95rem;
      margin-bottom:8px;
    }
    .mini-stat span{
      color:rgba(255,255,255,.80);
      font-size:.88rem;
      line-height:1.65;
    }
    .panel-callout{
      margin-top:16px;
      padding:16px 18px;
      border-radius:20px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      position:relative;
      z-index:1;
    }
    .panel-callout p{
      margin:0;
      color:rgba(255,255,255,.86);
      font-size:.95rem;
    }
    .trust-strip{
      margin-top:18px;
      background:rgba(255,255,255,.78);
      border:1px solid var(--line);
      border-radius:18px;
      padding:14px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      box-shadow:var(--shadow-soft);
    }
    .trust-strip strong{
      color:var(--primary);
      font-size:.98rem;
      white-space:nowrap;
    }
    .trust-strip span{
      color:var(--muted);
      font-size:.92rem;
    }
    .trust-strip .age-mark{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:54px;
      height:36px;
      padding:0 14px;
      border-radius:999px;
      background:rgba(91,35,51,.1);
      color:var(--primary);
      font-weight:800;
    }
    .metric-grid{
      margin-top:8px;
    }
    .soft-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(91,35,51,.10);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      position:relative;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .soft-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow);
      border-color:rgba(182,106,116,.35);
    }
    .soft-card .card-pad{
      padding:24px;
    }
    .soft-card .card-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .soft-card .card-title{
      margin:0;
      font-size:1.15rem;
      line-height:1.35;
      font-weight:800;
      color:var(--text);
    }
    .soft-card p{
      margin:0;
      color:var(--muted);
      font-size:.96rem;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 11px;
      border-radius:999px;
      font-size:.8rem;
      font-weight:800;
      letter-spacing:.08em;
      background:rgba(91,35,51,.08);
      color:var(--primary);
      white-space:nowrap;
    }
    .badge.gold{
      background:rgba(232,184,109,.18);
      color:#8A5B18;
    }
    .badge.dark{
      background:rgba(24,16,20,.08);
      color:var(--dark);
    }
    .metric-big{
      min-height:100%;
      padding:28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,247,245,.96));
    }
    .metric-big .progress-shell{
      margin-top:20px;
      display:grid;
      gap:14px;
    }
    .progress-item{
      display:grid;
      gap:7px;
    }
    .progress-item .row{
      display:flex;
      justify-content:space-between;
      gap:12px;
      color:var(--muted);
      font-size:.88rem;
    }
    .progress-bar{
      height:10px;
      border-radius:999px;
      background:#F0E5E2;
      overflow:hidden;
    }
    .progress-bar span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--primary), var(--accent));
    }
    .metric-small{
      padding:20px;
    }
    .metric-small .value{
      margin-top:12px;
      font-size:2rem;
      line-height:1;
      font-weight:800;
      color:var(--primary);
      letter-spacing:-.03em;
    }
    .metric-small .desc{
      margin-top:12px;
    }
    .metric-small .state{
      margin-top:14px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--success);
      font-size:.88rem;
      font-weight:700;
    }
    .state i{
      width:8px;height:8px;border-radius:50%;
      background:currentColor;
      box-shadow:0 0 0 5px rgba(88,117,99,.12);
      display:inline-block;
      flex:0 0 auto;
    }
    .chip-row{
      display:flex;
      flex-wrap:nowrap;
      gap:10px;
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      padding-bottom:2px;
      scrollbar-width:none;
    }
    .chip-row::-webkit-scrollbar{display:none;}
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.82);
      color:var(--muted);
      font-size:.88rem;
      font-weight:700;
      white-space:nowrap;
      transition:transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    }
    .chip:hover{
      transform:translateY(-1px);
      background:rgba(91,35,51,.08);
      color:var(--primary);
      border-color:rgba(91,35,51,.22);
    }
    .chip.active{
      background:var(--primary);
      color:#fff;
      border-color:var(--primary);
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:26px;
      flex-wrap:wrap;
    }
    .section-head .section-copy{
      max-width:760px;
    }
    .subtle-grid{
      margin-top:8px;
    }
    .channel-large{
      height:100%;
      background:
        linear-gradient(145deg, rgba(91,35,51,.98), rgba(72,28,42,.96));
      color:#fff;
      border:1px solid rgba(91,35,51,.12);
      box-shadow:0 24px 70px rgba(33,26,28,.14);
      min-height:420px;
      padding:28px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .channel-large .badge{
      background:rgba(255,255,255,.12);
      color:#fff;
      border:1px solid rgba(255,255,255,.14);
    }
    .channel-large h3{
      margin:18px 0 12px;
      color:#fff;
      font-size:clamp(1.5rem, 2.4vw, 2.25rem);
      line-height:1.16;
      font-weight:800;
    }
    .channel-large p{
      margin:0;
      color:rgba(255,255,255,.84);
      max-width:36em;
    }
    .channel-large ul{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .channel-large li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:rgba(255,255,255,.88);
      font-size:.95rem;
    }
    .channel-large li::before{
      content:"•";
      color:var(--gold);
      font-size:1.2rem;
      line-height:1;
      margin-top:1px;
    }
    .channel-large .content-link,
    .mini-link{
      color:#fff;
      font-weight:800;
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-top:22px;
    }
    .channel-large .content-link::after,
    .mini-link::after{
      content:"→";
      transition:transform var(--transition);
    }
    .channel-large .content-link:hover::after,
    .mini-link:hover::after{
      transform:translateX(4px);
    }
    .channel-mini{
      height:100%;
      min-height:120px;
      background:rgba(255,255,255,.88);
      padding:20px;
      border-radius:22px;
      border:1px solid rgba(91,35,51,.10);
      box-shadow:var(--shadow-soft);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
    }
    .channel-mini::after{
      content:"";
      position:absolute;
      inset:auto -18px -18px auto;
      width:88px;
      height:88px;
      border-radius:50%;
      background:radial-gradient(circle at 35% 35%, rgba(182,106,116,.20), rgba(182,106,116,.04) 60%, transparent 72%);
      pointer-events:none;
    }
    .channel-mini h4{
      margin:10px 0 8px;
      font-size:1.04rem;
      line-height:1.35;
      color:var(--text);
      font-weight:800;
    }
    .channel-mini p{
      margin:0;
      color:var(--muted);
      font-size:.93rem;
      line-height:1.68;
    }
    .micro-list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:7px;
      color:var(--muted);
      font-size:.9rem;
    }
    .micro-list li{
      display:flex;
      align-items:flex-start;
      gap:8px;
    }
    .micro-list li::before{
      content:"";
      width:7px;height:7px;
      border-radius:50%;
      background:var(--accent);
      margin-top:9px;
      flex:0 0 auto;
    }
    .compare-shell{
      margin-top:8px;
    }
    .compare-card{
      background:rgba(255,255,255,.9);
      border:1px solid var(--line);
      border-radius:28px;
      box-shadow:var(--shadow-soft);
      padding:24px;
      position:relative;
      overflow:hidden;
      height:100%;
    }
    .compare-card::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background:linear-gradient(90deg, rgba(182,106,116,.45), rgba(232,184,109,.55));
    }
    .compare-card.alt{
      background:linear-gradient(180deg, rgba(91,35,51,.97), rgba(57,22,34,.96));
      border-color:rgba(91,35,51,.2);
      color:#fff;
      box-shadow:0 24px 70px rgba(33,26,28,.14);
    }
    .compare-card.alt::before{
      background:linear-gradient(90deg, rgba(232,184,109,.95), rgba(255,255,255,.35));
    }
    .compare-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:12px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(91,35,51,.08);
      color:var(--primary);
      font-size:.84rem;
      font-weight:800;
    }
    .compare-card.alt .compare-label{
      background:rgba(255,255,255,.1);
      color:#fff;
    }
    .compare-card h3{
      margin:0 0 14px;
      font-size:1.35rem;
      line-height:1.25;
      font-weight:800;
    }
    .compare-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .compare-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:inherit;
      font-size:.96rem;
    }
    .compare-list li::before{
      content:"";
      width:10px;
      height:10px;
      border-radius:3px;
      background:var(--accent);
      margin-top:9px;
      flex:0 0 auto;
    }
    .compare-card.alt .compare-list li::before{
      background:var(--gold);
    }
    .path-shell{
      margin-top:10px;
    }
    .path-step{
      background:rgba(255,255,255,.88);
      border:1px solid var(--line);
      border-radius:24px;
      padding:22px;
      box-shadow:var(--shadow-soft);
      height:100%;
      position:relative;
      overflow:hidden;
    }
    .path-step .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:14px;
      background:rgba(91,35,51,.1);
      color:var(--primary);
      font-weight:800;
      margin-bottom:14px;
    }
    .path-step h4{
      margin:0 0 10px;
      font-size:1.08rem;
      font-weight:800;
    }
    .path-step p{
      margin:0;
      color:var(--muted);
      font-size:.94rem;
      line-height:1.72;
    }
    .path-step .mini-link{
      margin-top:16px;
      color:var(--primary);
    }
    .resource-grid{
      margin-top:8px;
    }
    .resource-card{
      background:rgba(255,255,255,.9);
      border:1px solid var(--line);
      border-radius:26px;
      padding:22px;
      box-shadow:var(--shadow-soft);
      height:100%;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      position:relative;
      overflow:hidden;
    }
    .resource-card::after{
      content:"";
      position:absolute;
      inset:auto -22px -22px auto;
      width:120px;
      height:120px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(182,106,116,.14), transparent 68%);
      pointer-events:none;
    }
    .resource-card:hover{
      transform:translateY(-3px);
      border-color:rgba(182,106,116,.35);
      box-shadow:var(--shadow);
    }
    .resource-card .meta{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .resource-card h3{
      margin:0 0 10px;
      font-size:1.12rem;
      line-height:1.4;
      font-weight:800;
    }
    .resource-card p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.72;
    }
    .resource-card .time{
      margin-top:16px;
      color:var(--muted);
      font-size:.84rem;
    }
    .faq-wrap{
      margin-top:8px;
    }
    .faq-box{
      background:rgba(255,255,255,.9);
      border:1px solid var(--line);
      border-radius:28px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      border:0;
      border-bottom:1px solid rgba(231,217,215,.78);
    }
    .accordion-item:last-child{border-bottom:0;}
    .accordion-title{
      background:transparent;
      color:var(--text);
      font-size:1.04rem;
      line-height:1.55;
      padding:20px 24px;
      font-weight:800;
      transition:background var(--transition), color var(--transition);
      position:relative;
    }
    .accordion-title:hover{
      background:rgba(91,35,51,.04);
      color:var(--primary);
    }
    .accordion-title::before{
      display:none;
    }
    .accordion-title::after{
      content:"+";
      position:absolute;
      right:24px;
      top:50%;
      transform:translateY(-50%);
      width:28px;
      height:28px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(91,35,51,.08);
      color:var(--primary);
      font-size:1rem;
      font-weight:800;
      transition:transform var(--transition), background var(--transition), color var(--transition);
    }
    .is-active > .accordion-title{
      background:rgba(91,35,51,.05);
      border-left:4px solid var(--primary);
      padding-left:20px;
    }
    .is-active > .accordion-title::after{
      content:"−";
      background:rgba(91,35,51,.16);
    }
    .accordion-content{
      background:rgba(251,247,245,.76);
      color:var(--muted);
      padding:0 24px 20px 24px;
      border-left:4px solid transparent;
      font-size:.97rem;
      line-height:1.78;
    }
    .cta-shell{
      padding:72px 0 84px;
    }
    .cta-card{
      background:
        radial-gradient(circle at top right, rgba(232,184,109,.12), transparent 30%),
        linear-gradient(145deg, rgba(24,16,20,.98), rgba(59,24,35,.98));
      border-radius:32px;
      color:#fff;
      box-shadow:0 24px 74px rgba(24,16,20,.22);
      overflow:hidden;
      position:relative;
    }
    .cta-card::before{
      content:"";
      position:absolute;
      inset:-1px;
      border-radius:inherit;
      border:1px solid rgba(255,255,255,.06);
      pointer-events:none;
    }
    .cta-inner{
      padding:30px;
    }
    .cta-copy h2{
      margin:0;
      font-size:clamp(1.6rem, 2.6vw, 2.4rem);
      line-height:1.2;
      font-weight:800;
      color:#fff;
    }
    .cta-copy p{
      margin:14px 0 0;
      color:rgba(255,255,255,.82);
      max-width:760px;
    }
    .cta-grid{
      margin-top:24px;
    }
    .field-label{
      display:block;
      margin-bottom:8px;
      color:rgba(255,255,255,.86);
      font-size:.92rem;
      font-weight:700;
    }
    .field,
    .cta-card input[type="text"],
    .cta-card input[type="email"],
    .cta-card input[type="tel"],
    .cta-card textarea,
    .cta-card select{
      width:100%;
      background:rgba(255,255,255,.95);
      border:1px solid rgba(255,255,255,.08);
      border-radius:16px;
      min-height:50px;
      padding:13px 16px;
      color:var(--text);
      box-shadow:none;
      margin:0 0 14px 0;
      transition:border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    .cta-card textarea{
      min-height:128px;
      resize:vertical;
    }
    .cta-card input::placeholder,
    .cta-card textarea::placeholder{color:#9A8E92;}
    .cta-card input:focus,
    .cta-card textarea:focus,
    .cta-card select:focus{
      border-color:rgba(232,184,109,.75);
      box-shadow:0 0 0 4px rgba(232,184,109,.16);
      transform:translateY(-1px);
    }
    .cta-note{
      margin-top:10px;
      color:rgba(255,255,255,.74);
      font-size:.9rem;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:12px;
    }
    .cta-actions .btn-primary{
      background:var(--gold);
      color:#412317;
      box-shadow:0 12px 22px rgba(232,184,109,.18);
    }
    .cta-actions .btn-primary:hover{
      background:#F1C16F;
      color:#361C15;
    }
    .site-footer{
      background:var(--dark);
      color:#F6ECE9;
      margin-top:0;
      position:relative;
      z-index:1;
    }
    .footer-inner{
      padding:56px 0 24px;
    }
    .footer-brand{
      color:#fff;
      font-size:1.2rem;
      font-weight:800;
      margin-bottom:14px;
      letter-spacing:.02em;
    }
    .footer-text{
      color:rgba(246,236,233,.78);
      font-size:.95rem;
      line-height:1.75;
      margin:0 0 16px;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#fff;
      opacity:.86;
      font-weight:700;
      transition:opacity var(--transition), transform var(--transition), color var(--transition);
    }
    .footer-links a:hover{
      opacity:1;
      color:var(--gold);
      transform:translateX(2px);
    }
    .subtle-card{
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      border-radius:22px;
      padding:18px;
      box-shadow:none;
    }
    .mini-stat.dark{
      background:transparent;
      border-color:rgba(255,255,255,.08);
      min-height:auto;
      padding:0 0 14px 0;
      margin-bottom:14px;
      border-radius:0;
      border-width:0 0 1px 0;
    }
    .mini-stat.dark:last-child{
      padding-bottom:0;
      margin-bottom:0;
      border-bottom:0;
    }
    .mini-stat.dark strong{
      color:#fff;
      margin-bottom:4px;
    }
    .mini-stat.dark span{
      color:rgba(246,236,233,.72);
    }
    .mini-value{
      color:var(--gold);
      font-weight:800;
      font-size:1.08rem;
      margin-top:3px;
    }
    .footer-meta{
      margin-top:24px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(246,236,233,.68);
      font-size:.9rem;
    }
    .compact-top{
      margin-top:10px;
    }
    .content-link{
      color:var(--primary);
      font-weight:800;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .content-link::after{
      content:"→";
      transition:transform var(--transition);
    }
    .content-link:hover::after{transform:translateX(4px);}
    .divider{
      height:1px;
      background:linear-gradient(90deg, rgba(91,35,51,.04), rgba(91,35,51,.18), rgba(91,35,51,.04));
      margin:28px 0 0;
    }
    @media (max-width: 1023px){
      .search-shell{min-width:100%;flex:1 1 100%;}
      .header-tools{width:100%;}
      .hero-panel{margin-top:4px;}
      .trust-strip{flex-direction:column;align-items:flex-start;}
      .section{padding:58px 0;}
      .cta-shell{padding:58px 0 72px;}
    }
    @media (max-width: 639px){
      .header-inner{padding:14px 0 8px;}
      .brand-row{gap:12px;}
      .brand{width:100%;}
      .brand-mark{width:40px;height:40px;border-radius:14px;}
      .brand-name{font-size:1rem;}
      .brand-sub{font-size:.85rem;}
      .header-tools{gap:8px;}
      .search-form{padding:7px;}
      .search-form input{height:38px;padding:0 10px;font-size:.95rem;}
      .search-action{height:38px;padding:0 14px;}
      .btn-primary,.btn-secondary,.btn-ghost{min-height:40px;padding:0 14px;font-size:.92rem;}
      .section{padding:48px 0;}
      h1.hero-title{font-size:clamp(1.95rem, 8vw, 2.45rem);}
      .section-title{font-size:clamp(1.6rem, 7vw, 2.1rem);}
      .hero-panel{padding:20px;border-radius:24px;}
      .panel-grid{grid-template-columns:1fr;}
      .metric-big{padding:22px;}
      .soft-card .card-pad{padding:20px;}
      .compare-card,.resource-card,.path-step,.faq-box{border-radius:22px;}
      .accordion-title{padding:18px 18px;}
      .accordion-content{padding:0 18px 18px 18px;}
      .cta-inner{padding:22px;}
      .footer-inner{padding:44px 0 22px;}
      .footer-meta{flex-direction:column;}
    }
