/* roulang page: index */
:root{
      --brand:#7A2E68;
      --brand-2:#C04768;
      --accent:#F59E45;
      --ink:#241622;
      --muted:#6F5E69;
      --paper:#FFF8EF;
      --paper-2:#FAF3EA;
      --rose-soft:#F7E7E7;
      --orange-soft:#FFF0D8;
      --green:#4F9D8A;
      --line:#E8D8D5;
      --white:#FFFFFF;
      --shadow:0 18px 50px rgba(122,46,104,.12);
      --shadow-strong:0 24px 70px rgba(122,46,104,.18);
      --radius-lg:30px;
      --radius-md:22px;
      --radius-sm:16px;
      --grad:linear-gradient(135deg,#7A2E68 0%,#C04768 54%,#F59E45 100%);
      --grad-soft:radial-gradient(circle at 15% 18%,rgba(245,158,69,.38),transparent 34%),radial-gradient(circle at 88% 12%,rgba(192,71,104,.36),transparent 32%),linear-gradient(135deg,#7A2E68 0%,#C04768 58%,#F59E45 100%);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at top left,rgba(245,158,69,.12),transparent 30%),
        linear-gradient(180deg,var(--paper) 0%,#fff 44%,var(--paper-2) 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover{color:var(--brand)}
    img{max-width:100%;height:auto}
    button,input{font:inherit}
    .site-wrap{min-height:100vh}
    .row.expanded-inner{max-width:1220px;margin-left:auto;margin-right:auto}
    .skip-link{
      position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
    }
    .skip-link:focus{
      left:18px;top:18px;width:auto;height:auto;z-index:9999;background:var(--ink);color:#fff;
      padding:10px 16px;border-radius:999px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,248,239,.94);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(122,46,104,.10);
      box-shadow:0 8px 30px rgba(36,22,34,.05);
    }
    .brand-line{
      min-height:56px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:10px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:260px;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:var(--grad);
      color:#fff;
      box-shadow:0 14px 30px rgba(122,46,104,.24);
      font-weight:900;
      position:relative;
      overflow:hidden;
    }
    .brand-mark:after{
      content:"";position:absolute;width:22px;height:40px;border:1px solid rgba(255,255,255,.55);
      border-radius:10px;transform:rotate(-18deg);right:-5px;top:5px;
    }
    .brand-name{
      display:block;
      font-weight:850;
      letter-spacing:.01em;
      color:var(--ink);
      line-height:1.1;
      font-size:18px;
    }
    .brand-sub{
      display:block;
      color:var(--muted);
      font-size:12px;
      margin-top:2px;
    }
    .site-position{
      color:var(--muted);
      font-size:14px;
      flex:1;
      text-align:center;
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width:330px;
    }
    .search-box{
      height:38px;
      min-width:210px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:999px;
      display:flex;
      align-items:center;
      padding:0 12px;
      gap:8px;
      box-shadow:0 8px 22px rgba(122,46,104,.05);
    }
    .search-box input{
      border:0;
      box-shadow:none;
      margin:0;
      height:32px;
      padding:0;
      background:transparent;
      font-size:13px;
      color:var(--ink);
    }
    .search-box input:focus{
      outline:none;
      box-shadow:none;
      border:0;
    }
    .search-box:focus-within{
      border-color:rgba(122,46,104,.45);
      box-shadow:0 0 0 4px rgba(122,46,104,.10);
    }
    .mini-link,.cooperate-btn{
      height:38px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      font-size:13px;
      white-space:nowrap;
      border:1px solid var(--line);
      padding:0 14px;
      background:rgba(255,255,255,.72);
      color:var(--brand);
      font-weight:700;
    }
    .cooperate-btn{
      background:var(--brand);
      color:#fff;
      border-color:transparent;
    }
    .mini-link:hover,.cooperate-btn:hover{
      transform:translateY(-1px);
      box-shadow:0 10px 28px rgba(122,46,104,.12);
    }
    .channel-line{
      border-top:1px solid rgba(122,46,104,.08);
      min-height:48px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .top-bar,.top-bar ul{background:transparent}
    .channel-nav{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
    }
    .channel-nav a{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:0 14px;
      border-radius:999px;
      color:var(--ink);
      font-size:14px;
      font-weight:750;
    }
    .channel-nav a:hover,
    .channel-nav a.active{
      background:var(--rose-soft);
      color:var(--brand);
    }
    .hot-chips{
      display:flex;
      gap:8px;
      overflow-x:auto;
      scrollbar-width:none;
      padding:7px 0;
    }
    .hot-chips::-webkit-scrollbar{display:none}
    .chip{
      display:inline-flex;
      align-items:center;
      gap:5px;
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      line-height:1;
      white-space:nowrap;
      color:var(--brand);
      background:rgba(255,240,216,.75);
      border:1px solid rgba(245,158,69,.22);
      font-weight:700;
    }
    .chip:hover,.chip.active{
      background:var(--grad);
      color:#fff;
      border-color:transparent;
    }
    .mobile-menu-button{
      display:none;
      width:42px;height:42px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--brand);
      align-items:center;
      justify-content:center;
      font-weight:900;
    }

    .hero{
      position:relative;
      padding:64px 0 36px;
      overflow:hidden;
    }
    .hero-panel{
      border-radius:38px;
      background:var(--grad-soft);
      color:#fff;
      padding:54px 44px 34px;
      box-shadow:var(--shadow-strong);
      position:relative;
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:auto -120px -180px auto;
      width:420px;height:420px;border-radius:50%;
      background:rgba(255,255,255,.14);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      font-weight:800;
      font-size:14px;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.26);
      margin-bottom:18px;
    }
    h1{
      font-size:52px;
      line-height:1.14;
      font-weight:900;
      letter-spacing:-.02em;
      margin:0 0 18px;
      color:#fff;
    }
    .hero-lead{
      max-width:700px;
      color:rgba(255,255,255,.90);
      font-size:18px;
      line-height:1.82;
      margin-bottom:28px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-bottom:28px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:13px 22px;
      font-weight:850;
      line-height:1;
      border:1px solid transparent;
      cursor:pointer;
      transition:.22s ease;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,#F59E45,#C04768 65%,#7A2E68);
      box-shadow:0 16px 34px rgba(36,22,34,.22);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 22px 46px rgba(36,22,34,.28);
    }
    .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.14);
      border-color:rgba(255,255,255,.36);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      color:#fff;
      background:rgba(255,255,255,.22);
      transform:translateY(-2px);
    }
    .btn-light{
      color:var(--brand);
      background:#fff;
      border-color:rgba(122,46,104,.12);
      box-shadow:0 12px 28px rgba(122,46,104,.10);
    }
    .btn-light:hover{
      background:var(--rose-soft);
      transform:translateY(-2px);
      color:var(--brand);
    }
    .btn:focus,.channel-nav a:focus,.chip:focus,.mini-link:focus,.cooperate-btn:focus{
      outline:3px solid rgba(245,158,69,.38);
      outline-offset:3px;
    }
    .trust-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      position:relative;
      z-index:2;
    }
    .trust-strip span{
      border-radius:999px;
      padding:8px 12px;
      font-size:13px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.20);
      color:rgba(255,255,255,.90);
    }
    .intel-card{
      position:relative;
      z-index:2;
      background:rgba(255,248,239,.95);
      color:var(--ink);
      border-radius:32px;
      padding:28px;
      box-shadow:0 26px 60px rgba(36,22,34,.24);
      border:1px solid rgba(255,255,255,.42);
    }
    .intel-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      margin-bottom:16px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:7px 11px;
      font-size:13px;
      font-weight:850;
      color:var(--brand);
      background:var(--rose-soft);
      border:1px solid rgba(122,46,104,.10);
      line-height:1;
      white-space:nowrap;
    }
    .badge.hot{
      color:#7A3D00;
      background:var(--orange-soft);
      border-color:rgba(245,158,69,.28);
    }
    .badge.green{
      color:#1F6F5F;
      background:rgba(79,157,138,.12);
      border-color:rgba(79,157,138,.22);
    }
    .heat-number{
      font-size:44px;
      font-weight:950;
      line-height:1;
      color:var(--brand);
      letter-spacing:-.04em;
    }
    .intel-title{
      font-size:21px;
      font-weight:880;
      margin:2px 0 8px;
    }
    .tag-group{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:16px 0;
    }
    .tag{
      border-radius:999px;
      padding:7px 10px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .book-visual{
      height:168px;
      border-radius:24px;
      background:
        linear-gradient(90deg,rgba(255,255,255,.72) 0 8%,transparent 8% 10%,rgba(255,255,255,.40) 10% 18%,transparent 18%),
        radial-gradient(circle at 75% 25%,rgba(245,158,69,.55),transparent 30%),
        linear-gradient(135deg,#6E275E,#C04768 58%,#F59E45);
      position:relative;
      overflow:hidden;
      margin-top:18px;
    }
    .book-visual:before,.book-visual:after{
      content:"";position:absolute;border-radius:999px;background:rgba(255,255,255,.26);
    }
    .book-visual:before{width:180px;height:10px;left:34px;top:48px}
    .book-visual:after{width:120px;height:10px;left:34px;top:78px}

    .section{
      padding:78px 0;
      position:relative;
    }
    .section.compact{padding:54px 0}
    .section-head{
      max-width:760px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--brand);
      font-weight:900;
      font-size:14px;
      margin-bottom:10px;
    }
    h2{
      font-size:36px;
      line-height:1.25;
      font-weight:900;
      color:var(--ink);
      margin:0 0 12px;
      letter-spacing:-.01em;
    }
    .section-desc{
      color:var(--muted);
      font-size:17px;
      margin:0;
    }

    .timeline{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
      position:relative;
    }
    .problem-card{
      background:#fff;
      border:1px solid rgba(122,46,104,.11);
      border-radius:28px;
      padding:28px;
      box-shadow:var(--shadow);
      position:relative;
      transition:.22s ease;
      min-height:182px;
      overflow:hidden;
    }
    .problem-card:nth-child(even){transform:translateY(24px)}
    .problem-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(192,71,104,.28);
    }
    .problem-card:nth-child(even):hover{transform:translateY(18px)}
    .problem-card:before{
      content:"";
      position:absolute;
      left:0;top:28px;bottom:28px;width:5px;
      border-radius:999px;
      background:var(--grad);
    }
    .problem-num{
      font-size:42px;
      line-height:1;
      font-weight:950;
      color:rgba(122,46,104,.12);
      margin-bottom:12px;
    }
    .problem-card h3,.path-step h3,.topic-card h3,.value-card h3{
      margin:0 0 8px;
      font-size:21px;
      font-weight:850;
      color:var(--ink);
      line-height:1.35;
    }
    .problem-card p,.path-step p,.topic-card p,.value-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }

    .solution-wrap{
      background:linear-gradient(180deg,#fff,rgba(255,248,239,.7));
      border:1px solid rgba(122,46,104,.10);
      border-radius:34px;
      padding:34px;
      box-shadow:var(--shadow);
    }
    .reading-map{
      background:var(--ink);
      color:#fff;
      border-radius:30px;
      padding:30px;
      min-height:420px;
      position:relative;
      overflow:hidden;
    }
    .reading-map:before{
      content:"";
      position:absolute;inset:-80px -80px auto auto;
      width:230px;height:230px;border-radius:50%;
      background:rgba(245,158,69,.22);
    }
    .map-title{
      font-size:24px;
      font-weight:900;
      margin-bottom:18px;
      position:relative;
    }
    .map-list{
      list-style:none;
      margin:0;
      padding:0;
      position:relative;
    }
    .map-list li{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:15px 0;
      border-bottom:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.86);
    }
    .map-list b{color:#fff}
    .path-steps{
      display:grid;
      gap:18px;
    }
    .path-step{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(122,46,104,.10);
      box-shadow:0 12px 32px rgba(122,46,104,.07);
      transition:.22s ease;
    }
    .path-step:hover{
      transform:translateX(4px);
      box-shadow:var(--shadow);
    }
    .step-no{
      width:50px;height:50px;border-radius:18px;
      display:grid;place-items:center;
      background:var(--grad);
      color:#fff;
      font-weight:900;
      box-shadow:0 12px 24px rgba(122,46,104,.22);
    }

    .bento{
      display:grid;
      grid-template-columns:1.25fr .75fr 1fr;
      gap:20px;
    }
    .value-card{
      background:#fff;
      border:1px solid rgba(122,46,104,.10);
      border-radius:28px;
      padding:28px;
      box-shadow:var(--shadow);
      min-height:210px;
      position:relative;
      overflow:hidden;
      transition:.22s ease;
    }
    .value-card.large{
      grid-column:span 2;
      background:
        radial-gradient(circle at 85% 20%,rgba(245,158,69,.18),transparent 32%),
        linear-gradient(135deg,#fff,#FFF1E5);
    }
    .value-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-strong);
    }
    .value-stat{
      font-size:38px;
      line-height:1;
      font-weight:950;
      color:var(--brand);
      margin:10px 0 12px;
    }

    .topic-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }
    .topic-card{
      background:#fff;
      border:1px solid rgba(122,46,104,.10);
      border-radius:28px;
      padding:26px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
      transition:.22s ease;
    }
    .topic-card:after{
      content:"";
      position:absolute;right:-40px;top:-40px;width:96px;height:96px;border-radius:28px;
      background:var(--grad);
      opacity:.10;
      transform:rotate(18deg);
      transition:.22s ease;
    }
    .topic-card:hover{
      transform:translateY(-6px);
      border-color:rgba(192,71,104,.30);
      box-shadow:var(--shadow-strong);
    }
    .topic-card:hover:after{opacity:.22;right:-30px;top:-30px}
    .topic-card h3:hover{color:var(--brand)}
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:18px 0 0;
      color:var(--muted);
      font-size:13px;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:5px;
      margin-top:18px;
      color:var(--brand);
      font-weight:850;
    }
    .text-link span{transition:.22s ease}
    .text-link:hover span{transform:translateX(4px)}

    .testimonials{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }
    .quote-card{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      background:#fff;
      border:1px solid rgba(122,46,104,.10);
      border-radius:28px;
      padding:26px;
      box-shadow:var(--shadow);
    }
    .avatar{
      width:54px;height:54px;border-radius:18px;
      display:grid;place-items:center;
      background:var(--grad);
      color:#fff;
      font-weight:900;
      font-size:20px;
    }
    .quote-card blockquote{
      margin:0;
      padding:0;
      border:0;
      color:var(--ink);
      font-size:16px;
      line-height:1.8;
    }
    .quote-meta{
      margin-top:12px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }

    .faq-wrap{
      background:#fff;
      border-radius:34px;
      padding:30px;
      border:1px solid rgba(122,46,104,.10);
      box-shadow:var(--shadow);
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid rgba(122,46,104,.10);
      border-radius:22px;
      overflow:hidden;
      background:var(--paper);
    }
    .accordion-title{
      border:0;
      color:var(--ink);
      font-size:17px;
      font-weight:850;
      padding:20px 56px 20px 22px;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:var(--rose-soft);
      color:var(--brand);
    }
    .accordion-title::before{
      color:var(--brand);
      font-size:22px;
      margin-top:-12px;
    }
    .accordion-content{
      border:0;
      background:#fff;
      color:var(--muted);
      padding:20px 24px 24px;
      line-height:1.8;
    }

    .cta-panel{
      border-radius:36px;
      padding:44px;
      background:var(--grad-soft);
      color:#fff;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
    }
    .cta-panel:before{
      content:"阅读地图  情节标签  人物关系  同类推荐";
      position:absolute;
      right:-40px;
      bottom:18px;
      font-size:42px;
      font-weight:950;
      color:rgba(255,255,255,.08);
      white-space:nowrap;
    }
    .cta-panel h2{color:#fff;max-width:760px}
    .cta-panel p{max-width:720px;color:rgba(255,255,255,.88);font-size:17px}
    .cta-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px;position:relative}

    .site-footer{
      background:var(--ink);
      color:rgba(248,239,234,.78);
      padding:58px 0 24px;
      margin-top:28px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }
    .footer-brand .brand-name{color:#fff}
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
      font-size:17px;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
    }
    .footer-links li{margin-bottom:9px}
    .footer-links a{
      color:rgba(248,239,234,.72);
      font-size:14px;
    }
    .footer-links a:hover{color:#fff}
    .footer-note{
      color:rgba(248,239,234,.68);
      font-size:14px;
      line-height:1.8;
      max-width:520px;
    }
    .copyright{
      border-top:1px solid rgba(255,255,255,.10);
      margin-top:34px;
      padding-top:18px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:space-between;
      color:rgba(248,239,234,.56);
      font-size:13px;
    }

    @media (max-width:1023px){
      .brand-line{flex-wrap:wrap}
      .site-position{order:3;text-align:left;width:100%;flex-basis:100%}
      .header-actions{min-width:auto}
      .search-box{min-width:180px}
      h1{font-size:42px}
      .hero-panel{padding:40px 30px}
      .intel-card{margin-top:28px}
      .bento{grid-template-columns:1fr 1fr}
      .value-card.large{grid-column:span 2}
      .topic-grid{grid-template-columns:1fr 1fr}
      .channel-line{align-items:flex-start;flex-direction:column;gap:4px;padding:8px 0}
    }
    @media (max-width:767px){
      .row.expanded-inner{padding-left:16px;padding-right:16px}
      .brand{min-width:auto}
      .brand-name{font-size:16px}
      .brand-sub,.site-position,.mini-link{display:none}
      .mobile-menu-button{display:inline-flex}
      .header-actions{gap:8px}
      .cooperate-btn{display:none}
      .search-box{min-width:44px;width:44px;padding:0;justify-content:center}
      .search-box input{display:none}
      .channel-nav{
        display:none;
        width:100%;
        padding-bottom:8px;
      }
      .channel-nav.open{display:flex}
      .channel-nav a{width:100%;justify-content:center;background:#fff}
      .hot-chips{width:100%;padding-bottom:10px}
      .hero{padding-top:28px}
      .hero-panel{border-radius:28px;padding:30px 22px}
      h1{font-size:34px;line-height:1.18}
      h2{font-size:28px}
      .hero-lead,.section-desc{font-size:16px}
      .btn{width:100%;padding:14px 18px}
      .section{padding:54px 0}
      .timeline,.topic-grid,.testimonials,.bento{grid-template-columns:1fr}
      .problem-card:nth-child(even){transform:none}
      .problem-card:nth-child(even):hover{transform:translateY(-4px)}
      .solution-wrap{padding:20px;border-radius:26px}
      .reading-map{min-height:auto}
      .path-step{grid-template-columns:44px 1fr;padding:18px}
      .step-no{width:42px;height:42px;border-radius:14px}
      .value-card.large{grid-column:auto}
      .quote-card{grid-template-columns:1fr}
      .faq-wrap{padding:18px;border-radius:26px}
      .cta-panel{padding:30px 22px;border-radius:28px}
      .cta-panel:before{display:none}
      .copyright{display:block}
    }
    @media (max-width:520px){
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .hero-panel{padding:26px 18px}
      h1{font-size:31px}
      .intel-card,.problem-card,.value-card,.topic-card,.quote-card{padding:22px;border-radius:24px}
      .book-visual{height:138px}
      .accordion-title{font-size:16px}
    }

/* roulang page: category1 */
:root{
      --color-primary:#7A2E68;
      --color-primary-2:#8A346C;
      --color-berry:#C04768;
      --color-amber:#F59E45;
      --color-ink:#241622;
      --color-muted:#6F5A68;
      --color-soft:#FFF8EF;
      --color-paper:#FAF3EA;
      --color-card:#FFFFFF;
      --color-line:#E8D8D5;
      --color-green:#4F9D8A;
      --gradient-brand:linear-gradient(135deg,#7A2E68 0%,#C04768 52%,#F59E45 100%);
      --gradient-soft:radial-gradient(circle at 15% 20%,rgba(245,158,69,.22),transparent 28%),radial-gradient(circle at 84% 12%,rgba(192,71,104,.18),transparent 30%),linear-gradient(180deg,#FFF8EF 0%,#FAF3EA 100%);
      --shadow-soft:0 18px 50px rgba(122,46,104,.12);
      --shadow-hover:0 24px 62px rgba(122,46,104,.18);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-pill:999px;
      --container:1200px;
      --speed:.25s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--color-ink);
      background:var(--gradient-soft);
      line-height:1.75;
      overflow-x:hidden;
      text-rendering:optimizeLegibility;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:linear-gradient(rgba(122,46,104,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(122,46,104,.025) 1px,transparent 1px);
      background-size:34px 34px;
      opacity:.42;
      z-index:-2;
    }
    a{color:inherit;text-decoration:none;transition:color var(--speed),background var(--speed),transform var(--speed),box-shadow var(--speed),border-color var(--speed)}
    img{max-width:100%;height:auto;display:block}
    button,input{font:inherit}
    input,button,a{outline-offset:3px}
    a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible{
      outline:3px solid rgba(245,158,69,.45);
      outline-offset:3px;
      border-radius:14px;
    }
    .row.expanded-inner{
      max-width:var(--container);
      margin-left:auto;
      margin-right:auto;
      padding-left:22px;
      padding-right:22px;
    }
    .section{padding:84px 0}
    .section-tight{padding:58px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:30px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      color:var(--color-primary);
      background:rgba(122,46,104,.08);
      border:1px solid rgba(122,46,104,.10);
      font-weight:700;
      font-size:14px;
      line-height:1.2;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--color-amber);
      box-shadow:0 0 0 5px rgba(245,158,69,.16);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(32px,5vw,52px);
      line-height:1.14;
      letter-spacing:-.02em;
      font-weight:850;
      margin-bottom:20px;
    }
    h2{
      font-size:clamp(27px,3.2vw,38px);
      line-height:1.25;
      font-weight:820;
      margin-bottom:12px;
      color:var(--color-ink);
    }
    h3{
      font-size:21px;
      line-height:1.35;
      font-weight:780;
      margin-bottom:10px;
    }
    p{color:var(--color-muted);font-size:16px}
    .lead{
      font-size:18px;
      line-height:1.85;
      color:#5F4B5A;
      max-width:760px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,248,239,.92);
      border-bottom:1px solid rgba(122,46,104,.10);
      backdrop-filter:blur(16px);
      transition:box-shadow var(--speed),background var(--speed);
    }
    .site-header.is-scrolled{
      box-shadow:0 12px 35px rgba(36,22,34,.08);
      background:rgba(255,248,239,.97);
    }
    .brand-bar{
      min-height:56px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding-top:10px;
      padding-bottom:10px;
    }
    .brand-link{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:38px;
      height:38px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      background:var(--gradient-brand);
      color:#fff;
      font-weight:850;
      box-shadow:0 12px 28px rgba(122,46,104,.22);
    }
    .brand-name{
      color:var(--color-ink);
      font-weight:850;
      font-size:19px;
      letter-spacing:-.01em;
    }
    .brand-tagline{
      flex:1;
      color:var(--color-muted);
      font-size:14px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      border-left:1px solid rgba(122,46,104,.14);
      padding-left:18px;
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .search-mini{
      width:254px;
      height:38px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      border:1px solid rgba(122,46,104,.14);
      border-radius:var(--radius-pill);
      background:#fff;
      color:var(--color-muted);
      box-shadow:0 8px 22px rgba(122,46,104,.06);
    }
    .search-mini input{
      width:100%;
      border:0;
      background:transparent;
      box-shadow:none;
      margin:0;
      padding:0;
      color:var(--color-ink);
      height:auto;
      font-size:14px;
    }
    .search-mini input:focus{border:0;box-shadow:none}
    .small-action{
      height:38px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 14px;
      border-radius:var(--radius-pill);
      font-size:14px;
      font-weight:750;
      border:1px solid rgba(122,46,104,.12);
      background:rgba(255,255,255,.72);
      color:var(--color-primary);
      white-space:nowrap;
    }
    .small-action.primary{
      color:#fff;
      border-color:transparent;
      background:var(--gradient-brand);
      box-shadow:0 10px 24px rgba(192,71,104,.18);
    }
    .small-action:hover{
      transform:translateY(-1px);
      box-shadow:0 12px 26px rgba(122,46,104,.12);
    }
    .channel-wrap{
      border-top:1px solid rgba(122,46,104,.08);
    }
    .channel-row{
      min-height:48px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .channel-nav{
      display:flex;
      align-items:center;
      gap:8px;
      overflow-x:auto;
      scrollbar-width:none;
      -webkit-overflow-scrolling:touch;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      position:relative;
      display:inline-flex;
      align-items:center;
      padding:9px 14px;
      border-radius:var(--radius-pill);
      color:#563C50;
      font-weight:760;
      font-size:15px;
      white-space:nowrap;
    }
    .channel-nav a:hover{
      color:var(--color-primary);
      background:rgba(122,46,104,.07);
    }
    .channel-nav a.active{
      color:#fff;
      background:var(--gradient-brand);
      box-shadow:0 10px 22px rgba(122,46,104,.18);
    }
    .trend-chips{
      display:flex;
      align-items:center;
      gap:8px;
      overflow-x:auto;
      scrollbar-width:none;
      max-width:520px;
    }
    .trend-chips::-webkit-scrollbar{display:none}
    .trend-chip,.chip,.badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:var(--radius-pill);
      white-space:nowrap;
      line-height:1.2;
    }
    .trend-chip{
      padding:7px 11px;
      font-size:13px;
      font-weight:700;
      color:var(--color-primary);
      background:rgba(192,71,104,.08);
      border:1px solid rgba(192,71,104,.10);
    }
    .trend-chip:hover{
      color:#fff;
      background:var(--color-primary);
    }
    .mobile-toggle{
      display:none;
      width:40px;
      height:40px;
      border-radius:14px;
      border:1px solid rgba(122,46,104,.14);
      background:#fff;
      color:var(--color-primary);
      font-weight:850;
      cursor:pointer;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 20px;
      border-radius:var(--radius-pill);
      border:1px solid transparent;
      font-weight:800;
      cursor:pointer;
      line-height:1.2;
    }
    .btn-primary{
      color:#fff;
      background:var(--gradient-brand);
      box-shadow:0 16px 34px rgba(122,46,104,.20);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 22px 42px rgba(122,46,104,.26);
      filter:saturate(1.05);
    }
    .btn-secondary{
      color:var(--color-primary);
      background:#fffaf4;
      border-color:rgba(122,46,104,.16);
    }
    .btn-secondary:hover{
      color:var(--color-primary);
      background:rgba(192,71,104,.08);
      transform:translateY(-2px);
      box-shadow:0 12px 24px rgba(122,46,104,.10);
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--color-primary);
      font-weight:800;
    }
    .text-link span{transition:transform var(--speed)}
    .text-link:hover span{transform:translateX(4px)}

    .category-hero{
      position:relative;
      padding:62px 0 42px;
      overflow:hidden;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 92% 16%,rgba(245,158,69,.32),transparent 24%),
        radial-gradient(circle at 8% 85%,rgba(255,248,239,.22),transparent 28%),
        var(--gradient-brand);
      padding:42px;
      color:#fff;
      box-shadow:0 24px 70px rgba(122,46,104,.25);
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:auto -8% -34% auto;
      width:340px;
      height:340px;
      border-radius:50%;
      border:44px solid rgba(255,255,255,.10);
      transform:rotate(-18deg);
    }
    .hero-panel:after{
      content:"";
      position:absolute;
      right:42px;
      top:42px;
      width:190px;
      height:132px;
      border-radius:26px;
      background:linear-gradient(135deg,rgba(255,255,255,.22),rgba(255,255,255,.08));
      border:1px solid rgba(255,255,255,.24);
      transform:rotate(4deg);
    }
    .hero-content{position:relative;z-index:2;max-width:760px}
    .hero-panel h1,.hero-panel p{color:#fff}
    .hero-panel .lead{color:rgba(255,255,255,.88)}
    .hero-kicker{
      display:inline-flex;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.15);
      border:1px solid rgba(255,255,255,.22);
      color:#fff;
      font-weight:780;
      margin-bottom:16px;
    }
    .hero-badges{
      position:relative;
      z-index:2;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .data-badge{
      display:inline-flex;
      flex-direction:column;
      gap:2px;
      min-width:132px;
      padding:13px 16px;
      border-radius:20px;
      background:rgba(255,255,255,.15);
      border:1px solid rgba(255,255,255,.22);
      color:#fff;
      backdrop-filter:blur(8px);
    }
    .data-badge strong{
      font-size:24px;
      line-height:1.1;
      font-weight:850;
    }
    .data-badge span{
      font-size:13px;
      color:rgba(255,255,255,.82);
    }
    .filter-bar{
      margin-top:24px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:16px;
      border-radius:24px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(122,46,104,.10);
      box-shadow:var(--shadow-soft);
    }
    .filter-chip{
      display:inline-flex;
      align-items:center;
      padding:9px 15px;
      border-radius:var(--radius-pill);
      background:#fff;
      border:1px solid rgba(122,46,104,.12);
      color:#5B4055;
      font-size:14px;
      font-weight:800;
      cursor:pointer;
      transition:all var(--speed);
    }
    .filter-chip:hover{
      transform:translateY(-1px);
      color:var(--color-primary);
      border-color:rgba(122,46,104,.28);
      box-shadow:0 10px 22px rgba(122,46,104,.10);
    }
    .filter-chip.active{
      color:#fff;
      border-color:transparent;
      background:var(--gradient-brand);
      box-shadow:0 12px 25px rgba(122,46,104,.18);
    }

    .main-layout{
      align-items:flex-start;
    }
    .archive-card,.side-card,.guide-card,.faq-card,.cta-panel{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(122,46,104,.10);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-soft);
    }
    .archive-list{
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .archive-card{
      position:relative;
      overflow:hidden;
      padding:28px;
      transition:transform var(--speed),box-shadow var(--speed),border-color var(--speed);
    }
    .archive-card:after{
      content:"";
      position:absolute;
      top:0;
      right:0;
      width:78px;
      height:78px;
      background:linear-gradient(135deg,transparent 0%,transparent 48%,rgba(245,158,69,.50) 49%,rgba(192,71,104,.72) 100%);
      opacity:.72;
      transition:opacity var(--speed),transform var(--speed);
    }
    .archive-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(122,46,104,.20);
    }
    .archive-card:hover:after{
      opacity:1;
      transform:scale(1.06);
    }
    .card-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
      padding-right:42px;
    }
    .label{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:var(--radius-pill);
      color:var(--color-primary);
      background:rgba(122,46,104,.08);
      font-size:13px;
      font-weight:800;
    }
    .badge{
      padding:7px 10px;
      font-size:13px;
      font-weight:850;
      color:#6F3E12;
      background:rgba(245,158,69,.18);
      border:1px solid rgba(245,158,69,.22);
    }
    .badge.green{
      color:#226A5A;
      background:rgba(79,157,138,.13);
      border-color:rgba(79,157,138,.18);
    }
    .archive-card h3 a:hover{color:var(--color-primary)}
    .archive-card p{
      margin-bottom:16px;
      max-width:780px;
    }
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px 14px;
      color:#7A6574;
      font-size:14px;
      margin-bottom:16px;
    }
    .meta-dot{
      width:5px;
      height:5px;
      border-radius:50%;
      background:rgba(122,46,104,.35);
    }
    .keyword-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:20px;
    }
    .chip{
      padding:7px 10px;
      font-size:13px;
      font-weight:750;
      color:#5E4458;
      background:#FFF8EF;
      border:1px solid rgba(122,46,104,.10);
    }
    .inline-cta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin:6px 0;
      padding:26px 28px;
      border-radius:var(--radius-lg);
      color:#fff;
      background:
        radial-gradient(circle at 92% 18%,rgba(255,248,239,.25),transparent 24%),
        var(--gradient-brand);
      box-shadow:0 18px 44px rgba(122,46,104,.18);
    }
    .inline-cta h3,.inline-cta p{color:#fff;margin-bottom:4px}
    .inline-cta p{color:rgba(255,255,255,.84)}
    .inline-cta .btn-secondary{
      min-width:max-content;
      background:rgba(255,255,255,.94);
      border-color:rgba(255,255,255,.2);
    }

    .side-stack{
      position:sticky;
      top:128px;
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .side-card{
      padding:24px;
      transition:transform var(--speed),box-shadow var(--speed);
    }
    .side-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-hover);
    }
    .side-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:16px;
      font-size:18px;
      font-weight:850;
      color:var(--color-ink);
    }
    .side-title:after{
      content:"";
      width:36px;
      height:4px;
      border-radius:var(--radius-pill);
      background:var(--gradient-brand);
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .tag-cloud a{
      padding:8px 11px;
      border-radius:var(--radius-pill);
      background:#FFF8EF;
      border:1px solid rgba(122,46,104,.10);
      color:#5C4357;
      font-size:13px;
      font-weight:760;
    }
    .tag-cloud a:hover{
      color:#fff;
      background:var(--color-primary);
      transform:translateY(-1px);
    }
    .path-list{
      display:flex;
      flex-direction:column;
      gap:12px;
      counter-reset:path;
    }
    .path-item{
      position:relative;
      display:grid;
      grid-template-columns:34px 1fr;
      gap:12px;
      align-items:start;
      padding:14px;
      border-radius:18px;
      background:#FFF8EF;
      border:1px solid rgba(122,46,104,.08);
    }
    .path-item:before{
      counter-increment:path;
      content:counter(path);
      width:34px;
      height:34px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-weight:850;
      background:var(--gradient-brand);
      box-shadow:0 10px 20px rgba(122,46,104,.16);
    }
    .path-item strong{
      display:block;
      line-height:1.35;
      margin-bottom:3px;
    }
    .path-item span{
      color:var(--color-muted);
      font-size:14px;
      line-height:1.55;
    }
    .pick-list{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .pick-list a{
      display:block;
      padding:12px 0;
      border-bottom:1px dashed rgba(122,46,104,.15);
      color:#4B3447;
      font-weight:760;
      line-height:1.55;
    }
    .pick-list li:last-child a{border-bottom:0}
    .pick-list a:hover{
      color:var(--color-primary);
      padding-left:5px;
    }
    .statement{
      font-size:14px;
      color:#705C69;
      margin-bottom:0;
    }

    .guide-card{
      padding:34px;
      overflow:hidden;
      position:relative;
    }
    .guide-card:before{
      content:"";
      position:absolute;
      inset:0 auto 0 0;
      width:7px;
      background:var(--gradient-brand);
    }
    .guide-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
      margin-top:22px;
    }
    .guide-step{
      padding:22px;
      border-radius:22px;
      background:#FFF8EF;
      border:1px solid rgba(122,46,104,.10);
    }
    .guide-step .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:36px;
      height:36px;
      border-radius:50%;
      color:#fff;
      font-weight:850;
      background:var(--gradient-brand);
      margin-bottom:12px;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:.86fr 1.14fr;
      gap:28px;
      align-items:start;
    }
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(122,46,104,.10);
      background:#fff;
      box-shadow:0 10px 26px rgba(122,46,104,.07);
    }
    .accordion-title{
      border:0!important;
      color:var(--color-ink)!important;
      background:#fff!important;
      font-size:16px;
      font-weight:850;
      padding:18px 54px 18px 20px;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#FFF8EF!important;
      color:var(--color-primary)!important;
    }
    .accordion-title:before{
      right:20px;
      color:var(--color-primary);
      font-size:22px;
      margin-top:-11px;
    }
    .accordion-content{
      border:0!important;
      border-top:1px solid rgba(122,46,104,.08)!important;
      color:var(--color-muted);
      padding:18px 20px 22px;
      background:#fffaf4!important;
      line-height:1.8;
    }

    .final-cta{
      padding:40px;
      border-radius:var(--radius-xl);
      color:#fff;
      background:
        radial-gradient(circle at 8% 18%,rgba(255,255,255,.22),transparent 24%),
        radial-gradient(circle at 86% 74%,rgba(245,158,69,.28),transparent 28%),
        var(--gradient-brand);
      box-shadow:0 26px 72px rgba(122,46,104,.25);
      overflow:hidden;
      position:relative;
    }
    .final-cta:before{
      content:"富婆题材 · 反差关系 · 情节解析 · 同类推荐";
      position:absolute;
      right:-26px;
      bottom:18px;
      color:rgba(255,255,255,.12);
      font-size:34px;
      font-weight:900;
      white-space:nowrap;
      transform:rotate(-4deg);
    }
    .final-cta h2,.final-cta p{color:#fff}
    .final-cta p{color:rgba(255,255,255,.86);max-width:720px}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
      position:relative;
      z-index:2;
    }

    .site-footer{
      margin-top:40px;
      padding:58px 0 26px;
      background:#241622;
      color:#F8EFEA;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }
    .footer-brand .brand-name{color:#F8EFEA}
    .footer-note{
      color:rgba(248,239,234,.72);
      font-size:14px;
      line-height:1.8;
      max-width:520px;
    }
    .footer-title{
      color:#fff;
      font-size:16px;
      font-weight:850;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footer-links a{
      color:rgba(248,239,234,.72);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      padding-left:4px;
    }
    .copyright{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(248,239,234,.12);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(248,239,234,.58);
      font-size:13px;
    }

    @media screen and (max-width:1023px){
      .brand-tagline{display:none}
      .search-mini{width:220px}
      .trend-chips{max-width:360px}
      .hero-panel{padding:34px}
      .side-stack{position:static;margin-top:22px}
      .guide-grid{grid-template-columns:1fr}
      .faq-wrap{grid-template-columns:1fr}
    }
    @media screen and (max-width:767px){
      .row.expanded-inner{padding-left:16px;padding-right:16px}
      .section{padding:56px 0}
      .section-tight{padding:42px 0}
      .brand-bar{align-items:flex-start;flex-wrap:wrap}
      .nav-actions{
        order:3;
        width:100%;
        justify-content:space-between;
      }
      .search-mini{flex:1;width:auto;min-width:0}
      .small-action:not(.primary){display:none}
      .mobile-toggle{display:inline-flex;align-items:center;justify-content:center}
      .channel-row{display:block;padding:8px 0 12px}
      .channel-nav{
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:7px;
        padding:8px 0;
      }
      .channel-nav.is-open{display:flex}
      .channel-nav a{
        justify-content:center;
        width:100%;
      }
      .trend-chips{
        max-width:100%;
        margin-top:8px;
        padding-bottom:2px;
      }
      .category-hero{padding:36px 0 28px}
      .hero-panel{padding:26px 22px;border-radius:26px}
      .hero-panel:after{display:none}
      .hero-badges{gap:10px}
      .data-badge{min-width:calc(50% - 5px)}
      .filter-bar{padding:12px;border-radius:20px;overflow-x:auto;flex-wrap:nowrap}
      .filter-chip{flex:0 0 auto}
      .section-head{display:block}
      .archive-card{padding:22px;border-radius:22px}
      .card-top{align-items:flex-start;flex-direction:column;padding-right:26px}
      .inline-cta{
        display:block;
        padding:24px;
      }
      .inline-cta .btn{margin-top:14px;width:100%}
      .guide-card{padding:26px 22px}
      .final-cta{padding:30px 22px}
      .final-cta:before{display:none}
      .cta-actions .btn{width:100%}
      .copyright{display:block}
      .copyright span{display:block;margin-bottom:8px}
    }
    @media screen and (max-width:520px){
      h1{font-size:31px}
      h2{font-size:26px}
      .brand-name{font-size:17px}
      .brand-mark{width:36px;height:36px}
      .data-badge{min-width:100%}
      .meta-row{gap:8px}
      .archive-card p,.lead{font-size:16px}
    }
