/* roulang page: index */
:root{
      --green-950:#061b14;
      --green-900:#0b2d22;
      --green-800:#123d2d;
      --green-700:#1d5a40;
      --green-600:#26704d;
      --green-100:#e8f2eb;
      --ivory:#fffaf0;
      --ivory-2:#f8f2e5;
      --champagne:#d6b56d;
      --champagne-soft:rgba(214,181,109,.34);
      --copper:#9f5d4f;
      --text:#17211c;
      --muted:#657267;
      --line:rgba(20,70,49,.14);
      --white:rgba(255,255,255,.92);
      --radius-xl:30px;
      --radius-lg:22px;
      --shadow-soft:0 22px 60px rgba(7,31,22,.12);
      --shadow-card:0 18px 42px rgba(11,45,34,.10);
      --container: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(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(214,181,109,.18), transparent 28%),
        linear-gradient(180deg,#fbf7ed 0%,#f4f7f1 46%,#fffaf0 100%);
      line-height:1.82;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:3px solid rgba(214,181,109,.72);outline-offset:3px}
    .site-container{width:min(var(--container),calc(100% - 40px));margin-inline:auto}
    .site-header{
      position:fixed;
      top:18px;
      left:0;
      right:0;
      z-index:50;
      transition:all .28s ease;
      pointer-events:none;
    }
    .nav-shell{
      pointer-events:auto;
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
      border:1px solid rgba(255,255,255,.32);
      background:rgba(8,36,27,.42);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      border-radius:999px;
      box-shadow:0 18px 44px rgba(0,0,0,.16);
      padding:10px 12px 10px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .site-header.scrolled{top:10px}
    .site-header.scrolled .nav-shell{
      background:rgba(255,250,240,.95);
      border-color:rgba(29,90,64,.14);
      box-shadow:0 16px 36px rgba(11,45,34,.12);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      color:#fffaf0;
      font-weight:800;
      letter-spacing:.01em;
    }
    .site-header.scrolled .brand{color:var(--green-900)}
    .brand-mark{
      width:34px;height:34px;border-radius:50%;
      display:grid;place-items:center;
      background:linear-gradient(145deg,var(--champagne),#f2dfaa);
      color:var(--green-950);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.45),0 8px 18px rgba(0,0,0,.14);
      font-size:15px;
    }
    .desktop-nav{display:flex;align-items:center;gap:4px}
    .desktop-nav a{
      color:rgba(255,250,240,.88);
      padding:10px 14px;
      border-radius:999px;
      font-size:14px;
      transition:all .22s ease;
      white-space:nowrap;
    }
    .site-header.scrolled .desktop-nav a{color:var(--green-800)}
    .desktop-nav a:hover,.desktop-nav a.active{
      background:rgba(214,181,109,.18);
      color:#fffaf0;
      box-shadow:inset 0 0 0 1px rgba(214,181,109,.25);
    }
    .site-header.scrolled .desktop-nav a:hover,.site-header.scrolled .desktop-nav a.active{
      background:var(--green-100);
      color:var(--green-900);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .nav-search{
      height:40px;
      width:220px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.26);
      background:rgba(255,255,255,.12);
      color:#fffaf0;
      padding:0 15px;
      transition:all .2s ease;
    }
    .nav-search::placeholder{color:rgba(255,250,240,.66)}
    .site-header.scrolled .nav-search{
      background:#fff;
      color:var(--text);
      border-color:rgba(29,90,64,.16);
    }
    .site-header.scrolled .nav-search::placeholder{color:#7b867c}
    .nav-search:focus{
      border-color:var(--champagne);
      box-shadow:0 0 0 5px rgba(214,181,109,.18);
      outline:none;
    }
    .age-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:40px;
      padding:0 15px;
      border-radius:999px;
      border:1px solid rgba(214,181,109,.58);
      color:#fffaf0;
      background:rgba(214,181,109,.16);
      font-size:14px;
      font-weight:700;
      transition:all .22s ease;
      white-space:nowrap;
    }
    .site-header.scrolled .age-pill{
      color:var(--green-900);
      background:#fff7dc;
    }
    .age-pill:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(0,0,0,.12)}
    .menu-toggle{
      display:none;
      width:42px;height:42px;border-radius:999px;
      border:1px solid rgba(214,181,109,.42);
      background:rgba(255,255,255,.12);
      color:#fffaf0;
      align-items:center;justify-content:center;
    }
    .site-header.scrolled .menu-toggle{color:var(--green-900);background:#fff}
    .mobile-panel{
      display:none;
      position:fixed;
      top:78px;
      left:20px;
      right:20px;
      z-index:49;
      border-radius:24px;
      background:rgba(255,250,240,.96);
      backdrop-filter:blur(18px);
      border:1px solid rgba(29,90,64,.14);
      box-shadow:var(--shadow-soft);
      padding:16px;
    }
    .mobile-panel.open{display:block}
    .mobile-panel a{
      display:block;
      padding:13px 14px;
      border-radius:16px;
      color:var(--green-900);
      font-weight:700;
    }
    .mobile-panel a.active,.mobile-panel a:hover{background:var(--green-100)}
    .mobile-panel input{
      width:100%;
      margin-top:10px;
      border:1px solid var(--line);
      border-radius:18px;
      padding:12px 14px;
      background:#fff;
    }

    .hero{
      position:relative;
      padding:118px 0 48px;
      overflow:hidden;
      background:
        linear-gradient(115deg,rgba(6,27,20,.96) 0%,rgba(13,55,39,.94) 54%,rgba(250,245,232,.92) 54.2%,rgba(250,245,232,.96) 100%);
      min-height:560px;
      color:#fffaf0;
    }
    .hero:before{
      content:"";
      position:absolute;inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:64px 64px;
      mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.62) 55%,transparent 80%);
      pointer-events:none;
    }
    .hero:after{
      content:"";
      position:absolute;
      width:580px;height:180px;
      right:-130px;top:128px;
      border:1px solid rgba(214,181,109,.34);
      border-radius:999px;
      transform:rotate(-13deg);
      pointer-events:none;
    }
    .hero-inner{position:relative;z-index:1}
    .top-ribbon{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      width:100%;
      border-radius:26px;
      border:1px solid rgba(214,181,109,.28);
      background:rgba(255,250,240,.09);
      padding:14px 18px;
      margin-bottom:34px;
      backdrop-filter:blur(10px);
    }
    .ribbon-left{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      font-weight:800;
      color:var(--green-950);
      background:linear-gradient(135deg,#f3dfaa,var(--champagne));
      line-height:1.2;
    }
    .soft-badge{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      color:#f8ead0;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.08);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
      gap:38px;
      align-items:stretch;
    }
    .hero-copy{
      padding:6px 0 20px;
      max-width:720px;
    }
    h1{
      font-size:clamp(34px,5vw,62px);
      line-height:1.1;
      letter-spacing:-.04em;
      font-weight:900;
      margin:0 0 22px;
    }
    .hero-copy p{
      max-width:680px;
      font-size:18px;
      line-height:1.9;
      color:rgba(255,250,240,.84);
      margin:0 0 26px;
    }
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 20px;
      border-radius:999px;
      font-weight:800;
      transition:all .22s ease;
      border:1px solid transparent;
      line-height:1.2;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--green-800),var(--green-600));
      color:#fffaf0;
      border-color:rgba(214,181,109,.52);
      box-shadow:0 14px 30px rgba(6,27,20,.22), inset 0 1px 0 rgba(255,255,255,.18);
    }
    .btn-primary:hover{transform:translateY(-2px);filter:brightness(1.05);box-shadow:0 20px 40px rgba(6,27,20,.26)}
    .btn-secondary{
      background:rgba(255,250,240,.12);
      color:#fffaf0;
      border-color:rgba(255,250,240,.35);
    }
    .btn-secondary:hover{background:rgba(255,250,240,.2);transform:translateY(-1px)}
    .btn-light{
      background:#fffaf0;
      color:var(--green-900);
      border-color:rgba(29,90,64,.12);
      box-shadow:0 12px 28px rgba(11,45,34,.1);
    }
    .btn-light:hover{transform:translateY(-2px);background:#fff4d7}
    .hero-pass{
      color:var(--green-950);
      border-radius:var(--radius-xl);
      background:
        linear-gradient(145deg,rgba(255,250,240,.96),rgba(246,239,221,.96));
      border:1px solid rgba(214,181,109,.45);
      box-shadow:var(--shadow-soft);
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .hero-pass:before{
      content:"";
      position:absolute;right:-70px;top:-70px;width:200px;height:200px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(214,181,109,.28),transparent 68%);
    }
    .pass-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:18px;position:relative}
    .pass-title{font-size:21px;font-weight:900;color:var(--green-900);line-height:1.3}
    .pass-note{color:var(--muted);font-size:14px;margin-top:6px}
    .confirm-box{
      border:1px solid rgba(29,90,64,.14);
      border-radius:22px;
      padding:16px;
      background:rgba(255,255,255,.68);
      margin:16px 0;
    }
    .confirm-box label{display:flex;gap:10px;align-items:flex-start;color:var(--green-900);font-weight:700}
    .confirm-box input{margin-top:7px;accent-color:var(--green-700)}
    .entry-mini-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-top:16px;
    }
    .mini-entry{
      border-radius:18px;
      border:1px solid rgba(29,90,64,.12);
      padding:13px;
      background:#fff;
      transition:all .2s ease;
    }
    .mini-entry:hover{transform:translateY(-2px);border-color:var(--champagne);box-shadow:0 12px 24px rgba(11,45,34,.08)}
    .mini-entry strong{display:block;color:var(--green-900);font-size:14px}
    .mini-entry span{display:block;color:var(--muted);font-size:12px;margin-top:2px}

    main section{position:relative}
    .section{padding:88px 0}
    .section.alt{background:rgba(232,242,235,.58)}
    .section.dark{
      background:
        radial-gradient(circle at 20% 10%,rgba(214,181,109,.16),transparent 30%),
        linear-gradient(135deg,var(--green-950),var(--green-800));
      color:#fffaf0;
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green-700);
      font-weight:900;
      font-size:14px;
      margin-bottom:10px;
    }
    .section.dark .section-kicker{color:#f2dfaa}
    h2{
      font-size:clamp(27px,3.2vw,40px);
      line-height:1.24;
      letter-spacing:-.025em;
      margin:0;
      font-weight:900;
      color:var(--green-950);
    }
    .section.dark h2{color:#fffaf0}
    .section-desc{
      max-width:620px;
      color:var(--muted);
      margin:12px 0 0;
      font-size:16.5px;
      line-height:1.85;
    }
    .section.dark .section-desc{color:rgba(255,250,240,.72)}
    .entry-matrix{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      grid-auto-rows:minmax(170px,auto);
      gap:22px;
    }
    .matrix-card{
      border-radius:var(--radius-xl);
      padding:24px;
      background:rgba(255,250,240,.9);
      border:1px solid var(--line);
      box-shadow:var(--shadow-card);
      transition:all .24s ease;
      overflow:hidden;
      position:relative;
    }
    .matrix-card:hover,.feature-card:hover,.plan-card:hover,.news-card:hover{
      transform:translateY(-4px);
      box-shadow:0 24px 54px rgba(11,45,34,.14);
      border-color:rgba(214,181,109,.6);
    }
    .matrix-card.large{
      grid-row:span 2;
      background:
        linear-gradient(140deg,rgba(255,250,240,.95),rgba(232,242,235,.92)),
        radial-gradient(circle at 80% 20%,rgba(214,181,109,.2),transparent 42%);
    }
    .icon{
      width:44px;height:44px;border-radius:16px;
      display:grid;place-items:center;
      background:var(--green-100);
      color:var(--green-800);
      font-size:21px;
      margin-bottom:18px;
    }
    .matrix-card h3,.feature-card h3,.plan-card h3,.news-card h3{
      margin:0 0 9px;
      color:var(--green-950);
      font-size:21px;
      font-weight:900;
      line-height:1.35;
    }
    .matrix-card p,.feature-card p,.plan-card p,.news-card p{
      margin:0;
      color:var(--muted);
      line-height:1.78;
    }
    .tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:6px 10px;
      color:var(--green-800);
      background:#edf5ef;
      border:1px solid rgba(29,90,64,.1);
      font-size:13px;
      font-weight:700;
    }

    .timeline{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      position:relative;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:8%;
      right:8%;
      top:38px;
      height:1px;
      background:linear-gradient(90deg,transparent,var(--champagne),transparent);
      z-index:0;
    }
    .time-card{
      position:relative;
      z-index:1;
      padding:22px;
      border-radius:24px;
      background:rgba(255,250,240,.92);
      border:1px solid var(--line);
      box-shadow:var(--shadow-card);
      transition:all .22s ease;
    }
    .time-card:hover{border-color:var(--champagne);transform:translateY(-3px)}
    .time-num{
      width:44px;height:44px;border-radius:999px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--green-800),var(--green-600));
      color:#fffaf0;
      border:1px solid var(--champagne);
      font-weight:900;
      margin-bottom:16px;
    }
    .time-card h3{margin:0 0 8px;font-size:18px;color:var(--green-950);font-weight:900}
    .time-card p{margin:0;color:var(--muted);font-size:15px;line-height:1.72}

    .news-layout{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:26px;
      align-items:start;
    }
    .news-list{
      border-radius:var(--radius-xl);
      background:#fffaf0;
      border:1px solid var(--line);
      box-shadow:var(--shadow-card);
      overflow:hidden;
    }
    .news-item{
      display:grid;
      grid-template-columns:110px 1fr auto;
      gap:18px;
      padding:22px;
      border-bottom:1px solid rgba(29,90,64,.1);
      align-items:center;
      transition:all .22s ease;
    }
    .news-item:last-child{border-bottom:0}
    .news-item:hover{background:#f7f0df}
    .news-date{
      color:var(--champagne);
      font-weight:900;
      font-size:13px;
    }
    .news-item a{font-size:18px;font-weight:900;color:var(--green-950)}
    .news-item p{margin:5px 0 0;color:var(--muted);font-size:14px;line-height:1.65}
    .arrow{color:var(--green-700);font-weight:900}
    .news-card{
      border-radius:var(--radius-xl);
      padding:28px;
      background:
        linear-gradient(150deg,#0b2d22,#1d5a40);
      color:#fffaf0;
      border:1px solid rgba(214,181,109,.38);
      box-shadow:var(--shadow-soft);
      transition:all .24s ease;
    }
    .news-card h3{color:#fffaf0}
    .news-card p{color:rgba(255,250,240,.72)}
    .news-card .tag{background:rgba(255,255,255,.1);color:#f2dfaa;border-color:rgba(214,181,109,.22)}

    .feature-layout{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:24px;
      align-items:stretch;
    }
    .feature-card{
      border-radius:var(--radius-xl);
      padding:26px;
      background:rgba(255,250,240,.92);
      border:1px solid var(--line);
      box-shadow:var(--shadow-card);
      transition:all .24s ease;
    }
    .feature-card.major{
      min-height:100%;
      background:
        radial-gradient(circle at 88% 12%,rgba(214,181,109,.25),transparent 34%),
        linear-gradient(155deg,#fffaf0,#e8f2eb);
    }
    .feature-small-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
    .feature-list{list-style:none;padding:0;margin:20px 0 0;display:grid;gap:12px}
    .feature-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--green-900);
      background:rgba(255,255,255,.62);
      border:1px solid rgba(29,90,64,.08);
      border-radius:16px;
      padding:12px;
    }

    .plan-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
    .plan-card{
      border-radius:var(--radius-xl);
      padding:27px;
      background:#fffaf0;
      border:1px solid var(--line);
      box-shadow:var(--shadow-card);
      transition:all .24s ease;
      display:flex;
      flex-direction:column;
      min-height:410px;
    }
    .plan-card.recommended{
      transform:translateY(-10px);
      border-color:rgba(214,181,109,.72);
      background:
        linear-gradient(#fffaf0,#fffaf0) padding-box,
        linear-gradient(135deg,var(--champagne),rgba(29,90,64,.35)) border-box;
    }
    .plan-card.recommended:hover{transform:translateY(-14px)}
    .plan-label{
      align-self:flex-start;
      border-radius:999px;
      padding:6px 10px;
      background:#fff0c2;
      color:var(--green-900);
      font-size:13px;
      font-weight:900;
      margin-bottom:16px;
    }
    .plan-card ul{list-style:none;padding:0;margin:18px 0 24px;display:grid;gap:11px}
    .plan-card li{display:flex;gap:10px;color:var(--green-900);line-height:1.6}
    .plan-card li:before{content:"✓";color:var(--green-700);font-weight:900}
    .plan-card .btn{margin-top:auto}

    .track-wrap{overflow:hidden}
    .poster-track{
      display:grid;
      grid-template-columns:repeat(5,minmax(190px,1fr));
      gap:18px;
    }
    .poster-card{
      min-height:245px;
      border-radius:28px;
      padding:18px;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      color:#fffaf0;
      border:1px solid rgba(214,181,109,.34);
      background:
        linear-gradient(160deg,rgba(6,27,20,.92),rgba(29,90,64,.84)),
        radial-gradient(circle at 70% 16%,rgba(214,181,109,.45),transparent 36%);
      box-shadow:var(--shadow-card);
      transition:all .24s ease;
    }
    .poster-card:before{
      content:"";
      position:absolute;inset:0;
      background:
        linear-gradient(120deg,transparent 0 38%,rgba(255,250,240,.12) 38% 39%,transparent 39%),
        radial-gradient(circle at 20% 90%,rgba(159,93,79,.26),transparent 35%);
      pointer-events:none;
    }
    .poster-card:hover{transform:translateY(-5px) scale(1.01);box-shadow:0 24px 52px rgba(6,27,20,.18)}
    .poster-card > *{position:relative}
    .poster-card strong{font-size:18px;line-height:1.35}
    .poster-card span{font-size:13px;color:#f2dfaa;font-weight:800}
    .poster-card p{font-size:14px;color:rgba(255,250,240,.74);margin:12px 0 0;line-height:1.65}

    .faq-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:28px;align-items:start}
    .faq-list{display:grid;gap:13px}
    .faq-item{
      border-radius:22px;
      background:#fffaf0;
      border:1px solid var(--line);
      box-shadow:0 12px 28px rgba(11,45,34,.06);
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      text-align:left;
      gap:16px;
      border:0;
      background:transparent;
      padding:18px 20px;
      color:var(--green-950);
      font-weight:900;
    }
    .faq-answer{
      display:none;
      padding:0 20px 19px;
      color:var(--muted);
      border-left:3px solid var(--champagne);
      margin-left:20px;
      line-height:1.78;
    }
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .faq-question span:last-child{transform:rotate(45deg)}
    .faq-question span:last-child{transition:transform .2s ease;color:var(--green-700);font-size:22px}

    .final-cta{
      border-radius:36px;
      padding:40px;
      background:
        radial-gradient(circle at 15% 20%,rgba(214,181,109,.2),transparent 35%),
        linear-gradient(135deg,var(--green-950),var(--green-700));
      color:#fffaf0;
      border:1px solid rgba(214,181,109,.42);
      box-shadow:var(--shadow-soft);
      display:grid;
      grid-template-columns:1fr auto;
      gap:28px;
      align-items:center;
      overflow:hidden;
      position:relative;
    }
    .final-cta h2{color:#fffaf0;margin-bottom:12px}
    .final-cta p{color:rgba(255,250,240,.74);margin:0;max-width:760px}
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}

    .site-footer{
      padding:54px 0 28px;
      background:var(--green-950);
      color:rgba(255,250,240,.76);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,250,240,.12);
    }
    .footer-brand{
      color:#fffaf0;
      font-size:22px;
      font-weight:900;
      margin-bottom:12px;
    }
    .footer-grid p{margin:0;color:rgba(255,250,240,.68);max-width:520px}
    .footer-title{color:#f2dfaa;font-weight:900;margin-bottom:12px}
    .footer-links{display:grid;gap:8px}
    .footer-links a{transition:color .2s ease}
    .footer-links a:hover{color:#f2dfaa}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding-top:22px;
      font-size:14px;
      color:rgba(255,250,240,.55);
    }

    @media (max-width:1024px){
      .nav-search{display:none}
      .hero{
        background:
          linear-gradient(180deg,rgba(6,27,20,.96) 0%,rgba(13,55,39,.94) 68%,rgba(250,245,232,.96) 68.2%,rgba(250,245,232,.96) 100%);
      }
      .hero-grid,.news-layout,.feature-layout,.faq-grid,.final-cta{grid-template-columns:1fr}
      .entry-matrix{grid-template-columns:1fr 1fr}
      .matrix-card.large{grid-row:auto;grid-column:span 2}
      .timeline{grid-template-columns:1fr 1fr}
      .timeline:before{display:none}
      .plan-grid{grid-template-columns:1fr;gap:18px}
      .plan-card.recommended{transform:none}
      .plan-card.recommended:hover{transform:translateY(-4px)}
      .poster-track{grid-template-columns:repeat(3,minmax(180px,1fr))}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width:768px){
      .desktop-nav,.age-pill{display:none}
      .menu-toggle{display:flex}
      .nav-shell{padding:9px 10px 9px 14px}
      .brand span:last-child{font-size:14px}
      .site-container{width:min(100% - 28px,var(--container))}
      .hero{padding-top:104px;min-height:auto}
      .top-ribbon{align-items:flex-start;flex-direction:column;border-radius:22px}
      .hero-copy p{font-size:16px}
      .entry-matrix,.feature-small-grid,.footer-grid{grid-template-columns:1fr}
      .matrix-card.large{grid-column:auto}
      .timeline{grid-template-columns:1fr}
      .news-item{grid-template-columns:1fr;gap:7px}
      .poster-track{
        display:flex;
        overflow-x:auto;
        padding-bottom:10px;
        scroll-snap-type:x mandatory;
      }
      .poster-card{min-width:230px;scroll-snap-align:start}
      .section{padding:66px 0}
      .section-head{display:block}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .final-cta{padding:28px;border-radius:28px}
    }
    @media (max-width:520px){
      h1{font-size:34px}
      h2{font-size:27px}
      .entry-mini-grid{grid-template-columns:1fr}
      .hero-pass{padding:20px;border-radius:24px}
      .matrix-card,.feature-card,.plan-card{padding:22px;border-radius:24px}
      .copyright{display:block}
      .copyright span{display:block;margin-top:8px}
    }

/* roulang page: category2 */
:root{
      --green-950:#061f19;
      --green-900:#0b2f25;
      --green-800:#0f3b2f;
      --green-700:#14513f;
      --green-600:#1d6a53;
      --green-100:#e7f1ea;
      --green-50:#f2f8f4;
      --ivory:#fffaf0;
      --paper:#fffdf7;
      --champagne:#d7b56d;
      --champagne-soft:rgba(215,181,109,.35);
      --copper:#a45b4a;
      --text:#17231f;
      --muted:#66736e;
      --line:rgba(17,69,53,.14);
      --white-line:rgba(255,255,255,.22);
      --shadow:0 22px 60px rgba(11,47,37,.14);
      --shadow-soft:0 14px 36px rgba(36,54,48,.10);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --container: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(--text);
      background:
        radial-gradient(circle at 12% 4%, rgba(215,181,109,.16), transparent 28%),
        linear-gradient(180deg,#fffaf0 0%,#f5f8f1 42%,#fffdf7 100%);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    button,input,select{font:inherit}
    button{cursor:pointer}
    input,select{
      outline:none;
      border:1px solid var(--line);
      background:rgba(255,253,247,.86);
      color:var(--text);
      transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    input:focus,select:focus{
      border-color:rgba(29,106,83,.72);
      box-shadow:0 0 0 4px rgba(29,106,83,.12);
      background:#fff;
    }
    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }
    .site-header{
      position:fixed;
      top:18px;
      left:0;
      right:0;
      z-index:60;
      transition:top .25s ease;
      pointer-events:none;
    }
    .nav-shell{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:12px 14px;
      border:1px solid rgba(255,255,255,.22);
      border-radius:999px;
      background:rgba(10,45,36,.46);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      box-shadow:0 18px 46px rgba(6,31,25,.18);
      pointer-events:auto;
      transition:background .25s ease,border-color .25s ease,box-shadow .25s ease;
    }
    .site-header.scrolled .nav-shell{
      background:rgba(255,250,240,.94);
      border-color:rgba(17,69,53,.16);
      box-shadow:0 14px 40px rgba(11,47,37,.12);
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:#fffaf0;
      font-weight:800;
      letter-spacing:.01em;
      white-space:nowrap;
    }
    .site-header.scrolled .brand{color:var(--green-900)}
    .brand-mark{
      width:38px;
      height:38px;
      display:inline-grid;
      place-items:center;
      border-radius:50%;
      color:var(--green-950);
      background:linear-gradient(135deg,#f8e6b1,var(--champagne));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.5);
      font-weight:900;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:6px;
      padding:4px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .site-header.scrolled .desktop-nav{
      background:rgba(20,81,63,.06);
      border-color:rgba(20,81,63,.10);
    }
    .desktop-nav a{
      color:rgba(255,250,240,.82);
      padding:9px 15px;
      border-radius:999px;
      font-size:14px;
      transition:background .2s ease,color .2s ease,transform .2s ease;
    }
    .site-header.scrolled .desktop-nav a{color:var(--green-800)}
    .desktop-nav a:hover{
      color:#fff;
      background:rgba(255,255,255,.12);
      transform:translateY(-1px);
    }
    .site-header.scrolled .desktop-nav a:hover{background:rgba(20,81,63,.10);color:var(--green-950)}
    .desktop-nav a.active{
      color:var(--green-950);
      background:linear-gradient(135deg,#fff3c7,#d7b56d);
      box-shadow:0 8px 18px rgba(215,181,109,.22);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .nav-search{
      width:210px;
      height:40px;
      border-radius:999px;
      padding:0 15px;
      color:#fffaf0;
      background:rgba(255,255,255,.10);
      border-color:rgba(255,255,255,.18);
    }
    .nav-search::placeholder{color:rgba(255,250,240,.62)}
    .site-header.scrolled .nav-search{
      color:var(--green-900);
      background:#fffdf7;
      border-color:rgba(17,69,53,.14);
    }
    .site-header.scrolled .nav-search::placeholder{color:#7b8883}
    .age-pill,.btn-primary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 18px;
      border-radius:999px;
      color:#fffaf0;
      background:linear-gradient(135deg,var(--green-800),var(--green-600));
      border:1px solid rgba(215,181,109,.45);
      box-shadow:0 12px 28px rgba(11,47,37,.20);
      font-weight:700;
      transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
      white-space:nowrap;
    }
    .age-pill:hover,.btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(11,47,37,.26);
      filter:brightness(1.04);
    }
    .btn-secondary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:0 20px;
      border-radius:999px;
      color:var(--green-900);
      background:rgba(255,253,247,.88);
      border:1px solid rgba(20,81,63,.16);
      font-weight:800;
      transition:transform .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease;
    }
    .btn-secondary:hover{
      transform:translateY(-2px);
      background:#eef7f0;
      border-color:rgba(215,181,109,.55);
      box-shadow:0 14px 28px rgba(11,47,37,.10);
    }
    .menu-toggle{
      display:none;
      width:42px;
      height:42px;
      border:1px solid rgba(255,255,255,.18);
      border-radius:50%;
      color:#fffaf0;
      background:rgba(255,255,255,.08);
    }
    .site-header.scrolled .menu-toggle{
      color:var(--green-900);
      border-color:rgba(17,69,53,.15);
      background:rgba(20,81,63,.06);
    }
    .mobile-panel{
      display:none;
      width:min(var(--container), calc(100% - 40px));
      margin:10px auto 0;
      padding:14px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.22);
      background:rgba(10,45,36,.78);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      box-shadow:var(--shadow);
      pointer-events:auto;
    }
    .mobile-panel.open{display:grid;gap:10px}
    .mobile-panel a,.mobile-panel input{
      width:100%;
      padding:12px 14px;
      border-radius:16px;
      color:#fffaf0;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .mobile-panel a.active{
      color:var(--green-950);
      background:linear-gradient(135deg,#fff3c7,#d7b56d);
    }
    .hero-private{
      position:relative;
      padding:138px 0 72px;
      overflow:hidden;
      color:#fffaf0;
      background:
        radial-gradient(circle at 84% 16%, rgba(215,181,109,.26), transparent 28%),
        radial-gradient(circle at 18% 18%, rgba(126,168,130,.22), transparent 34%),
        linear-gradient(135deg,#061f19 0%,#0b3b2e 52%,#123a2f 100%);
    }
    .hero-private:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size:58px 58px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.9),rgba(0,0,0,.25));
      pointer-events:none;
    }
    .hero-private:after{
      content:"";
      position:absolute;
      right:-120px;
      top:64px;
      width:520px;
      height:520px;
      border:1px solid rgba(215,181,109,.28);
      border-radius:50%;
      transform:rotate(-16deg);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:minmax(0,1.02fr) minmax(360px,.78fr);
      gap:34px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      color:#ffe8ad;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(215,181,109,.30);
      font-size:13px;
      font-weight:800;
    }
    .hero-private h1{
      margin:18px 0 18px;
      font-size:clamp(34px,5.2vw,58px);
      line-height:1.12;
      letter-spacing:-.04em;
      max-width:850px;
      font-weight:900;
    }
    .hero-lead{
      max-width:760px;
      color:rgba(255,250,240,.82);
      font-size:18px;
      line-height:1.9;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
    .privacy-pass{
      position:relative;
      padding:24px;
      border-radius:30px;
      background:linear-gradient(180deg,rgba(255,253,247,.96),rgba(246,241,225,.90));
      color:var(--green-950);
      border:1px solid rgba(215,181,109,.45);
      box-shadow:0 26px 72px rgba(0,0,0,.22);
      overflow:hidden;
    }
    .privacy-pass:before{
      content:"";
      position:absolute;
      inset:auto -70px -90px auto;
      width:220px;
      height:220px;
      border-radius:50%;
      background:rgba(215,181,109,.20);
    }
    .pass-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:16px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .pass-title{font-size:20px;font-weight:900;line-height:1.35}
    .pass-badge{
      padding:6px 10px;
      border-radius:999px;
      background:rgba(20,81,63,.10);
      color:var(--green-800);
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .progress-card{
      padding:16px;
      border-radius:22px;
      background:#fffaf0;
      border:1px solid rgba(20,81,63,.10);
      position:relative;
      z-index:1;
    }
    .progress-label{
      display:flex;
      justify-content:space-between;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      margin-bottom:10px;
    }
    .progress-track{
      height:10px;
      border-radius:999px;
      background:#e8e2d3;
      overflow:hidden;
    }
    .progress-fill{
      width:76%;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--green-700),var(--champagne));
    }
    .pass-list{display:grid;gap:10px;margin:18px 0 0;padding:0;list-style:none;position:relative;z-index:1}
    .pass-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      background:rgba(20,81,63,.06);
      color:#31423c;
      font-size:14px;
    }
    .section{padding:78px 0}
    .section-alt{
      background:linear-gradient(180deg,rgba(231,241,234,.82),rgba(255,253,247,.72));
      border-top:1px solid rgba(17,69,53,.08);
      border-bottom:1px solid rgba(17,69,53,.08);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:28px;
    }
    .section-kicker{
      color:var(--green-700);
      font-size:13px;
      font-weight:900;
      margin-bottom:8px;
    }
    .section-title{
      margin:0;
      font-size:clamp(26px,3.8vw,40px);
      line-height:1.22;
      letter-spacing:-.03em;
      color:var(--green-950);
      font-weight:900;
    }
    .section-desc{
      max-width:650px;
      color:var(--muted);
      margin:10px 0 0;
      font-size:16px;
    }
    .notice-band{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:18px;
      align-items:center;
      padding:18px 20px;
      border-radius:26px;
      background:#fffaf0;
      border:1px solid rgba(164,91,74,.24);
      box-shadow:var(--shadow-soft);
    }
    .notice-icon{
      width:46px;
      height:46px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fffaf0;
      background:linear-gradient(135deg,var(--copper),#7b3f34);
      font-size:22px;
    }
    .notice-band strong{display:block;color:var(--green-950);font-size:18px}
    .notice-band p{margin:2px 0 0;color:var(--muted)}
    .layout{
      display:grid;
      grid-template-columns:300px minmax(0,1fr);
      gap:30px;
      align-items:start;
    }
    .filter-sidebar{
      position:sticky;
      top:112px;
      border-radius:28px;
      background:rgba(255,253,247,.86);
      border:1px solid rgba(20,81,63,.13);
      box-shadow:var(--shadow-soft);
      padding:20px;
    }
    .filter-title{
      font-weight:900;
      color:var(--green-950);
      margin-bottom:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
    }
    .filter-group{padding:16px 0;border-top:1px solid rgba(17,69,53,.10)}
    .filter-group:first-of-type{border-top:0;padding-top:0}
    .filter-label{
      display:block;
      color:var(--muted);
      font-size:13px;
      font-weight:800;
      margin-bottom:10px;
    }
    .filter-chips{display:flex;flex-wrap:wrap;gap:8px}
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:7px 11px;
      border-radius:999px;
      border:1px solid rgba(20,81,63,.13);
      background:#fffaf0;
      color:var(--green-800);
      font-size:13px;
      font-weight:800;
      transition:transform .2s ease,background .2s ease,border-color .2s ease;
    }
    .chip:hover,.chip.active{
      transform:translateY(-1px);
      background:var(--green-800);
      color:#fffaf0;
      border-color:var(--green-800);
    }
    .filter-input,.filter-select{
      width:100%;
      min-height:44px;
      border-radius:16px;
      padding:0 13px;
    }
    .content-stack{display:grid;gap:18px}
    .content-item{
      position:relative;
      display:grid;
      grid-template-columns:118px 1fr auto;
      gap:18px;
      align-items:center;
      padding:18px;
      border-radius:28px;
      background:rgba(255,253,247,.92);
      border:1px solid rgba(20,81,63,.12);
      box-shadow:0 10px 28px rgba(11,47,37,.07);
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
      overflow:hidden;
    }
    .content-item:hover{
      transform:translateY(-3px);
      border-color:rgba(215,181,109,.52);
      box-shadow:0 20px 44px rgba(11,47,37,.12);
    }
    .abstract-cover{
      height:96px;
      border-radius:22px;
      background:
        linear-gradient(135deg,rgba(11,47,37,.92),rgba(29,106,83,.72)),
        radial-gradient(circle at 70% 30%,rgba(215,181,109,.55),transparent 42%);
      position:relative;
      overflow:hidden;
    }
    .abstract-cover:before,.abstract-cover:after{
      content:"";
      position:absolute;
      border:1px solid rgba(255,250,240,.22);
      border-radius:999px;
      transform:rotate(-18deg);
    }
    .abstract-cover:before{width:124px;height:58px;left:-28px;top:12px}
    .abstract-cover:after{width:92px;height:92px;right:-36px;bottom:-32px}
    .item-title{
      margin:0 0 8px;
      color:var(--green-950);
      font-weight:900;
      font-size:20px;
      line-height:1.38;
    }
    .item-desc{margin:0;color:var(--muted);font-size:15px;line-height:1.75}
    .tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
    .tag{
      display:inline-flex;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(215,181,109,.14);
      color:#715621;
      font-size:12px;
      font-weight:800;
    }
    .item-action{white-space:nowrap}
    .mini-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      color:var(--green-900);
      background:#eef7f0;
      border:1px solid rgba(20,81,63,.14);
      font-weight:900;
      font-size:14px;
      transition:background .2s ease,transform .2s ease;
    }
    .mini-btn:hover{background:#e0efdf;transform:translateY(-1px)}
    .guide-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }
    .guide-card{
      padding:24px;
      border-radius:28px;
      background:#fffdf7;
      border:1px solid rgba(20,81,63,.12);
      box-shadow:var(--shadow-soft);
    }
    .guide-card.wide{
      grid-column:span 2;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      align-items:center;
      background:
        linear-gradient(135deg,rgba(11,47,37,.96),rgba(20,81,63,.90)),
        radial-gradient(circle at 85% 20%,rgba(215,181,109,.28),transparent 35%);
      color:#fffaf0;
      border-color:rgba(215,181,109,.28);
    }
    .guide-card h3{margin:0 0 10px;font-size:21px;line-height:1.35;font-weight:900;color:var(--green-950)}
    .guide-card.wide h3{color:#fffaf0;font-size:28px}
    .guide-card p{margin:0;color:var(--muted)}
    .guide-card.wide p{color:rgba(255,250,240,.78)}
    .check-list{display:grid;gap:10px;margin:16px 0 0;padding:0;list-style:none}
    .check-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#3c4a45;
    }
    .guide-card.wide .check-list li{color:rgba(255,250,240,.86)}
    .check-list li:before{
      content:"✓";
      flex:0 0 22px;
      width:22px;
      height:22px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(215,181,109,.22);
      color:var(--green-800);
      font-weight:900;
      font-size:12px;
      margin-top:3px;
    }
    .guide-card.wide .check-list li:before{color:#fffaf0;border:1px solid rgba(215,181,109,.36)}
    .steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      counter-reset:step;
    }
    .step{
      position:relative;
      padding:20px;
      border-radius:24px;
      background:#fffdf7;
      border:1px solid rgba(20,81,63,.12);
      box-shadow:var(--shadow-soft);
    }
    .step:before{
      counter-increment:step;
      content:"0" counter(step);
      display:inline-flex;
      margin-bottom:12px;
      padding:5px 9px;
      border-radius:999px;
      color:var(--green-950);
      background:linear-gradient(135deg,#fff3c7,var(--champagne));
      font-weight:900;
      font-size:12px;
    }
    .step h3{margin:0 0 8px;color:var(--green-950);font-weight:900;font-size:18px}
    .step p{margin:0;color:var(--muted);font-size:14px;line-height:1.7}
    .faq-wrap{display:grid;gap:12px}
    .faq-item{
      border-radius:22px;
      background:#fffdf7;
      border:1px solid rgba(20,81,63,.12);
      overflow:hidden;
      box-shadow:0 10px 26px rgba(11,47,37,.06);
    }
    .faq-question{
      width:100%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      padding:18px 20px;
      border:0;
      background:transparent;
      color:var(--green-950);
      text-align:left;
      font-weight:900;
    }
    .faq-question span:last-child{
      width:28px;
      height:28px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:rgba(20,81,63,.08);
      transition:transform .2s ease;
    }
    .faq-answer{
      display:none;
      padding:0 20px 18px;
      color:var(--muted);
      border-left:3px solid var(--champagne);
      margin-left:20px;
    }
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .faq-question span:last-child{transform:rotate(45deg);background:rgba(215,181,109,.22)}
    .cta-panel{
      position:relative;
      overflow:hidden;
      padding:38px;
      border-radius:34px;
      color:#fffaf0;
      background:
        radial-gradient(circle at 88% 20%,rgba(215,181,109,.30),transparent 30%),
        linear-gradient(135deg,var(--green-950),var(--green-700));
      border:1px solid rgba(215,181,109,.35);
      box-shadow:0 28px 70px rgba(11,47,37,.18);
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(255,250,240,.12);
      border-radius:26px;
      pointer-events:none;
    }
    .cta-inner{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr auto;
      gap:26px;
      align-items:center;
    }
    .cta-panel h2{margin:0 0 10px;font-size:clamp(26px,4vw,40px);line-height:1.22;font-weight:900}
    .cta-panel p{margin:0;color:rgba(255,250,240,.78);max-width:760px}
    .cta-actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-end}
    .site-footer{
      padding:64px 0 28px;
      background:var(--green-950);
      color:rgba(255,250,240,.78);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:36px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      color:#fffaf0;
      font-size:22px;
      font-weight:900;
      margin-bottom:12px;
    }
    .footer-title{
      color:#fffaf0;
      font-weight:900;
      margin-bottom:12px;
    }
    .footer-links{display:grid;gap:8px}
    .footer-links a{
      color:rgba(255,250,240,.70);
      transition:color .2s ease,transform .2s ease;
    }
    .footer-links a:hover{color:#ffe8ad;transform:translateX(2px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      padding-top:22px;
      color:rgba(255,250,240,.58);
      font-size:14px;
    }
    @media (max-width:1024px){
      .desktop-nav,.nav-search,.age-pill{display:none}
      .menu-toggle{display:inline-grid;place-items:center}
      .hero-inner,.layout{grid-template-columns:1fr}
      .filter-sidebar{position:relative;top:0}
      .steps{grid-template-columns:repeat(2,1fr)}
      .content-item{grid-template-columns:96px 1fr}
      .item-action{grid-column:2}
      .guide-card.wide{grid-template-columns:1fr}
      .cta-inner{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width:768px){
      .site-container,.nav-shell,.mobile-panel{width:min(100% - 28px,var(--container))}
      .hero-private{padding:118px 0 54px}
      .section{padding:58px 0}
      .section-head{display:block}
      .notice-band{grid-template-columns:1fr}
      .guide-grid{grid-template-columns:1fr}
      .guide-card.wide{grid-column:auto}
      .steps{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column}
      .cta-panel{padding:28px 22px}
    }
    @media (max-width:520px){
      .brand span:last-child{max-width:190px;overflow:hidden;text-overflow:ellipsis}
      .hero-actions,.cta-actions{display:grid}
      .btn-primary,.btn-secondary{width:100%}
      .content-item{grid-template-columns:1fr}
      .abstract-cover{height:120px}
      .item-action{grid-column:auto}
      .mini-btn{width:100%}
      .privacy-pass{padding:20px}
    }

/* roulang page: category1 */
:root{
      --green-950:#08251c;
      --green-900:#0b3326;
      --green-800:#124635;
      --green-700:#1d614a;
      --green-100:#e8f2e9;
      --green-50:#f4faf3;
      --ivory:#fffaf0;
      --ivory-2:#f8f1e3;
      --champagne:#d8b66a;
      --champagne-soft:rgba(216,182,106,.35);
      --copper:#9b5b50;
      --text:#13231d;
      --muted:#65736d;
      --line:rgba(18,70,53,.16);
      --white:rgba(255,255,255,.92);
      --shadow:0 24px 70px rgba(8,37,28,.14);
      --shadow-soft:0 14px 38px rgba(8,37,28,.10);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-pill:999px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 0%, rgba(216,182,106,.18), transparent 28%),
        linear-gradient(180deg, #fbf7ee 0%, #f4faf3 45%, #fffaf0 100%);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.78;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(216,182,106,.42);color:var(--green-950)}
    .site-container{
      width:min(1180px, calc(100% - 40px));
      margin:0 auto;
    }
    .site-header{
      position:fixed;
      top:18px;
      left:0;
      width:100%;
      z-index:50;
      transition:all .35s ease;
      pointer-events:none;
    }
    .nav-shell{
      width:min(1180px, calc(100% - 40px));
      margin:0 auto;
      min-height:72px;
      padding:12px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      border:1px solid rgba(255,255,255,.34);
      background:rgba(255,250,240,.62);
      backdrop-filter:blur(22px);
      -webkit-backdrop-filter:blur(22px);
      border-radius:var(--radius-pill);
      box-shadow:0 18px 48px rgba(8,37,28,.13);
      pointer-events:auto;
      transition:all .35s ease;
    }
    .site-header.scrolled .nav-shell{
      background:rgba(255,250,240,.96);
      border-color:rgba(18,70,53,.18);
      box-shadow:0 14px 34px rgba(8,37,28,.13);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      color:var(--green-950);
      white-space:nowrap;
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:var(--ivory);
      background:
        linear-gradient(135deg, var(--green-900), var(--green-700));
      border:1px solid rgba(216,182,106,.55);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.18), 0 10px 22px rgba(8,37,28,.18);
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:6px;
      padding:6px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.38);
      border:1px solid rgba(18,70,53,.08);
    }
    .desktop-nav a{
      padding:9px 15px;
      border-radius:var(--radius-pill);
      color:#24483b;
      font-size:14px;
      font-weight:650;
      transition:all .24s ease;
    }
    .desktop-nav a:hover,
    .desktop-nav a.active{
      color:var(--ivory);
      background:var(--green-900);
      box-shadow:0 8px 18px rgba(8,37,28,.18);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-search{
      width:210px;
      height:42px;
      padding:0 16px;
      border-radius:var(--radius-pill);
      border:1px solid rgba(18,70,53,.14);
      outline:none;
      background:rgba(255,255,255,.66);
      color:var(--green-950);
      transition:all .22s ease;
    }
    .nav-search:focus,
    .mobile-panel input:focus,
    .filter-field:focus,
    .filter-select:focus{
      border-color:rgba(216,182,106,.92);
      box-shadow:0 0 0 4px rgba(216,182,106,.18);
      background:#fff;
    }
    .age-pill{
      min-height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 16px;
      border-radius:var(--radius-pill);
      background:var(--green-900);
      color:var(--ivory);
      font-size:14px;
      font-weight:760;
      border:1px solid rgba(216,182,106,.55);
      box-shadow:0 12px 26px rgba(8,37,28,.17);
      transition:all .22s ease;
      white-space:nowrap;
    }
    .age-pill:hover,.btn-primary:hover{
      transform:translateY(-2px);
      filter:brightness(1.04);
      box-shadow:0 18px 36px rgba(8,37,28,.22);
    }
    .menu-toggle{
      display:none;
      width:42px;
      height:42px;
      border:1px solid rgba(18,70,53,.14);
      border-radius:50%;
      background:rgba(255,255,255,.72);
      color:var(--green-900);
      font-size:20px;
    }
    .mobile-panel{
      display:none;
      width:min(1180px, calc(100% - 40px));
      margin:10px auto 0;
      padding:14px;
      border-radius:28px;
      border:1px solid rgba(255,255,255,.38);
      background:rgba(255,250,240,.88);
      backdrop-filter:blur(22px);
      box-shadow:var(--shadow-soft);
      pointer-events:auto;
    }
    .mobile-panel a,
    .mobile-panel input{
      display:block;
      width:100%;
      margin:8px 0;
      padding:13px 15px;
      border-radius:18px;
      border:1px solid rgba(18,70,53,.12);
      background:rgba(255,255,255,.58);
      color:var(--green-950);
      font-weight:680;
      outline:none;
    }
    .mobile-panel a.active{
      background:var(--green-900);
      color:var(--ivory);
      border-color:rgba(216,182,106,.45);
    }
    .page-hero{
      position:relative;
      padding:126px 0 64px;
      overflow:hidden;
      background:
        radial-gradient(circle at 86% 12%, rgba(216,182,106,.28), transparent 25%),
        radial-gradient(circle at 12% 20%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 52%, #1b5b43 100%);
      color:var(--ivory);
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size:56px 56px;
      mask-image:linear-gradient(180deg, #000, transparent 82%);
      pointer-events:none;
    }
    .page-hero:after{
      content:"";
      position:absolute;
      width:620px;
      height:220px;
      right:-120px;
      bottom:-80px;
      border:1px solid rgba(216,182,106,.42);
      border-radius:50%;
      transform:rotate(-10deg);
      opacity:.65;
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:32px;
      align-items:stretch;
    }
    .eyebrow,.badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      font-size:13px;
      font-weight:760;
      line-height:1;
    }
    .eyebrow{
      color:#ffefc8;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(216,182,106,.38);
    }
    h1{
      max-width:760px;
      margin:18px 0 18px;
      font-size:clamp(34px, 5vw, 58px);
      line-height:1.1;
      letter-spacing:-.05em;
      font-weight:900;
    }
    .hero-lead{
      max-width:720px;
      color:rgba(255,250,240,.82);
      font-size:18px;
      line-height:1.9;
    }
    .hero-actions{
      margin-top:26px;
      display:flex;
      flex-wrap:wrap;
      gap:14px;
    }
    .btn-primary,.btn-secondary,.btn-ghost{
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      padding:0 20px;
      border-radius:var(--radius-pill);
      font-weight:820;
      transition:all .22s ease;
      border:1px solid transparent;
    }
    .btn-primary{
      background:var(--green-900);
      color:var(--ivory);
      border-color:rgba(216,182,106,.52);
      box-shadow:0 14px 30px rgba(8,37,28,.18);
    }
    .page-hero .btn-primary{
      background:#fff4d7;
      color:var(--green-950);
      border-color:rgba(255,255,255,.42);
    }
    .btn-secondary{
      background:rgba(255,250,240,.92);
      color:var(--green-900);
      border-color:rgba(18,70,53,.16);
    }
    .btn-secondary:hover,.btn-ghost:hover{
      transform:translateY(-2px);
      background:#eef7ed;
      border-color:rgba(216,182,106,.58);
    }
    .btn-ghost{
      background:transparent;
      color:var(--green-900);
      border-color:rgba(18,70,53,.18);
    }
    .access-card{
      border-radius:var(--radius-xl);
      padding:24px;
      background:rgba(255,250,240,.92);
      color:var(--text);
      border:1px solid rgba(216,182,106,.45);
      box-shadow:0 24px 70px rgba(0,0,0,.24);
      backdrop-filter:blur(18px);
    }
    .flash-strip{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:14px;
      border-radius:24px;
      background:linear-gradient(135deg, rgba(216,182,106,.22), rgba(255,255,255,.58));
      border:1px solid rgba(216,182,106,.48);
      margin-bottom:16px;
    }
    .countdown{
      display:flex;
      gap:8px;
      white-space:nowrap;
    }
    .timebox{
      min-width:42px;
      padding:6px 7px;
      border-radius:13px;
      text-align:center;
      color:var(--ivory);
      background:var(--green-900);
      line-height:1.15;
      box-shadow:inset 0 0 0 1px rgba(216,182,106,.32);
    }
    .timebox strong{display:block;font-size:16px}
    .timebox span{font-size:10px;color:rgba(255,250,240,.68)}
    .pass-main{
      display:grid;
      grid-template-columns:86px 1fr;
      gap:16px;
      align-items:center;
      padding:18px;
      border-radius:24px;
      background:#fffdf7;
      border:1px solid rgba(18,70,53,.10);
    }
    .pass-seal{
      width:86px;
      height:86px;
      display:grid;
      place-items:center;
      border-radius:28px;
      color:var(--ivory);
      font-size:28px;
      font-weight:900;
      background:
        linear-gradient(135deg, var(--green-900), var(--green-700));
      border:1px solid rgba(216,182,106,.55);
    }
    .pass-main h2{
      margin:0 0 6px;
      font-size:22px;
      line-height:1.25;
      letter-spacing:-.03em;
    }
    .check-list{
      margin:18px 0 0;
      display:grid;
      gap:10px;
      padding:0;
      list-style:none;
    }
    .check-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px;
      border-radius:18px;
      background:rgba(232,242,233,.72);
      border:1px solid rgba(18,70,53,.10);
      color:#315046;
      font-size:14px;
    }
    .section{
      padding:78px 0;
      position:relative;
    }
    .section.alt{
      background:linear-gradient(180deg, rgba(232,242,233,.72), rgba(255,250,240,.70));
      border-top:1px solid rgba(18,70,53,.08);
      border-bottom:1px solid rgba(18,70,53,.08);
    }
    .section-head{
      max-width:780px;
      margin-bottom:30px;
    }
    .section-kicker{
      display:inline-flex;
      margin-bottom:12px;
      color:var(--green-800);
      background:rgba(216,182,106,.16);
      border:1px solid rgba(216,182,106,.34);
    }
    h2{
      margin:0;
      font-size:clamp(28px, 3.6vw, 40px);
      line-height:1.22;
      letter-spacing:-.045em;
      font-weight:900;
      color:var(--green-950);
    }
    .section-head p{
      margin:14px 0 0;
      color:var(--muted);
      font-size:17px;
    }
    .breadcrumb{
      margin-top:24px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      color:rgba(255,250,240,.72);
      font-size:14px;
    }
    .breadcrumb a:hover{color:#ffefc8}
    .filter-board{
      margin-top:-34px;
      position:relative;
      z-index:2;
    }
    .filter-shell{
      padding:18px;
      border-radius:30px;
      background:rgba(255,250,240,.94);
      border:1px solid rgba(216,182,106,.42);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1.2fr .9fr .9fr auto;
      gap:12px;
      align-items:center;
    }
    .filter-field,.filter-select{
      width:100%;
      height:50px;
      border-radius:18px;
      border:1px solid rgba(18,70,53,.14);
      background:#fffdf7;
      color:var(--green-950);
      padding:0 15px;
      outline:none;
      transition:all .22s ease;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }
    .filter-tag{
      border:1px solid rgba(18,70,53,.14);
      background:rgba(255,255,255,.66);
      color:var(--green-800);
      padding:8px 13px;
      border-radius:var(--radius-pill);
      font-size:13px;
      font-weight:760;
      transition:all .22s ease;
    }
    .filter-tag:hover,.filter-tag.active{
      background:var(--green-900);
      color:var(--ivory);
      border-color:rgba(216,182,106,.42);
      transform:translateY(-1px);
    }
    .category-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:22px;
    }
    .category-card{
      min-height:310px;
      border-radius:var(--radius-xl);
      overflow:hidden;
      background:#fffdf7;
      border:1px solid rgba(18,70,53,.12);
      box-shadow:var(--shadow-soft);
      transition:all .25s ease;
    }
    .category-card:hover{
      transform:translateY(-5px);
      border-color:rgba(216,182,106,.58);
      box-shadow:0 22px 56px rgba(8,37,28,.16);
    }
    .abstract-cover{
      height:118px;
      position:relative;
      background:
        radial-gradient(circle at 26% 28%, rgba(216,182,106,.58), transparent 24%),
        radial-gradient(circle at 78% 22%, rgba(155,91,80,.28), transparent 22%),
        linear-gradient(135deg, var(--green-950), var(--green-700));
    }
    .abstract-cover:before{
      content:"";
      position:absolute;
      inset:16px;
      border:1px solid rgba(255,250,240,.28);
      border-radius:26px;
    }
    .abstract-cover:after{
      content:"18+";
      position:absolute;
      right:16px;
      top:16px;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(255,250,240,.90);
      color:var(--green-900);
      font-weight:900;
      font-size:12px;
    }
    .card-body{padding:20px}
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .mini-tag{
      display:inline-flex;
      align-items:center;
      padding:5px 9px;
      border-radius:999px;
      background:var(--green-50);
      color:var(--green-800);
      border:1px solid rgba(18,70,53,.10);
      font-size:12px;
      font-weight:760;
    }
    .category-card h3{
      margin:0 0 9px;
      color:var(--green-950);
      font-size:20px;
      line-height:1.35;
      letter-spacing:-.025em;
      font-weight:880;
    }
    .category-card p{
      margin:0 0 16px;
      color:var(--muted);
      font-size:15px;
      line-height:1.78;
    }
    .card-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green-900);
      font-weight:850;
      font-size:14px;
    }
    .card-link:hover{color:var(--copper)}
    .timeline{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:16px;
      position:relative;
    }
    .step-card{
      position:relative;
      padding:22px;
      border-radius:26px;
      background:#fffdf7;
      border:1px solid rgba(18,70,53,.12);
      box-shadow:var(--shadow-soft);
      transition:all .22s ease;
    }
    .step-card:hover{
      transform:translateY(-3px);
      border-color:rgba(216,182,106,.60);
    }
    .step-no{
      width:44px;
      height:44px;
      display:grid;
      place-items:center;
      border-radius:50%;
      color:var(--ivory);
      background:var(--green-900);
      border:1px solid rgba(216,182,106,.55);
      font-weight:900;
      margin-bottom:16px;
    }
    .step-card h3{
      margin:0 0 8px;
      font-size:18px;
      color:var(--green-950);
      font-weight:880;
    }
    .step-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.72;
    }
    .info-layout{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:28px;
      align-items:start;
    }
    .notice-panel{
      position:sticky;
      top:112px;
      padding:26px;
      border-radius:var(--radius-xl);
      background:linear-gradient(145deg, var(--green-950), var(--green-800));
      color:var(--ivory);
      border:1px solid rgba(216,182,106,.42);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .notice-panel:after{
      content:"";
      position:absolute;
      width:220px;
      height:220px;
      right:-88px;
      bottom:-88px;
      border-radius:50%;
      border:1px solid rgba(216,182,106,.30);
    }
    .notice-panel h3{
      margin:14px 0 8px;
      font-size:26px;
      line-height:1.25;
      letter-spacing:-.035em;
      font-weight:900;
    }
    .notice-panel p{color:rgba(255,250,240,.78);margin:0}
    .notice-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .notice-list li{
      display:flex;
      gap:10px;
      padding:12px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      color:rgba(255,250,240,.84);
      font-size:14px;
    }
    .explain-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:18px;
    }
    .explain-card{
      padding:22px;
      border-radius:26px;
      background:rgba(255,253,247,.88);
      border:1px solid rgba(18,70,53,.12);
      box-shadow:var(--shadow-soft);
    }
    .icon-bubble{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      margin-bottom:14px;
      border-radius:16px;
      background:rgba(216,182,106,.18);
      color:var(--green-900);
      border:1px solid rgba(216,182,106,.30);
      font-size:22px;
    }
    .explain-card h3{
      margin:0 0 8px;
      font-size:19px;
      font-weight:880;
      color:var(--green-950);
    }
    .explain-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .compare-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:20px;
    }
    .plan-card{
      position:relative;
      padding:26px;
      border-radius:var(--radius-xl);
      background:#fffdf7;
      border:1px solid rgba(18,70,53,.12);
      box-shadow:var(--shadow-soft);
      transition:all .22s ease;
    }
    .plan-card.featured{
      transform:translateY(-8px);
      border-color:rgba(216,182,106,.76);
      box-shadow:0 26px 72px rgba(8,37,28,.18);
    }
    .plan-card.featured:before{
      content:"推荐筛选";
      position:absolute;
      top:18px;
      right:18px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(216,182,106,.18);
      color:var(--green-900);
      font-size:12px;
      font-weight:900;
      border:1px solid rgba(216,182,106,.35);
    }
    .plan-card h3{
      margin:12px 0 8px;
      font-size:24px;
      color:var(--green-950);
      font-weight:900;
    }
    .plan-card p{
      color:var(--muted);
      margin:0 0 18px;
    }
    .plan-card ul{
      margin:0 0 22px;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .plan-card li{
      display:flex;
      gap:9px;
      color:#315046;
      font-size:15px;
    }
    .faq-wrap{
      display:grid;
      gap:12px;
      max-width:900px;
    }
    .faq-item{
      border-radius:22px;
      background:#fffdf7;
      border:1px solid rgba(18,70,53,.12);
      overflow:hidden;
      box-shadow:0 12px 28px rgba(8,37,28,.07);
    }
    .faq-q{
      width:100%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      padding:20px 22px;
      border:0;
      background:transparent;
      color:var(--green-950);
      text-align:left;
      font-weight:850;
    }
    .faq-q span:last-child{
      width:28px;
      height:28px;
      flex:0 0 auto;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--green-50);
      color:var(--green-900);
      transition:all .22s ease;
    }
    .faq-a{
      display:none;
      padding:0 22px 20px;
      color:var(--muted);
      border-left:3px solid var(--champagne);
      margin-left:22px;
    }
    .faq-item.open .faq-a{display:block}
    .faq-item.open .faq-q span:last-child{
      transform:rotate(45deg);
      background:var(--green-900);
      color:var(--ivory);
    }
    .cta-band{
      position:relative;
      overflow:hidden;
      padding:34px;
      border-radius:38px;
      background:
        radial-gradient(circle at 82% 20%, rgba(216,182,106,.34), transparent 26%),
        linear-gradient(135deg, var(--green-950), var(--green-800));
      color:var(--ivory);
      border:1px solid rgba(216,182,106,.42);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-band:before{
      content:"";
      position:absolute;
      inset:16px;
      border:1px solid rgba(255,250,240,.10);
      border-radius:30px;
      pointer-events:none;
    }
    .cta-band h2{
      color:var(--ivory);
      margin-bottom:10px;
    }
    .cta-band p{
      color:rgba(255,250,240,.78);
      margin:0;
      max-width:760px;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .site-footer{
      padding:58px 0 26px;
      background:var(--green-950);
      color:rgba(255,250,240,.78);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:34px;
      padding-bottom:32px;
      border-bottom:1px solid rgba(255,250,240,.12);
    }
    .footer-brand{
      color:var(--ivory);
      font-size:22px;
      font-weight:900;
      margin-bottom:12px;
      letter-spacing:-.03em;
    }
    .footer-title{
      color:#ffefc8;
      font-weight:850;
      margin-bottom:12px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,250,240,.72);
      transition:all .2s ease;
    }
    .footer-links a:hover{
      color:#ffefc8;
      transform:translateX(2px);
    }
    .copyright{
      padding-top:22px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:14px;
      color:rgba(255,250,240,.58);
    }
    @media (max-width:1024px){
      .desktop-nav{display:none}
      .nav-search{display:none}
      .menu-toggle{display:grid}
      .mobile-panel.show{display:block}
      .hero-grid,.info-layout,.cta-band{grid-template-columns:1fr}
      .category-grid,.compare-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .timeline{grid-template-columns:repeat(2, minmax(0,1fr))}
      .filter-shell{grid-template-columns:1fr 1fr}
      .notice-panel{position:relative;top:auto}
    }
    @media (max-width:768px){
      .site-container,.nav-shell,.mobile-panel{width:min(100% - 28px, 1180px)}
      .site-header{top:10px}
      .nav-shell{min-height:64px;padding:10px 12px}
      .brand span:last-child{max-width:176px;overflow:hidden;text-overflow:ellipsis}
      .page-hero{padding:104px 0 48px}
      .hero-lead{font-size:16px}
      .section{padding:58px 0}
      .access-card{padding:18px;border-radius:26px}
      .flash-strip,.pass-main{grid-template-columns:1fr;display:grid}
      .filter-board{margin-top:-22px}
      .filter-shell{grid-template-columns:1fr}
      .category-grid,.compare-grid,.explain-grid,.timeline,.footer-grid{grid-template-columns:1fr}
      .plan-card.featured{transform:none}
      .cta-band{padding:26px}
      .cta-actions .btn-primary,.cta-actions .btn-secondary,.hero-actions a{width:100%}
      .copyright{display:grid}
    }
    @media (max-width:520px){
      .brand-mark{width:38px;height:38px}
      .age-pill{display:none}
      h1{font-size:32px}
      .pass-main{padding:14px}
      .pass-seal{width:72px;height:72px;border-radius:22px}
      .category-card{min-height:auto}
      .faq-q{padding:18px}
      .faq-a{margin-left:18px;padding-right:18px}
    }
