/* roulang page: index */
:root{
      --primary:#183A34;
      --primary-2:#234C45;
      --secondary:#D99A45;
      --secondary-dark:#C78332;
      --bg:#F7F2EA;
      --surface:#FFFDF8;
      --surface-2:#FBF5EA;
      --text:#24211D;
      --muted:#756E64;
      --border:#E6DCCC;
      --moss:#6F8B6B;
      --clay:#C8785A;
      --white:#FFFFFF;
      --shadow:0 18px 50px rgba(55,45,34,.08);
      --shadow-hover:0 24px 68px rgba(55,45,34,.13);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1200px;
      --ease:all .25s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 12%, rgba(217,154,69,.12), transparent 28%),
        radial-gradient(circle at 90% 4%, rgba(111,139,107,.13), transparent 24%),
        linear-gradient(180deg, var(--bg) 0%, #F9F4EC 44%, var(--bg) 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--secondary)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(217,154,69,.28);color:var(--primary)}
    .container{max-width:var(--container)}
    .section{padding:96px 0}
    .section-tight{padding:72px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(217,154,69,.28);
      border-radius:999px;
      color:var(--primary);
      background:rgba(255,253,248,.72);
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 0 5px rgba(217,154,69,.16);
    }
    h1,h2,h3,h4{color:var(--text);font-weight:800;letter-spacing:-.02em}
    h1{font-size:clamp(32px,5vw,56px);line-height:1.16;margin:20px 0 18px}
    h2{font-size:clamp(26px,3vw,36px);line-height:1.25;margin:14px 0 12px}
    h3{font-size:20px;line-height:1.35}
    p{margin:0;color:var(--muted)}
    .lead-text{font-size:18px;line-height:1.9;color:#5f584f}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .section-head p{max-width:620px}
    .btn{
      border:0;
      border-radius:999px;
      padding:12px 20px;
      font-weight:800;
      line-height:1.2;
      transition:var(--ease);
      box-shadow:none;
    }
    .btn:focus-visible,
    .form-control:focus,
    .form-select:focus{
      outline:none;
      border-color:var(--secondary);
      box-shadow:0 0 0 .24rem rgba(217,154,69,.18);
    }
    .btn-main{
      background:var(--secondary);
      color:#241d14;
      box-shadow:0 12px 28px rgba(217,154,69,.24);
    }
    .btn-main:hover,.btn-main:active{
      background:var(--secondary-dark)!important;
      color:#fff!important;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(199,131,50,.30);
    }
    .btn-ghost{
      border:1px solid rgba(24,58,52,.24);
      background:rgba(255,253,248,.78);
      color:var(--primary);
    }
    .btn-ghost:hover{
      background:rgba(111,139,107,.13);
      border-color:var(--primary);
      color:var(--primary);
      transform:translateY(-2px);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      padding:18px 0 10px;
      background:linear-gradient(180deg, rgba(247,242,234,.96), rgba(247,242,234,.72));
      backdrop-filter:blur(14px);
    }
    .nav-panel{
      border:1px solid rgba(230,220,204,.88);
      border-radius:26px;
      background:rgba(255,253,248,.92);
      box-shadow:0 16px 45px rgba(55,45,34,.07);
      padding:12px;
    }
    .navbar{padding:0}
    .brand-mark{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--primary);
      min-width:0;
    }
    .logo-symbol{
      position:relative;
      width:42px;height:42px;border-radius:15px;
      background:linear-gradient(135deg,var(--primary),#2f5e55);
      box-shadow:inset 0 -10px 20px rgba(0,0,0,.12),0 10px 24px rgba(24,58,52,.18);
      flex:0 0 auto;
    }
    .logo-symbol::before,
    .logo-symbol::after{
      content:"";
      position:absolute;
      border-radius:8px;
      background:var(--secondary);
    }
    .logo-symbol::before{width:18px;height:5px;left:12px;top:13px}
    .logo-symbol::after{width:12px;height:12px;right:10px;bottom:10px;background:#F2D2A2}
    .brand-text{display:flex;flex-direction:column;line-height:1.2;min-width:0}
    .brand-name{
      font-weight:900;
      font-size:16px;
      color:var(--primary);
      max-width:340px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{font-size:12px;color:var(--muted);margin-top:3px}
    .navbar-toggler{
      border:1px solid var(--border);
      border-radius:14px;
      padding:9px 11px;
      background:var(--surface-2);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 .2rem rgba(217,154,69,.18)}
    .nav-links{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:auto;
    }
    .nav-pill{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:18px;
      border:1px solid transparent;
      background:transparent;
      color:var(--text);
      font-weight:800;
    }
    .nav-pill .nav-icon{
      width:28px;height:28px;border-radius:10px;
      display:grid;place-items:center;
      background:rgba(24,58,52,.08);
      color:var(--primary);
      font-size:14px;
    }
    .nav-pill.active{
      background:rgba(217,154,69,.16);
      color:var(--primary);
      border-color:rgba(217,154,69,.26);
    }
    .nav-pill:hover{
      background:rgba(111,139,107,.12);
      color:var(--primary);
      transform:translateY(-1px);
    }
    .nav-cta{margin-left:8px}
    .hero{padding:54px 0 42px}
    .hero-wrap{
      position:relative;
      overflow:hidden;
      border:1px solid var(--border);
      border-radius:36px;
      background:
        linear-gradient(135deg, rgba(255,253,248,.96), rgba(250,242,228,.94)),
        radial-gradient(circle at 85% 12%, rgba(217,154,69,.18), transparent 34%);
      box-shadow:var(--shadow);
      padding:42px;
    }
    .hero-wrap::before{
      content:"";
      position:absolute;
      inset:auto -80px -100px auto;
      width:320px;height:320px;
      border-radius:50%;
      background:rgba(24,58,52,.08);
    }
    .hero-copy{position:relative;z-index:1}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
    .trust-row{
      margin-top:30px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
    }
    .trust-chip{
      padding:11px 12px;
      border:1px solid var(--border);
      border-radius:16px;
      background:rgba(255,253,248,.75);
      color:var(--primary);
      font-size:13px;
      font-weight:800;
      text-align:center;
    }
    .dashboard{
      position:relative;
      z-index:1;
      border-radius:30px;
      background:var(--primary);
      padding:22px;
      color:#F9F2E7;
      box-shadow:0 22px 55px rgba(24,58,52,.20);
    }
    .dash-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .dash-title{font-weight:900;color:#FFF7EA}
    .dash-status{
      display:inline-flex;align-items:center;gap:7px;
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,253,248,.12);
      color:#F6E9D8;
    }
    .dash-status::before{
      content:"";width:7px;height:7px;border-radius:50%;
      background:#94C58C;
      box-shadow:0 0 0 4px rgba(148,197,140,.16);
    }
    .metric-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:14px;
    }
    .metric-card{
      border:1px solid rgba(255,253,248,.13);
      border-radius:22px;
      padding:18px;
      background:rgba(255,253,248,.08);
      transition:var(--ease);
    }
    .metric-card:hover{transform:translateY(-4px);background:rgba(255,253,248,.12)}
    .metric-card.large{grid-row:span 2;background:rgba(217,154,69,.18)}
    .metric-num{
      font-size:34px;
      font-weight:900;
      line-height:1;
      color:#FFD89F;
      margin-bottom:10px;
    }
    .metric-label{font-size:13px;color:#E7D8C3}
    .trend-line{
      height:10px;
      border-radius:999px;
      background:rgba(255,253,248,.15);
      overflow:hidden;
      margin-top:16px;
    }
    .trend-line span{display:block;width:76%;height:100%;background:linear-gradient(90deg,var(--secondary),#F2D2A2);border-radius:999px}
    .console-panel{
      border-radius:var(--radius-xl);
      border:1px solid var(--border);
      background:var(--surface);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .console-head{
      background:var(--primary);
      color:#F8EFE3;
      padding:26px 30px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
    }
    .console-head h2{color:#FFF8EB;margin:0}
    .console-head p{color:#D9CBB9;max-width:560px}
    .stat-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1px;
      background:var(--border);
    }
    .stat-box{
      background:var(--surface);
      padding:26px;
      min-height:160px;
      position:relative;
    }
    .stat-box::after{
      content:"";
      position:absolute;left:26px;right:26px;bottom:22px;
      height:6px;border-radius:999px;
      background:linear-gradient(90deg,rgba(217,154,69,.76),rgba(111,139,107,.28));
    }
    .stat-number{font-size:32px;font-weight:900;color:var(--primary);line-height:1}
    .stat-box h3{margin:12px 0 6px;font-size:18px}
    .stat-box p{font-size:14px}
    .matrix-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:24px;
      align-items:stretch;
    }
    .feature-main,
    .feature-card,
    .flow-card,
    .content-card,
    .compare-card,
    .faq-shell,
    .cta-console{
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      background:var(--surface);
      box-shadow:var(--shadow);
      transition:var(--ease);
    }
    .feature-main:hover,
    .feature-card:hover,
    .content-card:hover,
    .compare-card:hover{
      transform:translateY(-4px);
      border-color:rgba(217,154,69,.55);
      box-shadow:var(--shadow-hover);
    }
    .feature-main{
      padding:32px;
      min-height:100%;
      background:
        linear-gradient(160deg,rgba(255,253,248,.98),rgba(247,238,222,.92)),
        radial-gradient(circle at 18% 20%,rgba(217,154,69,.15),transparent 28%);
    }
    .feature-icon{
      width:56px;height:56px;border-radius:18px;
      display:grid;place-items:center;
      background:rgba(217,154,69,.18);
      color:var(--primary);
      font-weight:900;
      margin-bottom:22px;
    }
    .feature-main h3{font-size:26px;margin-bottom:12px}
    .feature-list{list-style:none;padding:0;margin:26px 0 0;display:grid;gap:12px}
    .feature-list li{
      display:flex;gap:10px;align-items:flex-start;
      color:#514a42;
      padding:12px 14px;
      border-radius:15px;
      background:rgba(24,58,52,.05);
    }
    .feature-list li::before{
      content:"";width:9px;height:9px;border-radius:50%;
      background:var(--secondary);
      margin-top:9px;flex:0 0 auto;
    }
    .mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
    .feature-card{padding:22px}
    .feature-card h3{font-size:18px;margin:12px 0 8px}
    .small-symbol{
      width:38px;height:38px;border-radius:14px;
      background:rgba(24,58,52,.08);
      color:var(--primary);
      display:grid;place-items:center;
      font-weight:900;
    }
    .flow-card{margin-top:24px;padding:20px}
    .flow-steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .flow-step{
      position:relative;
      padding:16px;
      border-radius:18px;
      background:var(--surface-2);
      border:1px solid var(--border);
    }
    .flow-step strong{display:block;color:var(--primary);margin-bottom:5px}
    .flow-step span{font-size:13px;color:var(--muted)}
    .flow-step:not(:last-child)::after{
      content:"";
      position:absolute;right:-12px;top:50%;
      width:10px;height:2px;background:var(--secondary);
    }
    .content-area{
      display:grid;
      grid-template-columns:.38fr .62fr;
      gap:24px;
      align-items:start;
    }
    .timeline-note{
      position:sticky;
      top:118px;
      padding:28px;
      border-radius:var(--radius-xl);
      background:var(--primary);
      color:#F8EFE3;
      box-shadow:var(--shadow);
    }
    .timeline-note h2{color:#FFF8EB}
    .timeline-note p{color:#D9CBB9}
    .timeline-note .btn{margin-top:22px}
    .content-list{display:grid;gap:16px}
    .content-card{
      display:grid;
      grid-template-columns:1fr auto;
      gap:20px;
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .content-card::before{
      content:"";
      position:absolute;left:0;top:20px;bottom:20px;
      width:3px;border-radius:999px;
      background:var(--secondary);
      opacity:.8;
    }
    .content-card h3{margin:0 0 10px;color:var(--text);transition:var(--ease)}
    .content-card:hover h3{color:var(--secondary-dark)}
    .content-card p{font-size:15px}
    .meta-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      background:rgba(217,154,69,.15);
      color:#865519;
      border:1px solid rgba(217,154,69,.22);
    }
    .badge-green{
      background:rgba(24,58,52,.08);
      color:var(--primary);
      border-color:rgba(24,58,52,.14);
    }
    .read-link{
      align-self:center;
      white-space:nowrap;
      font-weight:900;
      color:var(--primary);
      display:flex;
      align-items:center;
      gap:8px;
    }
    .read-link span{transition:var(--ease)}
    .content-card:hover .read-link span{transform:translateX(4px)}
    .empty-state{
      border:1px dashed rgba(200,120,90,.5);
      border-radius:var(--radius-xl);
      background:rgba(255,253,248,.75);
      padding:42px 28px;
      text-align:center;
      box-shadow:var(--shadow);
    }
    .empty-icon{
      width:62px;height:62px;border-radius:22px;
      margin:0 auto 18px;
      display:grid;place-items:center;
      background:rgba(200,120,90,.12);
      color:var(--clay);
      font-weight:900;
      font-size:24px;
    }
    .compare-wrap{
      display:grid;
      grid-template-columns:1fr 1fr .72fr;
      gap:20px;
    }
    .compare-card{padding:26px}
    .compare-card.muted{background:#F3ECE0}
    .compare-card.strong{
      background:linear-gradient(160deg,var(--primary),#244D45);
      color:#F8EFE3;
    }
    .compare-card.strong h3{color:#FFF8EB}
    .compare-card.strong p,.compare-card.strong li{color:#DACDBB}
    .compare-list{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:12px}
    .compare-list li{
      display:flex;gap:10px;align-items:flex-start;
      padding-bottom:12px;
      border-bottom:1px solid rgba(230,220,204,.55);
      color:#5f584f;
    }
    .compare-list li:last-child{border-bottom:0;padding-bottom:0}
    .dot{
      width:10px;height:10px;border-radius:50%;
      margin-top:8px;flex:0 0 auto;
      background:var(--muted);
    }
    .strong .dot{background:var(--secondary)}
    .score-card{
      padding:26px;
      border-radius:var(--radius-lg);
      background:var(--surface);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .score-item{margin-top:18px}
    .score-label{display:flex;justify-content:space-between;font-weight:800;color:var(--primary);font-size:14px}
    .score-bar{height:10px;border-radius:999px;background:#EEE4D5;overflow:hidden;margin-top:8px}
    .score-bar span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--secondary),var(--moss))}
    .accordion{display:grid;gap:14px}
    .faq-shell{padding:10px}
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:18px!important;
      background:var(--surface)!important;
      overflow:hidden;
      box-shadow:none;
    }
    .accordion-button{
      padding:20px 22px;
      background:var(--surface)!important;
      color:var(--text)!important;
      font-weight:900;
      border:0;
      box-shadow:none!important;
      line-height:1.45;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary)!important;
      background:rgba(217,154,69,.10)!important;
    }
    .accordion-button::after{
      background-color:rgba(24,58,52,.09);
      border-radius:50%;
      background-position:center;
      padding:13px;
    }
    .accordion-body{
      padding:0 22px 22px;
      color:var(--muted);
      line-height:1.85;
      background:rgba(255,253,248,.72);
    }
    .cta-console{
      overflow:hidden;
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      background:var(--surface);
    }
    .cta-copy{
      padding:36px;
      background:
        linear-gradient(145deg,var(--primary),#254E46),
        radial-gradient(circle at 10% 20%,rgba(217,154,69,.28),transparent 34%);
      color:#F8EFE3;
    }
    .cta-copy h2{color:#FFF8EB}
    .cta-copy p{color:#D9CBB9}
    .check-list{list-style:none;padding:0;margin:24px 0 0;display:grid;gap:12px}
    .check-list li{display:flex;gap:10px;align-items:flex-start;color:#F2E6D6}
    .check-list li::before{
      content:"✓";
      width:22px;height:22px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(217,154,69,.22);
      color:#FFD89F;
      font-weight:900;
      flex:0 0 auto;
      margin-top:2px;
    }
    .cta-form{padding:36px}
    .form-label{font-weight:800;color:var(--primary);font-size:14px}
    .form-control,.form-select{
      border:1px solid var(--border);
      border-radius:16px;
      padding:12px 14px;
      background:#FFFDF8;
      color:var(--text);
    }
    textarea.form-control{min-height:128px;resize:vertical}
    .form-hint{font-size:13px;color:var(--muted);margin-top:14px}
    .site-footer{
      margin-top:30px;
      padding:58px 0 30px;
      background:var(--primary);
      color:#F3E8D7;
    }
    .footer-card{
      display:grid;
      grid-template-columns:1.4fr .6fr .8fr;
      gap:28px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,253,248,.14);
    }
    .footer-brand{font-size:20px;font-weight:900;color:#FFF8EB;margin-bottom:10px}
    .footer-card p{color:#D7C9B8}
    .footer-title{font-weight:900;color:#FFF8EB;margin-bottom:12px}
    .footer-links{display:grid;gap:9px}
    .footer-links a{color:#E5D8C7}
    .footer-links a:hover{color:var(--secondary)}
    .footer-status{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
    .footer-status span{
      display:inline-flex;align-items:center;gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,253,248,.08);
      color:#EDE0CF;
      font-size:12px;
    }
    .footer-status span::before{
      content:"";width:6px;height:6px;border-radius:50%;background:var(--secondary);
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding-top:22px;
      color:#CDBEAA;
      font-size:13px;
    }
    @media (max-width: 991.98px){
      .site-header{padding:12px 0 8px}
      .navbar-collapse{
        margin-top:12px;
        padding:12px;
        border-radius:20px;
        background:var(--surface-2);
        border:1px solid var(--border);
      }
      .nav-links{align-items:stretch;margin-left:0;gap:8px}
      .nav-pill{justify-content:flex-start}
      .nav-cta{margin-left:0;margin-top:6px}
      .hero-wrap{padding:28px}
      .dashboard{margin-top:26px}
      .trust-row{grid-template-columns:repeat(2,1fr)}
      .stat-row{grid-template-columns:repeat(2,1fr)}
      .matrix-grid,.content-area,.cta-console{grid-template-columns:1fr}
      .timeline-note{position:relative;top:auto}
      .compare-wrap{grid-template-columns:1fr}
      .footer-card{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 767.98px){
      .section{padding:68px 0}
      .section-tight{padding:54px 0}
      .section-head{display:block}
      .section-head p{margin-top:10px}
      .brand-name{max-width:220px}
      .hero{padding:34px 0 28px}
      .hero-wrap{border-radius:26px;padding:22px}
      .hero-actions .btn{width:100%}
      .metric-grid,.mini-grid,.flow-steps{grid-template-columns:1fr}
      .flow-step:not(:last-child)::after{display:none}
      .content-card{grid-template-columns:1fr}
      .read-link{justify-content:flex-start}
      .console-head{display:block;padding:24px}
      .stat-row{grid-template-columns:1fr}
      .footer-card{grid-template-columns:1fr}
      .copyright{display:block}
      .copyright span{display:block;margin-top:8px}
    }
    @media (max-width: 575.98px){
      .container{padding-left:18px;padding-right:18px}
      .nav-panel{border-radius:22px}
      .brand-sub{display:none}
      .brand-name{max-width:178px;font-size:14px}
      .logo-symbol{width:38px;height:38px}
      .trust-row{grid-template-columns:1fr}
      .dashboard{padding:16px;border-radius:24px}
      .metric-num{font-size:28px}
      .feature-main,.feature-card,.timeline-note,.compare-card,.score-card,.cta-copy,.cta-form{padding:22px}
      .btn{width:100%}
    }

/* roulang page: article */
:root{
      --primary:#183A34;
      --primary-2:#214b43;
      --accent:#D99A45;
      --accent-strong:#C78332;
      --bg:#F7F2EA;
      --surface:#FFFDF8;
      --surface-2:#F3EDE2;
      --text:#24211D;
      --muted:#756E64;
      --line:#E6DCCC;
      --line-2:#D7C8B2;
      --ok:#6F8B6B;
      --warn:#C8785A;
      --shadow:0 18px 50px rgba(55,45,34,.08);
      --shadow-hover:0 22px 65px rgba(55,45,34,.12);
      --radius-xl:28px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1220px;
      --header-h:92px;
      --transition:all .28s ease;
    }
    *,*::before,*::after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(217,154,69,.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(111,139,107,.09), transparent 24%),
        linear-gradient(180deg, #faf6ef 0%, var(--bg) 26%, #f8f4ed 100%);
      line-height:1.8;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    ::selection{background:rgba(217,154,69,.24);color:var(--primary)}
    a{
      color:var(--primary);
      text-decoration:none;
      transition:var(--transition);
    }
    a:hover{color:var(--accent);text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    .container{max-width:var(--container)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      padding:14px 0 10px;
      backdrop-filter:saturate(145%) blur(10px);
      background:linear-gradient(180deg, rgba(247,242,234,.92), rgba(247,242,234,.72));
    }
    .nav-panel{
      background:rgba(255,253,248,.92);
      border:1px solid rgba(230,220,204,.92);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:14px 18px;
    }
    .navbar{padding:0}
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
      color:var(--text);
      padding:0;
    }
    .navbar-brand:hover{color:var(--text)}
    .logo-symbol{
      width:44px;
      height:44px;
      border-radius:16px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), transparent 28%),
        linear-gradient(135deg, var(--primary), #274f47);
      position:relative;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.18);
      flex:0 0 auto;
    }
    .logo-symbol::before,
    .logo-symbol::after{
      content:"";
      position:absolute;
      inset:auto;
      border-radius:999px;
      background:rgba(255,253,248,.86);
    }
    .logo-symbol::before{
      width:16px;height:16px;left:9px;top:10px;
      box-shadow:10px 10px 0 rgba(217,154,69,.86), 17px -2px 0 rgba(111,139,107,.72);
    }
    .logo-symbol::after{
      width:18px;height:3px;left:12px;bottom:10px;
      background:rgba(255,253,248,.72);
    }
    .brand-text{display:flex;flex-direction:column;min-width:0}
    .brand-name{
      font-size:1.03rem;
      font-weight:800;
      letter-spacing:.01em;
      line-height:1.15;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      margin-top:4px;
      font-size:.83rem;
      color:var(--muted);
      line-height:1.3;
    }
    .navbar-toggler{
      border:1px solid var(--line);
      border-radius:16px;
      padding:.62rem .82rem;
      box-shadow:none !important;
      background:linear-gradient(180deg, #fffdf8, #f7f0e5);
    }
    .navbar-toggler:focus{
      box-shadow:0 0 0 .2rem rgba(217,154,69,.18) !important;
    }
    .navbar-toggler-icon{
      width:1.1em;
      height:1.1em;
      background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2836,33,29,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:auto;
    }
    .nav-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:11px 15px;
      border-radius:999px;
      border:1px solid transparent;
      color:var(--text);
      background:transparent;
      font-weight:700;
      line-height:1;
      transition:var(--transition);
    }
    .nav-pill .nav-icon{
      width:28px;
      height:28px;
      border-radius:10px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(24,58,52,.10), rgba(217,154,69,.12));
      color:var(--primary);
      font-size:.78rem;
      font-weight:800;
    }
    .nav-pill:hover,
    .nav-pill.active{
      color:var(--primary);
      background:rgba(217,154,69,.14);
      border-color:rgba(217,154,69,.28);
      transform:translateY(-1px);
    }
    .nav-cta{
      border:none;
      background:linear-gradient(135deg, var(--accent), #e6b15d);
      color:#fff7ea;
      font-weight:800;
      padding:12px 18px;
      border-radius:999px;
      box-shadow:0 14px 24px rgba(217,154,69,.22);
      transition:var(--transition);
    }
    .nav-cta:hover,
    .nav-cta:focus{
      color:#fffaf1;
      background:linear-gradient(135deg, var(--accent-strong), #cf8d3b);
      transform:translateY(-2px);
      box-shadow:0 18px 30px rgba(199,131,50,.28);
    }
    .site-main{padding:28px 0 64px}
    .article-hero{
      padding:26px 0 10px;
    }
    .crumbs{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:18px;
      color:var(--muted);
      font-size:.92rem;
    }
    .crumbs a,
    .crumbs span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(230,220,204,.92);
      background:rgba(255,253,248,.82);
    }
    .crumbs a:hover{
      color:var(--primary);
      border-color:rgba(217,154,69,.34);
      background:rgba(217,154,69,.10);
    }
    .article-hero-panel{
      background:
        linear-gradient(135deg, rgba(255,253,248,.96), rgba(255,249,240,.88)),
        radial-gradient(circle at top right, rgba(217,154,69,.13), transparent 34%);
      border:1px solid rgba(230,220,204,.92);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:30px;
      position:relative;
      overflow:hidden;
    }
    .article-hero-panel::before{
      content:"";
      position:absolute;
      inset:auto -70px -70px auto;
      width:220px;
      height:220px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(217,154,69,.12) 0%, rgba(217,154,69,0) 65%);
      pointer-events:none;
    }
    .article-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(24,58,52,.08);
      color:var(--primary);
      font-weight:800;
      letter-spacing:.04em;
      font-size:.82rem;
      text-transform:uppercase;
    }
    .article-title{
      margin:14px 0 14px;
      font-size:clamp(2rem, 4vw, 3.2rem);
      line-height:1.18;
      font-weight:800;
      letter-spacing:-.02em;
      max-width:13em;
    }
    .article-summary{
      margin:0;
      max-width:52rem;
      color:var(--muted);
      font-size:1.03rem;
      line-height:1.88;
    }
    .article-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .meta-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 13px;
      border-radius:999px;
      border:1px solid rgba(230,220,204,.9);
      background:rgba(255,253,248,.9);
      color:var(--text);
      font-size:.9rem;
      line-height:1;
    }
    .meta-chip strong{font-weight:800}
    .meta-chip.soft{
      background:rgba(217,154,69,.10);
      border-color:rgba(217,154,69,.24);
    }
    .meta-chip.green{
      background:rgba(111,139,107,.10);
      border-color:rgba(111,139,107,.22);
    }
    .article-layout{
      padding-top:18px;
    }
    .article-card,
    .sidebar-card,
    .recommend-card,
    .empty-state-card{
      background:var(--surface);
      border:1px solid rgba(230,220,204,.95);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }
    .article-card{
      padding:28px;
    }
    .article-content{
      max-width:820px;
      margin:0 auto;
      font-size:1.05rem;
      line-height:1.88;
      color:var(--text);
    }
    .article-content > *:first-child{margin-top:0}
    .article-content h2,
    .article-content h3,
    .article-content h4{
      color:var(--primary);
      line-height:1.32;
      font-weight:800;
      margin:2.1em 0 .9em;
      scroll-margin-top:120px;
    }
    .article-content h2{
      font-size:clamp(1.45rem, 2.2vw, 2rem);
      padding-left:16px;
      border-left:4px solid var(--accent);
    }
    .article-content h3{
      font-size:clamp(1.12rem, 1.7vw, 1.4rem);
    }
    .article-content p{
      margin:0 0 1.1em;
      color:var(--text);
    }
    .article-content a{
      color:var(--primary);
      border-bottom:1px solid rgba(24,58,52,.22);
    }
    .article-content a:hover{
      color:var(--accent);
      border-bottom-color:rgba(217,154,69,.58);
    }
    .article-content ul,
    .article-content ol{
      padding-left:1.25rem;
      margin:0 0 1.2em;
    }
    .article-content li{
      margin:.45em 0;
    }
    .article-content li::marker{
      color:var(--accent);
    }
    .article-content blockquote{
      margin:1.4em 0;
      padding:18px 20px;
      border-left:4px solid var(--accent);
      border-radius:16px;
      background:linear-gradient(135deg, rgba(217,154,69,.08), rgba(255,253,248,.96));
      color:var(--primary);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
    }
    .article-content hr{
      margin:2em 0;
      border:0;
      height:1px;
      background:linear-gradient(90deg, rgba(230,220,204,0), rgba(230,220,204,1), rgba(230,220,204,0));
    }
    .article-content img{
      border-radius:18px;
      box-shadow:0 16px 38px rgba(55,45,34,.08);
      margin:1.4em 0;
    }
    .article-content figure{
      margin:1.4em 0;
    }
    .article-content figcaption{
      margin-top:10px;
      font-size:.92rem;
      color:var(--muted);
      text-align:center;
    }
    .article-content table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      margin:1.5em 0;
      background:var(--surface);
      border:1px solid rgba(230,220,204,.95);
      border-radius:18px;
      overflow:hidden;
      display:block;
      white-space:nowrap;
    }
    .article-content table thead th{
      background:rgba(24,58,52,.06);
      color:var(--primary);
      font-weight:800;
    }
    .article-content table th,
    .article-content table td{
      padding:14px 16px;
      border-bottom:1px solid rgba(230,220,204,.9);
      text-align:left;
      vertical-align:top;
    }
    .article-content table tr:last-child td{border-bottom:none}
    .article-content code{
      padding:.15rem .42rem;
      border-radius:8px;
      background:rgba(24,58,52,.08);
      color:var(--primary);
    }
    .article-content pre{
      padding:18px 20px;
      border-radius:18px;
      background:#18241f;
      color:#edf4ef;
      overflow:auto;
      margin:1.4em 0;
    }
    .article-content pre code{
      padding:0;
      background:transparent;
      color:inherit;
    }
    .article-content .aligncenter{
      margin-left:auto;
      margin-right:auto;
    }
    .article-content .wp-caption,
    .article-content .gallery{
      max-width:100%;
    }
    .article-tagline{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:20px;
    }
    .tag-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(24,58,52,.07);
      color:var(--primary);
      font-size:.9rem;
      border:1px solid rgba(24,58,52,.10);
    }
    .sidebar-stack{
      position:sticky;
      top:112px;
      display:grid;
      gap:16px;
    }
    .sidebar-card{
      padding:20px;
    }
    .sidebar-card .card-title{
      font-size:1rem;
      font-weight:800;
      margin:0 0 10px;
      color:var(--primary);
    }
    .sidebar-card p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.8;
    }
    .sidebar-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .sidebar-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--text);
      font-size:.96rem;
      line-height:1.7;
    }
    .sidebar-dot{
      width:10px;
      height:10px;
      margin-top:.45rem;
      border-radius:50%;
      background:linear-gradient(135deg, var(--accent), #e6b15d);
      box-shadow:0 0 0 4px rgba(217,154,69,.12);
      flex:0 0 auto;
    }
    .sidebar-actions{
      display:grid;
      gap:10px;
      margin-top:14px;
    }
    .btn-main,
    .btn-soft,
    .btn-outline-main{
      border-radius:999px;
      font-weight:800;
      padding:12px 18px;
      transition:var(--transition);
      box-shadow:none !important;
    }
    .btn-main{
      background:linear-gradient(135deg, var(--accent), #e5b05b);
      color:#fff8ec;
      border:none;
    }
    .btn-main:hover,
    .btn-main:focus{
      color:#fffaf1;
      background:linear-gradient(135deg, var(--accent-strong), #d28d39);
      transform:translateY(-2px);
      box-shadow:0 16px 28px rgba(217,154,69,.24) !important;
    }
    .btn-soft{
      background:rgba(255,253,248,.95);
      border:1px solid rgba(24,58,52,.15);
      color:var(--primary);
    }
    .btn-soft:hover,
    .btn-soft:focus{
      background:rgba(111,139,107,.10);
      color:var(--primary);
      border-color:rgba(111,139,107,.24);
      transform:translateY(-1px);
    }
    .btn-outline-main{
      background:transparent;
      border:1px solid rgba(24,58,52,.18);
      color:var(--primary);
    }
    .btn-outline-main:hover,
    .btn-outline-main:focus{
      background:rgba(24,58,52,.06);
      color:var(--primary);
      border-color:rgba(24,58,52,.24);
      transform:translateY(-1px);
    }
    .btn:focus,
    .nav-link:focus,
    .form-control:focus,
    .form-select:focus{
      box-shadow:0 0 0 .22rem rgba(217,154,69,.18) !important;
      border-color:rgba(217,154,69,.72) !important;
    }
    .recommend-section{
      padding:26px 0 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(1.4rem, 2vw, 2rem);
      line-height:1.28;
      font-weight:800;
      color:var(--primary);
    }
    .section-head p{
      margin:8px 0 0;
      color:var(--muted);
      max-width:48rem;
    }
    .recommend-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
    }
    .recommend-card{
      padding:20px;
      transition:var(--transition);
      min-height:160px;
    }
    .recommend-card:hover{
      transform:translateY(-4px);
      border-color:rgba(217,154,69,.34);
      box-shadow:var(--shadow-hover);
    }
    .recommend-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(24,58,52,.06);
      color:var(--primary);
      font-size:.83rem;
      font-weight:800;
      margin-bottom:10px;
    }
    .recommend-card h3{
      margin:0 0 10px;
      font-size:1.08rem;
      line-height:1.45;
      font-weight:800;
      color:var(--text);
    }
    .recommend-card p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.75;
    }
    .empty-state-card{
      padding:36px 24px;
      text-align:center;
      max-width:680px;
      margin:0 auto;
    }
    .empty-mark{
      width:64px;
      height:64px;
      margin:0 auto 16px;
      border-radius:22px;
      background:linear-gradient(135deg, rgba(24,58,52,.08), rgba(217,154,69,.16));
      position:relative;
    }
    .empty-mark::before,
    .empty-mark::after{
      content:"";
      position:absolute;
      left:50%;
      top:50%;
      transform:translate(-50%,-50%);
      background:var(--primary);
      border-radius:999px;
      opacity:.86;
    }
    .empty-mark::before{width:26px;height:4px}
    .empty-mark::after{width:4px;height:26px}
    .empty-state-card h2{
      margin:0 0 10px;
      font-size:clamp(1.5rem, 2.2vw, 2rem);
      color:var(--primary);
      font-weight:800;
    }
    .empty-state-card p{
      margin:0 auto 20px;
      max-width:34rem;
      color:var(--muted);
    }
    .site-footer{
      padding:10px 0 28px;
    }
    .footer-card{
      background:linear-gradient(135deg, rgba(24,58,52,.98), rgba(26,49,45,.98));
      color:#f7f2ea;
      border-radius:var(--radius-xl);
      padding:28px;
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1.3fr .8fr .9fr;
      gap:24px;
      border:1px solid rgba(255,255,255,.06);
    }
    .footer-brand{
      font-size:1.15rem;
      font-weight:800;
      margin-bottom:10px;
      letter-spacing:.01em;
    }
    .site-footer p{
      margin:0;
      color:rgba(247,242,234,.78);
      line-height:1.8;
    }
    .footer-title{
      font-size:.98rem;
      font-weight:800;
      color:#fff7ea;
      margin-bottom:12px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(247,242,234,.84);
      width:max-content;
    }
    .footer-links a:hover{color:var(--accent)}
    .footer-status{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .footer-status span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      color:#fff7ea;
      font-size:.85rem;
    }
    .footer-status span::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(217,154,69,.12);
    }
    .copyright{
      margin-top:16px;
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:.92rem;
      padding:0 6px;
    }
    .copyright span{color:var(--muted)}
    .content-shell{
      padding-bottom:34px;
    }
    .article-notice{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(111,139,107,.10);
      color:var(--primary);
      border:1px solid rgba(111,139,107,.18);
      font-size:.92rem;
      font-weight:700;
    }
    .article-note-line{
      display:flex;
      align-items:center;
      gap:10px;
      margin-top:18px;
      color:var(--muted);
      font-size:.93rem;
      flex-wrap:wrap;
    }
    .article-note-line .mini-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(217,154,69,.10);
      color:var(--primary);
      border:1px solid rgba(217,154,69,.16);
      font-size:.84rem;
      font-weight:700;
    }
    .article-note-line .mini-badge i{
      width:7px;height:7px;border-radius:50%;
      display:inline-block;
      background:var(--accent);
    }
    .content-divider{
      height:1px;
      background:linear-gradient(90deg, rgba(230,220,204,0), rgba(230,220,204,1), rgba(230,220,204,0));
      margin:18px 0 0;
    }
    @media (min-width: 992px){
      .navbar-expand-lg .navbar-collapse{
        display:flex !important;
      }
    }
    @media (max-width: 1199.98px){
      .article-title{max-width:none}
    }
    @media (max-width: 991.98px){
      .site-header{
        position:sticky;
        top:0;
        padding:10px 0 8px;
      }
      .nav-panel{padding:12px 14px}
      .navbar{
        flex-wrap:wrap;
        gap:12px;
      }
      .navbar-collapse{
        width:100%;
      }
      .nav-links{
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:10px;
        padding-top:12px;
      }
      .nav-pill,
      .nav-cta{
        width:100%;
        justify-content:center;
      }
      .article-hero-panel{padding:24px}
      .article-card{padding:22px}
      .sidebar-stack{
        position:static;
      }
      .footer-card{
        grid-template-columns:1fr;
      }
    }
    @media (max-width: 767.98px){
      .site-main{padding-top:18px}
      .article-hero{padding-top:18px}
      .article-hero-panel{padding:20px}
      .article-title{
        font-size:clamp(1.8rem, 8vw, 2.6rem);
      }
      .article-summary{font-size:.98rem}
      .article-meta{gap:8px}
      .meta-chip{width:100%;justify-content:flex-start}
      .article-card{padding:18px}
      .article-content{font-size:1rem}
      .recommend-grid{
        grid-template-columns:1fr;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .copyright{
        flex-direction:column;
      }
    }
    @media (max-width: 575.98px){
      .brand-name{font-size:.98rem}
      .brand-sub{font-size:.77rem}
      .logo-symbol{width:40px;height:40px;border-radius:14px}
      .article-hero-panel,
      .article-card,
      .sidebar-card,
      .recommend-card,
      .empty-state-card{
        border-radius:20px;
      }
      .article-content table{
        font-size:.93rem;
      }
      .article-content table th,
      .article-content table td{
        padding:12px 13px;
      }
      .btn-main,
      .btn-soft,
      .btn-outline-main{
        width:100%;
      }
      .article-tagline{gap:8px}
      .tag-pill{width:100%;justify-content:center}
      .crumbs a,
      .crumbs span{
        width:100%;
        justify-content:center;
      }
    }
