/* roulang page: index */
:root{
      --bg:#fffaf3;
      --bg-soft:#fff3e6;
      --cream:#fff7ed;
      --card:#ffffff;
      --text:#2a211d;
      --muted:#7b6d65;
      --light:#a7958a;
      --primary:#f26f4f;
      --primary-dark:#df5637;
      --primary-soft:#ffe1d7;
      --peach:#ffcaa8;
      --apricot:#ffe4ad;
      --sage:#91b69e;
      --sage-soft:#eef8f0;
      --border:#f0ded2;
      --shadow:0 18px 48px rgba(129,82,58,.12);
      --shadow-soft:0 10px 28px rgba(129,82,58,.09);
      --radius-xl:30px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1220px;
      --ease:all .28s ease;
    }
    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      background:
        radial-gradient(circle at 10% 5%, rgba(255,202,168,.38), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(145,182,158,.22), transparent 28%),
        linear-gradient(180deg,#fffaf3 0%,#fffdf9 45%,#fff7ed 100%);
      color:var(--text);
      line-height:1.65;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{border:0;cursor:pointer}
    :focus-visible{outline:3px solid rgba(242,111,79,.32);outline-offset:3px}
    .container{width:min(var(--container), calc(100% - 40px));margin:0 auto}
    .site-header{
      position:sticky;top:14px;z-index:50;
      width:min(1180px, calc(100% - 32px));
      margin:14px auto 0;
      background:rgba(255,252,247,.86);
      border:1px solid rgba(240,222,210,.88);
      border-radius:999px;
      backdrop-filter:blur(18px);
      box-shadow:0 12px 36px rgba(129,82,58,.08);
    }
    .nav-wrap{
      min-height:68px;
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:18px;
      padding:0 16px;
    }
    .nav-group{display:flex;align-items:center;gap:10px}
    .nav-left{justify-content:flex-end}
    .nav-right{justify-content:flex-start}
    .nav-link{
      padding:10px 15px;
      border-radius:999px;
      color:#6f5f56;
      font-weight:700;
      font-size:14px;
      transition:var(--ease);
      white-space:nowrap;
    }
    .nav-link:hover,.nav-link.active{
      color:var(--primary-dark);
      background:var(--primary-soft);
      transform:translateY(-1px);
    }
    .brand{
      display:flex;align-items:center;justify-content:center;gap:10px;
      padding:9px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
      font-weight:900;
      letter-spacing:-.02em;
      max-width:420px;
    }
    .brand-mark{
      width:34px;height:34px;border-radius:12px;
      background:linear-gradient(135deg,var(--primary),var(--peach));
      display:grid;place-items:center;color:#fff;font-weight:900;
      flex:0 0 auto;
    }
    .brand-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
    .mobile-toggle{
      display:none;width:42px;height:42px;border-radius:50%;
      background:var(--primary-soft);color:var(--primary-dark);
      align-items:center;justify-content:center;
    }
    .mobile-panel{
      display:none;
      padding:0 18px 18px;
    }
    .mobile-panel a{
      display:block;padding:13px 14px;border-radius:14px;
      color:#6f5f56;font-weight:800;
    }
    .mobile-panel a:hover,.mobile-panel a.active{background:var(--primary-soft);color:var(--primary-dark)}
    main{padding-top:34px}
    section{padding:78px 0}
    .section-head{
      display:flex;justify-content:space-between;align-items:flex-end;gap:28px;
      margin-bottom:30px;
    }
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 13px;border-radius:999px;
      background:var(--sage-soft);
      color:#4f8060;
      font-size:13px;font-weight:900;
      border:1px solid rgba(145,182,158,.28);
      margin-bottom:14px;
    }
    .eyebrow:before{content:"";width:8px;height:8px;border-radius:50%;background:var(--sage)}
    h1,h2,h3{line-height:1.18;letter-spacing:-.04em}
    h1{font-size:clamp(38px,5.5vw,76px);max-width:980px}
    h2{font-size:clamp(28px,3.5vw,46px)}
    h3{font-size:20px}
    .lead{font-size:18px;color:var(--muted);max-width:860px}
    .muted{color:var(--muted)}
    .btn-row{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      min-height:48px;padding:0 20px;border-radius:999px;
      font-weight:900;border:1px solid transparent;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{background:var(--primary);color:#fff;box-shadow:0 12px 24px rgba(242,111,79,.24)}
    .btn-primary:hover{background:var(--primary-dark);transform:translateY(-2px);box-shadow:0 16px 30px rgba(242,111,79,.28)}
    .btn-secondary{background:#fff;color:var(--primary-dark);border-color:var(--border)}
    .btn-secondary:hover{background:var(--primary-soft);transform:translateY(-2px)}
    .btn-ghost{background:rgba(255,255,255,.62);color:#6d5b52;border-color:rgba(240,222,210,.9)}
    .btn-ghost:hover{background:#fff;color:var(--primary-dark)}
    .btn:active{transform:translateY(0) scale(.98)}
    .btn[disabled],.btn.disabled{opacity:.55;cursor:not-allowed;transform:none}
    .hero{
      padding:54px 0 72px;
    }
    .hero-stage{
      position:relative;
      overflow:hidden;
      border-radius:42px;
      background:
        linear-gradient(135deg,rgba(255,244,230,.98),rgba(255,255,255,.88) 48%,rgba(255,225,215,.92)),
        radial-gradient(circle at 70% 20%, rgba(255,202,168,.52), transparent 34%);
      border:1px solid rgba(240,222,210,.9);
      box-shadow:var(--shadow);
      padding:42px;
    }
    .hero-stage:after{
      content:"";position:absolute;right:-110px;top:-130px;width:330px;height:330px;
      background:rgba(255,202,168,.28);border-radius:50%;
    }
    .launch-strip{
      display:flex;align-items:center;justify-content:space-between;gap:16px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:999px;
      padding:10px 14px 10px 18px;
      box-shadow:var(--shadow-soft);
      margin-bottom:30px;
      position:relative;z-index:1;
    }
    .launch-dots{display:flex;gap:8px;align-items:center}
    .launch-dots span{
      width:9px;height:9px;border-radius:50%;background:var(--peach);
      box-shadow:18px 0 0 var(--primary),36px 0 0 var(--sage);
    }
    .hero-grid{
      position:relative;z-index:1;
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:34px;
      align-items:stretch;
    }
    .hero-copy p{margin:22px 0 26px}
    .hero-points{
      margin-top:28px;
      display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
    }
    .data-pill{
      background:rgba(255,255,255,.78);
      border:1px solid var(--border);
      border-radius:18px;
      padding:14px;
    }
    .data-pill strong{display:block;font-size:23px;color:var(--primary-dark);line-height:1.1}
    .data-pill span{font-size:13px;color:var(--muted)}
    .hero-panel{
      display:grid;
      grid-template-columns:1fr 1fr;
      grid-template-rows:auto auto 1fr;
      gap:14px;
    }
    .count-card,.matrix-card,.bubble-card,.avatar-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-soft);
      padding:18px;
      transition:var(--ease);
    }
    .count-card:hover,.matrix-card:hover,.bubble-card:hover,.avatar-card:hover{transform:translateY(-3px)}
    .count-card{grid-column:1/2;display:flex;align-items:center;gap:14px}
    .count-ring{
      width:86px;height:86px;border-radius:50%;
      background:conic-gradient(var(--primary) 74%,#f7e6db 0);
      display:grid;place-items:center;position:relative;flex:0 0 auto;
    }
    .count-ring:before{
      content:"";position:absolute;inset:9px;background:#fff;border-radius:50%;
    }
    .count-ring span{position:relative;font-weight:950;color:var(--primary-dark);text-align:center;line-height:1.1}
    .matrix-card{grid-column:2/3}
    .entry-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:12px}
    .entry{
      padding:10px;border-radius:14px;background:var(--cream);
      color:#6e5a50;font-size:13px;font-weight:850;text-align:center;
      border:1px solid rgba(240,222,210,.8);
    }
    .bubble-card{grid-column:1/3;background:linear-gradient(135deg,#fff,#fff7ed)}
    .bubble-list{display:flex;flex-wrap:wrap;gap:9px;margin-top:12px}
    .bubble{
      padding:9px 12px;border-radius:16px 16px 16px 4px;
      background:var(--primary-soft);
      color:#794033;font-weight:800;font-size:13px;
    }
    .avatar-card{grid-column:1/3;display:flex;align-items:center;justify-content:space-between;gap:12px}
    .avatars{display:flex;align-items:center;padding-left:10px}
    .avatar{
      width:38px;height:38px;border-radius:50%;
      margin-left:-10px;border:3px solid #fff;
      background:linear-gradient(135deg,var(--peach),var(--sage));
      box-shadow:0 8px 16px rgba(129,82,58,.12);
      display:grid;place-items:center;font-size:13px;font-weight:900;color:#fff;
    }
    .stars{color:#f6a23c;font-weight:950}
    .news{background:rgba(255,255,255,.46)}
    .news-layout{display:grid;grid-template-columns:1.45fr .75fr;gap:24px}
    .news-list{
      background:#fff;border:1px solid var(--border);border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);overflow:hidden;
    }
    .news-item{
      display:grid;grid-template-columns:108px 1fr auto;gap:18px;align-items:center;
      padding:18px 20px;border-bottom:1px solid var(--border);
      transition:var(--ease);
    }
    .news-item:last-child{border-bottom:0}
    .news-item:hover{background:#fff7ed;transform:translateX(3px)}
    .date-box{
      border-radius:18px;background:var(--cream);border:1px solid var(--border);
      padding:12px;text-align:center;color:var(--primary-dark);font-weight:950;
    }
    .date-box small{display:block;color:var(--muted);font-weight:800}
    .news-item h3{font-size:18px;margin-bottom:4px}
    .arrow{
      width:38px;height:38px;border-radius:50%;background:var(--primary-soft);
      color:var(--primary-dark);display:grid;place-items:center;font-weight:900;
    }
    .side-reco{
      background:linear-gradient(180deg,#fff,#fff2e4);
      border:1px solid var(--border);border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);padding:24px;
    }
    .tag-cloud{display:flex;flex-wrap:wrap;gap:9px;margin:18px 0}
    .tag{
      display:inline-flex;align-items:center;gap:6px;
      padding:8px 11px;border-radius:999px;
      background:#fff;border:1px solid var(--border);
      color:#745f55;font-size:13px;font-weight:850;
    }
    .tag.hot{background:var(--primary-soft);color:var(--primary-dark);border-color:#ffd0c2}
    .service-mosaic{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:20px;
      align-items:stretch;
    }
    .feature-large,.feature-stack .feature-card,.scenario-card,.review-card,.price-card,.app-card,.about-card{
      background:#fff;border:1px solid var(--border);border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);transition:var(--ease);
    }
    .feature-large:hover,.feature-card:hover,.scenario-card:hover,.review-card:hover,.price-card:hover,.app-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
    .feature-large{padding:30px;display:grid;grid-template-columns:1fr .72fr;gap:20px;align-items:center}
    .feature-visual{
      min-height:220px;border-radius:26px;
      background:
        linear-gradient(135deg,rgba(242,111,79,.12),rgba(145,182,158,.16)),
        repeating-linear-gradient(135deg,rgba(255,255,255,.7) 0 10px,rgba(255,244,230,.7) 10px 20px);
      padding:18px;
      display:flex;flex-direction:column;justify-content:space-between;
    }
    .mini-line{height:12px;border-radius:999px;background:#fff;border:1px solid var(--border)}
    .mini-line:nth-child(2){width:76%}
    .mini-line:nth-child(3){width:58%}
    .feature-stack{display:grid;grid-template-columns:1fr 1fr;gap:20px}
    .feature-card{padding:24px}
    .icon{
      width:46px;height:46px;border-radius:16px;
      background:var(--primary-soft);color:var(--primary-dark);
      display:grid;place-items:center;font-weight:950;font-size:20px;margin-bottom:16px;
    }
    .app-section{background:linear-gradient(180deg,rgba(255,247,237,.7),rgba(255,255,255,.45))}
    .app-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:24px;align-items:stretch}
    .app-card{padding:28px}
    .sync-board{
      background:#fff;border:1px solid var(--border);border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);padding:20px;
      display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
    }
    .device{
      min-height:180px;border-radius:24px;background:var(--cream);border:1px solid var(--border);
      padding:18px;display:flex;flex-direction:column;justify-content:space-between;
    }
    .device:nth-child(2){transform:translateY(20px);background:#fff1ea}
    .device:nth-child(3){background:var(--sage-soft)}
    .scenario-strip{
      display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
    }
    .scenario-card{padding:22px;position:relative;overflow:hidden}
    .scenario-card:before{
      content:attr(data-step);
      position:absolute;right:18px;top:12px;font-size:42px;font-weight:950;
      color:rgba(242,111,79,.1);line-height:1;
    }
    .reviews{background:rgba(255,255,255,.55)}
    .review-layout{display:grid;grid-template-columns:.82fr 1.18fr;gap:24px}
    .score-card{
      background:linear-gradient(135deg,var(--primary),#ff9b72);
      color:#fff;border-radius:var(--radius-xl);padding:28px;box-shadow:var(--shadow);
    }
    .score-num{font-size:64px;line-height:1;font-weight:950}
    .review-list{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    .review-card{padding:22px}
    .quote{
      background:var(--cream);border:1px solid var(--border);
      border-radius:20px 20px 20px 6px;padding:14px;margin-top:12px;
      color:#5f514b;font-weight:700;
    }
    .pricing{background:linear-gradient(180deg,#fffaf3,#fff)}
    .price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch}
    .price-card{padding:26px;position:relative}
    .price-card.recommend{
      border:2px solid rgba(242,111,79,.5);
      transform:scale(1.03);
      background:linear-gradient(180deg,#fff,#fff6ef);
    }
    .price-card.recommend:hover{transform:scale(1.03) translateY(-4px)}
    .price{font-size:40px;font-weight:950;color:var(--primary-dark);margin:12px 0}
    .price small{font-size:15px;color:var(--muted)}
    .check-list{list-style:none;margin:18px 0 22px;display:grid;gap:10px}
    .check-list li{display:flex;gap:10px;color:#5f514b}
    .check-list li:before{content:"✓";color:var(--sage);font-weight:950}
    .compare{
      margin-top:22px;background:#fff;border:1px solid var(--border);
      border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-soft);
    }
    .compare-row{display:grid;grid-template-columns:1fr 1fr 1fr;border-bottom:1px solid var(--border)}
    .compare-row:last-child{border-bottom:0}
    .compare-row div{padding:15px 18px}
    .compare-row .head{font-weight:950;background:var(--cream)}
    .faq-grid{display:grid;grid-template-columns:.75fr 1.25fr;gap:26px;align-items:start}
    .faq-list{display:grid;gap:12px}
    .faq-item{
      background:#fff;border:1px solid var(--border);border-radius:20px;
      box-shadow:var(--shadow-soft);overflow:hidden;
    }
    .faq-q{
      width:100%;background:#fff;color:var(--text);
      display:flex;justify-content:space-between;align-items:center;
      padding:18px 20px;font-weight:950;text-align:left;
    }
    .faq-q span:last-child{
      width:26px;height:26px;border-radius:50%;background:var(--primary-soft);
      color:var(--primary-dark);display:grid;place-items:center;transition:var(--ease);
    }
    .faq-a{
      max-height:0;overflow:hidden;transition:max-height .32s ease;
      color:var(--muted);
    }
    .faq-a p{padding:0 20px 18px}
    .faq-item.open .faq-a{max-height:180px}
    .faq-item.open .faq-q span:last-child{transform:rotate(45deg)}
    .about-wrap{
      display:grid;grid-template-columns:1fr .9fr;gap:24px;align-items:stretch;
    }
    .about-card{padding:30px}
    .cta-card{
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 10% 20%,rgba(255,255,255,.5),transparent 34%),
        linear-gradient(135deg,var(--primary),#ff9b72);
      color:#fff;padding:32px;box-shadow:var(--shadow);
      display:flex;flex-direction:column;justify-content:space-between;gap:24px;
    }
    .cta-card .btn-secondary{border-color:rgba(255,255,255,.5)}
    .footer{
      padding:46px 0 28px;background:#2f251f;color:#f8eee6;
    }
    .footer-grid{
      display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:28px;
      padding-bottom:28px;border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{font-size:20px;font-weight:950;margin-bottom:12px}
    .footer a{color:#ead7cc;transition:var(--ease)}
    .footer a:hover{color:#fff}
    .footer-links{display:grid;gap:8px}
    .copyright{
      display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
      padding-top:22px;color:#d8c5ba;font-size:14px;
    }
    .backtop{color:#fff;font-weight:900}
    .floating-cta{
      position:fixed;left:50%;bottom:18px;transform:translateX(-50%);
      z-index:40;display:none;align-items:center;gap:10px;
      background:rgba(47,37,31,.9);color:#fff;border:1px solid rgba(255,255,255,.12);
      border-radius:999px;padding:9px 10px 9px 16px;box-shadow:var(--shadow);
      backdrop-filter:blur(12px);
    }
    @media (max-width:1024px){
      .hero-grid,.news-layout,.service-mosaic,.app-grid,.review-layout,.faq-grid,.about-wrap{grid-template-columns:1fr}
      .feature-large{grid-template-columns:1fr}
      .scenario-strip,.price-grid{grid-template-columns:repeat(2,1fr)}
      .hero-panel{grid-template-columns:1fr 1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .price-card.recommend{transform:none}
      .price-card.recommend:hover{transform:translateY(-4px)}
    }
    @media (max-width:768px){
      .site-header{top:8px;border-radius:26px}
      .nav-wrap{grid-template-columns:auto 1fr auto;min-height:62px}
      .nav-group{display:none}
      .brand{justify-content:flex-start;min-width:0;box-shadow:none}
      .mobile-toggle{display:flex}
      .mobile-panel.open{display:block}
      main{padding-top:18px}
      section{padding:56px 0}
      .container{width:min(100% - 28px, var(--container))}
      .hero-stage{padding:26px;border-radius:30px}
      .launch-strip{border-radius:22px;align-items:flex-start;flex-direction:column}
      .hero-points,.feature-stack,.sync-board,.review-list,.scenario-strip,.price-grid{grid-template-columns:1fr}
      .hero-panel{grid-template-columns:1fr}
      .count-card,.matrix-card,.bubble-card,.avatar-card{grid-column:auto}
      .news-item{grid-template-columns:1fr;gap:10px}
      .date-box{text-align:left}
      .compare-row{grid-template-columns:1fr}
      .compare-row div{border-bottom:1px solid var(--border)}
      .compare-row div:last-child{border-bottom:0}
      .section-head{display:block}
      .floating-cta{display:flex}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      h1{font-size:36px}
      .btn-row{flex-direction:column;align-items:stretch}
      .btn{width:100%}
      .avatar-card{align-items:flex-start;flex-direction:column}
      .device:nth-child(2){transform:none}
      .footer{padding-bottom:88px}
    }

/* roulang page: category2 */
:root{
      --bg:#fffaf4;
      --bg-soft:#fff2e8;
      --bg-card:#ffffff;
      --cream:#fff7ed;
      --coral:#ff7a59;
      --coral-dark:#ef5e3c;
      --peach:#ffd5c6;
      --apricot:#ffe4a8;
      --sage:#88a98d;
      --sage-soft:#edf6ee;
      --text:#2f2825;
      --muted:#746a64;
      --light:#9a8f88;
      --border:#f0ddd1;
      --shadow:0 18px 45px rgba(116,84,62,.10);
      --shadow-sm:0 10px 26px rgba(116,84,62,.08);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1220px;
      --header-h:78px;
      --focus:0 0 0 4px rgba(255,122,89,.20);
    }
    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 4%, rgba(255,213,198,.55), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(255,228,168,.48), transparent 30%),
        linear-gradient(180deg,#fffaf4 0%,#fff 48%,#fff8f1 100%);
      line-height:1.7;
      min-height:100vh;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{border:0;cursor:pointer}
    .container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .section{padding:78px 0}
    .section-tight{padding:54px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:7px 12px;border-radius:999px;
      background:var(--sage-soft);color:#58785e;
      font-size:13px;font-weight:700;border:1px solid rgba(136,169,141,.25);
    }
    .eyebrow::before{
      content:"";width:8px;height:8px;border-radius:50%;
      background:var(--sage);box-shadow:0 0 0 4px rgba(136,169,141,.16);
    }
    .site-header{
      position:sticky;top:12px;z-index:50;
      width:min(1240px,calc(100% - 28px));
      margin:12px auto 0;
    }
    .nav-wrap{
      height:var(--header-h);
      display:grid;
      grid-template-columns:1fr auto 1fr auto;
      align-items:center;
      gap:22px;
      padding:0 18px;
      background:rgba(255,250,244,.88);
      backdrop-filter:blur(16px);
      border:1px solid rgba(240,221,209,.85);
      border-radius:999px;
      box-shadow:var(--shadow-sm);
    }
    .nav-group{display:flex;align-items:center;gap:10px}
    .nav-left{justify-content:flex-end}
    .nav-right{justify-content:flex-start}
    .nav-link,.mobile-panel a{
      color:var(--muted);
      font-weight:800;
      font-size:15px;
      padding:10px 15px;
      border-radius:999px;
      transition:all .22s ease;
      outline:none;
    }
    .nav-link:hover,.mobile-panel a:hover{
      color:var(--coral-dark);
      background:#fff1e9;
      transform:translateY(-1px);
    }
    .nav-link:focus-visible,.mobile-panel a:focus-visible,.brand:focus-visible,.btn:focus-visible,.filter-chip:focus-visible,.faq-question:focus-visible{
      box-shadow:var(--focus);
    }
    .nav-link.active,.mobile-panel a.active{
      color:#fff;background:var(--coral);
      box-shadow:0 10px 20px rgba(255,122,89,.24);
    }
    .brand{
      display:flex;align-items:center;gap:10px;
      min-width:0;
      padding:8px 12px;
      border-radius:999px;
      transition:all .22s ease;
    }
    .brand:hover{background:#fff4ec}
    .brand-mark{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      color:#fff;font-weight:900;
      background:linear-gradient(135deg,var(--coral),#ff9a76);
      box-shadow:0 12px 22px rgba(255,122,89,.22);
      flex:0 0 auto;
    }
    .brand-text{
      font-weight:900;
      letter-spacing:-.02em;
      white-space:nowrap;
      max-width:360px;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .mobile-toggle{
      display:none;
      width:44px;height:44px;border-radius:50%;
      background:#fff1e9;color:var(--coral-dark);
      font-size:20px;
      transition:all .2s ease;
    }
    .mobile-toggle:hover{background:var(--coral);color:#fff}
    .mobile-panel{
      display:none;
      margin-top:10px;
      padding:12px;
      background:#fffdf9;
      border:1px solid var(--border);
      border-radius:22px;
      box-shadow:var(--shadow-sm);
    }
    .mobile-panel.open{display:grid;gap:8px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      min-height:46px;
      padding:12px 18px;
      border-radius:999px;
      font-weight:900;
      border:1px solid transparent;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,color .22s ease,border-color .22s ease;
      outline:none;
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--coral);
      color:#fff;
      box-shadow:0 16px 28px rgba(255,122,89,.26);
    }
    .btn-primary:hover{background:var(--coral-dark);transform:translateY(-2px);box-shadow:0 20px 34px rgba(239,94,60,.28)}
    .btn-secondary{
      background:#fff;
      color:var(--coral-dark);
      border-color:#ffd7c8;
    }
    .btn-secondary:hover{background:#fff1e9;transform:translateY(-2px)}
    .btn-ghost{
      background:rgba(255,255,255,.68);
      color:var(--muted);
      border-color:var(--border);
    }
    .btn-ghost:hover{color:var(--coral-dark);border-color:#ffcdbb;transform:translateY(-2px)}
    .btn:active{transform:translateY(0) scale(.98)}
    .btn[disabled],.btn.disabled{opacity:.55;cursor:not-allowed;transform:none;box-shadow:none}
    .hero-filter{
      padding:42px 0 70px;
      position:relative;
    }
    .flash-strip{
      display:grid;
      grid-template-columns:1.1fr auto auto;
      align-items:center;
      gap:18px;
      padding:14px 18px;
      border:1px solid #ffd9c8;
      border-radius:24px;
      background:linear-gradient(90deg,#fff1e9,#fff8e7 58%,#f2f8ef);
      box-shadow:var(--shadow-sm);
      margin-bottom:24px;
    }
    .flash-title{
      display:flex;align-items:center;gap:10px;
      font-weight:900;
    }
    .flash-icon{
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      background:var(--coral);color:#fff;
      box-shadow:0 10px 20px rgba(255,122,89,.25);
    }
    .countdown{display:flex;align-items:center;gap:6px;color:var(--muted);font-weight:800}
    .countdown b{
      min-width:34px;text-align:center;
      padding:5px 7px;border-radius:10px;
      background:#fff;color:var(--coral-dark);
      border:1px solid #ffd5c6;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
      gap:34px;
      align-items:stretch;
    }
    .hero-copy{
      padding:42px;
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.72);
      border:1px solid rgba(240,221,209,.9);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-copy::after{
      content:"";
      position:absolute;
      right:-70px;bottom:-90px;
      width:240px;height:240px;border-radius:50%;
      background:rgba(255,213,198,.34);
      z-index:0;
    }
    .hero-copy>*{position:relative;z-index:1}
    h1{
      margin-top:18px;
      font-size:clamp(34px,5vw,64px);
      line-height:1.08;
      letter-spacing:-.04em;
      max-width:820px;
    }
    .hero-lead{
      margin-top:18px;
      color:var(--muted);
      font-size:18px;
      max-width:720px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
    .mini-proof{
      display:flex;flex-wrap:wrap;gap:12px;
      margin-top:28px;
    }
    .proof-pill{
      padding:10px 14px;border-radius:999px;
      background:#fff7ed;border:1px solid var(--border);
      color:var(--muted);font-weight:800;font-size:14px;
    }
    .deal-card{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:24px;
      display:grid;
      gap:18px;
      align-content:start;
      position:relative;
      overflow:hidden;
    }
    .deal-card::before{
      content:"";
      position:absolute;inset:0 0 auto 0;height:8px;
      background:linear-gradient(90deg,var(--coral),var(--apricot),var(--sage));
    }
    .deal-head{display:flex;justify-content:space-between;gap:14px;align-items:flex-start;margin-top:6px}
    .deal-head h2{font-size:24px;line-height:1.25}
    .deal-badge{
      background:#fff1e9;color:var(--coral-dark);
      border:1px solid #ffd4c3;
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;font-weight:900;
      white-space:nowrap;
    }
    .meter{
      display:grid;gap:8px;
      padding:14px;border-radius:18px;
      background:var(--cream);
      border:1px solid var(--border);
    }
    .meter-row{display:flex;justify-content:space-between;color:var(--muted);font-size:14px;font-weight:800}
    .meter-track{height:10px;border-radius:99px;background:#f3e2d8;overflow:hidden}
    .meter-fill{height:100%;width:78%;border-radius:99px;background:linear-gradient(90deg,var(--coral),#ffb08d)}
    .avatar-wall{display:flex;align-items:center}
    .avatar{
      width:38px;height:38px;border-radius:50%;
      display:grid;place-items:center;
      color:#fff;font-weight:900;font-size:13px;
      border:3px solid #fff;
      margin-left:-9px;
      box-shadow:0 8px 18px rgba(80,54,40,.12);
    }
    .avatar:first-child{margin-left:0}
    .a1{background:#ff7a59}.a2{background:#88a98d}.a3{background:#f4b860}.a4{background:#c98f78}.a5{background:#e8879b}.a6{background:#7f9f96}
    .bubble{
      background:#fffaf4;border:1px solid var(--border);
      border-radius:20px 20px 20px 6px;
      padding:13px 14px;
      color:var(--muted);
      font-weight:700;
    }
    .filter-board{
      margin-top:10px;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:22px;
    }
    .board-top{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      align-items:center;
      padding-bottom:18px;
      border-bottom:1px dashed #ead5c9;
    }
    .board-top h2{font-size:28px;line-height:1.25}
    .search-box{
      display:flex;align-items:center;gap:10px;
      min-width:320px;
      background:#fff8f1;
      border:1px solid var(--border);
      border-radius:999px;
      padding:8px 10px 8px 16px;
      transition:all .2s ease;
    }
    .search-box:focus-within{box-shadow:var(--focus);border-color:#ffc8b4;background:#fff}
    .search-box input{
      width:100%;border:0;background:transparent;outline:0;
      color:var(--text);font-weight:700;
    }
    .filter-rows{display:grid;gap:16px;margin-top:20px}
    .filter-row{
      display:grid;
      grid-template-columns:88px 1fr auto;
      gap:12px;
      align-items:center;
    }
    .filter-label{font-weight:900;color:var(--text)}
    .chip-list{display:flex;flex-wrap:wrap;gap:10px}
    .filter-chip{
      padding:9px 13px;
      border-radius:999px;
      border:1px solid var(--border);
      background:#fffaf4;
      color:var(--muted);
      font-weight:800;
      transition:all .2s ease;
      outline:none;
    }
    .filter-chip:hover{transform:translateY(-1px);border-color:#ffcdbb;color:var(--coral-dark)}
    .filter-chip.active{
      background:var(--coral);
      border-color:var(--coral);
      color:#fff;
      box-shadow:0 12px 22px rgba(255,122,89,.20);
    }
    .clear-btn{
      color:var(--coral-dark);
      background:#fff1e9;
      border:1px solid #ffd4c3;
      border-radius:999px;
      padding:9px 13px;
      font-weight:900;
      transition:all .2s ease;
    }
    .clear-btn:hover{background:var(--coral);color:#fff}
    .content-split{
      display:grid;
      grid-template-columns:minmax(0,1.65fr) minmax(300px,.75fr);
      gap:24px;
      margin-top:26px;
    }
    .list-stack{display:grid;gap:14px}
    .entry-card{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px;
      border-radius:22px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 8px 22px rgba(116,84,62,.06);
      transition:all .22s ease;
    }
    .entry-card:hover{
      transform:translateY(-3px);
      border-color:#ffcdbb;
      box-shadow:var(--shadow-sm);
    }
    .entry-rank{
      width:48px;height:48px;border-radius:18px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,#fff1e9,#fff8e8);
      color:var(--coral-dark);
      font-weight:950;
      border:1px solid #ffd9c8;
    }
    .entry-main h3{
      font-size:19px;
      line-height:1.28;
      margin-bottom:7px;
    }
    .entry-meta{display:flex;flex-wrap:wrap;gap:8px;color:var(--muted);font-size:13px;font-weight:750}
    .tag{
      display:inline-flex;align-items:center;gap:6px;
      padding:5px 9px;
      border-radius:999px;
      background:#fff7ed;
      border:1px solid var(--border);
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .tag.hot{background:#fff1e9;color:var(--coral-dark);border-color:#ffd4c3}
    .tag.ok{background:var(--sage-soft);color:#58785e;border-color:rgba(136,169,141,.25)}
    .tag.warn{background:#fff8e1;color:#8a6a20;border-color:#f5e1a7}
    .side-panel{
      display:grid;
      gap:16px;
      align-content:start;
    }
    .side-card{
      padding:20px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-sm);
    }
    .side-card h3{font-size:20px;margin-bottom:12px}
    .matrix{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .matrix-item{
      padding:14px;
      border-radius:18px;
      background:#fff8f1;
      border:1px solid var(--border);
      transition:all .2s ease;
    }
    .matrix-item:hover{background:#fff1e9;transform:translateY(-2px)}
    .matrix-item strong{display:block;font-size:18px}
    .matrix-item span{color:var(--muted);font-size:13px;font-weight:700}
    .tips-list{display:grid;gap:10px}
    .tip{
      display:flex;gap:10px;
      padding:10px 0;
      border-bottom:1px dashed #ead5c9;
      color:var(--muted);
      font-weight:700;
    }
    .tip:last-child{border-bottom:0}
    .tip i{
      width:24px;height:24px;border-radius:50%;
      display:grid;place-items:center;
      flex:0 0 auto;
      background:#fff1e9;
      color:var(--coral-dark);
      font-style:normal;
      font-weight:900;
    }
    .compare-zone{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:stretch;
    }
    .compare-copy,.compare-card{
      border-radius:var(--radius-xl);
      border:1px solid var(--border);
      background:#fff;
      box-shadow:var(--shadow-sm);
      padding:28px;
    }
    .compare-copy h2{font-size:34px;line-height:1.18;margin:14px 0}
    .compare-copy p{color:var(--muted)}
    .compare-grid{display:grid;gap:12px}
    .compare-row{
      display:grid;
      grid-template-columns:130px 1fr 1fr;
      gap:10px;
      align-items:center;
      padding:13px;
      border-radius:18px;
      background:#fffaf4;
      border:1px solid var(--border);
    }
    .compare-row.head{
      background:linear-gradient(90deg,#fff1e9,#fff8e8);
      font-weight:950;
      color:var(--text);
    }
    .compare-row span{color:var(--muted);font-weight:750}
    .compare-row strong{font-weight:950}
    .voice-layout{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      align-items:start;
    }
    .section-title{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:24px;
      margin-bottom:24px;
    }
    .section-title h2{
      font-size:clamp(28px,3.6vw,44px);
      line-height:1.16;
      letter-spacing:-.03em;
      max-width:760px;
    }
    .section-title p{color:var(--muted);max-width:460px}
    .voice-card{
      padding:24px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-sm);
    }
    .voice-list{display:grid;gap:12px}
    .voice-bubble{
      padding:15px 16px;
      border-radius:20px 20px 20px 8px;
      background:#fff8f1;
      border:1px solid var(--border);
      color:var(--muted);
      font-weight:760;
    }
    .rating-box{
      padding:24px;
      border-radius:26px;
      background:linear-gradient(135deg,#fff1e9,#fffdf8);
      border:1px solid #ffd9c8;
    }
    .stars{color:#f6a500;font-size:22px;letter-spacing:2px}
    .score{font-size:52px;font-weight:950;line-height:1;margin:10px 0;color:var(--coral-dark)}
    .pricing-grid{
      display:grid;
      grid-template-columns:1fr 1.08fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .price-card{
      padding:24px;
      border-radius:26px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:var(--shadow-sm);
      transition:all .22s ease;
      display:grid;
      gap:16px;
    }
    .price-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
    .price-card.featured{
      border:2px solid var(--coral);
      transform:scale(1.025);
      background:linear-gradient(180deg,#fff,#fff6ef);
    }
    .price-card.featured:hover{transform:scale(1.025) translateY(-4px)}
    .price-name{display:flex;justify-content:space-between;gap:10px;align-items:center}
    .price-name h3{font-size:22px}
    .price{font-size:36px;font-weight:950;color:var(--coral-dark)}
    .price small{font-size:14px;color:var(--muted)}
    .feature-list{display:grid;gap:10px;color:var(--muted);font-weight:760}
    .feature-list li{list-style:none;display:flex;gap:9px}
    .feature-list li::before{content:"✓";color:var(--sage);font-weight:950}
    .faq-wrap{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:26px;
      align-items:start;
    }
    .faq-intro{
      padding:28px;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-sm);
    }
    .faq-intro h2{font-size:36px;line-height:1.15;margin:14px 0}
    .faq-intro p{color:var(--muted)}
    .faq-list{display:grid;gap:12px}
    .faq-item{
      border:1px solid var(--border);
      border-radius:22px;
      background:#fff;
      box-shadow:0 8px 20px rgba(116,84,62,.05);
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding:18px 20px;
      background:#fff;
      color:var(--text);
      font-weight:950;
      text-align:left;
      outline:none;
    }
    .faq-question:hover{background:#fff8f1;color:var(--coral-dark)}
    .faq-icon{transition:transform .25s ease;color:var(--coral-dark)}
    .faq-item.open .faq-icon{transform:rotate(45deg)}
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
    }
    .faq-answer p{
      padding:0 20px 18px;
      color:var(--muted);
      font-weight:700;
    }
    .cta-band{
      padding:34px;
      border-radius:32px;
      background:
        radial-gradient(circle at 12% 20%,rgba(255,213,198,.55),transparent 28%),
        linear-gradient(135deg,#fff1e9,#fffdf8 58%,#eef7ef);
      border:1px solid #ffd9c8;
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-band h2{font-size:34px;line-height:1.18;margin-bottom:8px}
    .cta-band p{color:var(--muted);max-width:720px}
    .footer{
      margin-top:30px;
      padding:54px 0 28px;
      background:#2f2825;
      color:#fff7ed;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .7fr .7fr;
      gap:36px;
      padding-bottom:32px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      font-size:22px;
      font-weight:950;
      margin-bottom:12px;
    }
    .footer p{color:rgba(255,247,237,.72);max-width:500px}
    .footer h3{font-size:16px;margin-bottom:12px;color:#fff}
    .footer-links{display:grid;gap:9px}
    .footer-links a{
      color:rgba(255,247,237,.72);
      transition:all .2s ease;
      width:max-content;
    }
    .footer-links a:hover{color:#ffd5c6;transform:translateX(3px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      padding-top:22px;
      color:rgba(255,247,237,.58);
      font-size:13px;
    }
    @media (max-width:1024px){
      .nav-wrap{grid-template-columns:auto 1fr auto}
      .nav-group{display:none}
      .brand{justify-self:center}
      .mobile-toggle{display:grid;place-items:center}
      .hero-grid,.content-split,.compare-zone,.voice-layout,.faq-wrap{grid-template-columns:1fr}
      .flash-strip{grid-template-columns:1fr;align-items:start}
      .board-top{grid-template-columns:1fr}
      .search-box{min-width:0;width:100%}
      .pricing-grid{grid-template-columns:1fr}
      .price-card.featured{transform:none}
      .price-card.featured:hover{transform:translateY(-4px)}
      .cta-band{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      :root{--header-h:66px}
      .container{width:min(100% - 28px,var(--container))}
      .section{padding:58px 0}
      .site-header{top:8px;width:calc(100% - 18px);margin-top:8px}
      .nav-wrap{padding:0 12px;border-radius:24px}
      .brand-text{max-width:210px;font-size:14px}
      .brand-mark{width:34px;height:34px;border-radius:12px}
      .hero-filter{padding-top:26px}
      .hero-copy,.deal-card,.filter-board{padding:20px;border-radius:24px}
      .hero-lead{font-size:16px}
      .hero-actions,.mini-proof{display:grid;grid-template-columns:1fr}
      .btn{width:100%}
      .filter-row{grid-template-columns:1fr;align-items:start}
      .entry-card{grid-template-columns:1fr;align-items:start}
      .entry-rank{width:42px;height:42px}
      .entry-card .btn{width:100%}
      .compare-row{grid-template-columns:1fr}
      .section-title{display:grid;gap:10px}
      .pricing-grid{gap:14px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column}
    }
    @media (max-width:520px){
      h1{font-size:32px}
      .board-top h2,.compare-copy h2,.faq-intro h2,.cta-band h2{font-size:28px}
      .matrix{grid-template-columns:1fr}
      .countdown{flex-wrap:wrap}
      .flash-strip .btn{width:100%}
      .hero-copy{padding:18px}
      .filter-board{padding:16px}
      .side-card,.compare-copy,.compare-card,.voice-card,.rating-box,.price-card,.faq-intro,.cta-band{padding:20px}
    }

/* roulang page: category1 */
:root{
  --bg:#f6efe6;
  --bg-soft:#fffaf4;
  --surface:#fffdf9;
  --surface-2:#fff4ea;
  --surface-3:#f8efe4;
  --surface-dark:#2f231c;
  --surface-dark-2:#4a3428;
  --ink:#2f2622;
  --muted:#7e6e64;
  --light:#fff9f3;
  --line:#eadfce;
  --line-2:#e7d4bf;
  --accent:#f07b54;
  --accent-2:#f5a35a;
  --accent-3:#f7c86b;
  --sage:#89a89a;
  --sage-2:#dfe8e1;
  --shadow:0 18px 45px rgba(61,40,24,.08);
  --shadow-soft:0 10px 28px rgba(56,35,20,.06);
  --radius:22px;
  --radius-lg:28px;
  --radius-sm:14px;
  --container:1320px;
  --header-h:86px;
  --transition:220ms ease;
  --transition-slow:360ms ease;
  --focus:0 0 0 4px rgba(240,123,84,.16);
}
*,
*::before,
*::after{box-sizing:border-box}
html{
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family: -apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(247,200,107,.14), transparent 22%),
    radial-gradient(circle at 85% 0%, rgba(240,123,84,.10), transparent 26%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 42%, #f8f0e7 100%);
  line-height:1.7;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
body::before,
body::after{
  content:"";
  position:fixed;
  inset:auto;
  pointer-events:none;
  z-index:-1;
  border-radius:50%;
  filter:blur(8px);
}
body::before{
  width:240px;
  height:240px;
  background:rgba(245,163,90,.10);
  top:12vh;
  left:-70px;
}
body::after{
  width:300px;
  height:300px;
  background:rgba(137,168,154,.08);
  right:-110px;
  bottom:8vh;
}
img{max-width:100%;display:block}
a{
  color:inherit;
  text-decoration:none;
  transition:color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
button,
input,
select{
  font:inherit;
}
button{
  border:0;
  background:none;
  color:inherit;
  padding:0;
  cursor:pointer;
}
button:disabled,
.is-disabled{
  opacity:.55;
  cursor:not-allowed;
}
:focus-visible{
  outline:none;
  box-shadow:var(--focus);
  border-radius:12px;
}
::selection{
  background:rgba(240,123,84,.18);
}
.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(255,250,244,.86);
  backdrop-filter:saturate(150%) blur(12px);
  border-bottom:1px solid rgba(234,223,206,.75);
  box-shadow:0 8px 24px rgba(60,39,23,.04);
}
.nav-wrap{
  width:min(100% - 24px, var(--container));
  min-height:var(--header-h);
  margin-inline:auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
}
.nav-group{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.nav-left{justify-content:flex-start}
.nav-right{justify-content:flex-end}
.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 16px;
  border:1px solid transparent;
  border-radius:999px;
  color:var(--muted);
  background:transparent;
  font-size:15px;
  font-weight:600;
  letter-spacing:.02em;
}
.nav-link:hover{
  color:var(--accent);
  background:rgba(240,123,84,.08);
  border-color:rgba(240,123,84,.12);
  transform:translateY(-1px);
}
.nav-link.active,
.nav-link[aria-current="page"]{
  color:#fff;
  background:linear-gradient(135deg, var(--accent) 0%, #ef9159 100%);
  box-shadow:0 10px 22px rgba(240,123,84,.22);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  justify-self:center;
  min-width:0;
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg, var(--accent) 0%, #f39a58 55%, #f7c86b 100%);
  box-shadow:0 12px 24px rgba(240,123,84,.22);
  flex:0 0 auto;
}
.brand-text{
  font-size:18px;
  font-weight:800;
  letter-spacing:.02em;
  color:var(--ink);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.mobile-toggle{
  display:none;
  justify-self:end;
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid var(--line);
  background:var(--surface);
  box-shadow:var(--shadow-soft);
  font-size:22px;
  line-height:1;
}
.mobile-toggle:hover{
  transform:translateY(-1px);
  border-color:#e1c9b2;
}
.mobile-panel{
  display:none;
  width:min(100% - 24px, var(--container));
  margin:0 auto 16px;
  padding:12px;
  border:1px solid var(--line);
  background:rgba(255,252,248,.96);
  border-radius:20px;
  box-shadow:var(--shadow-soft);
}
.mobile-panel a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:48px;
  padding:0 14px;
  border-radius:14px;
  color:var(--muted);
  font-weight:600;
}
.mobile-panel a:hover{
  background:rgba(240,123,84,.08);
  color:var(--accent);
}
.mobile-panel a.active{
  color:#fff;
  background:linear-gradient(135deg, var(--accent) 0%, #ef9159 100%);
}
.page-shell{
  padding:26px 0 56px;
}
.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  color:var(--muted);
  font-size:14px;
}
.breadcrumb a{
  color:var(--muted);
}
.breadcrumb a:hover{
  color:var(--accent);
}
.hero-panel{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  background:
    linear-gradient(135deg, rgba(255,252,248,.08), rgba(255,252,248,.02)),
    linear-gradient(135deg, #281f19 0%, #3c2a22 44%, #6b4737 100%);
  color:#fff8f0;
  box-shadow:0 26px 60px rgba(42,24,14,.22);
  border:1px solid rgba(255,255,255,.06);
  padding:30px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:24px;
}
.hero-panel::before,
.hero-panel::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
.hero-panel::before{
  width:240px;
  height:240px;
  background:rgba(247,200,107,.10);
  top:-120px;
  right:-70px;
}
.hero-panel::after{
  width:320px;
  height:320px;
  background:rgba(240,123,84,.10);
  bottom:-180px;
  left:18%;
}
.hero-copy,
.hero-board{
  position:relative;
  z-index:1;
}
.eyebrow-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}
.eyebrow-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#fff3e8;
  border:1px solid rgba(255,255,255,.10);
  font-size:13px;
  font-weight:700;
}
.hero-copy h1{
  margin:0;
  font-size:clamp(32px, 4.2vw, 54px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.hero-copy p{
  margin:16px 0 0;
  max-width:44rem;
  color:rgba(255,244,234,.90);
  font-size:16px;
}
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.hero-tags .tag{
  display:inline-flex;
  align-items:center;
  height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  color:#fff6eb;
  font-size:13px;
  font-weight:600;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:0 18px;
  border-radius:16px;
  font-weight:700;
  letter-spacing:.01em;
  border:1px solid transparent;
  transition:transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}
.btn:hover{
  transform:translateY(-2px);
}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg, var(--accent) 0%, #ef9159 100%);
  box-shadow:0 14px 28px rgba(240,123,84,.25);
}
.btn-primary:hover{
  box-shadow:0 18px 32px rgba(240,123,84,.30);
}
.btn-secondary{
  color:#fff8f0;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
}
.btn-secondary:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.18);
}
.btn-light{
  color:var(--ink);
  background:var(--surface);
  border-color:var(--line);
}
.btn-light:hover{
  border-color:#decab5;
  box-shadow:var(--shadow-soft);
}
.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:24px;
}
.metric{
  padding:14px 14px 13px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(6px);
}
.metric strong{
  display:block;
  font-size:24px;
  line-height:1;
  margin-bottom:8px;
}
.metric span{
  color:rgba(255,245,236,.84);
  font-size:13px;
}
.hero-board{
  padding:18px;
  border-radius:26px;
  background:rgba(255,250,244,.08);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
}
.board-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.mini-label{
  display:inline-flex;
  align-items:center;
  height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  color:#fff2e4;
  font-size:12px;
  font-weight:700;
}
.board-top h2{
  margin:10px 0 0;
  font-size:24px;
  line-height:1.15;
}
.status-dot{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff1e6;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}
.status-dot::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:#f7c86b;
  box-shadow:0 0 0 5px rgba(247,200,107,.14);
}
.board-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
.board-card{
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.10);
}
.board-card span{
  display:block;
  color:rgba(255,245,236,.82);
  font-size:12px;
  margin-bottom:10px;
}
.board-card strong{
  display:block;
  font-size:28px;
  line-height:1;
  margin-bottom:8px;
}
.board-card small{
  color:rgba(255,245,236,.76);
  font-size:12px;
}
.avatar-wall{
  display:flex;
  align-items:center;
  margin:16px 0 12px;
  padding-left:4px;
}
.avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-left:-10px;
  border:2px solid rgba(255,250,244,.90);
  background:linear-gradient(135deg, #f7c86b, #f29d59);
  color:#fff;
  font-size:12px;
  font-weight:800;
  box-shadow:0 10px 20px rgba(0,0,0,.10);
}
.avatar:nth-child(2n){
  background:linear-gradient(135deg, #f39f78, #e97b62);
}
.avatar:nth-child(3n){
  background:linear-gradient(135deg, #dfe8e1, #90a89a);
}
.avatar:nth-child(4n){
  background:linear-gradient(135deg, #f5b86c, #f07b54);
}
.avatar:first-child{margin-left:0}
.bubble-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.bubble{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  color:#fff4e8;
  font-size:13px;
  font-weight:600;
}
.filter-bar{
  margin-top:20px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,253,249,.88);
  box-shadow:var(--shadow-soft);
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.55fr) minmax(160px,.28fr);
  gap:14px;
  align-items:center;
}
.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--muted);
  font-weight:700;
}
.chip:hover{
  transform:translateY(-1px);
  border-color:#e0c9b2;
  color:var(--accent);
  box-shadow:var(--shadow-soft);
}
.chip.active{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg, var(--accent) 0%, #ef9159 100%);
  box-shadow:0 12px 22px rgba(240,123,84,.22);
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field span{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
.search-box input,
.sort-box select{
  width:100%;
  min-height:48px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  padding:0 14px;
  outline:none;
  transition:border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.search-box input:focus,
.sort-box select:focus{
  border-color:rgba(240,123,84,.38);
  box-shadow:var(--focus);
}
.search-box input::placeholder{
  color:#b09d8e;
}
.catalog-layout{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) 360px;
  gap:22px;
  margin-top:24px;
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:18px;
  margin-bottom:18px;
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(240,123,84,.10);
  color:var(--accent);
  font-weight:800;
  font-size:12px;
  letter-spacing:.02em;
}
.section-head h2{
  margin:10px 0 0;
  font-size:clamp(24px, 2.4vw, 34px);
  line-height:1.12;
}
.section-head p{
  margin:0;
  max-width:38rem;
  color:var(--muted);
}
.entry-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.entry-card{
  overflow:hidden;
  border-radius:24px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height:100%;
}
.entry-card:hover{
  transform:translateY(-3px);
  border-color:#e1c9b2;
  box-shadow:0 18px 36px rgba(61,40,24,.10);
}
.entry-card.feature{
  grid-column:span 2;
}
.card-cover{
  position:relative;
  min-height:130px;
  padding:16px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-content:flex-start;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.card-cover::after{
  content:"";
  position:absolute;
  inset:auto 16px 16px auto;
  width:70px;
  height:70px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  filter:blur(2px);
}
.cover-a{background:linear-gradient(135deg, #f6c969 0%, #f29f5a 38%, #d87e6e 100%)}
.cover-b{background:linear-gradient(135deg, #8aa89b 0%, #b6cdb5 45%, #f5c86b 100%)}
.cover-c{background:linear-gradient(135deg, #f39b77 0%, #f7c86b 48%, #f0a05d 100%)}
.cover-d{background:linear-gradient(135deg, #e98c66 0%, #f3b56c 48%, #f7d98d 100%)}
.cover-e{background:linear-gradient(135deg, #b9c9bf 0%, #8db0a0 50%, #6d8c80 100%)}
.cover-f{background:linear-gradient(135deg, #f4a86d 0%, #f07b54 46%, #dc6b62 100%)}
.cover-g{background:linear-gradient(135deg, #f1c56e 0%, #eaa56a 52%, #cf8067 100%)}
.cover-h{background:linear-gradient(135deg, #d7dfd8 0%, #9caea4 52%, #7a8d83 100%)}
.cover-chip{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  color:#fff8f2;
  font-size:12px;
  font-weight:700;
  position:relative;
  z-index:1;
}
.cover-chip.light{
  background:rgba(255,255,255,.20);
}
.entry-content{
  padding:16px;
}
.entry-top{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(240,123,84,.10);
  color:var(--accent);
  border:1px solid rgba(240,123,84,.12);
  font-size:12px;
  font-weight:800;
}
.meta-text{
  color:var(--muted);
  font-size:13px;
}
.entry-content h3{
  margin:0;
  font-size:19px;
  line-height:1.28;
}
.entry-content p{
  margin:10px 0 14px;
  color:var(--muted);
  font-size:14px;
  min-height:42px;
}
.entry-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.entry-score{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--ink);
  font-size:13px;
  font-weight:700;
}
.entry-score::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--sage);
  box-shadow:0 0 0 5px rgba(137,168,154,.12);
}
.entry-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:14px;
  background:rgba(240,123,84,.10);
  color:var(--accent);
  border:1px solid rgba(240,123,84,.12);
  font-weight:800;
  font-size:13px;
}
.entry-btn:hover{
  background:var(--accent);
  color:#fff;
  box-shadow:0 12px 22px rgba(240,123,84,.20);
}
.catalog-side{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.side-card{
  padding:18px;
  border-radius:24px;
  background:rgba(255,253,249,.94);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.side-card h3{
  margin:0 0 12px;
  font-size:18px;
  line-height:1.22;
}
.side-card p{
  margin:0;
  color:var(--muted);
}
.tag-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag-chip{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:var(--surface-2);
  color:#8c5a44;
  border:1px solid #eed6bb;
  font-size:13px;
  font-weight:700;
}
.tag-chip:hover{
  transform:translateY(-1px);
  background:#fff;
  border-color:#e2c6a6;
  color:var(--accent);
}
.rank-list,
.check-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.rank-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  border-radius:18px;
  background:var(--surface-2);
  border:1px solid #f0ddc4;
}
.rank-index{
  flex:0 0 auto;
  width:28px;
  height:28px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--accent) 0%, #ef9159 100%);
  color:#fff;
  font-weight:800;
  font-size:12px;
}
.rank-text{
  min-width:0;
}
.rank-text strong{
  display:block;
  font-size:14px;
}
.rank-text span{
  display:block;
  color:var(--muted);
  font-size:12px;
}
.check-list li{
  position:relative;
  padding-left:28px;
  color:var(--ink);
}
.check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:16px;
  height:16px;
  border-radius:50%;
  background:rgba(240,123,84,.14);
  border:1px solid rgba(240,123,84,.24);
}
.check-list li::after{
  content:"";
  position:absolute;
  left:5px;
  top:.95em;
  width:6px;
  height:3px;
  border-left:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
  transform:rotate(-45deg);
}
.bubble-stack{
  display:grid;
  gap:10px;
}
.bubble-card{
  padding:12px 14px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 8px 18px rgba(52,33,18,.04);
  color:var(--ink);
  font-size:14px;
  font-weight:600;
}
.bubble-card small{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-weight:500;
}
.news-section{
  margin-top:24px;
  padding:22px;
  border-radius:28px;
  border:1px solid var(--line);
  background:rgba(255,253,249,.92);
  box-shadow:var(--shadow-soft);
}
.news-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:18px;
}
.tag-cloud-panel,
.note-panel{
  padding:18px;
  border-radius:22px;
  background:var(--surface);
  border:1px solid var(--line);
}
.note-list{
  display:grid;
  gap:12px;
}
.note{
  padding:14px;
  border-radius:18px;
  background:linear-gradient(180deg, #fff 0%, #fff8f0 100%);
  border:1px solid #f0ddc4;
}
.note strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
}
.note p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.pricing-section{
  margin-top:24px;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.plan-card{
  padding:22px;
  border-radius:26px;
  background:rgba(255,253,249,.96);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  position:relative;
  overflow:hidden;
}
.plan-card::before{
  content:"";
  position:absolute;
  inset:auto -40px -60px auto;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(240,123,84,.08);
}
.plan-card.featured{
  border-color:rgba(240,123,84,.30);
  box-shadow:0 18px 42px rgba(240,123,84,.12);
  transform:translateY(-4px);
}
.plan-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}
.plan-name{
  font-size:20px;
  margin:0;
}
.plan-price{
  color:var(--accent);
  font-size:30px;
  line-height:1;
  font-weight:900;
}
.plan-sub{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
}
.plan-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:10px;
}
.plan-list li{
  position:relative;
  padding-left:24px;
  color:var(--ink);
  font-size:14px;
}
.plan-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.66em;
  width:14px;
  height:14px;
  border-radius:50%;
  background:rgba(240,123,84,.12);
  border:1px solid rgba(240,123,84,.18);
}
.plan-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
}
.plan-tag{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(137,168,154,.10);
  color:#5f786d;
  border:1px solid rgba(137,168,154,.16);
  font-size:12px;
  font-weight:700;
}
.faq-section{
  margin-top:24px;
  padding:24px;
  border-radius:28px;
  border:1px solid var(--line);
  background:rgba(255,253,249,.94);
  box-shadow:var(--shadow-soft);
}
.faq-list{
  display:grid;
  gap:12px;
}
.faq-item{
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 18px;
  color:var(--ink);
  font-weight:800;
  text-align:left;
}
.faq-question span{
  flex:1;
}
.faq-question::after{
  content:"+";
  flex:0 0 auto;
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(240,123,84,.10);
  color:var(--accent);
  font-size:20px;
  font-weight:700;
  transition:transform var(--transition), background var(--transition);
}
.faq-item.open .faq-question::after{
  content:"–";
  transform:rotate(0);
  background:rgba(240,123,84,.14);
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height var(--transition-slow), padding var(--transition-slow);
  border-top:1px solid transparent;
}
.faq-item.open .faq-answer{
  max-height:220px;
  border-top-color:var(--line);
  padding:0 18px 18px;
}
.faq-answer p{
  margin:14px 0 0;
  color:var(--muted);
}
.cta-section{
  margin-top:24px;
}
.cta-card{
  padding:28px;
  border-radius:30px;
  color:#fff7ef;
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(135deg, #34271f 0%, #5c3d2f 50%, #84523e 100%);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 24px 58px rgba(47,26,15,.18);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.cta-card h2{
  margin:0;
  font-size:clamp(24px, 3vw, 36px);
}
.cta-card p{
  margin:10px 0 0;
  color:rgba(255,244,234,.90);
  max-width:42rem;
}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  flex:0 0 auto;
}
.footer{
  margin-top:28px;
  padding:42px 0 28px;
  background:#201814;
  color:#f4e8da;
  border-top:1px solid rgba(255,255,255,.05);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .9fr .9fr;
  gap:24px;
  padding-bottom:24px;
}
.footer-brand{
  font-size:22px;
  font-weight:900;
  margin-bottom:12px;
  color:#fff7f0;
}
.footer p{
  margin:0;
  color:rgba(244,232,218,.84);
}
.footer h3{
  margin:0 0 12px;
  font-size:16px;
  color:#fff4e6;
}
.footer-links{
  display:grid;
  gap:10px;
}
.footer-links a{
  color:rgba(244,232,218,.86);
}
.footer-links a:hover{
  color:#fff;
}
.backtop{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#fff;
}
.copyright{
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-wrap:wrap;
  gap:8px 16px;
  justify-content:space-between;
  color:rgba(244,232,218,.70);
  font-size:13px;
}
@media (max-width: 1280px){
  .hero-panel{
    grid-template-columns:minmax(0,1fr) minmax(290px,.88fr);
  }
  .entry-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .entry-card.feature{
    grid-column:span 2;
  }
  .catalog-layout{
    grid-template-columns:minmax(0,1fr) 330px;
  }
}
@media (max-width: 1024px){
  .nav-wrap{
    grid-template-columns:auto 1fr auto;
  }
  .nav-left,
  .nav-right{
    gap:8px;
  }
  .brand-text{
    font-size:17px;
  }
  .hero-panel{
    grid-template-columns:1fr;
  }
  .filter-bar{
    grid-template-columns:1fr 1fr;
  }
  .field:nth-child(2){
    grid-column:span 1;
  }
  .catalog-layout,
  .news-grid,
  .footer-grid,
  .pricing-grid{
    grid-template-columns:1fr;
  }
  .catalog-side{
    order:2;
  }
  .entry-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .plan-card.featured{
    transform:none;
  }
  .cta-card{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 768px){
  .nav-left,
  .nav-right{
    display:none;
  }
  .mobile-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .mobile-panel{
    display:none;
  }
  .mobile-panel.open{
    display:grid;
    gap:6px;
    animation:drop .26s ease;
  }
  @keyframes drop{
    from{opacity:0; transform:translateY(-8px)}
    to{opacity:1; transform:translateY(0)}
  }
  .page-shell{
    padding-top:18px;
  }
  .hero-panel{
    padding:22px;
    border-radius:26px;
  }
  .hero-metrics{
    grid-template-columns:1fr;
  }
  .board-grid{
    grid-template-columns:1fr 1fr;
  }
  .filter-bar{
    grid-template-columns:1fr;
  }
  .entry-grid{
    grid-template-columns:1fr;
  }
  .entry-card.feature{
    grid-column:span 1;
  }
  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .plan-foot,
  .entry-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 640px){
  .container{
    width:min(100% - 20px, var(--container));
  }
  .nav-wrap{
    width:min(100% - 18px, var(--container));
    min-height:72px;
  }
  .brand-mark{
    width:40px;
    height:40px;
    border-radius:13px;
  }
  .brand-text{
    font-size:16px;
  }
  .hero-copy h1{
    font-size:30px;
  }
  .board-top{
    flex-direction:column;
  }
  .board-grid{
    grid-template-columns:1fr;
  }
  .metric strong{
    font-size:22px;
  }
  .hero-actions,
  .cta-actions{
    width:100%;
  }
  .btn{
    width:100%;
  }
  .cta-card,
  .faq-section,
  .news-section{
    padding:18px;
  }
  .faq-question{
    padding:16px;
    font-size:15px;
  }
}
@media (max-width: 375px){
  .hero-panel{
    padding:18px;
  }
  .hero-copy h1{
    font-size:28px;
  }
  .section-head h2,
  .cta-card h2{
    font-size:23px;
  }
}
