/* roulang page: index */
:root{
      --red:#D83A2E;
      --red-dark:#B91C3C;
      --orange:#F59E42;
      --cream:#FFF4E1;
      --paper:#FAF2E6;
      --warm:#FFFCF7;
      --ink:#1C1A17;
      --green:#15201B;
      --muted:#786B5E;
      --line:rgba(120,45,20,.16);
      --pink:#F7A6B8;
      --jade:#2F7D6D;
      --shadow:0 24px 60px rgba(120,45,20,.14);
      --shadow-strong:0 28px 90px rgba(185,28,60,.22);
      --radius:26px;
      --radius-lg:36px;
      --ease:all .25s ease;
      --max:1220px;
    }

    *{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 8% 6%, rgba(247,166,184,.35) 0 120px, transparent 121px),
        radial-gradient(circle at 90% 12%, rgba(245,158,66,.22) 0 160px, transparent 161px),
        linear-gradient(180deg,var(--cream) 0%,var(--warm) 45%,var(--paper) 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--red-dark)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    input,button,a{outline:none}
    input:focus,button:focus,a:focus-visible{
      box-shadow:0 0 0 4px rgba(216,58,46,.16);
      border-color:rgba(216,58,46,.55)!important;
    }
    ::selection{background:rgba(216,58,46,.22)}

    .site-shell{position:relative;min-height:100vh}
    .container{
      width:min(calc(100% - 32px),var(--max));
      margin:0 auto;
    }

    .flash-strip{
      position:relative;
      z-index:50;
      background:
        repeating-linear-gradient(135deg, rgba(255,255,255,.16) 0 10px, transparent 10px 20px),
        linear-gradient(90deg,var(--red-dark),var(--red),var(--orange));
      color:#fff8ed;
      font-weight:800;
      letter-spacing:.02em;
      overflow:hidden;
    }
    .flash-strip:after{
      content:"";
      position:absolute;
      inset:auto 0 -7px 0;
      height:14px;
      background:radial-gradient(circle at 7px 7px, var(--cream) 0 4px, transparent 4.5px) repeat-x;
      background-size:20px 14px;
      opacity:.96;
    }
    .flash-inner{
      width:min(calc(100% - 32px),var(--max));
      margin:0 auto;
      min-height:46px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      font-size:14px;
      white-space:nowrap;
    }
    .flash-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:5px 12px;
      border:1px solid rgba(255,255,255,.36);
      border-radius:999px;
      background:rgba(28,26,23,.18);
    }
    .countdown{
      display:flex;
      align-items:center;
      gap:8px;
      font-variant-numeric:tabular-nums;
    }
    .countdown b{
      display:inline-flex;
      min-width:34px;
      height:26px;
      align-items:center;
      justify-content:center;
      border-radius:10px;
      background:rgba(255,252,247,.22);
      border:1px solid rgba(255,255,255,.25);
      color:#fff;
    }

    .site-header{
      position:sticky;
      top:12px;
      z-index:40;
      padding:14px 0 0;
      pointer-events:none;
    }
    .dock-nav{
      pointer-events:auto;
      width:min(calc(100% - 32px),var(--max));
      margin:0 auto;
      border-radius:999px;
      padding:10px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      background:rgba(255,252,247,.9);
      border:1px solid rgba(216,58,46,.14);
      box-shadow:0 18px 55px rgba(120,45,20,.14);
      backdrop-filter:blur(16px);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      padding:5px 10px 5px 6px;
      border-radius:999px;
      font-weight:900;
      color:var(--green);
      letter-spacing:-.03em;
    }
    .brand-mark{
      width:40px;
      height:40px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.5), transparent 24%),
        linear-gradient(135deg,var(--red),var(--red-dark));
      box-shadow:0 12px 24px rgba(216,58,46,.28);
      font-size:18px;
      position:relative;
    }
    .brand-mark:after{
      content:"";
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--orange);
      border:2px solid var(--warm);
      position:absolute;
      right:-2px;
      bottom:0;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.12}
    .brand-text strong{font-size:15px}
    .brand-text span{font-size:11px;color:var(--muted);font-weight:800;letter-spacing:.08em}

    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
      flex:1;
    }
    .nav-links a{
      padding:10px 15px;
      border-radius:999px;
      color:#42372F;
      font-weight:800;
      font-size:14px;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(216,58,46,.08);
      color:var(--red-dark);
      transform:translateY(-1px);
    }
    .nav-links a.active{
      background:var(--green);
      color:var(--cream);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:8px;
    }
    .search-capsule{
      display:flex;
      align-items:center;
      gap:8px;
      height:42px;
      padding:0 12px;
      border-radius:999px;
      background:#fff8ed;
      border:1px solid var(--line);
      color:var(--muted);
    }
    .search-capsule input{
      width:168px;
      border:0;
      margin:0;
      height:38px;
      box-shadow:none!important;
      background:transparent;
      color:var(--ink);
      font-size:13px;
      padding:0;
    }
    .search-capsule input::placeholder{color:#9b8b7a}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:11px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:900;
      line-height:1;
      cursor:pointer;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--red),var(--red-dark));
      color:#fffaf0;
      box-shadow:0 14px 30px rgba(216,58,46,.26);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(185,28,60,.34);
      filter:saturate(1.08);
    }
    .btn-secondary{
      background:rgba(255,252,247,.72);
      color:var(--green);
      border-color:rgba(216,58,46,.25);
    }
    .btn-secondary:hover{
      background:rgba(245,158,66,.14);
      color:var(--red-dark);
      transform:translateY(-2px);
    }
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:50%;
      border:1px solid var(--line);
      background:#fff8ed;
      color:var(--ink);
      font-size:22px;
      cursor:pointer;
    }

    .mobile-panel{
      display:none;
      width:min(calc(100% - 32px),var(--max));
      margin:10px auto 0;
      padding:16px;
      border-radius:24px;
      border:1px solid var(--line);
      background:rgba(255,252,247,.96);
      box-shadow:var(--shadow);
      pointer-events:auto;
    }
    .mobile-panel.open{display:block}
    .mobile-panel a{
      display:block;
      padding:12px 14px;
      border-radius:16px;
      font-weight:800;
    }
    .mobile-panel a.active{background:var(--green);color:var(--cream)}
    .mobile-panel .search-capsule{margin-top:10px;width:100%}
    .mobile-panel .search-capsule input{width:100%}

    main{position:relative}
    section{padding:88px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(216,58,46,.1);
      color:var(--red-dark);
      font-size:13px;
      font-weight:900;
      letter-spacing:.04em;
      margin-bottom:16px;
    }
    .section-title{
      font-size:clamp(30px,4vw,48px);
      line-height:1.12;
      font-weight:950;
      letter-spacing:-.06em;
      color:var(--green);
      margin:0 0 14px;
    }
    .section-desc{
      max-width:780px;
      color:var(--muted);
      font-size:17px;
      margin:0 0 34px;
    }

    .hero{
      padding:86px 0 86px;
      position:relative;
    }
    .hero-stage{
      position:relative;
      overflow:hidden;
      border-radius:42px;
      padding:34px;
      background:
        radial-gradient(circle at 86% 18%, rgba(247,166,184,.58), transparent 24%),
        radial-gradient(circle at 18% 80%, rgba(245,158,66,.34), transparent 28%),
        linear-gradient(135deg,#fff7e8 0%,#ffe0cf 48%,#fdf1dc 100%);
      border:1px solid rgba(216,58,46,.18);
      box-shadow:var(--shadow-strong);
    }
    .hero-stage:before{
      content:"";
      position:absolute;
      inset:18px;
      border-radius:32px;
      border:1px dashed rgba(185,28,60,.28);
      pointer-events:none;
    }
    .hero-topline{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom:30px;
      padding:12px 14px;
      border-radius:22px;
      background:rgba(28,26,23,.9);
      color:var(--cream);
    }
    .hero-topline strong{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:14px;
    }
    .hero-topline .mini-clock{
      display:flex;
      align-items:center;
      gap:8px;
      font-size:13px;
      color:#ffe2c3;
      font-weight:900;
    }
    .hero-grid{
      position:relative;
      z-index:1;
      align-items:stretch;
    }
    .hero-copy{
      padding:22px 4px 8px;
    }
    .hero h1{
      font-size:clamp(38px,7vw,74px);
      line-height:1.06;
      font-weight:950;
      letter-spacing:-.075em;
      color:var(--green);
      margin:0 0 22px;
      max-width:760px;
    }
    .hero-intro{
      color:#554639;
      font-size:18px;
      line-height:1.85;
      max-width:720px;
      margin:0 0 28px;
    }
    .hero-cta{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:28px;
    }
    .data-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .data-chip{
      min-width:148px;
      padding:12px 16px;
      border-radius:20px;
      background:rgba(255,252,247,.74);
      border:1px solid rgba(216,58,46,.16);
    }
    .data-chip b{
      display:block;
      font-size:24px;
      line-height:1.1;
      color:var(--red-dark);
      font-weight:950;
    }
    .data-chip span{
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .featured-card{
      min-height:100%;
      border-radius:34px;
      padding:26px;
      background:rgba(255,252,247,.82);
      border:1px solid rgba(216,58,46,.18);
      box-shadow:0 20px 50px rgba(120,45,20,.12);
      position:relative;
      overflow:hidden;
    }
    .featured-card:before{
      content:"INDEX";
      position:absolute;
      top:22px;
      right:-20px;
      transform:rotate(12deg);
      font-size:44px;
      font-weight:950;
      color:rgba(216,58,46,.08);
      letter-spacing:.08em;
    }
    .stamp{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border-radius:999px;
      background:var(--red);
      color:#fffaf0;
      font-size:12px;
      font-weight:950;
      box-shadow:0 10px 22px rgba(216,58,46,.24);
    }
    .matrix{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      margin-top:18px;
    }
    .matrix-card{
      padding:18px;
      min-height:134px;
      border-radius:24px;
      background:#fff8ed;
      border:1px solid rgba(120,45,20,.12);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .matrix-card:hover{
      transform:translateY(-4px);
      box-shadow:0 16px 35px rgba(120,45,20,.13);
      border-color:rgba(216,58,46,.35);
    }
    .matrix-card .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px;
      height:34px;
      border-radius:12px;
      background:rgba(216,58,46,.1);
      color:var(--red-dark);
      font-weight:950;
      margin-bottom:12px;
    }
    .matrix-card h3{
      font-size:18px;
      line-height:1.25;
      margin:0 0 6px;
      font-weight:950;
      letter-spacing:-.03em;
    }
    .matrix-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }

    .vertical-notes{
      background:linear-gradient(180deg,rgba(21,32,27,.98),#241711);
      color:var(--cream);
      overflow:hidden;
      position:relative;
    }
    .vertical-notes:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 12% 20%, rgba(216,58,46,.35), transparent 24%),
        radial-gradient(circle at 90% 70%, rgba(245,158,66,.22), transparent 28%);
      pointer-events:none;
    }
    .vertical-notes .container{position:relative;z-index:1}
    .vertical-notes .section-title{color:#fff6e5}
    .vertical-notes .section-desc{color:#d8c8b7}
    .note-rail{
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding:10px 0 22px;
      scroll-snap-type:x mandatory;
    }
    .note-rail::-webkit-scrollbar{height:8px}
    .note-rail::-webkit-scrollbar-thumb{background:rgba(255,244,225,.25);border-radius:999px}
    .tall-note{
      flex:0 0 250px;
      min-height:420px;
      scroll-snap-align:start;
      border-radius:30px;
      padding:24px;
      background:linear-gradient(180deg,#fff6e5,#f8d7be);
      color:var(--ink);
      box-shadow:0 24px 58px rgba(0,0,0,.24);
      border:1px solid rgba(255,255,255,.18);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
      transition:var(--ease);
    }
    .tall-note:nth-child(2n){background:linear-gradient(180deg,#ffe8ee,#fff7e8)}
    .tall-note:nth-child(3n){background:linear-gradient(180deg,#fbe2b8,#fff4e1)}
    .tall-note:hover{transform:translateY(-6px) rotate(-1deg)}
    .tall-note:after{
      content:"";
      width:70px;
      height:70px;
      border-radius:50%;
      background:rgba(216,58,46,.08);
      position:absolute;
      right:-20px;
      top:26px;
    }
    .tall-note small{
      color:var(--red-dark);
      font-weight:950;
      letter-spacing:.08em;
    }
    .tall-note h3{
      font-size:25px;
      line-height:1.18;
      font-weight:950;
      margin:18px 0 12px;
      letter-spacing:-.04em;
    }
    .tall-note p{font-size:15px;color:#6d5c4d;margin:0}
    .note-action{
      display:inline-flex;
      width:max-content;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(28,26,23,.92);
      color:var(--cream);
      font-size:13px;
      font-weight:900;
    }
    .note-action:hover{background:var(--red-dark);color:#fff}

    .hot-list{
      background:var(--warm);
    }
    .magazine-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:18px;
      align-items:stretch;
    }
    .digest-card{
      background:#fffaf1;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:26px;
      box-shadow:0 16px 44px rgba(120,45,20,.09);
      transition:var(--ease);
      min-height:220px;
      position:relative;
      overflow:hidden;
    }
    .digest-card:hover{
      transform:translateY(-4px);
      box-shadow:0 24px 58px rgba(120,45,20,.14);
      border-color:rgba(216,58,46,.32);
    }
    .digest-card.large{
      grid-row:span 2;
      min-height:458px;
      border-radius:34px;
      background:
        radial-gradient(circle at 88% 20%, rgba(245,158,66,.28), transparent 24%),
        linear-gradient(135deg,#fffaf1,#ffe3d3);
    }
    .digest-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:18px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(216,58,46,.1);
      color:var(--red-dark);
      font-size:12px;
      font-weight:950;
      letter-spacing:.03em;
    }
    .date{
      color:#9b8b7a;
      font-size:12px;
      font-weight:900;
    }
    .digest-card h3{
      font-size:clamp(22px,2.6vw,34px);
      line-height:1.14;
      letter-spacing:-.05em;
      font-weight:950;
      margin:0 0 14px;
      color:var(--green);
    }
    .digest-card:not(.large) h3{font-size:22px}
    .digest-card p{
      margin:0 0 20px;
      color:var(--muted);
      font-size:15px;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--red-dark);
      font-weight:950;
      font-size:14px;
    }
    .text-link:hover{gap:12px;color:var(--green)}
    .mini-list{
      margin:24px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .mini-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:12px;
      border-radius:16px;
      background:rgba(255,252,247,.68);
      color:#5d4c40;
      font-weight:700;
      font-size:14px;
    }
    .mini-list li:before{
      content:"✓";
      width:22px;
      height:22px;
      border-radius:50%;
      background:rgba(47,125,109,.12);
      color:var(--jade);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      font-weight:950;
    }

    .trust-wall{
      background:
        linear-gradient(180deg,rgba(255,244,225,.72),rgba(255,252,247,.96));
    }
    .review-grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:18px;
    }
    .review-card{
      grid-column:span 4;
      border-radius:28px;
      padding:24px;
      background:#fffaf1;
      border:1px solid var(--line);
      box-shadow:0 16px 42px rgba(120,45,20,.09);
      transition:var(--ease);
    }
    .review-card.wide{grid-column:span 8;background:linear-gradient(135deg,#1C1A17,#243328);color:var(--cream)}
    .review-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
    .quote-mark{
      width:42px;
      height:42px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:rgba(216,58,46,.12);
      color:var(--red-dark);
      font-size:24px;
      font-weight:950;
      margin-bottom:14px;
    }
    .review-card.wide .quote-mark{background:rgba(255,244,225,.14);color:var(--orange)}
    .review-card p{margin:0 0 18px;color:var(--muted)}
    .review-card.wide p{color:#e5d6c4;font-size:18px}
    .reviewer{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:var(--green);
      font-weight:950;
    }
    .review-card.wide .reviewer{color:#fff6e5}
    .reviewer span{
      color:#9b8b7a;
      font-size:13px;
      font-weight:800;
    }

    .story{
      background:linear-gradient(135deg,#fff7e8,#fff0d7);
    }
    .editorial{
      display:grid;
      grid-template-columns:.42fr .58fr;
      gap:26px;
      align-items:start;
    }
    .chapter-card{
      position:sticky;
      top:118px;
      border-radius:34px;
      padding:30px;
      background:var(--green);
      color:var(--cream);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .chapter-card:after{
      content:"说明";
      position:absolute;
      right:-8px;
      bottom:-24px;
      font-size:92px;
      font-weight:950;
      color:rgba(255,244,225,.06);
    }
    .chapter-card h2{
      color:#fff6e5;
      font-size:38px;
      line-height:1.12;
      letter-spacing:-.06em;
      font-weight:950;
      margin:12px 0 16px;
    }
    .chapter-card p{color:#dbcdbb;margin:0}
    .policy-list{
      display:grid;
      gap:16px;
    }
    .policy-item{
      padding:24px;
      border-radius:28px;
      background:#fffaf1;
      border:1px solid var(--line);
      box-shadow:0 16px 42px rgba(120,45,20,.08);
    }
    .policy-item h3{
      font-size:22px;
      line-height:1.22;
      margin:0 0 8px;
      font-weight:950;
      letter-spacing:-.04em;
      color:var(--green);
    }
    .policy-item p{margin:0;color:var(--muted)}
    .age-callout{
      margin-top:16px;
      border-radius:28px;
      padding:24px;
      background:rgba(216,58,46,.1);
      border:1px solid rgba(216,58,46,.22);
      color:#5d322f;
      font-weight:800;
    }

    .news-section{
      background:#fffaf1;
    }
    .news-layout{
      display:grid;
      grid-template-columns:1fr 360px;
      gap:22px;
    }
    .news-list{
      border-radius:32px;
      background:#fff;
      border:1px solid var(--line);
      overflow:hidden;
      box-shadow:0 16px 42px rgba(120,45,20,.08);
    }
    .news-item{
      display:grid;
      grid-template-columns:128px 1fr auto;
      gap:18px;
      align-items:center;
      padding:22px;
      border-bottom:1px solid rgba(120,45,20,.1);
    }
    .news-item:last-child{border-bottom:0}
    .news-item:hover{background:#fff8ed}
    .news-date{
      display:flex;
      flex-direction:column;
      gap:4px;
      font-weight:950;
      color:var(--red-dark);
      font-size:13px;
    }
    .news-item h3{
      font-size:20px;
      margin:0 0 5px;
      font-weight:950;
      line-height:1.25;
      letter-spacing:-.03em;
      color:var(--green);
    }
    .news-item p{margin:0;color:var(--muted);font-size:14px}
    .side-recommend{
      border-radius:32px;
      padding:24px;
      background:
        radial-gradient(circle at 82% 18%, rgba(247,166,184,.42), transparent 26%),
        linear-gradient(180deg,#221c17,#15201B);
      color:var(--cream);
      position:relative;
      overflow:hidden;
      min-height:100%;
    }
    .side-recommend h3{
      font-size:28px;
      line-height:1.15;
      letter-spacing:-.05em;
      font-weight:950;
      margin:14px 0 12px;
      color:#fff6e5;
    }
    .side-recommend p{color:#ddcdbb}
    .side-recommend .btn{margin-top:12px}

    .cta-section{
      padding:90px 0 110px;
      background:
        radial-gradient(circle at 18% 22%, rgba(245,158,66,.28), transparent 24%),
        linear-gradient(135deg,var(--red-dark),var(--red));
      color:#fff7e8;
    }
    .cta-box{
      display:grid;
      grid-template-columns:1fr .82fr;
      gap:28px;
      align-items:center;
      border-radius:42px;
      padding:34px;
      background:rgba(28,26,23,.22);
      border:1px solid rgba(255,255,255,.18);
      box-shadow:0 30px 80px rgba(28,26,23,.25);
    }
    .cta-box h2{
      font-size:clamp(32px,5vw,56px);
      line-height:1.08;
      font-weight:950;
      letter-spacing:-.07em;
      margin:0 0 14px;
      color:#fffaf0;
    }
    .cta-box p{margin:0;color:#ffe0c7;font-size:17px}
    .reminder-form{
      display:flex;
      gap:10px;
      padding:10px;
      border-radius:999px;
      background:rgba(255,252,247,.14);
      border:1px solid rgba(255,255,255,.22);
    }
    .reminder-form input{
      flex:1;
      min-width:0;
      height:48px;
      border:0;
      margin:0;
      border-radius:999px;
      padding:0 18px;
      background:#fffaf0;
      color:var(--ink);
      box-shadow:none;
    }
    .reminder-form .btn{
      background:var(--green);
      color:var(--cream);
      border-color:rgba(255,255,255,.14);
    }
    .reminder-form .btn:hover{background:#0f1713;color:#fff;transform:translateY(-2px)}

    .faq-section{
      background:var(--paper);
      padding-top:88px;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:24px!important;
      overflow:hidden;
      border:1px solid var(--line);
      background:#fffaf1;
      box-shadow:0 12px 32px rgba(120,45,20,.07);
    }
    .accordion-title{
      border:0!important;
      color:var(--green)!important;
      font-size:18px;
      font-weight:950;
      padding:20px 56px 20px 22px;
      background:#fffaf1;
      line-height:1.35;
    }
    .accordion-title:before{
      right:22px;
      color:var(--red-dark);
      font-size:22px;
      margin-top:-12px;
    }
    .accordion-title:hover,.accordion-title:focus{background:#fff4e1;color:var(--red-dark)!important}
    .accordion-content{
      border:0!important;
      background:#fffaf1;
      color:var(--muted);
      padding:0 22px 22px;
      font-size:15px;
    }

    .sticky-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:45;
      width:min(calc(100% - 32px),860px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:10px 12px 10px 18px;
      border-radius:999px;
      background:rgba(28,26,23,.92);
      color:var(--cream);
      box-shadow:0 20px 60px rgba(28,26,23,.28);
      border:1px solid rgba(255,244,225,.16);
      backdrop-filter:blur(12px);
    }
    .sticky-cta strong{font-size:14px}
    .sticky-cta span{color:#dccbb8;font-size:13px}
    .sticky-cta .btn{min-height:40px;padding:10px 15px}

    .site-footer{
      background:#15120f;
      color:#e7d8c5;
      padding:70px 0 92px;
      position:relative;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .75fr .95fr;
      gap:30px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
      font-weight:950;
      color:#fff6e5;
      letter-spacing:-.03em;
    }
    .footer-brand .brand-mark{width:44px;height:44px}
    .site-footer p{color:#c9b7a4;margin:0}
    .footer-title{
      color:#fff6e5;
      font-size:16px;
      font-weight:950;
      margin:0 0 14px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#d9c8b6;
      font-weight:800;
    }
    .footer-links a:hover{color:var(--orange);transform:translateX(3px)}
    .footer-form{
      display:grid;
      gap:10px;
    }
    .footer-form input{
      height:46px;
      border-radius:999px;
      border:1px solid rgba(255,244,225,.16);
      background:rgba(255,252,247,.08);
      color:#fff6e5;
      padding:0 16px;
      margin:0;
      box-shadow:none;
    }
    .footer-form input::placeholder{color:#a99682}
    .footer-bottom{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid rgba(255,244,225,.12);
      display:flex;
      justify-content:space-between;
      gap:18px;
      color:#a99682;
      font-size:13px;
      flex-wrap:wrap;
    }

    @media (max-width:1023px){
      .dock-nav{border-radius:28px}
      .nav-links,.nav-actions{display:none}
      .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
      .brand-text strong{font-size:14px}
      section{padding:68px 0}
      .hero{padding-top:64px}
      .hero-stage{padding:24px;border-radius:34px}
      .hero-topline{align-items:flex-start;flex-direction:column;border-radius:22px}
      .magazine-grid{grid-template-columns:1fr 1fr}
      .digest-card.large{grid-column:span 2;grid-row:auto}
      .review-card,.review-card.wide{grid-column:span 6}
      .editorial{grid-template-columns:1fr}
      .chapter-card{position:relative;top:auto}
      .news-layout{grid-template-columns:1fr}
      .cta-box{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:720px){
      .flash-inner{
        overflow-x:auto;
        justify-content:flex-start;
        padding-bottom:3px;
      }
      .site-header{top:8px}
      .dock-nav{width:calc(100% - 20px);padding:8px}
      .brand-text span{display:none}
      .hero-stage{padding:18px;border-radius:28px}
      .hero-stage:before{inset:10px;border-radius:22px}
      .hero h1{letter-spacing:-.06em}
      .hero-intro{font-size:16px}
      .hero-cta,.data-row{align-items:stretch;flex-direction:column}
      .hero-cta .btn,.data-chip{width:100%}
      .matrix{grid-template-columns:1fr}
      .magazine-grid{grid-template-columns:1fr}
      .digest-card.large{grid-column:auto}
      .review-grid{grid-template-columns:1fr}
      .review-card,.review-card.wide{grid-column:auto}
      .news-item{
        grid-template-columns:1fr;
        gap:8px;
        padding:18px;
      }
      .news-item .text-link{width:max-content}
      .reminder-form{
        border-radius:26px;
        flex-direction:column;
      }
      .reminder-form input,.reminder-form .btn{width:100%}
      .cta-box{padding:24px;border-radius:30px}
      .footer-grid{grid-template-columns:1fr}
      .sticky-cta{
        align-items:stretch;
        flex-direction:column;
        border-radius:26px;
        padding:14px;
      }
      .sticky-cta .btn{width:100%}
    }

/* roulang page: category1 */
:root{
      --color-red:#D83A2E;
      --color-red-dark:#B91C3C;
      --color-orange:#F59E42;
      --color-ink:#1C1A17;
      --color-green:#15201B;
      --color-jade:#2F7D6D;
      --color-pink:#F7A6B8;
      --color-cream:#FFF4E1;
      --color-paper:#FAF2E6;
      --color-warm:#FFFCF7;
      --color-muted:#74665B;
      --color-border:rgba(120,45,20,.16);
      --shadow-soft:0 20px 55px rgba(120,45,20,.13);
      --shadow-card:0 12px 34px rgba(120,45,20,.11);
      --radius-sm:14px;
      --radius-md:22px;
      --radius-lg:32px;
      --radius-pill:999px;
      --container:1180px;
      --ease:all .22s 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:
        radial-gradient(circle at 8% 10%, rgba(247,166,184,.28), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(245,158,66,.22), transparent 30%),
        linear-gradient(180deg,var(--color-cream) 0%, var(--color-warm) 45%, var(--color-paper) 100%);
      line-height:1.75;
      overflow-x:hidden;
    }

    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--color-red-dark)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    input{
      outline:none;
      border:1px solid var(--color-border);
      background:rgba(255,252,247,.88);
      color:var(--color-ink);
      transition:var(--ease);
    }
    input:focus{
      border-color:rgba(216,58,46,.55);
      box-shadow:0 0 0 4px rgba(216,58,46,.12);
      background:#fff;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .campaign-strip{
      position:relative;
      z-index:30;
      background:
        repeating-linear-gradient(135deg, rgba(255,255,255,.12) 0 8px, transparent 8px 16px),
        linear-gradient(90deg,var(--color-red-dark),var(--color-red),var(--color-orange));
      color:#fffaf0;
      font-weight:800;
      letter-spacing:.02em;
      box-shadow:0 8px 26px rgba(185,28,60,.22);
    }
    .campaign-strip .container{
      min-height:42px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:14px;
      white-space:nowrap;
      overflow:auto;
      scrollbar-width:none;
      font-size:14px;
    }
    .campaign-strip .container::-webkit-scrollbar{display:none}
    .strip-dot{
      width:8px;height:8px;border-radius:50%;
      background:#fff4e1;
      box-shadow:18px 0 0 rgba(255,244,225,.55),36px 0 0 rgba(255,244,225,.35);
      flex:0 0 auto;
    }

    .site-header{
      position:sticky;
      top:12px;
      z-index:50;
      padding:12px 16px 0;
    }
    .dock-nav{
      max-width:1180px;
      margin:0 auto;
      min-height:72px;
      padding:9px 10px;
      border:1px solid rgba(120,45,20,.18);
      border-radius:var(--radius-pill);
      background:rgba(255,252,247,.9);
      backdrop-filter:blur(18px);
      box-shadow:0 18px 48px rgba(69,33,13,.16);
      display:flex;
      align-items:center;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:260px;
      padding:6px 10px 6px 7px;
      border-radius:var(--radius-pill);
    }
    .brand:hover{
      background:rgba(216,58,46,.08);
      color:var(--color-ink);
    }
    .brand-mark{
      width:42px;height:42px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--color-red),var(--color-red-dark));
      color:#fff8ec;
      font-weight:900;
      box-shadow:0 10px 24px rgba(216,58,46,.28);
      flex:0 0 auto;
      position:relative;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:-4px;
      border:1px dashed rgba(216,58,46,.35);
      border-radius:50%;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-text strong{
      font-size:15px;
      letter-spacing:-.02em;
      color:var(--color-ink);
    }
    .brand-text span{
      font-size:12px;
      color:var(--color-muted);
      font-weight:700;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:4px;
      flex:1;
      justify-content:center;
    }
    .nav-links a,
    .mobile-panel a{
      padding:10px 14px;
      border-radius:var(--radius-pill);
      color:#3d3028;
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
    }
    .nav-links a:hover,
    .nav-links a.active{
      background:rgba(216,58,46,.1);
      color:var(--color-red-dark);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:8px;
    }
    .search-capsule{
      display:flex;
      align-items:center;
      gap:6px;
      height:44px;
      padding:0 12px;
      border-radius:var(--radius-pill);
      background:rgba(250,242,230,.85);
      border:1px solid rgba(120,45,20,.14);
    }
    .search-capsule span{
      color:var(--color-red);
      font-weight:900;
      font-size:18px;
    }
    .search-capsule input{
      width:178px;
      height:36px;
      border:0;
      box-shadow:none;
      background:transparent;
      padding:0;
      font-size:13px;
      font-weight:700;
    }
    .search-capsule input:focus{
      border:0;
      box-shadow:none;
      background:transparent;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:12px 20px;
      border-radius:var(--radius-pill);
      border:1px solid transparent;
      font-weight:900;
      letter-spacing:.01em;
      transition:var(--ease);
      line-height:1.1;
      gap:8px;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--color-red),var(--color-red-dark));
      color:#fff8ec;
      box-shadow:0 12px 28px rgba(216,58,46,.26);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 16px 36px rgba(185,28,60,.34);
      filter:saturate(1.08);
    }
    .btn-secondary{
      background:rgba(255,252,247,.72);
      color:var(--color-ink);
      border-color:rgba(216,58,46,.35);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      background:rgba(245,158,66,.14);
      color:var(--color-red-dark);
      transform:translateY(-2px);
    }
    .menu-toggle{
      display:none;
      width:46px;height:46px;
      border:0;
      border-radius:50%;
      background:var(--color-ink);
      color:#fff4e1;
      font-size:20px;
      font-weight:900;
    }
    .mobile-panel{
      max-width:1180px;
      margin:10px auto 0;
      padding:14px;
      border-radius:26px;
      background:rgba(255,252,247,.96);
      box-shadow:var(--shadow-card);
      border:1px solid var(--color-border);
      display:none;
    }
    .mobile-panel.is-open{display:grid;gap:8px}
    .mobile-panel .search-capsule{
      width:100%;
      margin-top:4px;
    }
    .mobile-panel .search-capsule input{width:100%}

    main{position:relative}
    .section{
      padding:92px 0;
      position:relative;
    }
    .section-tight{padding:66px 0}
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      background:rgba(216,58,46,.1);
      color:var(--color-red-dark);
      border:1px solid rgba(216,58,46,.18);
      font-size:13px;
      font-weight:900;
    }
    .kicker:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--color-orange);
      box-shadow:0 0 0 4px rgba(245,158,66,.18);
    }
    .hero{
      padding:88px 0 64px;
    }
    .creator-hero{
      border-radius:40px;
      overflow:hidden;
      background:
        radial-gradient(circle at 82% 18%, rgba(247,166,184,.5), transparent 28%),
        linear-gradient(135deg,#fff8ed 0%,#fff0d8 45%,#fbd7c5 100%);
      border:1px solid rgba(120,45,20,.16);
      box-shadow:var(--shadow-soft);
      position:relative;
    }
    .creator-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        radial-gradient(rgba(216,58,46,.16) 1px, transparent 1px),
        linear-gradient(120deg, transparent 0 72%, rgba(216,58,46,.08) 72% 100%);
      background-size:22px 22px, 100% 100%;
      pointer-events:none;
    }
    .hero-cover{
      position:relative;
      min-height:190px;
      padding:28px;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 14px, transparent 14px 28px),
        linear-gradient(135deg,var(--color-green),#25362d);
      color:#fff8ec;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
    }
    .stamp{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border:1px dashed rgba(255,244,225,.72);
      border-radius:var(--radius-pill);
      color:#fff4e1;
      background:rgba(255,255,255,.08);
      font-size:13px;
      font-weight:900;
    }
    .hero-date{
      padding:9px 13px;
      border-radius:16px;
      background:var(--color-orange);
      color:#2a170c;
      font-weight:900;
      box-shadow:0 12px 22px rgba(0,0,0,.14);
      transform:rotate(2deg);
    }
    .profile-block{
      position:relative;
      padding:0 38px 38px;
      margin-top:-54px;
    }
    .avatar-row{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:22px;
      margin-bottom:26px;
    }
    .identity{
      display:flex;
      align-items:flex-end;
      gap:18px;
      min-width:0;
    }
    .avatar{
      width:112px;height:112px;
      border-radius:30px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--color-red),var(--color-red-dark));
      color:#fff8ec;
      font-size:48px;
      font-weight:900;
      border:6px solid #fff8ed;
      box-shadow:0 18px 38px rgba(185,28,60,.25);
      flex:0 0 auto;
    }
    .identity-text{
      padding-bottom:8px;
    }
    .identity-text .name{
      margin:0;
      font-size:20px;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .identity-text .note{
      margin:4px 0 0;
      color:var(--color-muted);
      font-size:14px;
      font-weight:700;
    }
    h1{
      max-width:900px;
      margin:8px 0 18px;
      font-size:clamp(36px,6vw,68px);
      line-height:1.08;
      letter-spacing:-.055em;
      font-weight:900;
      color:var(--color-ink);
    }
    .lead{
      max-width:760px;
      color:#55463b;
      font-size:18px;
      line-height:1.85;
      margin:0 0 28px;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:20px;
    }
    .metric-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:30px;
    }
    .metric-card{
      background:rgba(255,252,247,.78);
      border:1px solid rgba(120,45,20,.14);
      border-radius:22px;
      padding:18px;
      box-shadow:0 10px 24px rgba(120,45,20,.08);
    }
    .metric-card strong{
      display:block;
      font-size:26px;
      line-height:1;
      color:var(--color-red-dark);
      font-weight:900;
    }
    .metric-card span{
      display:block;
      margin-top:8px;
      font-size:13px;
      color:var(--color-muted);
      font-weight:800;
    }

    .filter-band{
      margin-top:-24px;
      position:relative;
      z-index:2;
    }
    .filter-box{
      border-radius:30px;
      padding:20px;
      background:rgba(28,26,23,.96);
      color:#fff4e1;
      box-shadow:0 18px 42px rgba(28,26,23,.22);
      border:1px solid rgba(255,244,225,.14);
    }
    .filter-title{
      font-size:15px;
      font-weight:900;
      margin:0 0 14px;
      color:#fff8ec;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 13px;
      border-radius:var(--radius-pill);
      background:rgba(255,244,225,.1);
      border:1px solid rgba(255,244,225,.2);
      color:#fff4e1;
      font-size:13px;
      font-weight:850;
    }
    .tag:hover{
      background:rgba(245,158,66,.2);
      border-color:rgba(245,158,66,.5);
      color:#fff;
      transform:translateY(-1px);
    }

    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:28px;
      margin-bottom:30px;
    }
    .section-head h2{
      margin:12px 0 0;
      max-width:720px;
      font-size:clamp(30px,4vw,46px);
      line-height:1.14;
      letter-spacing:-.04em;
      font-weight:900;
    }
    .section-head p{
      max-width:380px;
      margin:0;
      color:var(--color-muted);
      font-weight:650;
    }

    .digest-layout{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:start;
    }
    .digest-list{
      display:grid;
      gap:14px;
    }
    .digest-item{
      display:grid;
      grid-template-columns:136px 1fr;
      gap:22px;
      padding:22px;
      border-radius:26px;
      background:rgba(255,252,247,.82);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
      transition:var(--ease);
    }
    .digest-item:hover{
      transform:translateY(-4px);
      box-shadow:0 18px 42px rgba(120,45,20,.16);
      border-color:rgba(216,58,46,.28);
    }
    .digest-date{
      border-radius:20px;
      min-height:118px;
      background:
        linear-gradient(180deg,rgba(216,58,46,.12),rgba(245,158,66,.1)),
        var(--color-paper);
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      border:1px dashed rgba(216,58,46,.3);
      text-align:center;
      padding:12px;
    }
    .digest-date strong{
      color:var(--color-red-dark);
      font-size:24px;
      font-weight:900;
      line-height:1;
    }
    .digest-date span{
      margin-top:8px;
      color:var(--color-muted);
      font-size:12px;
      font-weight:900;
    }
    .digest-content h3,
    .feature-card h3,
    .compare-card h3,
    .step-card h3{
      margin:0 0 10px;
      font-size:23px;
      line-height:1.25;
      font-weight:900;
      letter-spacing:-.025em;
    }
    .digest-content p,
    .feature-card p,
    .compare-card p,
    .step-card p{
      margin:0 0 14px;
      color:#5b4d42;
      font-weight:620;
    }
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--color-red-dark);
      font-weight:900;
      font-size:14px;
    }
    .mini-link:hover{gap:10px}
    .feature-card{
      position:sticky;
      top:112px;
      padding:30px;
      border-radius:32px;
      background:
        radial-gradient(circle at 90% 10%, rgba(247,166,184,.45), transparent 30%),
        linear-gradient(135deg,#fff8ed,#ffe2bd);
      border:1px solid rgba(216,58,46,.2);
      box-shadow:var(--shadow-soft);
    }
    .feature-card .label-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:26px;
    }
    .label{
      display:inline-flex;
      padding:7px 10px;
      border-radius:var(--radius-pill);
      background:#fffaf0;
      border:1px solid rgba(120,45,20,.14);
      color:var(--color-muted);
      font-weight:900;
      font-size:12px;
    }
    .feature-note{
      margin-top:22px;
      padding:18px;
      border-radius:22px;
      background:rgba(28,26,23,.93);
      color:#fff4e1;
    }
    .feature-note strong{
      display:block;
      margin-bottom:6px;
      color:#fff8ec;
      font-size:15px;
    }
    .feature-note p{
      margin:0;
      color:rgba(255,244,225,.82);
      font-size:14px;
    }

    .compare-section{
      background:
        linear-gradient(180deg,rgba(255,252,247,.1),rgba(255,252,247,.74)),
        radial-gradient(circle at 15% 30%, rgba(245,158,66,.22), transparent 26%);
    }
    .compare-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
    }
    .compare-card{
      padding:30px;
      border-radius:30px;
      background:#fffaf0;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
      transition:var(--ease);
    }
    .compare-card:hover{
      transform:translateY(-4px);
      border-color:rgba(216,58,46,.34);
    }
    .compare-card.primary{
      background:
        linear-gradient(135deg,rgba(216,58,46,.12),rgba(255,250,240,.96));
      border-color:rgba(216,58,46,.28);
    }
    .check-list{
      list-style:none;
      padding:0;
      margin:18px 0 0;
      display:grid;
      gap:12px;
    }
    .check-list li{
      position:relative;
      padding-left:32px;
      color:#483a31;
      font-weight:700;
    }
    .check-list li:before{
      content:"✓";
      position:absolute;
      left:0;top:1px;
      width:22px;height:22px;
      border-radius:50%;
      background:rgba(47,125,109,.12);
      color:var(--color-jade);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      font-size:13px;
    }

    .steps-grid{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:24px;
      align-items:stretch;
    }
    .callout-age{
      padding:30px;
      border-radius:32px;
      background:
        repeating-linear-gradient(-45deg, rgba(255,255,255,.08) 0 10px, transparent 10px 20px),
        linear-gradient(135deg,var(--color-red-dark),var(--color-red));
      color:#fff8ec;
      box-shadow:0 20px 50px rgba(185,28,60,.24);
    }
    .callout-age h2{
      margin:14px 0 12px;
      font-size:34px;
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.035em;
    }
    .callout-age p{
      color:rgba(255,248,236,.88);
      font-weight:650;
      margin:0 0 20px;
    }
    .step-list{
      display:grid;
      gap:14px;
    }
    .step-card{
      display:grid;
      grid-template-columns:70px 1fr;
      gap:18px;
      padding:22px;
      border-radius:26px;
      background:rgba(255,252,247,.84);
      border:1px solid var(--color-border);
      box-shadow:0 10px 28px rgba(120,45,20,.08);
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-card);
    }
    .step-no{
      width:62px;height:62px;
      border-radius:22px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--color-green);
      color:#fff4e1;
      font-size:22px;
      font-weight:900;
    }

    .faq-wrap{
      max-width:900px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:24px;
      overflow:hidden;
      border:1px solid var(--color-border);
      background:rgba(255,252,247,.9);
      box-shadow:0 10px 28px rgba(120,45,20,.08);
    }
    .accordion-title{
      border:0!important;
      background:transparent!important;
      padding:20px 58px 20px 22px;
      color:var(--color-ink)!important;
      font-weight:900;
      font-size:17px;
      line-height:1.45;
    }
    .accordion-title:before{
      right:22px;
      color:var(--color-red);
      font-weight:900;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(216,58,46,.06)!important;
      color:var(--color-red-dark)!important;
    }
    .accordion-content{
      border:0!important;
      background:rgba(255,250,240,.76)!important;
      padding:0 22px 22px;
      color:#5a4b40;
      font-weight:650;
    }

    .cta-panel{
      border-radius:38px;
      padding:42px;
      background:
        radial-gradient(circle at 12% 20%, rgba(255,244,225,.18), transparent 22%),
        repeating-linear-gradient(135deg, rgba(255,255,255,.09) 0 12px, transparent 12px 24px),
        linear-gradient(135deg,var(--color-green),#24382f);
      color:#fff8ec;
      box-shadow:0 24px 60px rgba(21,32,27,.28);
      position:relative;
      overflow:hidden;
    }
    .cta-panel:after{
      content:"一区";
      position:absolute;
      right:30px;
      bottom:-22px;
      color:rgba(255,244,225,.08);
      font-size:128px;
      font-weight:900;
      letter-spacing:-.08em;
      line-height:1;
    }
    .cta-panel h2{
      position:relative;
      margin:12px 0 12px;
      max-width:760px;
      font-size:clamp(30px,4vw,48px);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.04em;
      z-index:1;
    }
    .cta-panel p{
      position:relative;
      max-width:650px;
      margin:0 0 26px;
      color:rgba(255,248,236,.82);
      font-weight:650;
      z-index:1;
    }
    .cta-actions{
      position:relative;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      z-index:1;
    }
    .cta-panel .btn-secondary{
      background:rgba(255,248,236,.1);
      color:#fff8ec;
      border-color:rgba(255,248,236,.38);
    }
    .cta-panel .btn-secondary:hover{
      background:rgba(255,248,236,.18);
      color:#fff;
    }

    .site-footer{
      padding:64px 0 34px;
      background:#181613;
      color:#fff4e1;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.15fr .72fr 1fr;
      gap:36px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      margin-bottom:14px;
      font-size:18px;
    }
    .site-footer p{
      color:rgba(255,244,225,.72);
      margin:0;
      max-width:460px;
      font-weight:620;
    }
    .footer-title{
      color:#fff8ec;
      margin:0 0 14px;
      font-size:16px;
      font-weight:900;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,244,225,.72);
      font-weight:750;
    }
    .footer-links a:hover{
      color:#fff8ec;
      transform:translateX(3px);
    }
    .footer-form{
      display:grid;
      grid-template-columns:1fr auto;
      gap:10px;
    }
    .footer-form input{
      min-height:46px;
      border-radius:var(--radius-pill);
      padding:0 16px;
      border-color:rgba(255,244,225,.18);
      background:rgba(255,244,225,.08);
      color:#fff8ec;
    }
    .footer-form input::placeholder{color:rgba(255,244,225,.5)}
    .footer-bottom{
      margin-top:38px;
      padding-top:22px;
      border-top:1px solid rgba(255,244,225,.12);
      display:flex;
      justify-content:space-between;
      gap:18px;
      color:rgba(255,244,225,.58);
      font-size:13px;
      font-weight:700;
    }

    @media (max-width:1100px){
      .brand{min-width:auto}
      .brand-text strong{max-width:210px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
      .search-capsule input{width:132px}
      .nav-links a{padding:10px 10px}
      .metric-row{grid-template-columns:repeat(2,1fr)}
      .digest-layout,.steps-grid{grid-template-columns:1fr}
      .feature-card{position:relative;top:auto}
    }
    @media (max-width:880px){
      .site-header{top:8px}
      .dock-nav{min-height:64px}
      .nav-links,.nav-actions{display:none}
      .menu-toggle{display:inline-flex;align-items:center;justify-content:center;margin-left:auto}
      .brand-text strong{max-width:260px}
      .hero{padding-top:58px}
      .profile-block{padding:0 24px 28px}
      .avatar-row{align-items:flex-start;flex-direction:column}
      .section-head{display:block}
      .section-head p{margin-top:12px;max-width:680px}
      .compare-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-form{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column}
    }
    @media (max-width:640px){
      .container{width:min(100% - 24px, var(--container))}
      .campaign-strip .container{justify-content:flex-start}
      .site-header{padding:10px 10px 0}
      .dock-nav{border-radius:26px;padding:8px}
      .brand{gap:8px;padding:4px}
      .brand-mark{width:38px;height:38px}
      .brand-text strong{font-size:13px;max-width:190px}
      .brand-text span{font-size:11px}
      .hero-cover{min-height:160px;padding:20px;flex-direction:column}
      .profile-block{margin-top:-44px}
      .avatar{width:92px;height:92px;border-radius:24px;font-size:40px;border-width:5px}
      .identity{align-items:flex-end}
      .lead{font-size:16px}
      .hero-actions,.cta-actions{display:grid;width:100%}
      .btn{width:100%}
      .metric-row{grid-template-columns:1fr}
      .filter-box{border-radius:24px}
      .section{padding:62px 0}
      .section-tight{padding:46px 0}
      .digest-item{grid-template-columns:1fr;padding:18px}
      .digest-date{min-height:auto;align-items:flex-start;text-align:left}
      .feature-card,.compare-card,.callout-age,.cta-panel{padding:22px;border-radius:26px}
      .step-card{grid-template-columns:1fr}
      .step-no{width:54px;height:54px;border-radius:18px}
      .footer-form .btn{width:100%}
    }

/* roulang page: category2 */
:root {
      --red: #B91C3C;
      --red-bright: #D83A2E;
      --orange: #F59E42;
      --apricot: #FFE1B8;
      --cream: #FFF4E1;
      --paper: #FAF2E6;
      --warm-white: #FFFCF7;
      --ink: #1C1A17;
      --deep: #15201B;
      --muted: #6F6256;
      --green: #2F7D6D;
      --pink: #F7A6B8;
      --purple: #7C2D58;
      --line: rgba(117, 64, 37, .18);
      --soft-line: rgba(185, 28, 60, .16);
      --shadow: 0 22px 55px rgba(120, 45, 20, .13);
      --shadow-strong: 0 28px 70px rgba(118, 35, 45, .2);
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 34px;
      --max: 1180px;
      --ease: .22s 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(--ink);
      background:
        radial-gradient(circle at 8% 2%, rgba(247, 166, 184, .36), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(245, 158, 66, .22), transparent 30%),
        linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 44%, var(--paper) 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--red);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    input {
      outline: none;
    }

    input:focus {
      border-color: rgba(216, 58, 46, .55) !important;
      box-shadow: 0 0 0 4px rgba(216, 58, 46, .12);
    }

    ::selection {
      background: rgba(216, 58, 46, .2);
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin-inline: auto;
    }

    .campaign-bar {
      position: relative;
      z-index: 40;
      overflow: hidden;
      color: var(--warm-white);
      background:
        repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 8px, transparent 8px 18px),
        linear-gradient(90deg, var(--purple), var(--red), var(--orange));
      border-bottom: 1px solid rgba(255, 255, 255, .24);
    }

    .campaign-inner {
      width: min(var(--max), calc(100% - 36px));
      margin: 0 auto;
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .02em;
      white-space: nowrap;
    }

    .campaign-inner .stamp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 3px 10px;
      border: 1px dashed rgba(255,255,255,.72);
      border-radius: 999px;
      background: rgba(255,255,255,.14);
    }

    .site-header {
      position: sticky;
      top: 12px;
      z-index: 50;
      width: 100%;
      padding: 14px 20px 0;
      pointer-events: none;
    }

    .dock-nav {
      pointer-events: auto;
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 10px 12px;
      border: 1px solid rgba(117, 64, 37, .16);
      border-radius: 999px;
      background: rgba(255, 252, 247, .9);
      box-shadow: 0 18px 46px rgba(68, 35, 12, .13);
      backdrop-filter: blur(16px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 238px;
      color: var(--ink);
    }

    .brand:hover {
      color: var(--ink);
      transform: translateY(-1px);
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--warm-white);
      font-weight: 900;
      border-radius: 14px;
      background:
        radial-gradient(circle at 72% 22%, rgba(255,255,255,.32), transparent 24%),
        linear-gradient(135deg, var(--red-bright), var(--purple));
      box-shadow: inset 0 -5px 12px rgba(0,0,0,.14), 0 10px 22px rgba(185,28,60,.2);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .brand-text strong {
      font-size: 15px;
      letter-spacing: -.03em;
      font-weight: 900;
    }

    .brand-text span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(250, 242, 230, .8);
      margin-left: auto;
    }

    .nav-links a,
    .mobile-panel a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 8px 15px;
      color: var(--deep);
      font-size: 14px;
      font-weight: 800;
      border-radius: 999px;
    }

    .nav-links a:hover,
    .nav-links a.active,
    .mobile-panel a:hover,
    .mobile-panel a.active {
      color: var(--warm-white);
      background: var(--red);
      box-shadow: 0 8px 18px rgba(185, 28, 60, .2);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-capsule {
      height: 42px;
      display: flex;
      align-items: center;
      gap: 6px;
      min-width: 224px;
      padding: 0 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.78);
      color: var(--muted);
    }

    .search-capsule input {
      width: 100%;
      border: 0;
      background: transparent;
      box-shadow: none;
      height: 40px;
      margin: 0;
      padding: 0;
      color: var(--ink);
      font-size: 13px;
    }

    .search-capsule input:focus {
      box-shadow: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 11px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 900;
      font-size: 14px;
      cursor: pointer;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
      white-space: nowrap;
    }

    .btn:hover,
    .btn:focus {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: var(--warm-white);
      background: linear-gradient(135deg, var(--red-bright), var(--red));
      box-shadow: 0 14px 26px rgba(185, 28, 60, .24);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: var(--warm-white);
      background: linear-gradient(135deg, #A91533, #8F1630);
      box-shadow: 0 18px 34px rgba(185, 28, 60, .32);
    }

    .btn-secondary {
      color: var(--deep);
      background: rgba(255, 252, 247, .78);
      border-color: rgba(185, 28, 60, .26);
    }

    .btn-secondary:hover,
    .btn-secondary:focus {
      color: var(--red);
      background: rgba(245, 158, 66, .12);
      border-color: rgba(185, 28, 60, .44);
    }

    .btn-dark {
      color: var(--warm-white);
      background: var(--deep);
      box-shadow: 0 16px 30px rgba(21, 32, 27, .22);
    }

    .btn-dark:hover {
      color: var(--warm-white);
      background: #0f1713;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      color: var(--warm-white);
      background: var(--deep);
      cursor: pointer;
    }

    .mobile-panel {
      pointer-events: auto;
      display: none;
      width: min(var(--max), calc(100% - 28px));
      margin: 10px auto 0;
      padding: 14px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background: rgba(255,252,247,.96);
      box-shadow: var(--shadow);
    }

    .mobile-panel.is-open {
      display: grid;
      gap: 8px;
    }

    .page-hero {
      position: relative;
      padding: 106px 0 80px;
      overflow: hidden;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 34px auto auto -70px;
      width: 290px;
      height: 290px;
      border-radius: 50%;
      background: rgba(247, 166, 184, .22);
      filter: blur(1px);
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: -130px;
      top: 36px;
      width: 420px;
      height: 420px;
      border-radius: 46%;
      background: linear-gradient(135deg, rgba(185,28,60,.13), rgba(245,158,66,.18));
      transform: rotate(12deg);
    }

    .hero-shell {
      position: relative;
      z-index: 2;
      border-radius: 42px;
      padding: 44px;
      color: var(--warm-white);
      background:
        radial-gradient(circle at 80% 20%, rgba(255, 225, 184, .22), transparent 28%),
        repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 8px, transparent 8px 22px),
        linear-gradient(135deg, #391323 0%, var(--purple) 38%, var(--red) 100%);
      box-shadow: var(--shadow-strong);
      overflow: hidden;
    }

    .hero-shell::after {
      content: "";
      position: absolute;
      right: 38px;
      bottom: -18px;
      width: 166px;
      height: 166px;
      border-radius: 50%;
      border: 2px dashed rgba(255, 244, 225, .36);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255, 252, 247, .13);
      border: 1px solid rgba(255,255,255,.22);
      color: var(--warm-white);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .04em;
    }

    .eyebrow.light {
      color: var(--red);
      background: rgba(216, 58, 46, .08);
      border-color: rgba(216, 58, 46, .18);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin: 20px 0 20px;
      max-width: 720px;
      font-size: clamp(36px, 6vw, 72px);
      line-height: 1.08;
      letter-spacing: -.065em;
      font-weight: 950;
    }

    .hero-subtitle {
      max-width: 690px;
      color: rgba(255, 252, 247, .86);
      font-size: 18px;
      line-height: 1.85;
      margin-bottom: 22px;
    }

    .hero-points {
      display: grid;
      gap: 10px;
      margin: 0 0 28px;
      padding: 0;
      list-style: none;
    }

    .hero-points li {
      position: relative;
      padding-left: 28px;
      color: rgba(255, 252, 247, .9);
      font-weight: 750;
    }

    .hero-points li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      width: 20px;
      height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--deep);
      background: var(--apricot);
      border-radius: 50%;
      font-size: 12px;
      font-weight: 900;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 22px;
    }

    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      color: rgba(255,252,247,.82);
      font-size: 13px;
      font-weight: 800;
    }

    .trust-strip span {
      padding: 7px 10px;
      border: 1px dashed rgba(255,255,255,.28);
      border-radius: 999px;
      background: rgba(255,255,255,.08);
    }

    .hero-memo {
      position: relative;
      padding: 22px;
      border-radius: 28px;
      color: var(--ink);
      background: rgba(255, 252, 247, .94);
      box-shadow: 0 20px 46px rgba(0,0,0,.16);
      transform: rotate(1deg);
    }

    .hero-memo::before {
      content: "二区";
      position: absolute;
      right: 20px;
      top: -16px;
      padding: 7px 15px;
      color: var(--warm-white);
      background: var(--orange);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 950;
      box-shadow: 0 10px 20px rgba(245, 158, 66, .24);
    }

    .memo-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }

    .memo-title strong {
      font-size: 22px;
      line-height: 1.25;
      letter-spacing: -.03em;
    }

    .memo-grid {
      display: grid;
      gap: 12px;
    }

    .memo-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 13px;
      border-radius: 18px;
      background: var(--paper);
      border: 1px solid rgba(117, 64, 37, .1);
    }

    .memo-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      color: var(--warm-white);
      border-radius: 12px;
      background: var(--red);
      font-size: 13px;
      font-weight: 950;
    }

    .memo-item h3 {
      margin: 0 0 4px;
      font-size: 16px;
      font-weight: 950;
    }

    .memo-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .section {
      padding: 86px 0;
    }

    .section.tight {
      padding-top: 48px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 26px;
      margin-bottom: 32px;
    }

    .section-head h2 {
      margin: 10px 0 0;
      max-width: 680px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.15;
      letter-spacing: -.05em;
      font-weight: 950;
      color: var(--deep);
    }

    .section-head p {
      max-width: 460px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 13px;
      border-radius: 999px;
      color: var(--deep);
      background: rgba(255, 252, 247, .76);
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 900;
    }

    .tag.red {
      color: var(--red);
      background: rgba(216,58,46,.08);
      border-color: rgba(216,58,46,.2);
    }

    .tag.green {
      color: var(--green);
      background: rgba(47,125,109,.1);
      border-color: rgba(47,125,109,.2);
    }

    .matrix-card,
    .timeline-card,
    .compare-card,
    .notice-card,
    .cta-panel,
    .faq-wrap {
      border: 1px solid var(--line);
      background: rgba(255, 252, 247, .78);
      box-shadow: var(--shadow);
    }

    .matrix-card {
      position: relative;
      min-height: 100%;
      padding: 28px;
      border-radius: 28px;
      overflow: hidden;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }

    .matrix-card:hover {
      transform: translateY(-5px);
      border-color: rgba(185,28,60,.28);
      box-shadow: 0 24px 58px rgba(120,45,20,.18);
    }

    .matrix-card.featured {
      color: var(--warm-white);
      background:
        radial-gradient(circle at 84% 20%, rgba(245,158,66,.34), transparent 32%),
        linear-gradient(135deg, var(--deep), #28141B 52%, var(--purple));
      border-color: rgba(255,255,255,.16);
    }

    .matrix-card.featured p,
    .matrix-card.featured .meta-line {
      color: rgba(255,252,247,.78);
    }

    .matrix-card h3 {
      margin: 14px 0 10px;
      font-size: 24px;
      line-height: 1.25;
      letter-spacing: -.035em;
      font-weight: 950;
    }

    .matrix-card p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 18px;
    }

    .meta-line {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
    }

    .mini-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--red);
      background: rgba(216,58,46,.08);
      border: 1px solid rgba(216,58,46,.18);
      font-size: 13px;
      font-weight: 950;
    }

    .mini-btn:hover {
      color: var(--warm-white);
      background: var(--red);
      transform: translateY(-2px);
    }

    .matrix-card.featured .mini-btn {
      color: var(--deep);
      background: var(--apricot);
      border-color: transparent;
    }

    .matrix-card.featured .mini-btn:hover {
      color: var(--warm-white);
      background: var(--red-bright);
    }

    .stamp-badge {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 11px;
      border-radius: 999px;
      color: var(--red);
      background: rgba(255, 225, 184, .56);
      border: 1px dashed rgba(185,28,60,.28);
      font-size: 12px;
      font-weight: 950;
    }

    .timeline-section {
      position: relative;
      background:
        linear-gradient(180deg, rgba(255,225,184,.38), rgba(255,252,247,.32)),
        radial-gradient(circle at 16% 20%, rgba(185,28,60,.08), transparent 28%);
      border-block: 1px solid rgba(117,64,37,.1);
    }

    .timeline-wrap {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .timeline-card {
      position: relative;
      display: grid;
      grid-template-columns: 150px 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 24px;
      border-radius: 26px;
      transition: transform var(--ease), box-shadow var(--ease);
    }

    .timeline-card:hover {
      transform: translateX(4px);
      box-shadow: 0 22px 50px rgba(120,45,20,.16);
    }

    .date-chip {
      width: fit-content;
      padding: 9px 13px;
      border-radius: 16px;
      color: var(--warm-white);
      background: var(--purple);
      font-size: 13px;
      font-weight: 950;
    }

    .timeline-card h3 {
      margin: 0 0 6px;
      font-size: 22px;
      letter-spacing: -.03em;
      font-weight: 950;
    }

    .timeline-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .side-label {
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--green);
      background: rgba(47,125,109,.1);
      border: 1px solid rgba(47,125,109,.18);
      font-size: 12px;
      font-weight: 950;
      white-space: nowrap;
    }

    .compare-grid {
      align-items: stretch;
    }

    .compare-card {
      height: 100%;
      padding: 30px;
      border-radius: 30px;
    }

    .compare-card.zone-two {
      border-color: rgba(185,28,60,.24);
      background:
        radial-gradient(circle at 86% 12%, rgba(247,166,184,.28), transparent 28%),
        rgba(255, 252, 247, .86);
    }

    .compare-card h3 {
      margin-bottom: 16px;
      font-size: 28px;
      letter-spacing: -.04em;
      font-weight: 950;
    }

    .check-list {
      display: grid;
      gap: 13px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 28px;
      color: var(--muted);
      line-height: 1.65;
    }

    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .5em;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: inset 0 0 0 4px rgba(255,255,255,.62);
    }

    .notice-band {
      color: var(--warm-white);
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 10px, transparent 10px 22px),
        linear-gradient(135deg, var(--deep), #231819);
    }

    .notice-card {
      height: 100%;
      padding: 26px;
      border-radius: 28px;
      color: var(--warm-white);
      background: rgba(255,255,255,.075);
      border-color: rgba(255,255,255,.14);
      box-shadow: none;
    }

    .notice-card h3 {
      font-size: 23px;
      font-weight: 950;
      margin-bottom: 10px;
    }

    .notice-card p {
      color: rgba(255,252,247,.76);
      margin: 0;
    }

    .notice-card .stamp-badge {
      color: var(--deep);
      background: var(--apricot);
      border-color: transparent;
      margin-bottom: 14px;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: 38px;
      padding: 42px;
      background:
        radial-gradient(circle at 92% 18%, rgba(245,158,66,.26), transparent 30%),
        linear-gradient(135deg, rgba(255,252,247,.95), rgba(255,225,184,.58));
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -46px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 2px dashed rgba(185,28,60,.25);
    }

    .cta-panel h2 {
      margin-bottom: 12px;
      font-size: clamp(30px, 4vw, 46px);
      letter-spacing: -.05em;
      font-weight: 950;
    }

    .cta-panel p {
      max-width: 680px;
      color: var(--muted);
      margin-bottom: 24px;
    }

    .remind-form {
      display: flex;
      gap: 12px;
      max-width: 680px;
      position: relative;
      z-index: 2;
    }

    .remind-form input {
      flex: 1;
      height: 52px;
      margin: 0;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid rgba(117,64,37,.22);
      background: rgba(255,252,247,.86);
      box-shadow: none;
    }

    .faq-wrap {
      border-radius: 30px;
      overflow: hidden;
      background: rgba(255,252,247,.82);
    }

    .accordion {
      margin: 0;
      background: transparent;
    }

    .accordion-item {
      border-bottom: 1px solid var(--line);
    }

    .accordion-item:last-child {
      border-bottom: 0;
    }

    .accordion-title {
      position: relative;
      display: block;
      padding: 22px 58px 22px 24px;
      border: 0 !important;
      color: var(--deep);
      background: transparent;
      font-size: 17px;
      font-weight: 950;
      line-height: 1.45;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--red);
      background: rgba(216,58,46,.045);
    }

    .accordion-title::before {
      right: 24px;
      margin-top: -12px;
      font-size: 26px;
      color: var(--red);
    }

    .accordion-content {
      padding: 0 24px 24px;
      border: 0 !important;
      background: transparent;
      color: var(--muted);
      line-height: 1.8;
    }

    .site-footer {
      padding: 70px 0 30px;
      color: rgba(255,252,247,.82);
      background:
        radial-gradient(circle at 86% 0%, rgba(245,158,66,.18), transparent 28%),
        linear-gradient(135deg, #17110F, var(--deep));
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr .8fr 1.1fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      color: var(--warm-white);
      font-size: 18px;
      font-weight: 950;
    }

    .site-footer p {
      max-width: 480px;
      color: rgba(255,252,247,.68);
      margin: 0;
    }

    .footer-title {
      margin: 0 0 14px;
      color: var(--warm-white);
      font-size: 17px;
      font-weight: 950;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255,252,247,.74);
      width: fit-content;
      font-weight: 750;
    }

    .footer-links a:hover {
      color: var(--orange);
      transform: translateX(3px);
    }

    .footer-form {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .footer-form input {
      min-width: 0;
      flex: 1;
      height: 48px;
      margin: 0;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      color: var(--warm-white);
      box-shadow: none;
    }

    .footer-form input::placeholder {
      color: rgba(255,252,247,.52);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 24px;
      color: rgba(255,252,247,.58);
      font-size: 13px;
    }

    @media (max-width: 1120px) {
      .brand {
        min-width: auto;
      }

      .brand-text strong {
        max-width: 170px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .search-capsule {
        min-width: 180px;
      }

      .nav-links a {
        padding-inline: 12px;
      }
    }

    @media (max-width: 960px) {
      .site-header {
        top: 8px;
        padding-inline: 14px;
      }

      .dock-nav {
        gap: 10px;
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
      }

      .brand-text strong {
        max-width: none;
      }

      .page-hero {
        padding-top: 76px;
      }

      .hero-shell {
        padding: 30px;
        border-radius: 32px;
      }

      .section {
        padding: 66px 0;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 12px;
      }

      .timeline-card {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 640px) {
      .campaign-inner {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 2px;
      }

      .container {
        width: min(100% - 28px, var(--max));
      }

      .dock-nav {
        padding: 8px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
      }

      .brand-text strong {
        font-size: 13px;
        max-width: 176px;
      }

      .brand-text span {
        font-size: 11px;
      }

      .page-hero {
        padding: 58px 0 48px;
      }

      .hero-shell {
        padding: 24px;
      }

      h1 {
        font-size: 38px;
      }

      .hero-subtitle {
        font-size: 16px;
      }

      .hero-actions .btn,
      .remind-form .btn,
      .footer-form .btn {
        width: 100%;
      }

      .hero-memo {
        margin-top: 24px;
        transform: none;
      }

      .section {
        padding: 54px 0;
      }

      .matrix-card,
      .compare-card,
      .notice-card,
      .cta-panel {
        padding: 22px;
        border-radius: 24px;
      }

      .remind-form,
      .footer-form {
        flex-direction: column;
      }

      .remind-form input,
      .footer-form input {
        width: 100%;
      }

      .accordion-title {
        padding: 18px 48px 18px 18px;
        font-size: 16px;
      }

      .accordion-content {
        padding: 0 18px 20px;
      }
    }
