/* roulang page: index */
:root{
      --bg:#F7F1E8;
      --bg-soft:#F4EADF;
      --card:#FFF9F1;
      --card-2:#FFE3D7;
      --lav:#EFE3F6;
      --text:#211A1D;
      --muted:#6F6265;
      --primary:#7B2D5C;
      --primary-2:#9B3B75;
      --coral:#FF6B4A;
      --pink:#FF3D8D;
      --blue:#36C5F0;
      --green:#2FBF71;
      --border:rgba(123,45,92,.16);
      --shadow:0 22px 55px rgba(80,38,36,.12);
      --shadow-hover:0 28px 70px rgba(80,38,36,.18);
      --radius-xl:34px;
      --radius-lg:26px;
      --radius-md:18px;
      --dock-h:76px;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:PingFang SC,Microsoft YaHei,Noto Sans SC,system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(255,61,141,.16), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(54,197,240,.16), transparent 30%),
        linear-gradient(180deg,var(--bg),#fffaf4 55%,var(--bg-soft));
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer;border:0}
    input:focus,button:focus-visible,a:focus-visible,summary:focus-visible{
      outline:3px solid rgba(255,107,74,.28);
      outline-offset:4px;
    }
    .container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }
    .site-header{
      position:fixed;
      top:22px;
      left:0;
      right:0;
      z-index:50;
      pointer-events:none;
    }
    .dock{
      pointer-events:auto;
      width:min(1080px,calc(100% - 32px));
      margin:0 auto;
      min-height:var(--dock-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:11px 14px 11px 20px;
      border:1px solid rgba(123,45,92,.18);
      border-radius:999px;
      background:rgba(255,249,241,.88);
      box-shadow:0 18px 50px rgba(80,38,36,.13);
      backdrop-filter:blur(16px);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      font-weight:850;
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--pink) 58%,var(--coral));
      box-shadow:0 10px 28px rgba(123,45,92,.25);
      font-size:18px;
      font-weight:900;
    }
    .brand-text{font-size:16px}
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      padding:4px;
      border-radius:999px;
      background:rgba(244,234,223,.64);
    }
    .nav-links a{
      padding:10px 16px;
      border-radius:999px;
      color:var(--muted);
      font-weight:750;
      font-size:14px;
      transition:.25s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:var(--card-2);
      color:var(--text);
      transform:translateY(-1px);
    }
    .nav-links a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--coral));
      box-shadow:0 10px 20px rgba(255,107,74,.22);
    }
    .dock-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .dock-search{
      width:215px;
      height:44px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      color:var(--muted);
      transition:.25s ease;
    }
    .dock-search input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--text);
      font-size:13px;
    }
    .dock-search:focus-within{
      border-color:rgba(255,107,74,.55);
      box-shadow:0 0 0 5px rgba(255,107,74,.12);
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:13px 22px;
      border-radius:999px;
      font-weight:850;
      transition:.25s ease;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--pink) 54%,var(--coral));
      box-shadow:0 16px 32px rgba(123,45,92,.22);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 22px 46px rgba(123,45,92,.28);
      filter:saturate(1.08);
    }
    .btn-secondary{
      color:var(--primary);
      background:rgba(255,249,241,.92);
      border:1px solid rgba(123,45,92,.18);
      box-shadow:0 10px 26px rgba(80,38,36,.08);
    }
    .btn-secondary:hover{
      background:var(--card-2);
      transform:translateY(-2px);
    }
    .section{
      padding:92px 0;
      position:relative;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:850;
      color:var(--primary);
      background:rgba(239,227,246,.86);
      border:1px solid rgba(123,45,92,.13);
    }
    .section-title{
      margin:12px 0 0;
      font-size:clamp(28px,4vw,40px);
      line-height:1.16;
      letter-spacing:-.04em;
      font-weight:900;
    }
    .section-desc{
      max-width:620px;
      color:var(--muted);
      font-size:16px;
      margin:12px 0 0;
    }
    .hero{
      min-height:760px;
      padding:128px 0 74px;
      overflow:hidden;
      background:
        linear-gradient(115deg,rgba(247,241,232,.76),rgba(239,227,246,.78)),
        radial-gradient(circle at 18% 22%,rgba(255,61,141,.22),transparent 24%),
        radial-gradient(circle at 83% 18%,rgba(54,197,240,.18),transparent 28%);
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(110deg, transparent 0 46%, rgba(255,255,255,.28) 46% 47%, transparent 47%),
        radial-gradient(circle at 20% 80%, rgba(255,107,74,.18) 0 2px, transparent 3px),
        radial-gradient(circle at 76% 66%, rgba(123,45,92,.15) 0 2px, transparent 3px);
      background-size:100% 100%,42px 42px,58px 58px;
      opacity:.8;
      pointer-events:none;
    }
    .hero-stage{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.06fr .94fr;
      gap:32px;
      align-items:stretch;
    }
    .hero-copy{
      padding:36px 0;
    }
    .notice-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:20px;
    }
    .notice-strip span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,249,241,.82);
      border:1px solid var(--border);
      font-weight:800;
      color:var(--primary);
      font-size:13px;
      box-shadow:0 10px 24px rgba(80,38,36,.07);
    }
    h1{
      margin:0;
      font-size:clamp(32px,5.4vw,58px);
      line-height:1.08;
      font-weight:950;
      letter-spacing:-.055em;
      max-width:760px;
    }
    .hero-intro{
      max-width:680px;
      margin:22px 0 0;
      font-size:18px;
      color:#5F5357;
      line-height:1.85;
    }
    .hero-cta{
      margin-top:28px;
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      align-items:center;
    }
    .hero-stats{
      margin-top:30px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      max-width:670px;
    }
    .stat-pill{
      padding:14px 16px;
      border-radius:22px;
      background:rgba(255,249,241,.82);
      border:1px solid var(--border);
      box-shadow:0 12px 28px rgba(80,38,36,.08);
    }
    .stat-pill strong{
      display:block;
      font-size:22px;
      line-height:1.1;
      color:var(--primary);
      font-weight:950;
    }
    .stat-pill span{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-weight:700;
      font-size:13px;
    }
    .hero-panel{
      position:relative;
      min-height:560px;
      border-radius:42px;
      padding:22px;
      background:linear-gradient(145deg,rgba(255,249,241,.78),rgba(255,227,215,.68));
      border:1px solid rgba(123,45,92,.16);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      width:340px;
      height:340px;
      right:-110px;
      top:-110px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,61,141,.32),transparent 68%);
    }
    .crowd-card{
      position:relative;
      z-index:1;
      height:100%;
      display:grid;
      grid-template-rows:auto 1fr auto;
      gap:18px;
    }
    .goal-row{
      display:grid;
      grid-template-columns:180px 1fr;
      gap:18px;
      align-items:center;
    }
    .progress-ring{
      width:168px;
      height:168px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:
        conic-gradient(var(--coral) 0 78%, rgba(123,45,92,.12) 78% 100%);
      box-shadow:inset 0 0 0 1px rgba(123,45,92,.1),0 16px 34px rgba(255,107,74,.18);
      position:relative;
    }
    .progress-ring:after{
      content:"";
      position:absolute;
      inset:16px;
      background:var(--card);
      border-radius:50%;
      box-shadow:inset 0 0 0 1px rgba(123,45,92,.10);
    }
    .progress-ring .ring-text{
      position:relative;
      z-index:1;
      text-align:center;
      line-height:1.1;
    }
    .ring-text b{
      display:block;
      font-size:34px;
      font-weight:950;
      color:var(--primary);
    }
    .ring-text small{
      color:var(--muted);
      font-weight:800;
    }
    .goal-copy h2{
      font-size:30px;
      line-height:1.16;
      letter-spacing:-.04em;
      margin:0;
      font-weight:950;
    }
    .goal-copy p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:15px;
    }
    .tier-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      align-content:start;
    }
    .tier-card{
      min-height:142px;
      padding:18px;
      border-radius:28px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(123,45,92,.13);
      box-shadow:0 12px 28px rgba(80,38,36,.08);
      transition:.25s ease;
    }
    .tier-card:nth-child(2){transform:translateY(16px);background:rgba(239,227,246,.64)}
    .tier-card:nth-child(3){background:rgba(255,227,215,.72)}
    .tier-card:nth-child(4){transform:translateY(10px);background:rgba(255,249,241,.84)}
    .tier-card:hover{
      transform:translateY(-3px) rotate(-.6deg);
      box-shadow:var(--shadow-hover);
    }
    .tier-label{
      display:inline-flex;
      padding:5px 10px;
      border-radius:999px;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--pink));
      font-size:12px;
      font-weight:900;
    }
    .tier-card h3{
      margin:12px 0 6px;
      font-size:19px;
      line-height:1.25;
      font-weight:900;
    }
    .tier-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }
    .panel-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:16px 18px;
      border-radius:26px;
      background:rgba(33,26,29,.92);
      color:#fff;
    }
    .panel-bottom span{
      color:rgba(255,249,241,.78);
      font-weight:700;
      font-size:14px;
    }
    .countdown{
      display:flex;
      gap:8px;
      font-weight:950;
      color:#fff;
    }
    .countdown b{
      min-width:38px;
      padding:5px 8px;
      border-radius:12px;
      text-align:center;
      background:rgba(255,107,74,.88);
    }
    .updates-wrap{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:22px;
      align-items:start;
    }
    .vertical-note{
      min-height:420px;
      padding:30px;
      border-radius:var(--radius-xl);
      background:linear-gradient(150deg,var(--primary),#4D1D3B);
      color:#fff;
      position:sticky;
      top:120px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .vertical-note:after{
      content:"";
      position:absolute;
      width:240px;
      height:240px;
      right:-70px;
      bottom:-70px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,107,74,.5),transparent 70%);
    }
    .vertical-note h2{
      margin:14px 0 12px;
      font-size:34px;
      line-height:1.15;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .vertical-note p{
      position:relative;
      z-index:1;
      color:rgba(255,249,241,.82);
      margin:0;
    }
    .update-list{
      display:grid;
      gap:14px;
    }
    .update-item{
      display:grid;
      grid-template-columns:88px 1fr auto;
      gap:18px;
      align-items:center;
      padding:18px;
      border-radius:28px;
      background:rgba(255,249,241,.85);
      border:1px solid var(--border);
      box-shadow:0 12px 32px rgba(80,38,36,.08);
      transition:.25s ease;
    }
    .update-item:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
    }
    .date-chip{
      width:76px;
      height:76px;
      border-radius:22px;
      display:grid;
      place-items:center;
      text-align:center;
      color:#fff;
      font-weight:950;
      background:linear-gradient(145deg,var(--coral),var(--pink));
      line-height:1.1;
    }
    .date-chip small{display:block;font-size:12px;opacity:.86}
    .update-item h3{
      margin:0;
      font-size:20px;
      line-height:1.25;
      font-weight:900;
    }
    .update-item p{
      margin:7px 0 0;
      color:var(--muted);
      font-size:14px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .badge-new{background:var(--coral);color:#fff}
    .badge-safe{background:rgba(47,191,113,.14);color:#167044}
    .badge-soft{background:var(--lav);color:var(--primary)}
    .quick-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:22px;
    }
    .steps{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
    }
    .step-card{
      padding:22px;
      border-radius:30px;
      background:var(--card);
      border:1px solid var(--border);
      box-shadow:0 12px 30px rgba(80,38,36,.08);
      transition:.25s ease;
      position:relative;
      overflow:hidden;
    }
    .step-card:nth-child(2){margin-top:24px;background:var(--lav)}
    .step-card:nth-child(3){background:var(--card-2)}
    .step-card:nth-child(4){margin-top:18px}
    .step-card:hover{
      transform:translateY(-4px) rotate(-.7deg);
      box-shadow:var(--shadow-hover);
    }
    .step-no{
      width:48px;
      height:48px;
      border-radius:18px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--coral));
      font-weight:950;
      margin-bottom:18px;
    }
    .step-card h3{
      font-size:21px;
      margin:0 0 8px;
      font-weight:900;
    }
    .step-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .answer-card{
      padding:30px;
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg,rgba(255,249,241,.86),rgba(255,227,215,.72));
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .answer-list{
      margin:20px 0 0;
      display:grid;
      gap:12px;
    }
    .answer-line{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:14px;
      border-radius:20px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(123,45,92,.10);
      color:var(--muted);
      font-weight:700;
      font-size:14px;
    }
    .answer-line i{
      width:22px;
      height:22px;
      border-radius:50%;
      flex:none;
      display:grid;
      place-items:center;
      background:rgba(47,191,113,.14);
      color:#167044;
      font-style:normal;
      font-weight:950;
    }
    .news-area{
      display:grid;
      grid-template-columns:minmax(0,1fr) 330px;
      gap:24px;
      align-items:start;
    }
    .news-list{
      padding:10px;
      border-radius:var(--radius-xl);
      background:rgba(255,249,241,.78);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .news-link{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:15px;
      align-items:center;
      padding:18px;
      border-radius:24px;
      transition:.25s ease;
      border-bottom:1px solid rgba(123,45,92,.08);
    }
    .news-link:last-child{border-bottom:0}
    .news-link:hover{
      background:#fff;
      transform:translateX(3px);
    }
    .news-dot{
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--pink);
      box-shadow:0 0 0 6px rgba(255,61,141,.12);
    }
    .news-link h3{
      margin:0;
      font-size:18px;
      line-height:1.35;
      font-weight:900;
    }
    .news-link p{
      margin:5px 0 0;
      color:var(--muted);
      font-size:14px;
    }
    .recommend{
      padding:24px;
      border-radius:var(--radius-xl);
      background:#211A1D;
      color:#fff;
      position:sticky;
      top:120px;
      box-shadow:var(--shadow);
    }
    .recommend p{
      color:rgba(255,249,241,.76);
      margin:10px 0 18px;
      font-size:14px;
    }
    .mini-tags{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .mini-tags span,.mini-tags a{
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,249,241,.10);
      border:1px solid rgba(255,249,241,.14);
      color:rgba(255,249,241,.88);
      font-size:13px;
      font-weight:800;
      transition:.25s ease;
    }
    .mini-tags a:hover{
      background:var(--coral);
      color:#fff;
      transform:translateY(-2px);
    }
    .safety{
      background:
        radial-gradient(circle at 15% 20%,rgba(255,107,74,.14),transparent 26%),
        linear-gradient(180deg,rgba(255,249,241,.46),rgba(239,227,246,.38));
    }
    .safety-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:18px;
    }
    .safety-card{
      padding:24px;
      min-height:260px;
      border-radius:32px;
      background:var(--card);
      border:1px solid var(--border);
      box-shadow:0 14px 34px rgba(80,38,36,.08);
      transition:.25s ease;
    }
    .safety-card:nth-child(2){background:var(--lav);margin-top:28px}
    .safety-card:nth-child(3){background:var(--card-2)}
    .safety-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
    }
    .icon-bubble{
      width:54px;
      height:54px;
      display:grid;
      place-items:center;
      border-radius:20px;
      color:#fff;
      font-size:24px;
      background:linear-gradient(135deg,var(--primary),var(--pink),var(--coral));
      margin-bottom:18px;
    }
    .safety-card h3{font-size:21px;margin:0 0 9px;font-weight:900}
    .safety-card p{margin:0;color:var(--muted);font-size:14px}
    .entry-matrix{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
      align-items:stretch;
    }
    .matrix-left{
      padding:32px;
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg,var(--primary),#472039);
      color:#fff;
      overflow:hidden;
      position:relative;
      box-shadow:var(--shadow);
    }
    .matrix-left:after{
      content:"";
      position:absolute;
      width:330px;
      height:330px;
      border-radius:50%;
      right:-120px;
      bottom:-130px;
      background:radial-gradient(circle,rgba(54,197,240,.28),transparent 70%);
    }
    .matrix-left h2{
      margin:10px 0;
      font-size:36px;
      line-height:1.15;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .matrix-left p{color:rgba(255,249,241,.78);margin:0 0 22px}
    .matrix-buttons{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .matrix-buttons .btn-secondary{
      background:rgba(255,249,241,.12);
      color:#fff;
      border-color:rgba(255,249,241,.22);
    }
    .matrix-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .matrix-card{
      padding:22px;
      border-radius:30px;
      background:rgba(255,249,241,.84);
      border:1px solid var(--border);
      box-shadow:0 14px 32px rgba(80,38,36,.08);
      transition:.25s ease;
    }
    .matrix-card:hover{
      transform:translateY(-4px) rotate(.4deg);
      box-shadow:var(--shadow-hover);
    }
    .matrix-card b{
      display:block;
      font-size:20px;
      margin:10px 0 5px;
      font-weight:950;
    }
    .matrix-card span{color:var(--muted);font-size:14px}
    .rewards-flow{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:8px 2px 18px;
      scroll-snap-type:x mandatory;
    }
    .reward-card{
      min-width:245px;
      min-height:330px;
      padding:24px;
      border-radius:32px;
      scroll-snap-align:start;
      border:1px solid rgba(123,45,92,.14);
      box-shadow:0 16px 36px rgba(80,38,36,.09);
      transition:.25s ease;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .reward-card:nth-child(1){background:#211A1D;color:#fff}
    .reward-card:nth-child(2){background:var(--card-2)}
    .reward-card:nth-child(3){background:var(--lav)}
    .reward-card:nth-child(4){background:var(--card)}
    .reward-card:nth-child(5){background:linear-gradient(145deg,var(--coral),var(--pink));color:#fff}
    .reward-card:hover{
      transform:translateY(-5px) rotate(-.6deg);
      box-shadow:var(--shadow-hover);
    }
    .reward-card .emoji{font-size:38px}
    .reward-card h3{font-size:23px;line-height:1.18;margin:18px 0 8px;font-weight:950}
    .reward-card p{margin:0;color:inherit;opacity:.76;font-size:14px}
    .task-board{
      display:grid;
      grid-template-columns:360px 1fr;
      gap:24px;
      padding:26px;
      border-radius:40px;
      background:rgba(255,249,241,.74);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .score-card{
      padding:28px;
      border-radius:32px;
      background:linear-gradient(150deg,var(--card-2),var(--card));
    }
    .score-value{
      font-size:58px;
      line-height:1;
      color:var(--primary);
      font-weight:950;
      letter-spacing:-.05em;
    }
    .bar{
      height:14px;
      border-radius:999px;
      background:rgba(123,45,92,.12);
      overflow:hidden;
      margin:18px 0;
    }
    .bar span{
      display:block;
      height:100%;
      width:72%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--pink),var(--coral));
      transition:.35s ease;
    }
    .task-list{
      display:grid;
      gap:12px;
    }
    .task-item{
      display:flex;
      align-items:center;
      gap:14px;
      padding:16px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(123,45,92,.12);
      transition:.25s ease;
    }
    .task-item:hover,.task-item.active{
      transform:translateY(-2px);
      box-shadow:0 14px 30px rgba(80,38,36,.1);
    }
    .task-item.active{background:rgba(255,227,215,.72)}
    .check{
      width:34px;
      height:34px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(47,191,113,.14);
      color:#167044;
      font-weight:950;
      flex:none;
    }
    .task-item h3{margin:0;font-size:17px;font-weight:900}
    .task-item p{margin:2px 0 0;color:var(--muted);font-size:13px;line-height:1.55}
    .voice-wall{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:15px;
    }
    .voice{
      padding:20px;
      border-radius:28px;
      background:var(--card);
      border:1px solid var(--border);
      box-shadow:0 12px 30px rgba(80,38,36,.08);
      transition:.25s ease;
    }
    .voice:nth-child(2),.voice:nth-child(5){background:var(--lav);margin-top:24px}
    .voice:nth-child(3){background:var(--card-2)}
    .voice:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover)}
    .avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--primary),var(--coral));
      margin-bottom:12px;
      position:relative;
    }
    .voice p{margin:0;color:var(--muted);font-size:14px;line-height:1.7}
    .voice b{display:block;margin-top:12px;font-size:13px;color:var(--text)}
    .limited{
      padding:36px;
      border-radius:42px;
      background:
        radial-gradient(circle at 15% 20%,rgba(54,197,240,.22),transparent 24%),
        linear-gradient(135deg,var(--primary),var(--pink) 54%,var(--coral));
      color:#fff;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .limited-inner{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .limited h2{
      margin:8px 0 8px;
      font-size:38px;
      line-height:1.15;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .limited p{margin:0;color:rgba(255,249,241,.80);max-width:700px}
    .limited .countdown b{background:rgba(33,26,29,.34)}
    .faq-wrap{
      display:grid;
      grid-template-columns:360px 1fr;
      gap:24px;
      align-items:start;
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    details{
      border-radius:24px;
      background:var(--card);
      border:1px solid var(--border);
      overflow:hidden;
      box-shadow:0 10px 24px rgba(80,38,36,.07);
    }
    details[open]{
      background:linear-gradient(90deg,rgba(255,227,215,.75),var(--card));
      border-left:5px solid var(--primary);
    }
    summary{
      list-style:none;
      cursor:pointer;
      padding:18px 20px;
      font-weight:900;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    summary::-webkit-details-marker{display:none}
    summary:after{
      content:"+";
      width:28px;
      height:28px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(123,45,92,.12);
      color:var(--primary);
      font-weight:950;
      flex:none;
    }
    details[open] summary:after{content:"−";background:var(--primary);color:#fff}
    details p{
      padding:0 20px 20px;
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .site-footer{
      background:#211A1D;
      color:#F7F1E8;
      padding:54px 0 30px;
      position:relative;
      overflow:hidden;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      width:420px;
      height:420px;
      border-radius:50%;
      right:-160px;
      top:-180px;
      background:radial-gradient(circle,rgba(255,107,74,.24),transparent 70%);
    }
    .footer-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:30px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:950;
      font-size:20px;
    }
    .footer-text{
      margin:16px 0 0;
      color:rgba(247,241,232,.70);
      max-width:520px;
      font-size:14px;
    }
    .footer-col h3{
      margin:0 0 12px;
      font-size:16px;
      font-weight:950;
    }
    .footer-links{
      display:grid;
      gap:8px;
    }
    .footer-links a,.footer-links button{
      color:rgba(247,241,232,.72);
      background:transparent;
      padding:0;
      text-align:left;
      transition:.25s ease;
      width:max-content;
    }
    .footer-links a:hover,.footer-links button:hover{
      color:var(--coral);
      transform:translateX(3px);
    }
    .copyright{
      position:relative;
      z-index:1;
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(247,241,232,.12);
      color:rgba(247,241,232,.56);
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    .mobile-bottom{
      display:none;
      position:fixed;
      bottom:14px;
      left:14px;
      right:14px;
      z-index:55;
      padding:10px;
      border-radius:999px;
      background:rgba(255,249,241,.92);
      border:1px solid var(--border);
      box-shadow:0 18px 45px rgba(80,38,36,.18);
      backdrop-filter:blur(14px);
    }
    .mobile-bottom a{
      flex:1;
      min-height:44px;
      border-radius:999px;
      display:grid;
      place-items:center;
      font-weight:900;
      color:var(--primary);
    }
    .mobile-bottom a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--coral));
    }
    @media (max-width:1024px){
      :root{--dock-h:68px}
      .dock{gap:10px;padding:10px 12px}
      .dock-search{display:none}
      .brand-text{font-size:14px}
      .hero-stage,.updates-wrap,.quick-grid,.news-area,.entry-matrix,.task-board,.faq-wrap{
        grid-template-columns:1fr;
      }
      .hero{padding-top:118px}
      .hero-panel{min-height:auto}
      .vertical-note,.recommend{position:relative;top:auto;min-height:auto}
      .safety-grid{grid-template-columns:1fr 1fr}
      .voice-wall{grid-template-columns:1fr 1fr}
      .limited-inner{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,var(--container))}
      .site-header{top:12px}
      .dock{
        width:calc(100% - 20px);
        border-radius:30px;
        align-items:flex-start;
        padding:10px;
      }
      .brand-mark{width:38px;height:38px}
      .brand-text{
        max-width:145px;
        overflow:hidden;
        white-space:nowrap;
        text-overflow:ellipsis;
      }
      .nav-links{
        max-width:42vw;
        overflow-x:auto;
        justify-content:flex-start;
        scrollbar-width:none;
      }
      .nav-links::-webkit-scrollbar{display:none}
      .nav-links a{padding:9px 12px;font-size:13px}
      .dock-actions .btn{display:none}
      .hero{min-height:auto;padding:108px 0 52px}
      .hero-copy{padding:16px 0}
      .hero-intro{font-size:16px}
      .hero-stats{grid-template-columns:1fr}
      .goal-row{grid-template-columns:1fr}
      .progress-ring{margin:auto}
      .tier-grid,.steps,.matrix-grid,.safety-grid{
        grid-template-columns:1fr;
      }
      .tier-card:nth-child(2),.tier-card:nth-child(4),.step-card:nth-child(2),.step-card:nth-child(4),.safety-card:nth-child(2){margin-top:0;transform:none}
      .update-item{
        grid-template-columns:64px 1fr;
      }
      .update-item .badge{grid-column:2}
      .date-chip{width:60px;height:60px;border-radius:18px}
      .section{padding:62px 0}
      .section-head{display:block}
      .panel-bottom{align-items:flex-start;flex-direction:column}
      .task-board{padding:16px}
      .score-value{font-size:46px}
      .voice-wall{grid-template-columns:1fr}
      .voice:nth-child(2),.voice:nth-child(5){margin-top:0}
      .limited{padding:24px}
      .limited h2{font-size:30px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{padding-bottom:70px}
      .mobile-bottom{display:flex}
    }
    @media (max-width:520px){
      .hero-cta .btn{width:100%}
      h1{font-size:34px}
      .section-title{font-size:28px}
      .goal-copy h2,.vertical-note h2,.matrix-left h2{font-size:28px}
      .news-link{grid-template-columns:1fr}
      .news-dot{display:none}
      .reward-card{min-width:82vw}
    }

/* roulang page: category1 */
:root {
      --bg: #F7F1E8;
      --bg-soft: #F4EADF;
      --card: #FFF9F1;
      --card-2: #FFE3D7;
      --mist: #EFE3F6;
      --text: #211A1D;
      --muted: #6D5C62;
      --muted-2: #8A7780;
      --primary: #7B2D5C;
      --primary-dark: #5D2146;
      --coral: #FF6B4A;
      --pink: #FF3D8D;
      --blue: #36C5F0;
      --green: #2FBF71;
      --danger: #E84A5F;
      --line: rgba(123, 45, 92, .16);
      --line-strong: rgba(123, 45, 92, .26);
      --shadow: 0 22px 60px rgba(80, 38, 36, .12);
      --shadow-hover: 0 26px 74px rgba(80, 38, 36, .18);
      --radius-xl: 36px;
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-pill: 999px;
      --container: 1200px;
      --font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(255, 107, 74, .16), transparent 26%),
        radial-gradient(circle at 86% 18%, rgba(255, 61, 141, .12), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, #FBF5EC 42%, var(--bg-soft) 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
      background: transparent;
    }

    input {
      outline: none;
      border: 0;
      min-width: 0;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    ::selection {
      background: rgba(255, 107, 74, .24);
      color: var(--text);
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      top: 22px;
      left: 0;
      right: 0;
      z-index: 50;
      pointer-events: none;
    }

    .dock {
      width: min(calc(100% - 40px), 1080px);
      margin: 0 auto;
      min-height: 66px;
      padding: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: var(--radius-pill);
      background: rgba(255, 249, 241, .92);
      border: 1px solid rgba(123, 45, 92, .16);
      box-shadow: 0 18px 48px rgba(80, 38, 36, .14);
      backdrop-filter: blur(18px);
      pointer-events: auto;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 850;
      letter-spacing: -.02em;
      white-space: nowrap;
    }

    .brand {
      padding: 8px 12px 8px 8px;
      border-radius: var(--radius-pill);
    }

    .brand:hover {
      background: rgba(255, 227, 215, .72);
    }

    .brand-mark {
      width: 40px;
      height: 40px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--coral));
      box-shadow: 0 10px 24px rgba(123, 45, 92, .24);
      flex: 0 0 auto;
    }

    .brand-text {
      font-size: 15px;
      color: var(--text);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px;
      border-radius: var(--radius-pill);
      background: rgba(239, 227, 246, .48);
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      color: var(--muted);
      font-weight: 760;
      font-size: 14px;
      transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
    }

    .nav-links a:hover {
      color: var(--text);
      background: rgba(255, 227, 215, .92);
      transform: translateY(-1px);
    }

    .nav-links a.active {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--coral));
      box-shadow: 0 10px 26px rgba(123, 45, 92, .22);
    }

    .dock-actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .dock-search {
      width: 230px;
      height: 42px;
      padding: 0 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-radius: var(--radius-pill);
      background: #fff;
      border: 1px solid rgba(123, 45, 92, .12);
      color: var(--muted);
      transition: border-color .22s ease, box-shadow .22s ease;
    }

    .dock-search:focus-within {
      border-color: rgba(255, 107, 74, .72);
      box-shadow: 0 0 0 4px rgba(255, 107, 74, .12);
    }

    .dock-search input {
      width: 100%;
      background: transparent;
      color: var(--text);
      font-size: 13px;
    }

    .dock-search input::placeholder {
      color: var(--muted-2);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 22px;
      border-radius: var(--radius-pill);
      font-weight: 820;
      letter-spacing: -.01em;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
      user-select: none;
      white-space: nowrap;
    }

    .btn:focus-visible,
    .filter-btn:focus-visible,
    .entry-card:focus-within,
    summary:focus-visible {
      outline: 3px solid rgba(255, 107, 74, .38);
      outline-offset: 3px;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary) 0%, var(--pink) 52%, var(--coral) 100%);
      box-shadow: 0 16px 34px rgba(123, 45, 92, .22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 48px rgba(123, 45, 92, .30);
      background: linear-gradient(110deg, var(--primary-dark) 0%, var(--pink) 48%, var(--coral) 100%);
    }

    .btn-secondary {
      color: var(--primary);
      background: rgba(255, 249, 241, .92);
      border: 1px solid rgba(123, 45, 92, .18);
    }

    .btn-secondary:hover {
      background: var(--card-2);
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(80, 38, 36, .10);
    }

    main {
      padding-top: 112px;
    }

    .category-hero {
      position: relative;
      padding: 58px 0 74px;
      overflow: hidden;
    }

    .category-hero::before {
      content: "";
      position: absolute;
      inset: -180px -80px auto auto;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 61, 141, .22), transparent 68%);
      pointer-events: none;
    }

    .category-hero::after {
      content: "";
      position: absolute;
      left: 4%;
      bottom: 8%;
      width: 260px;
      height: 170px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(54, 197, 240, .15), transparent 70%);
      filter: blur(4px);
      pointer-events: none;
    }

    .hero-shell {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      position: relative;
      padding: 46px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(255, 249, 241, .94), rgba(239, 227, 246, .84)),
        radial-gradient(circle at 24% 22%, rgba(255, 107, 74, .18), transparent 26%);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-copy::before {
      content: "";
      position: absolute;
      right: -56px;
      top: -48px;
      width: 220px;
      height: 220px;
      border-radius: 44% 56% 50% 50%;
      background: linear-gradient(135deg, rgba(123, 45, 92, .18), rgba(255, 107, 74, .22));
      transform: rotate(18deg);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      color: var(--primary-dark);
      background: rgba(255, 227, 215, .86);
      border: 1px solid rgba(255, 107, 74, .24);
      font-weight: 820;
      font-size: 13px;
    }

    h1 {
      position: relative;
      max-width: 720px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.1;
      letter-spacing: -.05em;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 18px;
    }

    .hero-lead {
      position: relative;
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
      margin-bottom: 26px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 12px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      line-height: 1;
      font-weight: 800;
      color: var(--primary-dark);
      background: rgba(255, 249, 241, .84);
      border: 1px solid rgba(123, 45, 92, .14);
    }

    .tag.hot {
      color: #fff;
      background: linear-gradient(135deg, var(--pink), var(--coral));
      border-color: transparent;
    }

    .tag.safe {
      color: #12663C;
      background: rgba(47, 191, 113, .14);
      border-color: rgba(47, 191, 113, .24);
    }

    .invite-panel {
      position: relative;
      padding: 28px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 82% 8%, rgba(255, 61, 141, .18), transparent 28%),
        linear-gradient(160deg, #2A1D24 0%, #5D2146 58%, #7B2D5C 100%);
      color: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
      min-height: 100%;
    }

    .invite-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.08) 1px, transparent 1px);
      background-size: 38px 38px;
      opacity: .24;
      mask-image: radial-gradient(circle at 55% 35%, #000 0%, transparent 72%);
    }

    .panel-inner {
      position: relative;
      z-index: 1;
    }

    .panel-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 24px;
    }

    .panel-top h2 {
      font-size: 28px;
      line-height: 1.2;
      font-weight: 880;
      letter-spacing: -.03em;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 11px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 850;
      white-space: nowrap;
    }

    .status-badge.new {
      color: #fff;
      background: var(--coral);
    }

    .status-badge.safe {
      color: #125A36;
      background: #DDF8E9;
    }

    .status-badge.wait {
      color: var(--primary-dark);
      background: #FFE3D7;
    }

    .progress-card {
      padding: 18px;
      border-radius: 26px;
      background: rgba(255, 249, 241, .10);
      border: 1px solid rgba(255, 249, 241, .18);
      margin-bottom: 16px;
      backdrop-filter: blur(10px);
    }

    .progress-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      margin-bottom: 10px;
      color: rgba(255,255,255,.92);
      font-weight: 800;
      font-size: 14px;
    }

    .progress-line {
      height: 12px;
      border-radius: var(--radius-pill);
      background: rgba(255,255,255,.16);
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      width: 72%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--blue), var(--pink), var(--coral));
      box-shadow: 0 0 22px rgba(255, 107, 74, .40);
      transition: width .25s ease;
    }

    .quick-list {
      display: grid;
      gap: 12px;
      margin: 20px 0;
    }

    .quick-item {
      display: grid;
      grid-template-columns: 38px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 13px;
      border-radius: 22px;
      background: rgba(255, 249, 241, .12);
      border: 1px solid rgba(255,255,255,.14);
    }

    .quick-no {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: rgba(255,255,255,.16);
      font-weight: 900;
      color: #fff;
    }

    .quick-item strong {
      display: block;
      font-size: 15px;
      line-height: 1.35;
    }

    .quick-item span {
      display: block;
      margin-top: 2px;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.45;
    }

    .section {
      padding: 78px 0;
      position: relative;
    }

    .section.compact {
      padding: 54px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .78fr) minmax(260px, .38fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      width: max-content;
      margin-bottom: 12px;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      color: var(--primary);
      background: rgba(239, 227, 246, .86);
      font-size: 13px;
      font-weight: 850;
    }

    h2 {
      font-size: clamp(28px, 3.6vw, 38px);
      line-height: 1.18;
      letter-spacing: -.04em;
      font-weight: 900;
    }

    .section-desc {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .filter-wrap {
      position: sticky;
      top: 102px;
      z-index: 20;
      padding: 10px;
      border-radius: var(--radius-pill);
      background: rgba(255, 249, 241, .88);
      border: 1px solid var(--line);
      box-shadow: 0 14px 36px rgba(80, 38, 36, .10);
      backdrop-filter: blur(16px);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .filter-wrap::-webkit-scrollbar {
      display: none;
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 10px;
      width: max-content;
      min-width: 100%;
    }

    .filter-btn {
      min-height: 42px;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      color: var(--muted);
      background: #fff;
      border: 1px solid rgba(123, 45, 92, .14);
      font-weight: 820;
      transition: transform .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
      white-space: nowrap;
    }

    .filter-btn:hover {
      transform: translateY(-2px);
      color: var(--text);
      background: var(--card-2);
    }

    .filter-btn.active {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--primary), var(--coral));
      box-shadow: 0 10px 24px rgba(123, 45, 92, .20);
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 314px;
      gap: 26px;
      align-items: start;
      margin-top: 30px;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      position: relative;
      display: flex;
      min-height: 266px;
      flex-direction: column;
      justify-content: space-between;
      padding: 22px;
      border-radius: 30px;
      border: 1px solid var(--line);
      background: var(--card);
      box-shadow: 0 12px 32px rgba(80, 38, 36, .08);
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .entry-card:nth-child(2n) {
      background: linear-gradient(160deg, #FFF9F1, #EFE3F6);
      transform: translateY(18px);
    }

    .entry-card:nth-child(3n) {
      background: linear-gradient(160deg, #FFF9F1, #FFE3D7);
      min-height: 306px;
    }

    .entry-card::before {
      content: "";
      position: absolute;
      right: -30px;
      top: -30px;
      width: 112px;
      height: 112px;
      border-radius: 36px;
      background: linear-gradient(135deg, rgba(255, 61, 141, .16), rgba(54, 197, 240, .14));
      transform: rotate(18deg);
    }

    .entry-card:hover {
      transform: translateY(-4px) rotate(-.5deg);
      box-shadow: var(--shadow-hover);
      border-color: var(--line-strong);
    }

    .entry-card:nth-child(2n):hover {
      transform: translateY(12px) rotate(.5deg);
    }

    .card-top,
    .card-bottom {
      position: relative;
      z-index: 1;
    }

    .mini-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      padding: 5px 9px;
      border-radius: var(--radius-pill);
      color: var(--primary);
      background: rgba(239, 227, 246, .78);
      font-size: 12px;
      line-height: 1;
      font-weight: 860;
    }

    .mini-badge.orange {
      color: #fff;
      background: var(--coral);
    }

    .mini-badge.blue {
      color: #075572;
      background: rgba(54, 197, 240, .18);
    }

    .entry-card h3 {
      font-size: 21px;
      line-height: 1.28;
      letter-spacing: -.03em;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .entry-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.72;
    }

    .card-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 26px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-weight: 880;
      font-size: 14px;
      transition: color .2s ease, transform .2s ease;
    }

    .text-link:hover {
      color: var(--coral);
      transform: translateX(2px);
    }

    .side-panel {
      position: sticky;
      top: 178px;
      display: grid;
      gap: 16px;
    }

    .check-card,
    .notice-card {
      padding: 22px;
      border-radius: 30px;
      background: rgba(255, 249, 241, .92);
      border: 1px solid var(--line);
      box-shadow: 0 14px 36px rgba(80, 38, 36, .09);
    }

    .check-card h3,
    .notice-card h3 {
      font-size: 20px;
      line-height: 1.25;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .check-list {
      display: grid;
      gap: 10px;
      margin-bottom: 18px;
    }

    .check-step {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px;
      border-radius: 18px;
      color: var(--muted);
      background: rgba(247, 241, 232, .78);
      border: 1px solid rgba(123, 45, 92, .10);
      font-weight: 760;
      font-size: 14px;
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }

    .check-step:hover {
      transform: translateX(2px);
      background: var(--card-2);
      color: var(--text);
    }

    .check-step.active {
      color: var(--primary-dark);
      background: rgba(255, 227, 215, .88);
      border-color: rgba(255, 107, 74, .28);
    }

    .check-dot {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--coral));
      font-size: 12px;
      font-weight: 900;
    }

    .side-progress {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .side-progress .progress-line {
      flex: 1;
      height: 10px;
      background: rgba(123, 45, 92, .10);
    }

    .notice-card {
      background:
        radial-gradient(circle at 85% 0%, rgba(255, 107, 74, .20), transparent 30%),
        linear-gradient(160deg, #FFF9F1, #EFE3F6);
    }

    .notice-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .route-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .route-map {
      min-height: 430px;
      padding: 28px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(33,26,29,.92), rgba(93,33,70,.92)),
        radial-gradient(circle at 70% 20%, rgba(255, 61, 141, .26), transparent 34%);
      color: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .route-map::before {
      content: "";
      position: absolute;
      inset: 28px;
      border-radius: 30px;
      border: 1px dashed rgba(255,255,255,.18);
      pointer-events: none;
    }

    .route-node {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 15px;
      border-radius: 24px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(10px);
      margin-bottom: 14px;
    }

    .route-node:nth-child(2) {
      margin-left: 42px;
    }

    .route-node:nth-child(3) {
      margin-left: 88px;
    }

    .route-node:nth-child(4) {
      margin-left: 34px;
    }

    .route-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--blue), var(--pink));
      font-weight: 900;
    }

    .route-node strong {
      display: block;
      font-size: 16px;
      line-height: 1.35;
    }

    .route-node span {
      display: block;
      margin-top: 3px;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.5;
    }

    .route-info {
      display: grid;
      gap: 16px;
    }

    .info-card {
      padding: 24px;
      border-radius: 30px;
      border: 1px solid var(--line);
      background: var(--card);
      box-shadow: 0 12px 30px rgba(80, 38, 36, .08);
    }

    .info-card h3 {
      font-size: 21px;
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .info-card p {
      color: var(--muted);
      font-size: 15px;
    }

    .update-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .update-item {
      padding: 20px;
      min-height: 158px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 12px 26px rgba(80, 38, 36, .07);
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .update-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .update-num {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 14px;
      border-radius: 16px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--coral));
      font-weight: 900;
    }

    .update-item h3 {
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .update-item p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .load-more {
      margin-top: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .page-pill {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      font-weight: 900;
      color: var(--muted);
      background: #fff;
      border: 1px solid var(--line);
      transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .page-pill:hover,
    .page-pill.active {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--coral));
      box-shadow: 0 12px 24px rgba(123, 45, 92, .18);
      transform: translateY(-2px);
    }

    .cta-band {
      border-radius: 40px;
      padding: 34px;
      background:
        radial-gradient(circle at 18% 10%, rgba(54, 197, 240, .22), transparent 30%),
        linear-gradient(135deg, var(--primary), var(--pink) 52%, var(--coral));
      box-shadow: var(--shadow-hover);
    }

    .cta-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 24px;
      padding: 30px;
      border-radius: 30px;
      background: rgba(255, 249, 241, .92);
      border: 1px solid rgba(255,255,255,.50);
    }

    .cta-inner h2 {
      margin-bottom: 8px;
    }

    .cta-inner p {
      color: var(--muted);
      max-width: 720px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    details {
      border-radius: 26px;
      overflow: hidden;
      background: rgba(255, 249, 241, .94);
      border: 1px solid var(--line);
      box-shadow: 0 10px 24px rgba(80, 38, 36, .06);
      transition: box-shadow .2s ease, border-color .2s ease;
    }

    details[open] {
      background: linear-gradient(90deg, rgba(255, 227, 215, .92), rgba(255, 249, 241, .96));
      border-color: rgba(255, 107, 74, .30);
      box-shadow: 0 16px 38px rgba(80, 38, 36, .10);
    }

    summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 22px;
      font-weight: 900;
      cursor: pointer;
      line-height: 1.45;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: #fff;
      background: var(--primary);
      font-weight: 900;
      transition: transform .2s ease, background .2s ease;
    }

    details[open] summary::after {
      content: "−";
      background: var(--coral);
      transform: rotate(180deg);
    }

    .faq-body {
      padding: 0 22px 22px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
      border-left: 4px solid var(--primary);
      margin-left: 22px;
    }

    .site-footer {
      margin-top: 50px;
      padding: 58px 0 28px;
      color: rgba(247, 241, 232, .86);
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 107, 74, .16), transparent 28%),
        linear-gradient(180deg, #211A1D, #161113);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) .7fr .7fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(247, 241, 232, .14);
    }

    .footer-brand {
      color: #fff;
      font-size: 17px;
      margin-bottom: 14px;
    }

    .footer-text {
      max-width: 520px;
      color: rgba(247, 241, 232, .68);
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-col h3 {
      color: #fff;
      font-size: 15px;
      margin-bottom: 14px;
      font-weight: 900;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a,
    .footer-links button {
      width: max-content;
      color: rgba(247, 241, 232, .72);
      font-size: 14px;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-links a:hover,
    .footer-links button:hover {
      color: var(--coral);
      transform: translateX(2px);
    }

    .copyright {
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: rgba(247, 241, 232, .58);
      font-size: 13px;
      flex-wrap: wrap;
    }

    @media (max-width: 1100px) {
      .dock {
        width: min(calc(100% - 24px), 960px);
      }

      .dock-search {
        display: none;
      }

      .hero-shell,
      .route-grid {
        grid-template-columns: 1fr;
      }

      .content-layout {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
        grid-template-columns: 1fr 1fr;
      }

      .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .update-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-head {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .site-header {
        top: 12px;
      }

      .dock {
        width: calc(100% - 20px);
        border-radius: 30px;
        align-items: stretch;
        flex-wrap: wrap;
        padding: 8px;
      }

      .brand {
        flex: 1 1 auto;
      }

      .brand-text {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
      }

      .nav-links::-webkit-scrollbar {
        display: none;
      }

      .nav-links a {
        flex: 0 0 auto;
      }

      .dock-actions {
        margin-left: 0;
      }

      .dock-actions .btn {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 13px;
      }

      main {
        padding-top: 138px;
      }

      .category-hero {
        padding: 34px 0 50px;
      }

      .hero-copy,
      .invite-panel {
        padding: 26px;
        border-radius: 30px;
      }

      .hero-lead {
        font-size: 15px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .filter-wrap {
        top: 128px;
        border-radius: 24px;
      }

      .entry-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }

      .entry-grid::-webkit-scrollbar {
        display: none;
      }

      .entry-card {
        flex: 0 0 82%;
        min-height: 286px;
        scroll-snap-align: start;
      }

      .entry-card:nth-child(2n),
      .entry-card:nth-child(3n) {
        transform: none;
      }

      .entry-card:nth-child(2n):hover {
        transform: translateY(-4px);
      }

      .side-panel {
        grid-template-columns: 1fr;
      }

      .route-node:nth-child(n) {
        margin-left: 0;
      }

      .route-map {
        min-height: auto;
      }

      .cta-inner {
        grid-template-columns: 1fr;
        padding: 24px;
      }

      .cta-inner .btn {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .brand-mark {
        width: 36px;
        height: 36px;
      }

      .brand-text {
        font-size: 13px;
        max-width: 128px;
      }

      .dock-actions .btn {
        padding-inline: 12px;
      }

      h1 {
        font-size: 32px;
      }

      .panel-top {
        display: grid;
      }

      .quick-item {
        grid-template-columns: 34px 1fr;
      }

      .quick-item .status-badge {
        grid-column: 2;
        width: max-content;
      }

      .section {
        padding: 56px 0;
      }

      .update-strip {
        grid-template-columns: 1fr;
      }

      .cta-band {
        padding: 18px;
        border-radius: 30px;
      }

      summary {
        padding: 18px;
      }

      .faq-body {
        margin-left: 18px;
        padding-right: 18px;
      }

      .copyright {
        display: grid;
      }
    }
